microsoft / DurableFunctionsMonitor

A monitoring/debugging UI tool for Azure Durable Functions
MIT License
221 stars 36 forks source link

Updated HistoryEvent type case to camelCase #172

Open irfanali915 opened 7 months ago

irfanali915 commented 7 months ago

As dfm history Endpoint GET /a/p/i/{connName}-{hubName}/orchestrations('<id>')/history

return data in camelCase JSON and react using Pascal Case, causing issue with rendering

Example of API response

{ "totalCount": null, "history": [ { "timestamp": "2024-03-05T13:38:52.4641772Z", "eventType": "ExecutionStarted", "eventId": null, "name": "name123", "scheduledTime": null, "result": null, "details": null, "durationInMs": 0.0, "subOrchestrationId": null } ] }

irfanali915 commented 7 months ago

@microsoft-github-policy-service agree