@infisale-client/api 1.2.54 → 1.2.56
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/api/api.d.ts +259 -42
- package/dist/api/api.js +47 -26
- package/dist/api/api.mjs +47 -26
- package/package.json +2 -2
package/dist/api/api.d.ts
CHANGED
|
@@ -5057,6 +5057,37 @@ export interface IOrderCreateResponse {
|
|
|
5057
5057
|
*/
|
|
5058
5058
|
'redirectUrl'?: string;
|
|
5059
5059
|
}
|
|
5060
|
+
/**
|
|
5061
|
+
*
|
|
5062
|
+
* @export
|
|
5063
|
+
* @interface IOrderPatchRequest
|
|
5064
|
+
*/
|
|
5065
|
+
export interface IOrderPatchRequest {
|
|
5066
|
+
/**
|
|
5067
|
+
*
|
|
5068
|
+
* @type {OrderStatusEnum}
|
|
5069
|
+
* @memberof IOrderPatchRequest
|
|
5070
|
+
*/
|
|
5071
|
+
'status'?: OrderStatusEnum;
|
|
5072
|
+
/**
|
|
5073
|
+
*
|
|
5074
|
+
* @type {OrderPaymentStatusEnum}
|
|
5075
|
+
* @memberof IOrderPatchRequest
|
|
5076
|
+
*/
|
|
5077
|
+
'paymentStatus'?: OrderPaymentStatusEnum;
|
|
5078
|
+
/**
|
|
5079
|
+
*
|
|
5080
|
+
* @type {string}
|
|
5081
|
+
* @memberof IOrderPatchRequest
|
|
5082
|
+
*/
|
|
5083
|
+
'cargoCode'?: string;
|
|
5084
|
+
/**
|
|
5085
|
+
*
|
|
5086
|
+
* @type {string}
|
|
5087
|
+
* @memberof IOrderPatchRequest
|
|
5088
|
+
*/
|
|
5089
|
+
'cargoUrl'?: string;
|
|
5090
|
+
}
|
|
5060
5091
|
/**
|
|
5061
5092
|
*
|
|
5062
5093
|
* @export
|
|
@@ -5276,28 +5307,129 @@ export interface IOrderResponse {
|
|
|
5276
5307
|
'note'?: string;
|
|
5277
5308
|
/**
|
|
5278
5309
|
*
|
|
5279
|
-
* @type {
|
|
5310
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>}
|
|
5280
5311
|
* @memberof IOrderResponse
|
|
5281
5312
|
*/
|
|
5313
|
+
'returns': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>;
|
|
5314
|
+
/**
|
|
5315
|
+
*
|
|
5316
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>}
|
|
5317
|
+
* @memberof IOrderResponse
|
|
5318
|
+
*/
|
|
5319
|
+
'shipped': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>;
|
|
5320
|
+
/**
|
|
5321
|
+
*
|
|
5322
|
+
* @type {OrderPaymentStatusEnum}
|
|
5323
|
+
* @memberof IOrderResponse
|
|
5324
|
+
*/
|
|
5325
|
+
'paymentStatus': OrderPaymentStatusEnum;
|
|
5326
|
+
}
|
|
5327
|
+
/**
|
|
5328
|
+
*
|
|
5329
|
+
* @export
|
|
5330
|
+
* @interface IOrderReturnAdminPostRequest
|
|
5331
|
+
*/
|
|
5332
|
+
export interface IOrderReturnAdminPostRequest {
|
|
5333
|
+
/**
|
|
5334
|
+
*
|
|
5335
|
+
* @type {Array<IOrderReturnPostRequestProductsInner>}
|
|
5336
|
+
* @memberof IOrderReturnAdminPostRequest
|
|
5337
|
+
*/
|
|
5338
|
+
'products': Array<IOrderReturnPostRequestProductsInner>;
|
|
5339
|
+
/**
|
|
5340
|
+
*
|
|
5341
|
+
* @type {number}
|
|
5342
|
+
* @memberof IOrderReturnAdminPostRequest
|
|
5343
|
+
*/
|
|
5344
|
+
'price': number;
|
|
5345
|
+
/**
|
|
5346
|
+
*
|
|
5347
|
+
* @type {string}
|
|
5348
|
+
* @memberof IOrderReturnAdminPostRequest
|
|
5349
|
+
*/
|
|
5282
5350
|
'cargoCode'?: string;
|
|
5283
5351
|
/**
|
|
5284
5352
|
*
|
|
5285
5353
|
* @type {string}
|
|
5286
|
-
* @memberof
|
|
5354
|
+
* @memberof IOrderReturnAdminPostRequest
|
|
5287
5355
|
*/
|
|
5288
5356
|
'cargoUrl'?: string;
|
|
5289
5357
|
/**
|
|
5290
5358
|
*
|
|
5291
|
-
* @type {
|
|
5292
|
-
* @memberof
|
|
5359
|
+
* @type {OrderReturnStatusEnum}
|
|
5360
|
+
* @memberof IOrderReturnAdminPostRequest
|
|
5293
5361
|
*/
|
|
5294
|
-
'
|
|
5362
|
+
'status': OrderReturnStatusEnum;
|
|
5363
|
+
}
|
|
5364
|
+
/**
|
|
5365
|
+
*
|
|
5366
|
+
* @export
|
|
5367
|
+
* @interface IOrderReturnPostRequest
|
|
5368
|
+
*/
|
|
5369
|
+
export interface IOrderReturnPostRequest {
|
|
5295
5370
|
/**
|
|
5296
5371
|
*
|
|
5297
|
-
* @type {
|
|
5298
|
-
* @memberof
|
|
5372
|
+
* @type {Array<IOrderReturnPostRequestProductsInner>}
|
|
5373
|
+
* @memberof IOrderReturnPostRequest
|
|
5299
5374
|
*/
|
|
5300
|
-
'
|
|
5375
|
+
'products': Array<IOrderReturnPostRequestProductsInner>;
|
|
5376
|
+
}
|
|
5377
|
+
/**
|
|
5378
|
+
*
|
|
5379
|
+
* @export
|
|
5380
|
+
* @interface IOrderReturnPostRequestProductsInner
|
|
5381
|
+
*/
|
|
5382
|
+
export interface IOrderReturnPostRequestProductsInner {
|
|
5383
|
+
/**
|
|
5384
|
+
*
|
|
5385
|
+
* @type {number}
|
|
5386
|
+
* @memberof IOrderReturnPostRequestProductsInner
|
|
5387
|
+
*/
|
|
5388
|
+
'amount': number;
|
|
5389
|
+
/**
|
|
5390
|
+
*
|
|
5391
|
+
* @type {IOrderReturnPostRequestProductsInnerId}
|
|
5392
|
+
* @memberof IOrderReturnPostRequestProductsInner
|
|
5393
|
+
*/
|
|
5394
|
+
'_id': IOrderReturnPostRequestProductsInnerId;
|
|
5395
|
+
}
|
|
5396
|
+
/**
|
|
5397
|
+
*
|
|
5398
|
+
* @export
|
|
5399
|
+
* @interface IOrderReturnPostRequestProductsInnerId
|
|
5400
|
+
*/
|
|
5401
|
+
export interface IOrderReturnPostRequestProductsInnerId {
|
|
5402
|
+
}
|
|
5403
|
+
/**
|
|
5404
|
+
*
|
|
5405
|
+
* @export
|
|
5406
|
+
* @interface IOrderReturnUpdatePostRequest
|
|
5407
|
+
*/
|
|
5408
|
+
export interface IOrderReturnUpdatePostRequest {
|
|
5409
|
+
/**
|
|
5410
|
+
*
|
|
5411
|
+
* @type {OrderReturnStatusEnum}
|
|
5412
|
+
* @memberof IOrderReturnUpdatePostRequest
|
|
5413
|
+
*/
|
|
5414
|
+
'status'?: OrderReturnStatusEnum;
|
|
5415
|
+
/**
|
|
5416
|
+
*
|
|
5417
|
+
* @type {string}
|
|
5418
|
+
* @memberof IOrderReturnUpdatePostRequest
|
|
5419
|
+
*/
|
|
5420
|
+
'cargoCode'?: string;
|
|
5421
|
+
/**
|
|
5422
|
+
*
|
|
5423
|
+
* @type {string}
|
|
5424
|
+
* @memberof IOrderReturnUpdatePostRequest
|
|
5425
|
+
*/
|
|
5426
|
+
'cargoUrl'?: string;
|
|
5427
|
+
/**
|
|
5428
|
+
*
|
|
5429
|
+
* @type {number}
|
|
5430
|
+
* @memberof IOrderReturnUpdatePostRequest
|
|
5431
|
+
*/
|
|
5432
|
+
'price'?: number;
|
|
5301
5433
|
}
|
|
5302
5434
|
/**
|
|
5303
5435
|
*
|
|
@@ -7941,10 +8073,7 @@ export type OrderReturnStatusEnum = typeof OrderReturnStatusEnum[keyof typeof Or
|
|
|
7941
8073
|
*/
|
|
7942
8074
|
export declare const OrderStatusEnum: {
|
|
7943
8075
|
readonly CANCELLED: "cancelled";
|
|
7944
|
-
readonly
|
|
7945
|
-
readonly READY_TO_SHIP: "ready_to_ship";
|
|
7946
|
-
readonly SHIPPED: "shipped";
|
|
7947
|
-
readonly COMPLETED: "completed";
|
|
8076
|
+
readonly CREATED: "created";
|
|
7948
8077
|
};
|
|
7949
8078
|
export type OrderStatusEnum = typeof OrderStatusEnum[keyof typeof OrderStatusEnum];
|
|
7950
8079
|
/**
|
|
@@ -8873,22 +9002,16 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframe {
|
|
|
8873
9002
|
'note'?: string;
|
|
8874
9003
|
/**
|
|
8875
9004
|
*
|
|
8876
|
-
* @type {
|
|
8877
|
-
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
8878
|
-
*/
|
|
8879
|
-
'cargoCode'?: string;
|
|
8880
|
-
/**
|
|
8881
|
-
*
|
|
8882
|
-
* @type {string}
|
|
9005
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>}
|
|
8883
9006
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
8884
9007
|
*/
|
|
8885
|
-
'
|
|
9008
|
+
'returns': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner>;
|
|
8886
9009
|
/**
|
|
8887
9010
|
*
|
|
8888
|
-
* @type {Array<
|
|
9011
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>}
|
|
8889
9012
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframe
|
|
8890
9013
|
*/
|
|
8891
|
-
'
|
|
9014
|
+
'shipped': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner>;
|
|
8892
9015
|
/**
|
|
8893
9016
|
*
|
|
8894
9017
|
* @type {OrderPaymentStatusEnum}
|
|
@@ -8908,6 +9031,12 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner {
|
|
|
8908
9031
|
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
8909
9032
|
*/
|
|
8910
9033
|
'price': number;
|
|
9034
|
+
/**
|
|
9035
|
+
*
|
|
9036
|
+
* @type {number}
|
|
9037
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner
|
|
9038
|
+
*/
|
|
9039
|
+
'listPrice': number;
|
|
8911
9040
|
/**
|
|
8912
9041
|
*
|
|
8913
9042
|
* @type {number}
|
|
@@ -8975,18 +9104,6 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeProductsInner {
|
|
|
8975
9104
|
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
8976
9105
|
*/
|
|
8977
9106
|
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner {
|
|
8978
|
-
/**
|
|
8979
|
-
*
|
|
8980
|
-
* @type {string}
|
|
8981
|
-
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
8982
|
-
*/
|
|
8983
|
-
'returnedAt'?: string;
|
|
8984
|
-
/**
|
|
8985
|
-
*
|
|
8986
|
-
* @type {string}
|
|
8987
|
-
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner
|
|
8988
|
-
*/
|
|
8989
|
-
'createdAt': string;
|
|
8990
9107
|
/**
|
|
8991
9108
|
*
|
|
8992
9109
|
* @type {OrderReturnStatusEnum}
|
|
@@ -9030,6 +9147,74 @@ export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInner {
|
|
|
9030
9147
|
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner
|
|
9031
9148
|
*/
|
|
9032
9149
|
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner {
|
|
9150
|
+
/**
|
|
9151
|
+
*
|
|
9152
|
+
* @type {number}
|
|
9153
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner
|
|
9154
|
+
*/
|
|
9155
|
+
'amount': number;
|
|
9156
|
+
/**
|
|
9157
|
+
*
|
|
9158
|
+
* @type {PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInnerId}
|
|
9159
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner
|
|
9160
|
+
*/
|
|
9161
|
+
'_id': PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInnerId;
|
|
9162
|
+
}
|
|
9163
|
+
/**
|
|
9164
|
+
*
|
|
9165
|
+
* @export
|
|
9166
|
+
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInnerId
|
|
9167
|
+
*/
|
|
9168
|
+
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInnerId {
|
|
9169
|
+
}
|
|
9170
|
+
/**
|
|
9171
|
+
*
|
|
9172
|
+
* @export
|
|
9173
|
+
* @interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
9174
|
+
*/
|
|
9175
|
+
export interface PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner {
|
|
9176
|
+
/**
|
|
9177
|
+
*
|
|
9178
|
+
* @type {OrderReturnStatusEnum}
|
|
9179
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
9180
|
+
*/
|
|
9181
|
+
'status': OrderReturnStatusEnum;
|
|
9182
|
+
/**
|
|
9183
|
+
*
|
|
9184
|
+
* @type {string}
|
|
9185
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
9186
|
+
*/
|
|
9187
|
+
'zoneRateId': string;
|
|
9188
|
+
/**
|
|
9189
|
+
*
|
|
9190
|
+
* @type {string}
|
|
9191
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
9192
|
+
*/
|
|
9193
|
+
'warehouse': string;
|
|
9194
|
+
/**
|
|
9195
|
+
*
|
|
9196
|
+
* @type {string}
|
|
9197
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
9198
|
+
*/
|
|
9199
|
+
'cargoUrl'?: string;
|
|
9200
|
+
/**
|
|
9201
|
+
*
|
|
9202
|
+
* @type {string}
|
|
9203
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
9204
|
+
*/
|
|
9205
|
+
'cargoCode'?: string;
|
|
9206
|
+
/**
|
|
9207
|
+
*
|
|
9208
|
+
* @type {Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>}
|
|
9209
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
9210
|
+
*/
|
|
9211
|
+
'products': Array<PickIOrderExcludeKeyofIOrderHtmlOrIframeReturnsInnerProductsInner>;
|
|
9212
|
+
/**
|
|
9213
|
+
*
|
|
9214
|
+
* @type {string}
|
|
9215
|
+
* @memberof PickIOrderExcludeKeyofIOrderHtmlOrIframeShippedInner
|
|
9216
|
+
*/
|
|
9217
|
+
'_id': string;
|
|
9033
9218
|
}
|
|
9034
9219
|
/**
|
|
9035
9220
|
* From T, pick a set of properties whose keys are in the union K
|
|
@@ -15138,17 +15323,19 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15138
15323
|
/**
|
|
15139
15324
|
*
|
|
15140
15325
|
* @param {string} id
|
|
15326
|
+
* @param {IOrderReturnPostRequest} iOrderReturnPostRequest
|
|
15141
15327
|
* @param {*} [options] Override http request option.
|
|
15142
15328
|
* @throws {RequiredError}
|
|
15143
15329
|
*/
|
|
15144
|
-
createReturn: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15330
|
+
createReturn: (id: string, iOrderReturnPostRequest: IOrderReturnPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15145
15331
|
/**
|
|
15146
15332
|
*
|
|
15147
15333
|
* @param {string} id
|
|
15334
|
+
* @param {IOrderReturnAdminPostRequest} iOrderReturnAdminPostRequest
|
|
15148
15335
|
* @param {*} [options] Override http request option.
|
|
15149
15336
|
* @throws {RequiredError}
|
|
15150
15337
|
*/
|
|
15151
|
-
createReturnAdmin: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15338
|
+
createReturnAdmin: (id: string, iOrderReturnAdminPostRequest: IOrderReturnAdminPostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15152
15339
|
/**
|
|
15153
15340
|
*
|
|
15154
15341
|
* @param {number} [page]
|
|
@@ -15191,18 +15378,20 @@ export declare const OrderApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15191
15378
|
/**
|
|
15192
15379
|
*
|
|
15193
15380
|
* @param {string} id
|
|
15381
|
+
* @param {IOrderPatchRequest} iOrderPatchRequest
|
|
15194
15382
|
* @param {*} [options] Override http request option.
|
|
15195
15383
|
* @throws {RequiredError}
|
|
15196
15384
|
*/
|
|
15197
|
-
updateOrder: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15385
|
+
updateOrder: (id: string, iOrderPatchRequest: IOrderPatchRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15198
15386
|
/**
|
|
15199
15387
|
*
|
|
15200
15388
|
* @param {string} orderId
|
|
15201
15389
|
* @param {string} returnId
|
|
15390
|
+
* @param {IOrderReturnUpdatePostRequest} iOrderReturnUpdatePostRequest
|
|
15202
15391
|
* @param {*} [options] Override http request option.
|
|
15203
15392
|
* @throws {RequiredError}
|
|
15204
15393
|
*/
|
|
15205
|
-
updateReturn: (orderId: string, returnId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15394
|
+
updateReturn: (orderId: string, returnId: string, iOrderReturnUpdatePostRequest: IOrderReturnUpdatePostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15206
15395
|
};
|
|
15207
15396
|
/**
|
|
15208
15397
|
* OrderApi - functional programming interface
|
|
@@ -15219,17 +15408,19 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
15219
15408
|
/**
|
|
15220
15409
|
*
|
|
15221
15410
|
* @param {string} id
|
|
15411
|
+
* @param {IOrderReturnPostRequest} iOrderReturnPostRequest
|
|
15222
15412
|
* @param {*} [options] Override http request option.
|
|
15223
15413
|
* @throws {RequiredError}
|
|
15224
15414
|
*/
|
|
15225
|
-
createReturn(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15415
|
+
createReturn(id: string, iOrderReturnPostRequest: IOrderReturnPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15226
15416
|
/**
|
|
15227
15417
|
*
|
|
15228
15418
|
* @param {string} id
|
|
15419
|
+
* @param {IOrderReturnAdminPostRequest} iOrderReturnAdminPostRequest
|
|
15229
15420
|
* @param {*} [options] Override http request option.
|
|
15230
15421
|
* @throws {RequiredError}
|
|
15231
15422
|
*/
|
|
15232
|
-
createReturnAdmin(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15423
|
+
createReturnAdmin(id: string, iOrderReturnAdminPostRequest: IOrderReturnAdminPostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15233
15424
|
/**
|
|
15234
15425
|
*
|
|
15235
15426
|
* @param {number} [page]
|
|
@@ -15272,18 +15463,20 @@ export declare const OrderApiFp: (configuration?: Configuration) => {
|
|
|
15272
15463
|
/**
|
|
15273
15464
|
*
|
|
15274
15465
|
* @param {string} id
|
|
15466
|
+
* @param {IOrderPatchRequest} iOrderPatchRequest
|
|
15275
15467
|
* @param {*} [options] Override http request option.
|
|
15276
15468
|
* @throws {RequiredError}
|
|
15277
15469
|
*/
|
|
15278
|
-
updateOrder(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15470
|
+
updateOrder(id: string, iOrderPatchRequest: IOrderPatchRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15279
15471
|
/**
|
|
15280
15472
|
*
|
|
15281
15473
|
* @param {string} orderId
|
|
15282
15474
|
* @param {string} returnId
|
|
15475
|
+
* @param {IOrderReturnUpdatePostRequest} iOrderReturnUpdatePostRequest
|
|
15283
15476
|
* @param {*} [options] Override http request option.
|
|
15284
15477
|
* @throws {RequiredError}
|
|
15285
15478
|
*/
|
|
15286
|
-
updateReturn(orderId: string, returnId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15479
|
+
updateReturn(orderId: string, returnId: string, iOrderReturnUpdatePostRequest: IOrderReturnUpdatePostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15287
15480
|
};
|
|
15288
15481
|
/**
|
|
15289
15482
|
* OrderApi - factory interface
|
|
@@ -15372,6 +15565,12 @@ export interface OrderApiCreateReturnRequest {
|
|
|
15372
15565
|
* @memberof OrderApiCreateReturn
|
|
15373
15566
|
*/
|
|
15374
15567
|
readonly id: string;
|
|
15568
|
+
/**
|
|
15569
|
+
*
|
|
15570
|
+
* @type {IOrderReturnPostRequest}
|
|
15571
|
+
* @memberof OrderApiCreateReturn
|
|
15572
|
+
*/
|
|
15573
|
+
readonly iOrderReturnPostRequest: IOrderReturnPostRequest;
|
|
15375
15574
|
}
|
|
15376
15575
|
/**
|
|
15377
15576
|
* Request parameters for createReturnAdmin operation in OrderApi.
|
|
@@ -15385,6 +15584,12 @@ export interface OrderApiCreateReturnAdminRequest {
|
|
|
15385
15584
|
* @memberof OrderApiCreateReturnAdmin
|
|
15386
15585
|
*/
|
|
15387
15586
|
readonly id: string;
|
|
15587
|
+
/**
|
|
15588
|
+
*
|
|
15589
|
+
* @type {IOrderReturnAdminPostRequest}
|
|
15590
|
+
* @memberof OrderApiCreateReturnAdmin
|
|
15591
|
+
*/
|
|
15592
|
+
readonly iOrderReturnAdminPostRequest: IOrderReturnAdminPostRequest;
|
|
15388
15593
|
}
|
|
15389
15594
|
/**
|
|
15390
15595
|
* Request parameters for getMyOrders operation in OrderApi.
|
|
@@ -15545,6 +15750,12 @@ export interface OrderApiUpdateOrderRequest {
|
|
|
15545
15750
|
* @memberof OrderApiUpdateOrder
|
|
15546
15751
|
*/
|
|
15547
15752
|
readonly id: string;
|
|
15753
|
+
/**
|
|
15754
|
+
*
|
|
15755
|
+
* @type {IOrderPatchRequest}
|
|
15756
|
+
* @memberof OrderApiUpdateOrder
|
|
15757
|
+
*/
|
|
15758
|
+
readonly iOrderPatchRequest: IOrderPatchRequest;
|
|
15548
15759
|
}
|
|
15549
15760
|
/**
|
|
15550
15761
|
* Request parameters for updateReturn operation in OrderApi.
|
|
@@ -15564,6 +15775,12 @@ export interface OrderApiUpdateReturnRequest {
|
|
|
15564
15775
|
* @memberof OrderApiUpdateReturn
|
|
15565
15776
|
*/
|
|
15566
15777
|
readonly returnId: string;
|
|
15778
|
+
/**
|
|
15779
|
+
*
|
|
15780
|
+
* @type {IOrderReturnUpdatePostRequest}
|
|
15781
|
+
* @memberof OrderApiUpdateReturn
|
|
15782
|
+
*/
|
|
15783
|
+
readonly iOrderReturnUpdatePostRequest: IOrderReturnUpdatePostRequest;
|
|
15567
15784
|
}
|
|
15568
15785
|
/**
|
|
15569
15786
|
* OrderApi - object-oriented interface
|
package/dist/api/api.js
CHANGED
|
@@ -654,10 +654,7 @@ exports.OrderReturnStatusEnum = {
|
|
|
654
654
|
*/
|
|
655
655
|
exports.OrderStatusEnum = {
|
|
656
656
|
CANCELLED: 'cancelled',
|
|
657
|
-
|
|
658
|
-
READY_TO_SHIP: 'ready_to_ship',
|
|
659
|
-
SHIPPED: 'shipped',
|
|
660
|
-
COMPLETED: 'completed'
|
|
657
|
+
CREATED: 'created'
|
|
661
658
|
};
|
|
662
659
|
/**
|
|
663
660
|
*
|
|
@@ -6964,12 +6961,15 @@ const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
6964
6961
|
/**
|
|
6965
6962
|
*
|
|
6966
6963
|
* @param {string} id
|
|
6964
|
+
* @param {IOrderReturnPostRequest} iOrderReturnPostRequest
|
|
6967
6965
|
* @param {*} [options] Override http request option.
|
|
6968
6966
|
* @throws {RequiredError}
|
|
6969
6967
|
*/
|
|
6970
|
-
createReturn: async (id, options = {}) => {
|
|
6968
|
+
createReturn: async (id, iOrderReturnPostRequest, options = {}) => {
|
|
6971
6969
|
// verify required parameter 'id' is not null or undefined
|
|
6972
6970
|
(0, common_1.assertParamExists)('createReturn', 'id', id);
|
|
6971
|
+
// verify required parameter 'iOrderReturnPostRequest' is not null or undefined
|
|
6972
|
+
(0, common_1.assertParamExists)('createReturn', 'iOrderReturnPostRequest', iOrderReturnPostRequest);
|
|
6973
6973
|
const localVarPath = `/api/orders/{id}/return`
|
|
6974
6974
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6975
6975
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -6981,9 +6981,11 @@ const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
6981
6981
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
6982
6982
|
const localVarHeaderParameter = {};
|
|
6983
6983
|
const localVarQueryParameter = {};
|
|
6984
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6984
6985
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
6985
6986
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6986
6987
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
6988
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(iOrderReturnPostRequest, localVarRequestOptions, configuration);
|
|
6987
6989
|
return {
|
|
6988
6990
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
6989
6991
|
options: localVarRequestOptions,
|
|
@@ -6992,12 +6994,15 @@ const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
6992
6994
|
/**
|
|
6993
6995
|
*
|
|
6994
6996
|
* @param {string} id
|
|
6997
|
+
* @param {IOrderReturnAdminPostRequest} iOrderReturnAdminPostRequest
|
|
6995
6998
|
* @param {*} [options] Override http request option.
|
|
6996
6999
|
* @throws {RequiredError}
|
|
6997
7000
|
*/
|
|
6998
|
-
createReturnAdmin: async (id, options = {}) => {
|
|
7001
|
+
createReturnAdmin: async (id, iOrderReturnAdminPostRequest, options = {}) => {
|
|
6999
7002
|
// verify required parameter 'id' is not null or undefined
|
|
7000
7003
|
(0, common_1.assertParamExists)('createReturnAdmin', 'id', id);
|
|
7004
|
+
// verify required parameter 'iOrderReturnAdminPostRequest' is not null or undefined
|
|
7005
|
+
(0, common_1.assertParamExists)('createReturnAdmin', 'iOrderReturnAdminPostRequest', iOrderReturnAdminPostRequest);
|
|
7001
7006
|
const localVarPath = `/api/orders/{id}/return-admin`
|
|
7002
7007
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
7003
7008
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -7009,9 +7014,11 @@ const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7009
7014
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
7010
7015
|
const localVarHeaderParameter = {};
|
|
7011
7016
|
const localVarQueryParameter = {};
|
|
7017
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7012
7018
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7013
7019
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7014
7020
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
7021
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(iOrderReturnAdminPostRequest, localVarRequestOptions, configuration);
|
|
7015
7022
|
return {
|
|
7016
7023
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7017
7024
|
options: localVarRequestOptions,
|
|
@@ -7186,12 +7193,15 @@ const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7186
7193
|
/**
|
|
7187
7194
|
*
|
|
7188
7195
|
* @param {string} id
|
|
7196
|
+
* @param {IOrderPatchRequest} iOrderPatchRequest
|
|
7189
7197
|
* @param {*} [options] Override http request option.
|
|
7190
7198
|
* @throws {RequiredError}
|
|
7191
7199
|
*/
|
|
7192
|
-
updateOrder: async (id, options = {}) => {
|
|
7200
|
+
updateOrder: async (id, iOrderPatchRequest, options = {}) => {
|
|
7193
7201
|
// verify required parameter 'id' is not null or undefined
|
|
7194
7202
|
(0, common_1.assertParamExists)('updateOrder', 'id', id);
|
|
7203
|
+
// verify required parameter 'iOrderPatchRequest' is not null or undefined
|
|
7204
|
+
(0, common_1.assertParamExists)('updateOrder', 'iOrderPatchRequest', iOrderPatchRequest);
|
|
7195
7205
|
const localVarPath = `/api/orders/{id}`
|
|
7196
7206
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
7197
7207
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -7200,12 +7210,14 @@ const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7200
7210
|
if (configuration) {
|
|
7201
7211
|
baseOptions = configuration.baseOptions;
|
|
7202
7212
|
}
|
|
7203
|
-
const localVarRequestOptions = { method: '
|
|
7213
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options };
|
|
7204
7214
|
const localVarHeaderParameter = {};
|
|
7205
7215
|
const localVarQueryParameter = {};
|
|
7216
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7206
7217
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7207
7218
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7208
7219
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
7220
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(iOrderPatchRequest, localVarRequestOptions, configuration);
|
|
7209
7221
|
return {
|
|
7210
7222
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7211
7223
|
options: localVarRequestOptions,
|
|
@@ -7215,14 +7227,17 @@ const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7215
7227
|
*
|
|
7216
7228
|
* @param {string} orderId
|
|
7217
7229
|
* @param {string} returnId
|
|
7230
|
+
* @param {IOrderReturnUpdatePostRequest} iOrderReturnUpdatePostRequest
|
|
7218
7231
|
* @param {*} [options] Override http request option.
|
|
7219
7232
|
* @throws {RequiredError}
|
|
7220
7233
|
*/
|
|
7221
|
-
updateReturn: async (orderId, returnId, options = {}) => {
|
|
7234
|
+
updateReturn: async (orderId, returnId, iOrderReturnUpdatePostRequest, options = {}) => {
|
|
7222
7235
|
// verify required parameter 'orderId' is not null or undefined
|
|
7223
7236
|
(0, common_1.assertParamExists)('updateReturn', 'orderId', orderId);
|
|
7224
7237
|
// verify required parameter 'returnId' is not null or undefined
|
|
7225
7238
|
(0, common_1.assertParamExists)('updateReturn', 'returnId', returnId);
|
|
7239
|
+
// verify required parameter 'iOrderReturnUpdatePostRequest' is not null or undefined
|
|
7240
|
+
(0, common_1.assertParamExists)('updateReturn', 'iOrderReturnUpdatePostRequest', iOrderReturnUpdatePostRequest);
|
|
7226
7241
|
const localVarPath = `/api/orders/{orderId}/return-update/{returnId}`
|
|
7227
7242
|
.replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)))
|
|
7228
7243
|
.replace(`{${"returnId"}}`, encodeURIComponent(String(returnId)));
|
|
@@ -7232,12 +7247,14 @@ const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7232
7247
|
if (configuration) {
|
|
7233
7248
|
baseOptions = configuration.baseOptions;
|
|
7234
7249
|
}
|
|
7235
|
-
const localVarRequestOptions = { method: '
|
|
7250
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options };
|
|
7236
7251
|
const localVarHeaderParameter = {};
|
|
7237
7252
|
const localVarQueryParameter = {};
|
|
7253
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7238
7254
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
7239
7255
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7240
7256
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
7257
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(iOrderReturnUpdatePostRequest, localVarRequestOptions, configuration);
|
|
7241
7258
|
return {
|
|
7242
7259
|
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
7243
7260
|
options: localVarRequestOptions,
|
|
@@ -7268,11 +7285,12 @@ const OrderApiFp = function (configuration) {
|
|
|
7268
7285
|
/**
|
|
7269
7286
|
*
|
|
7270
7287
|
* @param {string} id
|
|
7288
|
+
* @param {IOrderReturnPostRequest} iOrderReturnPostRequest
|
|
7271
7289
|
* @param {*} [options] Override http request option.
|
|
7272
7290
|
* @throws {RequiredError}
|
|
7273
7291
|
*/
|
|
7274
|
-
async createReturn(id, options) {
|
|
7275
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createReturn(id, options);
|
|
7292
|
+
async createReturn(id, iOrderReturnPostRequest, options) {
|
|
7293
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReturn(id, iOrderReturnPostRequest, options);
|
|
7276
7294
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7277
7295
|
const localVarOperationServerBasePath = base_1.operationServerMap['OrderApi.createReturn']?.[localVarOperationServerIndex]?.url;
|
|
7278
7296
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7280,11 +7298,12 @@ const OrderApiFp = function (configuration) {
|
|
|
7280
7298
|
/**
|
|
7281
7299
|
*
|
|
7282
7300
|
* @param {string} id
|
|
7301
|
+
* @param {IOrderReturnAdminPostRequest} iOrderReturnAdminPostRequest
|
|
7283
7302
|
* @param {*} [options] Override http request option.
|
|
7284
7303
|
* @throws {RequiredError}
|
|
7285
7304
|
*/
|
|
7286
|
-
async createReturnAdmin(id, options) {
|
|
7287
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createReturnAdmin(id, options);
|
|
7305
|
+
async createReturnAdmin(id, iOrderReturnAdminPostRequest, options) {
|
|
7306
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReturnAdmin(id, iOrderReturnAdminPostRequest, options);
|
|
7288
7307
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7289
7308
|
const localVarOperationServerBasePath = base_1.operationServerMap['OrderApi.createReturnAdmin']?.[localVarOperationServerIndex]?.url;
|
|
7290
7309
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7346,11 +7365,12 @@ const OrderApiFp = function (configuration) {
|
|
|
7346
7365
|
/**
|
|
7347
7366
|
*
|
|
7348
7367
|
* @param {string} id
|
|
7368
|
+
* @param {IOrderPatchRequest} iOrderPatchRequest
|
|
7349
7369
|
* @param {*} [options] Override http request option.
|
|
7350
7370
|
* @throws {RequiredError}
|
|
7351
7371
|
*/
|
|
7352
|
-
async updateOrder(id, options) {
|
|
7353
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateOrder(id, options);
|
|
7372
|
+
async updateOrder(id, iOrderPatchRequest, options) {
|
|
7373
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateOrder(id, iOrderPatchRequest, options);
|
|
7354
7374
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7355
7375
|
const localVarOperationServerBasePath = base_1.operationServerMap['OrderApi.updateOrder']?.[localVarOperationServerIndex]?.url;
|
|
7356
7376
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7359,11 +7379,12 @@ const OrderApiFp = function (configuration) {
|
|
|
7359
7379
|
*
|
|
7360
7380
|
* @param {string} orderId
|
|
7361
7381
|
* @param {string} returnId
|
|
7382
|
+
* @param {IOrderReturnUpdatePostRequest} iOrderReturnUpdatePostRequest
|
|
7362
7383
|
* @param {*} [options] Override http request option.
|
|
7363
7384
|
* @throws {RequiredError}
|
|
7364
7385
|
*/
|
|
7365
|
-
async updateReturn(orderId, returnId, options) {
|
|
7366
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReturn(orderId, returnId, options);
|
|
7386
|
+
async updateReturn(orderId, returnId, iOrderReturnUpdatePostRequest, options) {
|
|
7387
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReturn(orderId, returnId, iOrderReturnUpdatePostRequest, options);
|
|
7367
7388
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7368
7389
|
const localVarOperationServerBasePath = base_1.operationServerMap['OrderApi.updateReturn']?.[localVarOperationServerIndex]?.url;
|
|
7369
7390
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7394,7 +7415,7 @@ const OrderApiFactory = function (configuration, basePath, axios) {
|
|
|
7394
7415
|
* @throws {RequiredError}
|
|
7395
7416
|
*/
|
|
7396
7417
|
createReturn(requestParameters, options) {
|
|
7397
|
-
return localVarFp.createReturn(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
7418
|
+
return localVarFp.createReturn(requestParameters.id, requestParameters.iOrderReturnPostRequest, options).then((request) => request(axios, basePath));
|
|
7398
7419
|
},
|
|
7399
7420
|
/**
|
|
7400
7421
|
*
|
|
@@ -7403,7 +7424,7 @@ const OrderApiFactory = function (configuration, basePath, axios) {
|
|
|
7403
7424
|
* @throws {RequiredError}
|
|
7404
7425
|
*/
|
|
7405
7426
|
createReturnAdmin(requestParameters, options) {
|
|
7406
|
-
return localVarFp.createReturnAdmin(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
7427
|
+
return localVarFp.createReturnAdmin(requestParameters.id, requestParameters.iOrderReturnAdminPostRequest, options).then((request) => request(axios, basePath));
|
|
7407
7428
|
},
|
|
7408
7429
|
/**
|
|
7409
7430
|
*
|
|
@@ -7439,7 +7460,7 @@ const OrderApiFactory = function (configuration, basePath, axios) {
|
|
|
7439
7460
|
* @throws {RequiredError}
|
|
7440
7461
|
*/
|
|
7441
7462
|
updateOrder(requestParameters, options) {
|
|
7442
|
-
return localVarFp.updateOrder(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
7463
|
+
return localVarFp.updateOrder(requestParameters.id, requestParameters.iOrderPatchRequest, options).then((request) => request(axios, basePath));
|
|
7443
7464
|
},
|
|
7444
7465
|
/**
|
|
7445
7466
|
*
|
|
@@ -7448,7 +7469,7 @@ const OrderApiFactory = function (configuration, basePath, axios) {
|
|
|
7448
7469
|
* @throws {RequiredError}
|
|
7449
7470
|
*/
|
|
7450
7471
|
updateReturn(requestParameters, options) {
|
|
7451
|
-
return localVarFp.updateReturn(requestParameters.orderId, requestParameters.returnId, options).then((request) => request(axios, basePath));
|
|
7472
|
+
return localVarFp.updateReturn(requestParameters.orderId, requestParameters.returnId, requestParameters.iOrderReturnUpdatePostRequest, options).then((request) => request(axios, basePath));
|
|
7452
7473
|
},
|
|
7453
7474
|
};
|
|
7454
7475
|
};
|
|
@@ -7478,7 +7499,7 @@ class OrderApi extends base_1.BaseAPI {
|
|
|
7478
7499
|
* @memberof OrderApi
|
|
7479
7500
|
*/
|
|
7480
7501
|
createReturn(requestParameters, options) {
|
|
7481
|
-
return (0, exports.OrderApiFp)(this.configuration).createReturn(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7502
|
+
return (0, exports.OrderApiFp)(this.configuration).createReturn(requestParameters.id, requestParameters.iOrderReturnPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7482
7503
|
}
|
|
7483
7504
|
/**
|
|
7484
7505
|
*
|
|
@@ -7488,7 +7509,7 @@ class OrderApi extends base_1.BaseAPI {
|
|
|
7488
7509
|
* @memberof OrderApi
|
|
7489
7510
|
*/
|
|
7490
7511
|
createReturnAdmin(requestParameters, options) {
|
|
7491
|
-
return (0, exports.OrderApiFp)(this.configuration).createReturnAdmin(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7512
|
+
return (0, exports.OrderApiFp)(this.configuration).createReturnAdmin(requestParameters.id, requestParameters.iOrderReturnAdminPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7492
7513
|
}
|
|
7493
7514
|
/**
|
|
7494
7515
|
*
|
|
@@ -7528,7 +7549,7 @@ class OrderApi extends base_1.BaseAPI {
|
|
|
7528
7549
|
* @memberof OrderApi
|
|
7529
7550
|
*/
|
|
7530
7551
|
updateOrder(requestParameters, options) {
|
|
7531
|
-
return (0, exports.OrderApiFp)(this.configuration).updateOrder(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7552
|
+
return (0, exports.OrderApiFp)(this.configuration).updateOrder(requestParameters.id, requestParameters.iOrderPatchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7532
7553
|
}
|
|
7533
7554
|
/**
|
|
7534
7555
|
*
|
|
@@ -7538,7 +7559,7 @@ class OrderApi extends base_1.BaseAPI {
|
|
|
7538
7559
|
* @memberof OrderApi
|
|
7539
7560
|
*/
|
|
7540
7561
|
updateReturn(requestParameters, options) {
|
|
7541
|
-
return (0, exports.OrderApiFp)(this.configuration).updateReturn(requestParameters.orderId, requestParameters.returnId, options).then((request) => request(this.axios, this.basePath));
|
|
7562
|
+
return (0, exports.OrderApiFp)(this.configuration).updateReturn(requestParameters.orderId, requestParameters.returnId, requestParameters.iOrderReturnUpdatePostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7542
7563
|
}
|
|
7543
7564
|
}
|
|
7544
7565
|
exports.OrderApi = OrderApi;
|
package/dist/api/api.mjs
CHANGED
|
@@ -643,10 +643,7 @@ export const OrderReturnStatusEnum = {
|
|
|
643
643
|
*/
|
|
644
644
|
export const OrderStatusEnum = {
|
|
645
645
|
CANCELLED: 'cancelled',
|
|
646
|
-
|
|
647
|
-
READY_TO_SHIP: 'ready_to_ship',
|
|
648
|
-
SHIPPED: 'shipped',
|
|
649
|
-
COMPLETED: 'completed'
|
|
646
|
+
CREATED: 'created'
|
|
650
647
|
};
|
|
651
648
|
/**
|
|
652
649
|
*
|
|
@@ -6909,12 +6906,15 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
6909
6906
|
/**
|
|
6910
6907
|
*
|
|
6911
6908
|
* @param {string} id
|
|
6909
|
+
* @param {IOrderReturnPostRequest} iOrderReturnPostRequest
|
|
6912
6910
|
* @param {*} [options] Override http request option.
|
|
6913
6911
|
* @throws {RequiredError}
|
|
6914
6912
|
*/
|
|
6915
|
-
createReturn: async (id, options = {}) => {
|
|
6913
|
+
createReturn: async (id, iOrderReturnPostRequest, options = {}) => {
|
|
6916
6914
|
// verify required parameter 'id' is not null or undefined
|
|
6917
6915
|
assertParamExists('createReturn', 'id', id);
|
|
6916
|
+
// verify required parameter 'iOrderReturnPostRequest' is not null or undefined
|
|
6917
|
+
assertParamExists('createReturn', 'iOrderReturnPostRequest', iOrderReturnPostRequest);
|
|
6918
6918
|
const localVarPath = `/api/orders/{id}/return`
|
|
6919
6919
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6920
6920
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -6926,9 +6926,11 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
6926
6926
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
6927
6927
|
const localVarHeaderParameter = {};
|
|
6928
6928
|
const localVarQueryParameter = {};
|
|
6929
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6929
6930
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6930
6931
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6931
6932
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
6933
|
+
localVarRequestOptions.data = serializeDataIfNeeded(iOrderReturnPostRequest, localVarRequestOptions, configuration);
|
|
6932
6934
|
return {
|
|
6933
6935
|
url: toPathString(localVarUrlObj),
|
|
6934
6936
|
options: localVarRequestOptions,
|
|
@@ -6937,12 +6939,15 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
6937
6939
|
/**
|
|
6938
6940
|
*
|
|
6939
6941
|
* @param {string} id
|
|
6942
|
+
* @param {IOrderReturnAdminPostRequest} iOrderReturnAdminPostRequest
|
|
6940
6943
|
* @param {*} [options] Override http request option.
|
|
6941
6944
|
* @throws {RequiredError}
|
|
6942
6945
|
*/
|
|
6943
|
-
createReturnAdmin: async (id, options = {}) => {
|
|
6946
|
+
createReturnAdmin: async (id, iOrderReturnAdminPostRequest, options = {}) => {
|
|
6944
6947
|
// verify required parameter 'id' is not null or undefined
|
|
6945
6948
|
assertParamExists('createReturnAdmin', 'id', id);
|
|
6949
|
+
// verify required parameter 'iOrderReturnAdminPostRequest' is not null or undefined
|
|
6950
|
+
assertParamExists('createReturnAdmin', 'iOrderReturnAdminPostRequest', iOrderReturnAdminPostRequest);
|
|
6946
6951
|
const localVarPath = `/api/orders/{id}/return-admin`
|
|
6947
6952
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
6948
6953
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -6954,9 +6959,11 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
6954
6959
|
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options };
|
|
6955
6960
|
const localVarHeaderParameter = {};
|
|
6956
6961
|
const localVarQueryParameter = {};
|
|
6962
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6957
6963
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6958
6964
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6959
6965
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
6966
|
+
localVarRequestOptions.data = serializeDataIfNeeded(iOrderReturnAdminPostRequest, localVarRequestOptions, configuration);
|
|
6960
6967
|
return {
|
|
6961
6968
|
url: toPathString(localVarUrlObj),
|
|
6962
6969
|
options: localVarRequestOptions,
|
|
@@ -7131,12 +7138,15 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7131
7138
|
/**
|
|
7132
7139
|
*
|
|
7133
7140
|
* @param {string} id
|
|
7141
|
+
* @param {IOrderPatchRequest} iOrderPatchRequest
|
|
7134
7142
|
* @param {*} [options] Override http request option.
|
|
7135
7143
|
* @throws {RequiredError}
|
|
7136
7144
|
*/
|
|
7137
|
-
updateOrder: async (id, options = {}) => {
|
|
7145
|
+
updateOrder: async (id, iOrderPatchRequest, options = {}) => {
|
|
7138
7146
|
// verify required parameter 'id' is not null or undefined
|
|
7139
7147
|
assertParamExists('updateOrder', 'id', id);
|
|
7148
|
+
// verify required parameter 'iOrderPatchRequest' is not null or undefined
|
|
7149
|
+
assertParamExists('updateOrder', 'iOrderPatchRequest', iOrderPatchRequest);
|
|
7140
7150
|
const localVarPath = `/api/orders/{id}`
|
|
7141
7151
|
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
7142
7152
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
@@ -7145,12 +7155,14 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7145
7155
|
if (configuration) {
|
|
7146
7156
|
baseOptions = configuration.baseOptions;
|
|
7147
7157
|
}
|
|
7148
|
-
const localVarRequestOptions = { method: '
|
|
7158
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options };
|
|
7149
7159
|
const localVarHeaderParameter = {};
|
|
7150
7160
|
const localVarQueryParameter = {};
|
|
7161
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7151
7162
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7152
7163
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7153
7164
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
7165
|
+
localVarRequestOptions.data = serializeDataIfNeeded(iOrderPatchRequest, localVarRequestOptions, configuration);
|
|
7154
7166
|
return {
|
|
7155
7167
|
url: toPathString(localVarUrlObj),
|
|
7156
7168
|
options: localVarRequestOptions,
|
|
@@ -7160,14 +7172,17 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7160
7172
|
*
|
|
7161
7173
|
* @param {string} orderId
|
|
7162
7174
|
* @param {string} returnId
|
|
7175
|
+
* @param {IOrderReturnUpdatePostRequest} iOrderReturnUpdatePostRequest
|
|
7163
7176
|
* @param {*} [options] Override http request option.
|
|
7164
7177
|
* @throws {RequiredError}
|
|
7165
7178
|
*/
|
|
7166
|
-
updateReturn: async (orderId, returnId, options = {}) => {
|
|
7179
|
+
updateReturn: async (orderId, returnId, iOrderReturnUpdatePostRequest, options = {}) => {
|
|
7167
7180
|
// verify required parameter 'orderId' is not null or undefined
|
|
7168
7181
|
assertParamExists('updateReturn', 'orderId', orderId);
|
|
7169
7182
|
// verify required parameter 'returnId' is not null or undefined
|
|
7170
7183
|
assertParamExists('updateReturn', 'returnId', returnId);
|
|
7184
|
+
// verify required parameter 'iOrderReturnUpdatePostRequest' is not null or undefined
|
|
7185
|
+
assertParamExists('updateReturn', 'iOrderReturnUpdatePostRequest', iOrderReturnUpdatePostRequest);
|
|
7171
7186
|
const localVarPath = `/api/orders/{orderId}/return-update/{returnId}`
|
|
7172
7187
|
.replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)))
|
|
7173
7188
|
.replace(`{${"returnId"}}`, encodeURIComponent(String(returnId)));
|
|
@@ -7177,12 +7192,14 @@ export const OrderApiAxiosParamCreator = function (configuration) {
|
|
|
7177
7192
|
if (configuration) {
|
|
7178
7193
|
baseOptions = configuration.baseOptions;
|
|
7179
7194
|
}
|
|
7180
|
-
const localVarRequestOptions = { method: '
|
|
7195
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options };
|
|
7181
7196
|
const localVarHeaderParameter = {};
|
|
7182
7197
|
const localVarQueryParameter = {};
|
|
7198
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7183
7199
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7184
7200
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7185
7201
|
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
7202
|
+
localVarRequestOptions.data = serializeDataIfNeeded(iOrderReturnUpdatePostRequest, localVarRequestOptions, configuration);
|
|
7186
7203
|
return {
|
|
7187
7204
|
url: toPathString(localVarUrlObj),
|
|
7188
7205
|
options: localVarRequestOptions,
|
|
@@ -7212,11 +7229,12 @@ export const OrderApiFp = function (configuration) {
|
|
|
7212
7229
|
/**
|
|
7213
7230
|
*
|
|
7214
7231
|
* @param {string} id
|
|
7232
|
+
* @param {IOrderReturnPostRequest} iOrderReturnPostRequest
|
|
7215
7233
|
* @param {*} [options] Override http request option.
|
|
7216
7234
|
* @throws {RequiredError}
|
|
7217
7235
|
*/
|
|
7218
|
-
async createReturn(id, options) {
|
|
7219
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createReturn(id, options);
|
|
7236
|
+
async createReturn(id, iOrderReturnPostRequest, options) {
|
|
7237
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReturn(id, iOrderReturnPostRequest, options);
|
|
7220
7238
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7221
7239
|
const localVarOperationServerBasePath = operationServerMap['OrderApi.createReturn']?.[localVarOperationServerIndex]?.url;
|
|
7222
7240
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7224,11 +7242,12 @@ export const OrderApiFp = function (configuration) {
|
|
|
7224
7242
|
/**
|
|
7225
7243
|
*
|
|
7226
7244
|
* @param {string} id
|
|
7245
|
+
* @param {IOrderReturnAdminPostRequest} iOrderReturnAdminPostRequest
|
|
7227
7246
|
* @param {*} [options] Override http request option.
|
|
7228
7247
|
* @throws {RequiredError}
|
|
7229
7248
|
*/
|
|
7230
|
-
async createReturnAdmin(id, options) {
|
|
7231
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.createReturnAdmin(id, options);
|
|
7249
|
+
async createReturnAdmin(id, iOrderReturnAdminPostRequest, options) {
|
|
7250
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.createReturnAdmin(id, iOrderReturnAdminPostRequest, options);
|
|
7232
7251
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7233
7252
|
const localVarOperationServerBasePath = operationServerMap['OrderApi.createReturnAdmin']?.[localVarOperationServerIndex]?.url;
|
|
7234
7253
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7290,11 +7309,12 @@ export const OrderApiFp = function (configuration) {
|
|
|
7290
7309
|
/**
|
|
7291
7310
|
*
|
|
7292
7311
|
* @param {string} id
|
|
7312
|
+
* @param {IOrderPatchRequest} iOrderPatchRequest
|
|
7293
7313
|
* @param {*} [options] Override http request option.
|
|
7294
7314
|
* @throws {RequiredError}
|
|
7295
7315
|
*/
|
|
7296
|
-
async updateOrder(id, options) {
|
|
7297
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateOrder(id, options);
|
|
7316
|
+
async updateOrder(id, iOrderPatchRequest, options) {
|
|
7317
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateOrder(id, iOrderPatchRequest, options);
|
|
7298
7318
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7299
7319
|
const localVarOperationServerBasePath = operationServerMap['OrderApi.updateOrder']?.[localVarOperationServerIndex]?.url;
|
|
7300
7320
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7303,11 +7323,12 @@ export const OrderApiFp = function (configuration) {
|
|
|
7303
7323
|
*
|
|
7304
7324
|
* @param {string} orderId
|
|
7305
7325
|
* @param {string} returnId
|
|
7326
|
+
* @param {IOrderReturnUpdatePostRequest} iOrderReturnUpdatePostRequest
|
|
7306
7327
|
* @param {*} [options] Override http request option.
|
|
7307
7328
|
* @throws {RequiredError}
|
|
7308
7329
|
*/
|
|
7309
|
-
async updateReturn(orderId, returnId, options) {
|
|
7310
|
-
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReturn(orderId, returnId, options);
|
|
7330
|
+
async updateReturn(orderId, returnId, iOrderReturnUpdatePostRequest, options) {
|
|
7331
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateReturn(orderId, returnId, iOrderReturnUpdatePostRequest, options);
|
|
7311
7332
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
7312
7333
|
const localVarOperationServerBasePath = operationServerMap['OrderApi.updateReturn']?.[localVarOperationServerIndex]?.url;
|
|
7313
7334
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
@@ -7337,7 +7358,7 @@ export const OrderApiFactory = function (configuration, basePath, axios) {
|
|
|
7337
7358
|
* @throws {RequiredError}
|
|
7338
7359
|
*/
|
|
7339
7360
|
createReturn(requestParameters, options) {
|
|
7340
|
-
return localVarFp.createReturn(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
7361
|
+
return localVarFp.createReturn(requestParameters.id, requestParameters.iOrderReturnPostRequest, options).then((request) => request(axios, basePath));
|
|
7341
7362
|
},
|
|
7342
7363
|
/**
|
|
7343
7364
|
*
|
|
@@ -7346,7 +7367,7 @@ export const OrderApiFactory = function (configuration, basePath, axios) {
|
|
|
7346
7367
|
* @throws {RequiredError}
|
|
7347
7368
|
*/
|
|
7348
7369
|
createReturnAdmin(requestParameters, options) {
|
|
7349
|
-
return localVarFp.createReturnAdmin(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
7370
|
+
return localVarFp.createReturnAdmin(requestParameters.id, requestParameters.iOrderReturnAdminPostRequest, options).then((request) => request(axios, basePath));
|
|
7350
7371
|
},
|
|
7351
7372
|
/**
|
|
7352
7373
|
*
|
|
@@ -7382,7 +7403,7 @@ export const OrderApiFactory = function (configuration, basePath, axios) {
|
|
|
7382
7403
|
* @throws {RequiredError}
|
|
7383
7404
|
*/
|
|
7384
7405
|
updateOrder(requestParameters, options) {
|
|
7385
|
-
return localVarFp.updateOrder(requestParameters.id, options).then((request) => request(axios, basePath));
|
|
7406
|
+
return localVarFp.updateOrder(requestParameters.id, requestParameters.iOrderPatchRequest, options).then((request) => request(axios, basePath));
|
|
7386
7407
|
},
|
|
7387
7408
|
/**
|
|
7388
7409
|
*
|
|
@@ -7391,7 +7412,7 @@ export const OrderApiFactory = function (configuration, basePath, axios) {
|
|
|
7391
7412
|
* @throws {RequiredError}
|
|
7392
7413
|
*/
|
|
7393
7414
|
updateReturn(requestParameters, options) {
|
|
7394
|
-
return localVarFp.updateReturn(requestParameters.orderId, requestParameters.returnId, options).then((request) => request(axios, basePath));
|
|
7415
|
+
return localVarFp.updateReturn(requestParameters.orderId, requestParameters.returnId, requestParameters.iOrderReturnUpdatePostRequest, options).then((request) => request(axios, basePath));
|
|
7395
7416
|
},
|
|
7396
7417
|
};
|
|
7397
7418
|
};
|
|
@@ -7420,7 +7441,7 @@ export class OrderApi extends BaseAPI {
|
|
|
7420
7441
|
* @memberof OrderApi
|
|
7421
7442
|
*/
|
|
7422
7443
|
createReturn(requestParameters, options) {
|
|
7423
|
-
return OrderApiFp(this.configuration).createReturn(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7444
|
+
return OrderApiFp(this.configuration).createReturn(requestParameters.id, requestParameters.iOrderReturnPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7424
7445
|
}
|
|
7425
7446
|
/**
|
|
7426
7447
|
*
|
|
@@ -7430,7 +7451,7 @@ export class OrderApi extends BaseAPI {
|
|
|
7430
7451
|
* @memberof OrderApi
|
|
7431
7452
|
*/
|
|
7432
7453
|
createReturnAdmin(requestParameters, options) {
|
|
7433
|
-
return OrderApiFp(this.configuration).createReturnAdmin(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7454
|
+
return OrderApiFp(this.configuration).createReturnAdmin(requestParameters.id, requestParameters.iOrderReturnAdminPostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7434
7455
|
}
|
|
7435
7456
|
/**
|
|
7436
7457
|
*
|
|
@@ -7470,7 +7491,7 @@ export class OrderApi extends BaseAPI {
|
|
|
7470
7491
|
* @memberof OrderApi
|
|
7471
7492
|
*/
|
|
7472
7493
|
updateOrder(requestParameters, options) {
|
|
7473
|
-
return OrderApiFp(this.configuration).updateOrder(requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
7494
|
+
return OrderApiFp(this.configuration).updateOrder(requestParameters.id, requestParameters.iOrderPatchRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7474
7495
|
}
|
|
7475
7496
|
/**
|
|
7476
7497
|
*
|
|
@@ -7480,7 +7501,7 @@ export class OrderApi extends BaseAPI {
|
|
|
7480
7501
|
* @memberof OrderApi
|
|
7481
7502
|
*/
|
|
7482
7503
|
updateReturn(requestParameters, options) {
|
|
7483
|
-
return OrderApiFp(this.configuration).updateReturn(requestParameters.orderId, requestParameters.returnId, options).then((request) => request(this.axios, this.basePath));
|
|
7504
|
+
return OrderApiFp(this.configuration).updateReturn(requestParameters.orderId, requestParameters.returnId, requestParameters.iOrderReturnUpdatePostRequest, options).then((request) => request(this.axios, this.basePath));
|
|
7484
7505
|
}
|
|
7485
7506
|
}
|
|
7486
7507
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infisale-client/api",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.56",
|
|
4
4
|
"description": "api-sdk",
|
|
5
5
|
"author": "Muhammet KÖKLÜ <105980019+byhipernova@users.noreply.github.com>",
|
|
6
6
|
"homepage": "https://github.com/infisale/infisale-client#readme",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"bugs": {
|
|
38
38
|
"url": "https://github.com/infisale/infisale-client/issues"
|
|
39
39
|
},
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "d501540cd80937fe9b15ee45bc787f0b5e8e995a"
|
|
41
41
|
}
|