@epilot/erp-integration-client 0.26.3 → 0.27.0
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 +30 -4
- package/dist/openapi.json +30 -2
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -209,7 +209,7 @@ declare namespace Components {
|
|
|
209
209
|
* URL-safe identifier for the use case. Recommended for portable cross-environment referencing. Must be unique per integration. Immutable after creation. Lowercase alphanumeric, hyphens, and underscores only.
|
|
210
210
|
*
|
|
211
211
|
*/
|
|
212
|
-
slug
|
|
212
|
+
slug?: string; // ^[a-z0-9][a-z0-9_-]*$
|
|
213
213
|
/**
|
|
214
214
|
* Whether the use case is enabled
|
|
215
215
|
*/
|
|
@@ -237,7 +237,7 @@ declare namespace Components {
|
|
|
237
237
|
* URL-safe identifier for the use case. Recommended for portable cross-environment referencing. Must be unique per integration. Immutable after creation. Lowercase alphanumeric, hyphens, and underscores only.
|
|
238
238
|
*
|
|
239
239
|
*/
|
|
240
|
-
slug
|
|
240
|
+
slug?: string; // ^[a-z0-9][a-z0-9_-]*$
|
|
241
241
|
/**
|
|
242
242
|
* Whether the use case is enabled
|
|
243
243
|
*/
|
|
@@ -280,7 +280,7 @@ declare namespace Components {
|
|
|
280
280
|
* URL-safe identifier for the use case. Recommended for portable cross-environment referencing. Must be unique per integration. Immutable after creation. Lowercase alphanumeric, hyphens, and underscores only.
|
|
281
281
|
*
|
|
282
282
|
*/
|
|
283
|
-
slug
|
|
283
|
+
slug?: string; // ^[a-z0-9][a-z0-9_-]*$
|
|
284
284
|
/**
|
|
285
285
|
* Whether the use case is enabled
|
|
286
286
|
*/
|
|
@@ -301,7 +301,7 @@ declare namespace Components {
|
|
|
301
301
|
* URL-safe identifier for the use case. Recommended for portable cross-environment referencing. Must be unique per integration. Immutable after creation. Lowercase alphanumeric, hyphens, and underscores only.
|
|
302
302
|
*
|
|
303
303
|
*/
|
|
304
|
-
slug
|
|
304
|
+
slug?: string; // ^[a-z0-9][a-z0-9_-]*$
|
|
305
305
|
/**
|
|
306
306
|
* Whether the use case is enabled
|
|
307
307
|
*/
|
|
@@ -596,6 +596,32 @@ declare namespace Components {
|
|
|
596
596
|
* Optional OAuth2 scope
|
|
597
597
|
*/
|
|
598
598
|
scope?: string;
|
|
599
|
+
/**
|
|
600
|
+
* Handlebars template for the OAuth2 audience parameter
|
|
601
|
+
*/
|
|
602
|
+
audience?: string;
|
|
603
|
+
/**
|
|
604
|
+
* Handlebars template for the OAuth2 resource parameter
|
|
605
|
+
*/
|
|
606
|
+
resource?: string;
|
|
607
|
+
/**
|
|
608
|
+
* Additional key-value pairs to include in the token request body. Values support Handlebars templates.
|
|
609
|
+
*/
|
|
610
|
+
body_params?: {
|
|
611
|
+
[name: string]: string;
|
|
612
|
+
};
|
|
613
|
+
/**
|
|
614
|
+
* Additional headers to include in the token request. Values support Handlebars templates.
|
|
615
|
+
*/
|
|
616
|
+
headers?: {
|
|
617
|
+
[name: string]: string;
|
|
618
|
+
};
|
|
619
|
+
/**
|
|
620
|
+
* Additional query parameters to append to the token URL. Values support Handlebars templates.
|
|
621
|
+
*/
|
|
622
|
+
query_params?: {
|
|
623
|
+
[name: string]: string;
|
|
624
|
+
};
|
|
599
625
|
}
|
|
600
626
|
export interface FileProxyParam {
|
|
601
627
|
/**
|
package/dist/openapi.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "ERP Integration API",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.45.0",
|
|
6
6
|
"description": "API for integrating with ERP systems, handling tracking acknowledgments, triggering ERP processes, and processing ERP updates."
|
|
7
7
|
},
|
|
8
8
|
"tags": [
|
|
@@ -3432,7 +3432,6 @@
|
|
|
3432
3432
|
"type": "object",
|
|
3433
3433
|
"required": [
|
|
3434
3434
|
"name",
|
|
3435
|
-
"slug",
|
|
3436
3435
|
"type",
|
|
3437
3436
|
"enabled"
|
|
3438
3437
|
],
|
|
@@ -3871,6 +3870,35 @@
|
|
|
3871
3870
|
"scope": {
|
|
3872
3871
|
"type": "string",
|
|
3873
3872
|
"description": "Optional OAuth2 scope"
|
|
3873
|
+
},
|
|
3874
|
+
"audience": {
|
|
3875
|
+
"type": "string",
|
|
3876
|
+
"description": "Handlebars template for the OAuth2 audience parameter"
|
|
3877
|
+
},
|
|
3878
|
+
"resource": {
|
|
3879
|
+
"type": "string",
|
|
3880
|
+
"description": "Handlebars template for the OAuth2 resource parameter"
|
|
3881
|
+
},
|
|
3882
|
+
"body_params": {
|
|
3883
|
+
"type": "object",
|
|
3884
|
+
"additionalProperties": {
|
|
3885
|
+
"type": "string"
|
|
3886
|
+
},
|
|
3887
|
+
"description": "Additional key-value pairs to include in the token request body. Values support Handlebars templates."
|
|
3888
|
+
},
|
|
3889
|
+
"headers": {
|
|
3890
|
+
"type": "object",
|
|
3891
|
+
"additionalProperties": {
|
|
3892
|
+
"type": "string"
|
|
3893
|
+
},
|
|
3894
|
+
"description": "Additional headers to include in the token request. Values support Handlebars templates."
|
|
3895
|
+
},
|
|
3896
|
+
"query_params": {
|
|
3897
|
+
"type": "object",
|
|
3898
|
+
"additionalProperties": {
|
|
3899
|
+
"type": "string"
|
|
3900
|
+
},
|
|
3901
|
+
"description": "Additional query parameters to append to the token URL. Values support Handlebars templates."
|
|
3874
3902
|
}
|
|
3875
3903
|
}
|
|
3876
3904
|
},
|