@epilot/integration-toolkit-client 1.0.2 → 1.0.3

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
@@ -1362,7 +1362,7 @@ declare namespace Components {
1362
1362
  /**
1363
1363
  * Field to group the bucket breakdown by
1364
1364
  */
1365
- group_by?: "use_case_type";
1365
+ group_by?: "use_case_type" | "use_case";
1366
1366
  }
1367
1367
  /**
1368
1368
  * Configuration for inbound use cases (ERP to epilot)
@@ -3392,9 +3392,13 @@ declare namespace Components {
3392
3392
  }
3393
3393
  export interface TimeSeriesBreakdownItemV2 {
3394
3394
  /**
3395
- * Use case type for the breakdown item
3395
+ * Present when grouping by use_case_type
3396
3396
  */
3397
- use_case_type: "inbound" | "outbound" | "file_proxy" | "managed_call" | "secure_proxy";
3397
+ use_case_type?: "inbound" | "outbound" | "file_proxy" | "managed_call" | "secure_proxy";
3398
+ /**
3399
+ * Present when grouping by use_case. Unknown historical IDs are collapsed into "__unknown__"
3400
+ */
3401
+ use_case_id?: string;
3398
3402
  /**
3399
3403
  * Number of successful events in the breakdown item
3400
3404
  */
package/dist/openapi.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "openapi": "3.0.3",
3
3
  "info": {
4
4
  "title": "Integration Toolkit API",
5
- "version": "1.0.2",
5
+ "version": "1.0.3",
6
6
  "description": "API for integrating with external systems in a standardised way."
7
7
  },
8
8
  "tags": [
@@ -7453,7 +7453,8 @@
7453
7453
  "group_by": {
7454
7454
  "type": "string",
7455
7455
  "enum": [
7456
- "use_case_type"
7456
+ "use_case_type",
7457
+ "use_case"
7457
7458
  ],
7458
7459
  "description": "Field to group the bucket breakdown by"
7459
7460
  }
@@ -7462,7 +7463,6 @@
7462
7463
  "TimeSeriesBreakdownItemV2": {
7463
7464
  "type": "object",
7464
7465
  "required": [
7465
- "use_case_type",
7466
7466
  "success_count",
7467
7467
  "error_count",
7468
7468
  "warning_count",
@@ -7479,7 +7479,11 @@
7479
7479
  "managed_call",
7480
7480
  "secure_proxy"
7481
7481
  ],
7482
- "description": "Use case type for the breakdown item"
7482
+ "description": "Present when grouping by use_case_type"
7483
+ },
7484
+ "use_case_id": {
7485
+ "type": "string",
7486
+ "description": "Present when grouping by use_case. Unknown historical IDs are collapsed into \"__unknown__\""
7483
7487
  },
7484
7488
  "success_count": {
7485
7489
  "type": "integer",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/integration-toolkit-client",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Client library for epilot Integration Toolkit API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",