ultracart_rest_api_v2_typescript 3.10.224 → 3.10.225
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/README.md +3 -2
- package/api.ts +60 -66
- package/dist/api.d.ts +64 -70
- package/dist/api.js +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## ultracart_rest_api_v2_typescript@3.10.
|
|
1
|
+
## ultracart_rest_api_v2_typescript@3.10.225
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install ultracart_rest_api_v2_typescript@3.10.
|
|
39
|
+
npm install ultracart_rest_api_v2_typescript@3.10.225 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -54,6 +54,7 @@ Not every change is committed to every SDK.
|
|
|
54
54
|
|
|
55
55
|
| Version | Date | Comments |
|
|
56
56
|
| --: | :-: | --- |
|
|
57
|
+
| 3.10.225 | 02/18/2025 | small bug fixes for incorrect return types on several methods |
|
|
57
58
|
| 3.10.224 | 02/06/2025 | added storefront_host_name to channel partner order object |
|
|
58
59
|
| 3.10.223 | 01/09/2025 | fix for broken 4.0.39 due to incorrect query sig on getCustomers |
|
|
59
60
|
| 3.10.222 | 01/09/2025 | added emails parameter to customer queries, refundOrder added to Channel partner |
|
package/api.ts
CHANGED
|
@@ -28592,6 +28592,12 @@ export interface ItemPaymentProcessing {
|
|
|
28592
28592
|
* @memberof ItemPaymentProcessing
|
|
28593
28593
|
*/
|
|
28594
28594
|
block_prepaid?: boolean;
|
|
28595
|
+
/**
|
|
28596
|
+
* True if this item should block any refund attempts
|
|
28597
|
+
* @type {boolean}
|
|
28598
|
+
* @memberof ItemPaymentProcessing
|
|
28599
|
+
*/
|
|
28600
|
+
block_refunds?: boolean;
|
|
28595
28601
|
/**
|
|
28596
28602
|
* Credit card transaction type
|
|
28597
28603
|
* @type {string}
|
|
@@ -44050,109 +44056,97 @@ export interface WebhookLogSummary {
|
|
|
44050
44056
|
/**
|
|
44051
44057
|
*
|
|
44052
44058
|
* @export
|
|
44053
|
-
* @interface
|
|
44059
|
+
* @interface WebhookReflow
|
|
44054
44060
|
*/
|
|
44055
|
-
export interface
|
|
44061
|
+
export interface WebhookReflow {
|
|
44056
44062
|
/**
|
|
44057
44063
|
*
|
|
44058
|
-
* @type {
|
|
44059
|
-
* @memberof
|
|
44064
|
+
* @type {string}
|
|
44065
|
+
* @memberof WebhookReflow
|
|
44060
44066
|
*/
|
|
44061
|
-
|
|
44067
|
+
event_name?: string;
|
|
44062
44068
|
/**
|
|
44063
44069
|
*
|
|
44064
|
-
* @type {ResponseMetadata}
|
|
44065
|
-
* @memberof WebhookResponse
|
|
44066
|
-
*/
|
|
44067
|
-
metadata?: ResponseMetadata;
|
|
44068
|
-
/**
|
|
44069
|
-
* Indicates if API call was successful
|
|
44070
44070
|
* @type {boolean}
|
|
44071
|
-
* @memberof
|
|
44072
|
-
*/
|
|
44073
|
-
success?: boolean;
|
|
44074
|
-
/**
|
|
44075
|
-
*
|
|
44076
|
-
* @type {Warning}
|
|
44077
|
-
* @memberof WebhookResponse
|
|
44071
|
+
* @memberof WebhookReflow
|
|
44078
44072
|
*/
|
|
44079
|
-
|
|
44080
|
-
/**
|
|
44081
|
-
*
|
|
44082
|
-
* @type {Webhook}
|
|
44083
|
-
* @memberof WebhookResponse
|
|
44084
|
-
*/
|
|
44085
|
-
webhook?: Webhook;
|
|
44073
|
+
queued?: boolean;
|
|
44086
44074
|
}
|
|
44087
44075
|
|
|
44088
44076
|
/**
|
|
44089
44077
|
*
|
|
44090
44078
|
* @export
|
|
44091
|
-
* @interface
|
|
44079
|
+
* @interface WebhookReflowResponse
|
|
44092
44080
|
*/
|
|
44093
|
-
export interface
|
|
44081
|
+
export interface WebhookReflowResponse {
|
|
44094
44082
|
/**
|
|
44095
|
-
*
|
|
44096
|
-
* @type {
|
|
44097
|
-
* @memberof
|
|
44083
|
+
*
|
|
44084
|
+
* @type {ModelError}
|
|
44085
|
+
* @memberof WebhookReflowResponse
|
|
44098
44086
|
*/
|
|
44099
|
-
|
|
44087
|
+
error?: ModelError;
|
|
44100
44088
|
/**
|
|
44101
|
-
*
|
|
44102
|
-
* @type {
|
|
44103
|
-
* @memberof
|
|
44089
|
+
*
|
|
44090
|
+
* @type {ResponseMetadata}
|
|
44091
|
+
* @memberof WebhookReflowResponse
|
|
44104
44092
|
*/
|
|
44105
|
-
|
|
44093
|
+
metadata?: ResponseMetadata;
|
|
44106
44094
|
/**
|
|
44107
|
-
*
|
|
44108
|
-
* @type {
|
|
44109
|
-
* @memberof
|
|
44095
|
+
*
|
|
44096
|
+
* @type {WebhookReflow}
|
|
44097
|
+
* @memberof WebhookReflowResponse
|
|
44110
44098
|
*/
|
|
44111
|
-
|
|
44099
|
+
reflow?: WebhookReflow;
|
|
44112
44100
|
/**
|
|
44113
|
-
*
|
|
44114
|
-
* @type {
|
|
44115
|
-
* @memberof
|
|
44101
|
+
* Indicates if API call was successful
|
|
44102
|
+
* @type {boolean}
|
|
44103
|
+
* @memberof WebhookReflowResponse
|
|
44116
44104
|
*/
|
|
44117
|
-
|
|
44105
|
+
success?: boolean;
|
|
44106
|
+
/**
|
|
44107
|
+
*
|
|
44108
|
+
* @type {Warning}
|
|
44109
|
+
* @memberof WebhookReflowResponse
|
|
44110
|
+
*/
|
|
44111
|
+
warning?: Warning;
|
|
44118
44112
|
}
|
|
44119
44113
|
|
|
44120
44114
|
/**
|
|
44121
44115
|
*
|
|
44122
44116
|
* @export
|
|
44123
|
-
* @interface
|
|
44117
|
+
* @interface WebhookResponse
|
|
44124
44118
|
*/
|
|
44125
|
-
export interface
|
|
44119
|
+
export interface WebhookResponse {
|
|
44126
44120
|
/**
|
|
44127
44121
|
*
|
|
44128
44122
|
* @type {ModelError}
|
|
44129
|
-
* @memberof
|
|
44123
|
+
* @memberof WebhookResponse
|
|
44130
44124
|
*/
|
|
44131
44125
|
error?: ModelError;
|
|
44132
44126
|
/**
|
|
44133
44127
|
*
|
|
44134
44128
|
* @type {ResponseMetadata}
|
|
44135
|
-
* @memberof
|
|
44129
|
+
* @memberof WebhookResponse
|
|
44136
44130
|
*/
|
|
44137
44131
|
metadata?: ResponseMetadata;
|
|
44138
44132
|
/**
|
|
44139
44133
|
* Indicates if API call was successful
|
|
44140
44134
|
* @type {boolean}
|
|
44141
|
-
* @memberof
|
|
44135
|
+
* @memberof WebhookResponse
|
|
44142
44136
|
*/
|
|
44143
44137
|
success?: boolean;
|
|
44144
44138
|
/**
|
|
44145
44139
|
*
|
|
44146
44140
|
* @type {Warning}
|
|
44147
|
-
* @memberof
|
|
44141
|
+
* @memberof WebhookResponse
|
|
44148
44142
|
*/
|
|
44149
44143
|
warning?: Warning;
|
|
44150
44144
|
/**
|
|
44151
44145
|
*
|
|
44152
|
-
* @type {
|
|
44153
|
-
* @memberof
|
|
44146
|
+
* @type {Webhook}
|
|
44147
|
+
* @memberof WebhookResponse
|
|
44154
44148
|
*/
|
|
44155
|
-
|
|
44149
|
+
webhook?: Webhook;
|
|
44156
44150
|
}
|
|
44157
44151
|
|
|
44158
44152
|
/**
|
|
@@ -67167,7 +67161,7 @@ export const FulfillmentApiFetchParamCreator = function (configuration?: Configu
|
|
|
67167
67161
|
};
|
|
67168
67162
|
},
|
|
67169
67163
|
/**
|
|
67170
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
67164
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
67171
67165
|
* @summary Retrieve orders queued up for this distribution center.
|
|
67172
67166
|
* @param {string} distribution_center_code Distribution center code
|
|
67173
67167
|
* @param {*} [options] Override http request option.
|
|
@@ -67425,7 +67419,7 @@ export const FulfillmentApiFp = function(configuration?: Configuration) {
|
|
|
67425
67419
|
* @param {*} [options] Override http request option.
|
|
67426
67420
|
* @throws {RequiredError}
|
|
67427
67421
|
*/
|
|
67428
|
-
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<
|
|
67422
|
+
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OrderPackingSlipResponse> {
|
|
67429
67423
|
const localVarFetchArgs = FulfillmentApiFetchParamCreator(configuration).generatePackingSlip(distribution_center_code, order_id, options);
|
|
67430
67424
|
return (fetch: FetchAPI = portableFetch, basePath: string = BASE_PATH) => {
|
|
67431
67425
|
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
@@ -67440,7 +67434,7 @@ export const FulfillmentApiFp = function(configuration?: Configuration) {
|
|
|
67440
67434
|
};
|
|
67441
67435
|
},
|
|
67442
67436
|
/**
|
|
67443
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
67437
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
67444
67438
|
* @summary Retrieve orders queued up for this distribution center.
|
|
67445
67439
|
* @param {string} distribution_center_code Distribution center code
|
|
67446
67440
|
* @param {*} [options] Override http request option.
|
|
@@ -67556,7 +67550,7 @@ export const FulfillmentApiFactory = function (configuration?: Configuration, fe
|
|
|
67556
67550
|
return FulfillmentApiFp(configuration).generatePackingSlip(distribution_center_code, order_id, options)(fetch, basePath);
|
|
67557
67551
|
},
|
|
67558
67552
|
/**
|
|
67559
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
67553
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
67560
67554
|
* @summary Retrieve orders queued up for this distribution center.
|
|
67561
67555
|
* @param {string} distribution_center_code Distribution center code
|
|
67562
67556
|
* @param {*} [options] Override http request option.
|
|
@@ -67625,10 +67619,10 @@ export interface FulfillmentApiInterface {
|
|
|
67625
67619
|
* @throws {RequiredError}
|
|
67626
67620
|
* @memberof FulfillmentApiInterface
|
|
67627
67621
|
*/
|
|
67628
|
-
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): Promise<
|
|
67622
|
+
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): Promise<OrderPackingSlipResponse>;
|
|
67629
67623
|
|
|
67630
67624
|
/**
|
|
67631
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
67625
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
67632
67626
|
* @summary Retrieve orders queued up for this distribution center.
|
|
67633
67627
|
* @param {string} distribution_center_code Distribution center code
|
|
67634
67628
|
* @param {*} [options] Override http request option.
|
|
@@ -67704,7 +67698,7 @@ export class FulfillmentApi extends BaseAPI implements FulfillmentApiInterface {
|
|
|
67704
67698
|
}
|
|
67705
67699
|
|
|
67706
67700
|
/**
|
|
67707
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
67701
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
67708
67702
|
* @summary Retrieve orders queued up for this distribution center.
|
|
67709
67703
|
* @param {string} distribution_center_code Distribution center code
|
|
67710
67704
|
* @param {*} [options] Override http request option.
|
|
@@ -72187,7 +72181,7 @@ export const OauthApiFetchParamCreator = function (configuration?: Configuration
|
|
|
72187
72181
|
* @param {string} client_id The OAuth application client_id.
|
|
72188
72182
|
* @param {string} grant_type Type of grant
|
|
72189
72183
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
72190
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
72184
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
72191
72185
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
72192
72186
|
* @param {*} [options] Override http request option.
|
|
72193
72187
|
* @throws {RequiredError}
|
|
@@ -72363,7 +72357,7 @@ export const OauthApiFp = function(configuration?: Configuration) {
|
|
|
72363
72357
|
* @param {string} client_id The OAuth application client_id.
|
|
72364
72358
|
* @param {string} grant_type Type of grant
|
|
72365
72359
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
72366
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
72360
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
72367
72361
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
72368
72362
|
* @param {*} [options] Override http request option.
|
|
72369
72363
|
* @throws {RequiredError}
|
|
@@ -72419,7 +72413,7 @@ export const OauthApiFactory = function (configuration?: Configuration, fetch?:
|
|
|
72419
72413
|
* @param {string} client_id The OAuth application client_id.
|
|
72420
72414
|
* @param {string} grant_type Type of grant
|
|
72421
72415
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
72422
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
72416
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
72423
72417
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
72424
72418
|
* @param {*} [options] Override http request option.
|
|
72425
72419
|
* @throws {RequiredError}
|
|
@@ -72453,7 +72447,7 @@ export interface OauthApiInterface {
|
|
|
72453
72447
|
* @param {string} client_id The OAuth application client_id.
|
|
72454
72448
|
* @param {string} grant_type Type of grant
|
|
72455
72449
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
72456
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
72450
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
72457
72451
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
72458
72452
|
* @param {*} [options] Override http request option.
|
|
72459
72453
|
* @throws {RequiredError}
|
|
@@ -72487,7 +72481,7 @@ export class OauthApi extends BaseAPI implements OauthApiInterface {
|
|
|
72487
72481
|
* @param {string} client_id The OAuth application client_id.
|
|
72488
72482
|
* @param {string} grant_type Type of grant
|
|
72489
72483
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
72490
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
72484
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
72491
72485
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
72492
72486
|
* @param {*} [options] Override http request option.
|
|
72493
72487
|
* @throws {RequiredError}
|
|
@@ -103548,7 +103542,7 @@ export const WebhookApiFp = function(configuration?: Configuration) {
|
|
|
103548
103542
|
* @param {*} [options] Override http request option.
|
|
103549
103543
|
* @throws {RequiredError}
|
|
103550
103544
|
*/
|
|
103551
|
-
resendEvent(webhookOid: number, eventName: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<
|
|
103545
|
+
resendEvent(webhookOid: number, eventName: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<WebhookReflowResponse> {
|
|
103552
103546
|
const localVarFetchArgs = WebhookApiFetchParamCreator(configuration).resendEvent(webhookOid, eventName, options);
|
|
103553
103547
|
return (fetch: FetchAPI = portableFetch, basePath: string = BASE_PATH) => {
|
|
103554
103548
|
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
@@ -103771,7 +103765,7 @@ export interface WebhookApiInterface {
|
|
|
103771
103765
|
* @throws {RequiredError}
|
|
103772
103766
|
* @memberof WebhookApiInterface
|
|
103773
103767
|
*/
|
|
103774
|
-
resendEvent(webhookOid: number, eventName: string, options?: any): Promise<
|
|
103768
|
+
resendEvent(webhookOid: number, eventName: string, options?: any): Promise<WebhookReflowResponse>;
|
|
103775
103769
|
|
|
103776
103770
|
/**
|
|
103777
103771
|
* Update a webhook on the account
|
package/dist/api.d.ts
CHANGED
|
@@ -27988,6 +27988,12 @@ export interface ItemPaymentProcessing {
|
|
|
27988
27988
|
* @memberof ItemPaymentProcessing
|
|
27989
27989
|
*/
|
|
27990
27990
|
block_prepaid?: boolean;
|
|
27991
|
+
/**
|
|
27992
|
+
* True if this item should block any refund attempts
|
|
27993
|
+
* @type {boolean}
|
|
27994
|
+
* @memberof ItemPaymentProcessing
|
|
27995
|
+
*/
|
|
27996
|
+
block_refunds?: boolean;
|
|
27991
27997
|
/**
|
|
27992
27998
|
* Credit card transaction type
|
|
27993
27999
|
* @type {string}
|
|
@@ -43123,107 +43129,95 @@ export interface WebhookLogSummary {
|
|
|
43123
43129
|
/**
|
|
43124
43130
|
*
|
|
43125
43131
|
* @export
|
|
43126
|
-
* @interface
|
|
43132
|
+
* @interface WebhookReflow
|
|
43127
43133
|
*/
|
|
43128
|
-
export interface
|
|
43134
|
+
export interface WebhookReflow {
|
|
43129
43135
|
/**
|
|
43130
43136
|
*
|
|
43131
|
-
* @type {
|
|
43132
|
-
* @memberof
|
|
43137
|
+
* @type {string}
|
|
43138
|
+
* @memberof WebhookReflow
|
|
43133
43139
|
*/
|
|
43134
|
-
|
|
43140
|
+
event_name?: string;
|
|
43135
43141
|
/**
|
|
43136
43142
|
*
|
|
43137
|
-
* @type {ResponseMetadata}
|
|
43138
|
-
* @memberof WebhookResponse
|
|
43139
|
-
*/
|
|
43140
|
-
metadata?: ResponseMetadata;
|
|
43141
|
-
/**
|
|
43142
|
-
* Indicates if API call was successful
|
|
43143
43143
|
* @type {boolean}
|
|
43144
|
-
* @memberof
|
|
43145
|
-
*/
|
|
43146
|
-
success?: boolean;
|
|
43147
|
-
/**
|
|
43148
|
-
*
|
|
43149
|
-
* @type {Warning}
|
|
43150
|
-
* @memberof WebhookResponse
|
|
43144
|
+
* @memberof WebhookReflow
|
|
43151
43145
|
*/
|
|
43152
|
-
|
|
43153
|
-
/**
|
|
43154
|
-
*
|
|
43155
|
-
* @type {Webhook}
|
|
43156
|
-
* @memberof WebhookResponse
|
|
43157
|
-
*/
|
|
43158
|
-
webhook?: Webhook;
|
|
43146
|
+
queued?: boolean;
|
|
43159
43147
|
}
|
|
43160
43148
|
/**
|
|
43161
43149
|
*
|
|
43162
43150
|
* @export
|
|
43163
|
-
* @interface
|
|
43151
|
+
* @interface WebhookReflowResponse
|
|
43164
43152
|
*/
|
|
43165
|
-
export interface
|
|
43153
|
+
export interface WebhookReflowResponse {
|
|
43166
43154
|
/**
|
|
43167
|
-
*
|
|
43168
|
-
* @type {
|
|
43169
|
-
* @memberof
|
|
43155
|
+
*
|
|
43156
|
+
* @type {ModelError}
|
|
43157
|
+
* @memberof WebhookReflowResponse
|
|
43170
43158
|
*/
|
|
43171
|
-
|
|
43159
|
+
error?: ModelError;
|
|
43172
43160
|
/**
|
|
43173
|
-
*
|
|
43174
|
-
* @type {
|
|
43175
|
-
* @memberof
|
|
43161
|
+
*
|
|
43162
|
+
* @type {ResponseMetadata}
|
|
43163
|
+
* @memberof WebhookReflowResponse
|
|
43176
43164
|
*/
|
|
43177
|
-
|
|
43165
|
+
metadata?: ResponseMetadata;
|
|
43178
43166
|
/**
|
|
43179
|
-
*
|
|
43180
|
-
* @type {
|
|
43181
|
-
* @memberof
|
|
43167
|
+
*
|
|
43168
|
+
* @type {WebhookReflow}
|
|
43169
|
+
* @memberof WebhookReflowResponse
|
|
43182
43170
|
*/
|
|
43183
|
-
|
|
43171
|
+
reflow?: WebhookReflow;
|
|
43184
43172
|
/**
|
|
43185
|
-
*
|
|
43186
|
-
* @type {
|
|
43187
|
-
* @memberof
|
|
43173
|
+
* Indicates if API call was successful
|
|
43174
|
+
* @type {boolean}
|
|
43175
|
+
* @memberof WebhookReflowResponse
|
|
43188
43176
|
*/
|
|
43189
|
-
|
|
43177
|
+
success?: boolean;
|
|
43178
|
+
/**
|
|
43179
|
+
*
|
|
43180
|
+
* @type {Warning}
|
|
43181
|
+
* @memberof WebhookReflowResponse
|
|
43182
|
+
*/
|
|
43183
|
+
warning?: Warning;
|
|
43190
43184
|
}
|
|
43191
43185
|
/**
|
|
43192
43186
|
*
|
|
43193
43187
|
* @export
|
|
43194
|
-
* @interface
|
|
43188
|
+
* @interface WebhookResponse
|
|
43195
43189
|
*/
|
|
43196
|
-
export interface
|
|
43190
|
+
export interface WebhookResponse {
|
|
43197
43191
|
/**
|
|
43198
43192
|
*
|
|
43199
43193
|
* @type {ModelError}
|
|
43200
|
-
* @memberof
|
|
43194
|
+
* @memberof WebhookResponse
|
|
43201
43195
|
*/
|
|
43202
43196
|
error?: ModelError;
|
|
43203
43197
|
/**
|
|
43204
43198
|
*
|
|
43205
43199
|
* @type {ResponseMetadata}
|
|
43206
|
-
* @memberof
|
|
43200
|
+
* @memberof WebhookResponse
|
|
43207
43201
|
*/
|
|
43208
43202
|
metadata?: ResponseMetadata;
|
|
43209
43203
|
/**
|
|
43210
43204
|
* Indicates if API call was successful
|
|
43211
43205
|
* @type {boolean}
|
|
43212
|
-
* @memberof
|
|
43206
|
+
* @memberof WebhookResponse
|
|
43213
43207
|
*/
|
|
43214
43208
|
success?: boolean;
|
|
43215
43209
|
/**
|
|
43216
43210
|
*
|
|
43217
43211
|
* @type {Warning}
|
|
43218
|
-
* @memberof
|
|
43212
|
+
* @memberof WebhookResponse
|
|
43219
43213
|
*/
|
|
43220
43214
|
warning?: Warning;
|
|
43221
43215
|
/**
|
|
43222
43216
|
*
|
|
43223
|
-
* @type {
|
|
43224
|
-
* @memberof
|
|
43217
|
+
* @type {Webhook}
|
|
43218
|
+
* @memberof WebhookResponse
|
|
43225
43219
|
*/
|
|
43226
|
-
|
|
43220
|
+
webhook?: Webhook;
|
|
43227
43221
|
}
|
|
43228
43222
|
/**
|
|
43229
43223
|
*
|
|
@@ -53228,7 +53222,7 @@ export declare const FulfillmentApiFetchParamCreator: (configuration?: Configura
|
|
|
53228
53222
|
*/
|
|
53229
53223
|
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): FetchArgs;
|
|
53230
53224
|
/**
|
|
53231
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
53225
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
53232
53226
|
* @summary Retrieve orders queued up for this distribution center.
|
|
53233
53227
|
* @param {string} distribution_center_code Distribution center code
|
|
53234
53228
|
* @param {*} [options] Override http request option.
|
|
@@ -53283,9 +53277,9 @@ export declare const FulfillmentApiFp: (configuration?: Configuration) => {
|
|
|
53283
53277
|
* @param {*} [options] Override http request option.
|
|
53284
53278
|
* @throws {RequiredError}
|
|
53285
53279
|
*/
|
|
53286
|
-
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<
|
|
53280
|
+
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<OrderPackingSlipResponse>;
|
|
53287
53281
|
/**
|
|
53288
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
53282
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
53289
53283
|
* @summary Retrieve orders queued up for this distribution center.
|
|
53290
53284
|
* @param {string} distribution_center_code Distribution center code
|
|
53291
53285
|
* @param {*} [options] Override http request option.
|
|
@@ -53340,9 +53334,9 @@ export declare const FulfillmentApiFactory: (configuration?: Configuration, fetc
|
|
|
53340
53334
|
* @param {*} [options] Override http request option.
|
|
53341
53335
|
* @throws {RequiredError}
|
|
53342
53336
|
*/
|
|
53343
|
-
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): Promise<
|
|
53337
|
+
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): Promise<OrderPackingSlipResponse>;
|
|
53344
53338
|
/**
|
|
53345
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
53339
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
53346
53340
|
* @summary Retrieve orders queued up for this distribution center.
|
|
53347
53341
|
* @param {string} distribution_center_code Distribution center code
|
|
53348
53342
|
* @param {*} [options] Override http request option.
|
|
@@ -53400,9 +53394,9 @@ export interface FulfillmentApiInterface {
|
|
|
53400
53394
|
* @throws {RequiredError}
|
|
53401
53395
|
* @memberof FulfillmentApiInterface
|
|
53402
53396
|
*/
|
|
53403
|
-
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): Promise<
|
|
53397
|
+
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): Promise<OrderPackingSlipResponse>;
|
|
53404
53398
|
/**
|
|
53405
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
53399
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
53406
53400
|
* @summary Retrieve orders queued up for this distribution center.
|
|
53407
53401
|
* @param {string} distribution_center_code Distribution center code
|
|
53408
53402
|
* @param {*} [options] Override http request option.
|
|
@@ -53465,9 +53459,9 @@ export declare class FulfillmentApi extends BaseAPI implements FulfillmentApiInt
|
|
|
53465
53459
|
* @throws {RequiredError}
|
|
53466
53460
|
* @memberof FulfillmentApi
|
|
53467
53461
|
*/
|
|
53468
|
-
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): Promise<
|
|
53462
|
+
generatePackingSlip(distribution_center_code: string, order_id: string, options?: any): Promise<OrderPackingSlipResponse>;
|
|
53469
53463
|
/**
|
|
53470
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
53464
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
53471
53465
|
* @summary Retrieve orders queued up for this distribution center.
|
|
53472
53466
|
* @param {string} distribution_center_code Distribution center code
|
|
53473
53467
|
* @param {*} [options] Override http request option.
|
|
@@ -55376,7 +55370,7 @@ export declare const OauthApiFetchParamCreator: (configuration?: Configuration)
|
|
|
55376
55370
|
* @param {string} client_id The OAuth application client_id.
|
|
55377
55371
|
* @param {string} grant_type Type of grant
|
|
55378
55372
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
55379
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
55373
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
55380
55374
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
55381
55375
|
* @param {*} [options] Override http request option.
|
|
55382
55376
|
* @throws {RequiredError}
|
|
@@ -55403,7 +55397,7 @@ export declare const OauthApiFp: (configuration?: Configuration) => {
|
|
|
55403
55397
|
* @param {string} client_id The OAuth application client_id.
|
|
55404
55398
|
* @param {string} grant_type Type of grant
|
|
55405
55399
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
55406
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
55400
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
55407
55401
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
55408
55402
|
* @param {*} [options] Override http request option.
|
|
55409
55403
|
* @throws {RequiredError}
|
|
@@ -55430,7 +55424,7 @@ export declare const OauthApiFactory: (configuration?: Configuration, fetch?: Fe
|
|
|
55430
55424
|
* @param {string} client_id The OAuth application client_id.
|
|
55431
55425
|
* @param {string} grant_type Type of grant
|
|
55432
55426
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
55433
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
55427
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
55434
55428
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
55435
55429
|
* @param {*} [options] Override http request option.
|
|
55436
55430
|
* @throws {RequiredError}
|
|
@@ -55458,7 +55452,7 @@ export interface OauthApiInterface {
|
|
|
55458
55452
|
* @param {string} client_id The OAuth application client_id.
|
|
55459
55453
|
* @param {string} grant_type Type of grant
|
|
55460
55454
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
55461
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
55455
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
55462
55456
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
55463
55457
|
* @param {*} [options] Override http request option.
|
|
55464
55458
|
* @throws {RequiredError}
|
|
@@ -55489,7 +55483,7 @@ export declare class OauthApi extends BaseAPI implements OauthApiInterface {
|
|
|
55489
55483
|
* @param {string} client_id The OAuth application client_id.
|
|
55490
55484
|
* @param {string} grant_type Type of grant
|
|
55491
55485
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
55492
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
55486
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
55493
55487
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
55494
55488
|
* @param {*} [options] Override http request option.
|
|
55495
55489
|
* @throws {RequiredError}
|
|
@@ -67568,7 +67562,7 @@ export declare const WebhookApiFp: (configuration?: Configuration) => {
|
|
|
67568
67562
|
* @param {*} [options] Override http request option.
|
|
67569
67563
|
* @throws {RequiredError}
|
|
67570
67564
|
*/
|
|
67571
|
-
resendEvent(webhookOid: number, eventName: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<
|
|
67565
|
+
resendEvent(webhookOid: number, eventName: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<WebhookReflowResponse>;
|
|
67572
67566
|
/**
|
|
67573
67567
|
* Update a webhook on the account
|
|
67574
67568
|
* @summary Update a webhook
|
|
@@ -67649,7 +67643,7 @@ export declare const WebhookApiFactory: (configuration?: Configuration, fetch?:
|
|
|
67649
67643
|
* @param {*} [options] Override http request option.
|
|
67650
67644
|
* @throws {RequiredError}
|
|
67651
67645
|
*/
|
|
67652
|
-
resendEvent(webhookOid: number, eventName: string, options?: any): Promise<
|
|
67646
|
+
resendEvent(webhookOid: number, eventName: string, options?: any): Promise<WebhookReflowResponse>;
|
|
67653
67647
|
/**
|
|
67654
67648
|
* Update a webhook on the account
|
|
67655
67649
|
* @summary Update a webhook
|
|
@@ -67738,7 +67732,7 @@ export interface WebhookApiInterface {
|
|
|
67738
67732
|
* @throws {RequiredError}
|
|
67739
67733
|
* @memberof WebhookApiInterface
|
|
67740
67734
|
*/
|
|
67741
|
-
resendEvent(webhookOid: number, eventName: string, options?: any): Promise<
|
|
67735
|
+
resendEvent(webhookOid: number, eventName: string, options?: any): Promise<WebhookReflowResponse>;
|
|
67742
67736
|
/**
|
|
67743
67737
|
* Update a webhook on the account
|
|
67744
67738
|
* @summary Update a webhook
|
|
@@ -67829,7 +67823,7 @@ export declare class WebhookApi extends BaseAPI implements WebhookApiInterface {
|
|
|
67829
67823
|
* @throws {RequiredError}
|
|
67830
67824
|
* @memberof WebhookApi
|
|
67831
67825
|
*/
|
|
67832
|
-
resendEvent(webhookOid: number, eventName: string, options?: any): Promise<
|
|
67826
|
+
resendEvent(webhookOid: number, eventName: string, options?: any): Promise<WebhookReflowResponse>;
|
|
67833
67827
|
/**
|
|
67834
67828
|
* Update a webhook on the account
|
|
67835
67829
|
* @summary Update a webhook
|
package/dist/api.js
CHANGED
|
@@ -20423,7 +20423,7 @@ var FulfillmentApiFetchParamCreator = function (configuration) {
|
|
|
20423
20423
|
};
|
|
20424
20424
|
},
|
|
20425
20425
|
/**
|
|
20426
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
20426
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
20427
20427
|
* @summary Retrieve orders queued up for this distribution center.
|
|
20428
20428
|
* @param {string} distribution_center_code Distribution center code
|
|
20429
20429
|
* @param {*} [options] Override http request option.
|
|
@@ -20672,7 +20672,7 @@ var FulfillmentApiFp = function (configuration) {
|
|
|
20672
20672
|
};
|
|
20673
20673
|
},
|
|
20674
20674
|
/**
|
|
20675
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
20675
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
20676
20676
|
* @summary Retrieve orders queued up for this distribution center.
|
|
20677
20677
|
* @param {string} distribution_center_code Distribution center code
|
|
20678
20678
|
* @param {*} [options] Override http request option.
|
|
@@ -20792,7 +20792,7 @@ var FulfillmentApiFactory = function (configuration, fetch, basePath) {
|
|
|
20792
20792
|
return (0, exports.FulfillmentApiFp)(configuration).generatePackingSlip(distribution_center_code, order_id, options)(fetch, basePath);
|
|
20793
20793
|
},
|
|
20794
20794
|
/**
|
|
20795
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
20795
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
20796
20796
|
* @summary Retrieve orders queued up for this distribution center.
|
|
20797
20797
|
* @param {string} distribution_center_code Distribution center code
|
|
20798
20798
|
* @param {*} [options] Override http request option.
|
|
@@ -20871,7 +20871,7 @@ var FulfillmentApi = /** @class */ (function (_super) {
|
|
|
20871
20871
|
return (0, exports.FulfillmentApiFp)(this.configuration).generatePackingSlip(distribution_center_code, order_id, options)(this.fetch, this.basePath);
|
|
20872
20872
|
};
|
|
20873
20873
|
/**
|
|
20874
|
-
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing,
|
|
20874
|
+
* Retrieves up to 100 orders that are queued up in this distribution center. You must acknowledge them before additional new orders will be returned. There is NO record chunking. You'll get the same 100 records again and again until you acknowledge orders. The orders that are returned contain only items for this distribution center and are by default completely expanded with billing, channel_partner, checkout, coupons, customer_profile, edi, gift, gift_certificate, internal, items, payment, shipping, summary, taxes.
|
|
20875
20875
|
* @summary Retrieve orders queued up for this distribution center.
|
|
20876
20876
|
* @param {string} distribution_center_code Distribution center code
|
|
20877
20877
|
* @param {*} [options] Override http request option.
|
|
@@ -24660,7 +24660,7 @@ var OauthApiFetchParamCreator = function (configuration) {
|
|
|
24660
24660
|
* @param {string} client_id The OAuth application client_id.
|
|
24661
24661
|
* @param {string} grant_type Type of grant
|
|
24662
24662
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
24663
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
24663
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
24664
24664
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
24665
24665
|
* @param {*} [options] Override http request option.
|
|
24666
24666
|
* @throws {RequiredError}
|
|
@@ -24813,7 +24813,7 @@ var OauthApiFp = function (configuration) {
|
|
|
24813
24813
|
* @param {string} client_id The OAuth application client_id.
|
|
24814
24814
|
* @param {string} grant_type Type of grant
|
|
24815
24815
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
24816
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
24816
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
24817
24817
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
24818
24818
|
* @param {*} [options] Override http request option.
|
|
24819
24819
|
* @throws {RequiredError}
|
|
@@ -24871,7 +24871,7 @@ var OauthApiFactory = function (configuration, fetch, basePath) {
|
|
|
24871
24871
|
* @param {string} client_id The OAuth application client_id.
|
|
24872
24872
|
* @param {string} grant_type Type of grant
|
|
24873
24873
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
24874
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
24874
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
24875
24875
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
24876
24876
|
* @param {*} [options] Override http request option.
|
|
24877
24877
|
* @throws {RequiredError}
|
|
@@ -24910,7 +24910,7 @@ var OauthApi = /** @class */ (function (_super) {
|
|
|
24910
24910
|
* @param {string} client_id The OAuth application client_id.
|
|
24911
24911
|
* @param {string} grant_type Type of grant
|
|
24912
24912
|
* @param {string} [code] Authorization code received back from the browser redirect
|
|
24913
|
-
* @param {string} [redirect_uri] The URI that you redirect the browser to
|
|
24913
|
+
* @param {string} [redirect_uri] The URI that you redirect the browser to start the authorization process
|
|
24914
24914
|
* @param {string} [refresh_token] The refresh token received during the original grant_type=authorization_code that can be used to return a new access token
|
|
24915
24915
|
* @param {*} [options] Override http request option.
|
|
24916
24916
|
* @throws {RequiredError}
|