@epilot/erp-integration-client 0.27.1 → 0.27.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 +9 -1
- package/dist/openapi.json +11 -2
- package/package.json +1 -1
- package/.claude/settings.local.json +0 -7
package/dist/openapi.d.ts
CHANGED
|
@@ -612,7 +612,7 @@ declare namespace Components {
|
|
|
612
612
|
/**
|
|
613
613
|
* Authentication type
|
|
614
614
|
*/
|
|
615
|
-
type: "oauth2_client_credentials";
|
|
615
|
+
type: "oauth2_client_credentials" | "oauth2_password";
|
|
616
616
|
/**
|
|
617
617
|
* Handlebars template for the OAuth2 token endpoint URL
|
|
618
618
|
*/
|
|
@@ -637,6 +637,14 @@ declare namespace Components {
|
|
|
637
637
|
* Handlebars template for the OAuth2 resource parameter
|
|
638
638
|
*/
|
|
639
639
|
resource?: string;
|
|
640
|
+
/**
|
|
641
|
+
* Handlebars template for the OAuth2 resource owner username. Required when type is oauth2_password.
|
|
642
|
+
*/
|
|
643
|
+
username?: string;
|
|
644
|
+
/**
|
|
645
|
+
* Handlebars template for the OAuth2 resource owner password. Required when type is oauth2_password.
|
|
646
|
+
*/
|
|
647
|
+
password?: string;
|
|
640
648
|
/**
|
|
641
649
|
* Additional key-value pairs to include in the token request body. Values support Handlebars templates.
|
|
642
650
|
*/
|
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.46.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": [
|
|
@@ -3862,7 +3862,8 @@
|
|
|
3862
3862
|
"type": {
|
|
3863
3863
|
"type": "string",
|
|
3864
3864
|
"enum": [
|
|
3865
|
-
"oauth2_client_credentials"
|
|
3865
|
+
"oauth2_client_credentials",
|
|
3866
|
+
"oauth2_password"
|
|
3866
3867
|
],
|
|
3867
3868
|
"description": "Authentication type"
|
|
3868
3869
|
},
|
|
@@ -3890,6 +3891,14 @@
|
|
|
3890
3891
|
"type": "string",
|
|
3891
3892
|
"description": "Handlebars template for the OAuth2 resource parameter"
|
|
3892
3893
|
},
|
|
3894
|
+
"username": {
|
|
3895
|
+
"type": "string",
|
|
3896
|
+
"description": "Handlebars template for the OAuth2 resource owner username. Required when type is oauth2_password."
|
|
3897
|
+
},
|
|
3898
|
+
"password": {
|
|
3899
|
+
"type": "string",
|
|
3900
|
+
"description": "Handlebars template for the OAuth2 resource owner password. Required when type is oauth2_password."
|
|
3901
|
+
},
|
|
3893
3902
|
"body_params": {
|
|
3894
3903
|
"type": "object",
|
|
3895
3904
|
"additionalProperties": {
|
package/package.json
CHANGED