@epilot/integration-toolkit-client 1.1.0 → 1.1.1

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
@@ -797,6 +797,11 @@ declare namespace Components {
797
797
  * evt-2025-05-01-12345-create-bp
798
798
  */
799
799
  deduplication_id?: string; // ^[a-zA-Z0-9_-]+$
800
+ /**
801
+ * Resolved use case ID for the inbound event. Null when no use case matched or for events ingested before this field was introduced. Server-populated only — ignored if supplied on inbound requests.
802
+ *
803
+ */
804
+ use_case_id?: string | null;
800
805
  }
801
806
  export type ErpEventV3 = {
802
807
  /**
@@ -2929,6 +2934,10 @@ declare namespace Components {
2929
2934
  * Filter by event name (alias for object_type)
2930
2935
  */
2931
2936
  event_name?: string;
2937
+ /**
2938
+ * Filter by use case ID
2939
+ */
2940
+ use_case_id?: string;
2932
2941
  /**
2933
2942
  * Maximum number of results to return
2934
2943
  * example:
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.11",
5
+ "version": "1.0.12",
6
6
  "description": "API for integrating with external systems in a standardised way."
7
7
  },
8
8
  "tags": [
@@ -3144,6 +3144,12 @@
3144
3144
  "maxLength": 255,
3145
3145
  "description": "Optional unique identifier for idempotency - prevents duplicate processing of the same event within 24 hours in context of the same integration. Must contain only alphanumeric characters, hyphens, and underscores.\n",
3146
3146
  "example": "evt-2025-05-01-12345-create-bp"
3147
+ },
3148
+ "use_case_id": {
3149
+ "type": "string",
3150
+ "nullable": true,
3151
+ "readOnly": true,
3152
+ "description": "Resolved use case ID for the inbound event. Null when no use case matched or for events ingested before this field was introduced. Server-populated only — ignored if supplied on inbound requests.\n"
3147
3153
  }
3148
3154
  }
3149
3155
  },
@@ -6870,6 +6876,11 @@
6870
6876
  "type": "string",
6871
6877
  "description": "Filter by event name (alias for object_type)"
6872
6878
  },
6879
+ "use_case_id": {
6880
+ "type": "string",
6881
+ "minLength": 1,
6882
+ "description": "Filter by use case ID"
6883
+ },
6873
6884
  "limit": {
6874
6885
  "type": "integer",
6875
6886
  "description": "Maximum number of results to return",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/integration-toolkit-client",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Client library for epilot Integration Toolkit API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",