@epilot/integration-toolkit-client 1.0.3 → 1.0.4
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 +11 -0
- package/dist/openapi.json +6 -1
- package/package.json +2 -2
package/dist/openapi.d.ts
CHANGED
|
@@ -879,6 +879,17 @@ declare namespace Components {
|
|
|
879
879
|
* Optional ID that identifies the specific request for debugging purposes
|
|
880
880
|
*/
|
|
881
881
|
correlation_id?: string;
|
|
882
|
+
/**
|
|
883
|
+
* Optional override for the stage 1 FIFO message group ID used when queuing
|
|
884
|
+
* the events for processing. Defaults to `INTEGRATION#<hash(integration_id)>`,
|
|
885
|
+
* which strictly serializes all events from one integration. Provide a
|
|
886
|
+
* finer-grained value (e.g. including a use case slug or a payload-derived key)
|
|
887
|
+
* to pin related events to the same group while letting unrelated events process
|
|
888
|
+
* in parallel. Downstream stage 2 still serializes per-entity via its own
|
|
889
|
+
* message group ID.
|
|
890
|
+
*
|
|
891
|
+
*/
|
|
892
|
+
group_id?: string;
|
|
882
893
|
/**
|
|
883
894
|
* List of ERP events to process
|
|
884
895
|
*/
|
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.
|
|
5
|
+
"version": "1.0.4",
|
|
6
6
|
"description": "API for integrating with external systems in a standardised way."
|
|
7
7
|
},
|
|
8
8
|
"tags": [
|
|
@@ -3043,6 +3043,11 @@
|
|
|
3043
3043
|
"type": "string",
|
|
3044
3044
|
"description": "Optional ID that identifies the specific request for debugging purposes"
|
|
3045
3045
|
},
|
|
3046
|
+
"group_id": {
|
|
3047
|
+
"type": "string",
|
|
3048
|
+
"description": "Optional override for the stage 1 FIFO message group ID used when queuing\nthe events for processing. Defaults to `INTEGRATION#<hash(integration_id)>`,\nwhich strictly serializes all events from one integration. Provide a\nfiner-grained value (e.g. including a use case slug or a payload-derived key)\nto pin related events to the same group while letting unrelated events process\nin parallel. Downstream stage 2 still serializes per-entity via its own\nmessage group ID.\n",
|
|
3049
|
+
"maxLength": 128
|
|
3050
|
+
},
|
|
3046
3051
|
"events": {
|
|
3047
3052
|
"type": "array",
|
|
3048
3053
|
"description": "List of ERP events to process",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@epilot/integration-toolkit-client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Client library for epilot Integration Toolkit API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"axios": "^1.13.5",
|
|
64
64
|
"copy-webpack-plugin": "^7.0.0",
|
|
65
65
|
"json-loader": "^0.5.7",
|
|
66
|
-
"openapicmd": "^2.
|
|
66
|
+
"openapicmd": "^2.9.2",
|
|
67
67
|
"ts-loader": "^8.0.14",
|
|
68
68
|
"ts-node": "^10.9.1",
|
|
69
69
|
"typescript": "^4.1.3",
|