@epilot/pricing-client 3.17.6 → 3.17.7
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 +4 -14
- package/dist/openapi.json +2 -14
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -1126,12 +1126,7 @@ declare namespace Components {
|
|
|
1126
1126
|
_title?: string;
|
|
1127
1127
|
$relation?: EntityRelation;
|
|
1128
1128
|
}
|
|
1129
|
-
|
|
1130
|
-
* The credentials response payload
|
|
1131
|
-
*/
|
|
1132
|
-
export interface IntegrationCredentialsResult {
|
|
1133
|
-
schema?: /* The basic auth credentials */ BasicAuthCredentials;
|
|
1134
|
-
}
|
|
1129
|
+
export type IntegrationCredentialsResult = /* The basic auth credentials */ BasicAuthCredentials;
|
|
1135
1130
|
export type IntegrationId = "enet" | "getag";
|
|
1136
1131
|
/**
|
|
1137
1132
|
* A set of key-value pairs used to store meta data information about an entity.
|
|
@@ -2604,12 +2599,7 @@ declare namespace Components {
|
|
|
2604
2599
|
tax?: /* A tax amount associated with a specific tax rate. */ TaxAmountBreakdown;
|
|
2605
2600
|
}
|
|
2606
2601
|
export type SalesTax = "nontaxable" | "reduced" | "standard";
|
|
2607
|
-
|
|
2608
|
-
* The credentials request payload
|
|
2609
|
-
*/
|
|
2610
|
-
export interface SaveIntegrationCredentialsParams {
|
|
2611
|
-
schema?: /* The basic auth credentials */ BasicAuthCredentials;
|
|
2612
|
-
}
|
|
2602
|
+
export type SaveIntegrationCredentialsParams = /* The basic auth credentials */ BasicAuthCredentials;
|
|
2613
2603
|
/**
|
|
2614
2604
|
* A search providers payload
|
|
2615
2605
|
*/
|
|
@@ -2982,7 +2972,7 @@ declare namespace Paths {
|
|
|
2982
2972
|
integrationId: Parameters.IntegrationId;
|
|
2983
2973
|
}
|
|
2984
2974
|
namespace Responses {
|
|
2985
|
-
export type $200 = /* The
|
|
2975
|
+
export type $200 = /* The basic auth credentials */ Components.Schemas.BasicAuthCredentials;
|
|
2986
2976
|
export type $400 = Components.Schemas.Error;
|
|
2987
2977
|
export type $404 = Components.Schemas.Error;
|
|
2988
2978
|
}
|
|
@@ -2998,7 +2988,7 @@ declare namespace Paths {
|
|
|
2998
2988
|
export interface PathParameters {
|
|
2999
2989
|
integrationId: Parameters.IntegrationId;
|
|
3000
2990
|
}
|
|
3001
|
-
export type RequestBody = /* The
|
|
2991
|
+
export type RequestBody = /* The basic auth credentials */ Components.Schemas.BasicAuthCredentials;
|
|
3002
2992
|
namespace Responses {
|
|
3003
2993
|
export interface $204 {
|
|
3004
2994
|
}
|
package/dist/openapi.json
CHANGED
|
@@ -2514,22 +2514,10 @@
|
|
|
2514
2514
|
]
|
|
2515
2515
|
},
|
|
2516
2516
|
"IntegrationCredentialsResult": {
|
|
2517
|
-
"
|
|
2518
|
-
"type": "object",
|
|
2519
|
-
"properties": {
|
|
2520
|
-
"schema": {
|
|
2521
|
-
"$ref": "#/components/schemas/BasicAuthCredentials"
|
|
2522
|
-
}
|
|
2523
|
-
}
|
|
2517
|
+
"$ref": "#/components/schemas/BasicAuthCredentials"
|
|
2524
2518
|
},
|
|
2525
2519
|
"SaveIntegrationCredentialsParams": {
|
|
2526
|
-
"
|
|
2527
|
-
"type": "object",
|
|
2528
|
-
"properties": {
|
|
2529
|
-
"schema": {
|
|
2530
|
-
"$ref": "#/components/schemas/BasicAuthCredentials"
|
|
2531
|
-
}
|
|
2532
|
-
}
|
|
2520
|
+
"$ref": "#/components/schemas/BasicAuthCredentials"
|
|
2533
2521
|
},
|
|
2534
2522
|
"BasicAuthCredentials": {
|
|
2535
2523
|
"description": "The basic auth credentials",
|