@epilot/integration-toolkit-client 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/openapi.d.ts CHANGED
@@ -1386,6 +1386,11 @@ declare namespace Components {
1386
1386
  * Field to group the breakdown by
1387
1387
  */
1388
1388
  group_by?: "use_case_id" | "use_case_type" | "level" | "code" | "date";
1389
+ /**
1390
+ * Data source for the stats. "monitoring" (default) aggregates processed events from erp_monitoring_v2 — this counts every event produced throughout the processing tree (fan-out children, post-actions, relation resolutions, etc.). "incoming" counts only the initial inbound events actually received (distinct event_id from erp_incoming_events); only group_by=use_case_id is supported and status/level breakdown is not available for this source (success/error/warning/skipped counts are returned as 0).
1391
+ *
1392
+ */
1393
+ source?: "monitoring" | "incoming";
1389
1394
  }
1390
1395
  export interface GetMonitoringTimeSeriesRequest {
1391
1396
  /**
package/dist/openapi.json CHANGED
@@ -7837,6 +7837,15 @@
7837
7837
  "date"
7838
7838
  ],
7839
7839
  "description": "Field to group the breakdown by"
7840
+ },
7841
+ "source": {
7842
+ "type": "string",
7843
+ "enum": [
7844
+ "monitoring",
7845
+ "incoming"
7846
+ ],
7847
+ "default": "monitoring",
7848
+ "description": "Data source for the stats. \"monitoring\" (default) aggregates processed events from erp_monitoring_v2 — this counts every event produced throughout the processing tree (fan-out children, post-actions, relation resolutions, etc.). \"incoming\" counts only the initial inbound events actually received (distinct event_id from erp_incoming_events); only group_by=use_case_id is supported and status/level breakdown is not available for this source (success/error/warning/skipped counts are returned as 0).\n"
7840
7849
  }
7841
7850
  }
7842
7851
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/integration-toolkit-client",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "Client library for epilot Integration Toolkit API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",