@teemill/platform 0.51.1 → 0.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/api.ts +189 -69
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +74 -1
- package/dist/api.js +145 -3
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +74 -1
- package/dist/esm/api.js +143 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/Fulfillment.md +2 -0
- package/docs/Order.md +6 -0
- package/docs/OrdersApi.md +66 -0
- package/docs/PriorityLevel.md +10 -0
- package/docs/UpdateOrderRequest.md +24 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Platform API
|
|
5
5
|
* Manage Your podOS platform
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.53.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -510,6 +510,10 @@ export interface Fulfillment {
|
|
|
510
510
|
* Weight of the package being shipped in grams
|
|
511
511
|
*/
|
|
512
512
|
'packageWeight'?: number;
|
|
513
|
+
/**
|
|
514
|
+
* A reference to the resource location
|
|
515
|
+
*/
|
|
516
|
+
'platformRef'?: string;
|
|
513
517
|
}
|
|
514
518
|
|
|
515
519
|
|
|
@@ -598,6 +602,7 @@ export interface Order {
|
|
|
598
602
|
'ref'?: string;
|
|
599
603
|
'status'?: OrderStatus;
|
|
600
604
|
'approvalItemId'?: string | null;
|
|
605
|
+
'customerRef': string;
|
|
601
606
|
'contactInformation': ContactInformation;
|
|
602
607
|
'paymentMethod'?: OrderPaymentMethod;
|
|
603
608
|
'shippingAddress': Address;
|
|
@@ -639,6 +644,8 @@ export interface Order {
|
|
|
639
644
|
* Whether this order will go through the bulk production flow or not
|
|
640
645
|
*/
|
|
641
646
|
'bulk'?: boolean;
|
|
647
|
+
'priorityLevel': PriorityLevel;
|
|
648
|
+
'warnings'?: Array<string>;
|
|
642
649
|
}
|
|
643
650
|
|
|
644
651
|
|
|
@@ -844,6 +851,15 @@ export interface PrintArea {
|
|
|
844
851
|
'width'?: number;
|
|
845
852
|
'height'?: number;
|
|
846
853
|
}
|
|
854
|
+
|
|
855
|
+
export const PriorityLevel = {
|
|
856
|
+
Standard: 'standard',
|
|
857
|
+
Priority: 'priority'
|
|
858
|
+
} as const;
|
|
859
|
+
|
|
860
|
+
export type PriorityLevel = typeof PriorityLevel[keyof typeof PriorityLevel];
|
|
861
|
+
|
|
862
|
+
|
|
847
863
|
export interface Project {
|
|
848
864
|
'id': string;
|
|
849
865
|
/**
|
|
@@ -1045,6 +1061,13 @@ export const UpdateModerationItemRequestJudgementEnum = {
|
|
|
1045
1061
|
|
|
1046
1062
|
export type UpdateModerationItemRequestJudgementEnum = typeof UpdateModerationItemRequestJudgementEnum[keyof typeof UpdateModerationItemRequestJudgementEnum];
|
|
1047
1063
|
|
|
1064
|
+
export interface UpdateOrderRequest {
|
|
1065
|
+
'email'?: string;
|
|
1066
|
+
'shippingAddress'?: Address;
|
|
1067
|
+
'priorityLevel'?: PriorityLevel;
|
|
1068
|
+
}
|
|
1069
|
+
|
|
1070
|
+
|
|
1048
1071
|
export interface UpdatePlatformFulfillmentStyleApplicationRequest {
|
|
1049
1072
|
'design'?: string;
|
|
1050
1073
|
}
|
|
@@ -1131,8 +1154,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1131
1154
|
localVarQueryParameter['project'] = project;
|
|
1132
1155
|
}
|
|
1133
1156
|
|
|
1157
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1134
1158
|
|
|
1135
|
-
|
|
1136
1159
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1137
1160
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1138
1161
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1261,8 +1284,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1261
1284
|
localVarQueryParameter['lastPurchasedEnd'] = lastPurchasedEnd;
|
|
1262
1285
|
}
|
|
1263
1286
|
|
|
1287
|
+
localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
|
|
1264
1288
|
|
|
1265
|
-
|
|
1266
1289
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1267
1290
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1268
1291
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1313,8 +1336,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1313
1336
|
localVarQueryParameter['project'] = project;
|
|
1314
1337
|
}
|
|
1315
1338
|
|
|
1339
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1316
1340
|
|
|
1317
|
-
|
|
1318
1341
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1319
1342
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1320
1343
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1376,8 +1399,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1376
1399
|
localVarQueryParameter['search'] = search;
|
|
1377
1400
|
}
|
|
1378
1401
|
|
|
1402
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1379
1403
|
|
|
1380
|
-
|
|
1381
1404
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1382
1405
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1383
1406
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -1521,8 +1544,8 @@ export const CustomersApiAxiosParamCreator = function (configuration?: Configura
|
|
|
1521
1544
|
localVarQueryParameter['lastPurchasedEnd'] = lastPurchasedEnd;
|
|
1522
1545
|
}
|
|
1523
1546
|
|
|
1547
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
1524
1548
|
|
|
1525
|
-
|
|
1526
1549
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1527
1550
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1528
1551
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2128,8 +2151,8 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2128
2151
|
localVarQueryParameter['project'] = project;
|
|
2129
2152
|
}
|
|
2130
2153
|
|
|
2154
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2131
2155
|
|
|
2132
|
-
|
|
2133
2156
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2134
2157
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2135
2158
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2179,9 +2202,8 @@ export const DashboardApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2179
2202
|
localVarQueryParameter['project'] = project;
|
|
2180
2203
|
}
|
|
2181
2204
|
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
2205
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2206
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2185
2207
|
|
|
2186
2208
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2187
2209
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -2373,8 +2395,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2373
2395
|
localVarQueryParameter['project'] = project;
|
|
2374
2396
|
}
|
|
2375
2397
|
|
|
2398
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2376
2399
|
|
|
2377
|
-
|
|
2378
2400
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2379
2401
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2380
2402
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2425,8 +2447,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2425
2447
|
localVarQueryParameter['project'] = project;
|
|
2426
2448
|
}
|
|
2427
2449
|
|
|
2450
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2428
2451
|
|
|
2429
|
-
|
|
2430
2452
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2431
2453
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2432
2454
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2502,8 +2524,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2502
2524
|
end;
|
|
2503
2525
|
}
|
|
2504
2526
|
|
|
2527
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2505
2528
|
|
|
2506
|
-
|
|
2507
2529
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2508
2530
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2509
2531
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2554,8 +2576,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2554
2576
|
localVarQueryParameter['project'] = project;
|
|
2555
2577
|
}
|
|
2556
2578
|
|
|
2579
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2557
2580
|
|
|
2558
|
-
|
|
2559
2581
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2560
2582
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2561
2583
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -2609,9 +2631,8 @@ export const EnquiriesApiAxiosParamCreator = function (configuration?: Configura
|
|
|
2609
2631
|
localVarQueryParameter['project'] = project;
|
|
2610
2632
|
}
|
|
2611
2633
|
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
2634
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
2635
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
2615
2636
|
|
|
2616
2637
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2617
2638
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3004,9 +3025,8 @@ export const ModerationApiAxiosParamCreator = function (configuration?: Configur
|
|
|
3004
3025
|
localVarQueryParameter['project'] = project;
|
|
3005
3026
|
}
|
|
3006
3027
|
|
|
3007
|
-
|
|
3008
|
-
|
|
3009
3028
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3029
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3010
3030
|
|
|
3011
3031
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3012
3032
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3148,9 +3168,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3148
3168
|
localVarQueryParameter['project'] = project;
|
|
3149
3169
|
}
|
|
3150
3170
|
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
3171
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3172
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3154
3173
|
|
|
3155
3174
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3156
3175
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3206,9 +3225,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3206
3225
|
localVarQueryParameter['project'] = project;
|
|
3207
3226
|
}
|
|
3208
3227
|
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
3228
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3229
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3212
3230
|
|
|
3213
3231
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3214
3232
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3260,9 +3278,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3260
3278
|
localVarQueryParameter['project'] = project;
|
|
3261
3279
|
}
|
|
3262
3280
|
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
3281
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3282
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3266
3283
|
|
|
3267
3284
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3268
3285
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3315,8 +3332,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3315
3332
|
localVarQueryParameter['project'] = project;
|
|
3316
3333
|
}
|
|
3317
3334
|
|
|
3335
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3318
3336
|
|
|
3319
|
-
|
|
3320
3337
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3321
3338
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3322
3339
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3389,8 +3406,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3389
3406
|
localVarQueryParameter['dateFilterType'] = dateFilterType;
|
|
3390
3407
|
}
|
|
3391
3408
|
|
|
3409
|
+
localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
|
|
3392
3410
|
|
|
3393
|
-
|
|
3394
3411
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3395
3412
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3396
3413
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3441,8 +3458,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3441
3458
|
localVarQueryParameter['project'] = project;
|
|
3442
3459
|
}
|
|
3443
3460
|
|
|
3461
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3444
3462
|
|
|
3445
|
-
|
|
3446
3463
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3447
3464
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3448
3465
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3493,8 +3510,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3493
3510
|
localVarQueryParameter['project'] = project;
|
|
3494
3511
|
}
|
|
3495
3512
|
|
|
3513
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3496
3514
|
|
|
3497
|
-
|
|
3498
3515
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3499
3516
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3500
3517
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3545,8 +3562,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3545
3562
|
localVarQueryParameter['project'] = project;
|
|
3546
3563
|
}
|
|
3547
3564
|
|
|
3565
|
+
localVarHeaderParameter['Accept'] = 'text/html,application/json';
|
|
3548
3566
|
|
|
3549
|
-
|
|
3550
3567
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3551
3568
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3552
3569
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3597,8 +3614,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3597
3614
|
localVarQueryParameter['project'] = project;
|
|
3598
3615
|
}
|
|
3599
3616
|
|
|
3617
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3600
3618
|
|
|
3601
|
-
|
|
3602
3619
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3603
3620
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3604
3621
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3694,8 +3711,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3694
3711
|
localVarQueryParameter['sortBy'] = sortBy;
|
|
3695
3712
|
}
|
|
3696
3713
|
|
|
3714
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3697
3715
|
|
|
3698
|
-
|
|
3699
3716
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3700
3717
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3701
3718
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3746,8 +3763,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3746
3763
|
localVarQueryParameter['project'] = project;
|
|
3747
3764
|
}
|
|
3748
3765
|
|
|
3766
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3749
3767
|
|
|
3750
|
-
|
|
3751
3768
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3752
3769
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3753
3770
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3801,9 +3818,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3801
3818
|
localVarQueryParameter['project'] = project;
|
|
3802
3819
|
}
|
|
3803
3820
|
|
|
3804
|
-
|
|
3805
|
-
|
|
3806
3821
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3822
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3807
3823
|
|
|
3808
3824
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3809
3825
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3856,8 +3872,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3856
3872
|
localVarQueryParameter['project'] = project;
|
|
3857
3873
|
}
|
|
3858
3874
|
|
|
3875
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3859
3876
|
|
|
3860
|
-
|
|
3861
3877
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3862
3878
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3863
3879
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -3911,9 +3927,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3911
3927
|
localVarQueryParameter['project'] = project;
|
|
3912
3928
|
}
|
|
3913
3929
|
|
|
3914
|
-
|
|
3915
|
-
|
|
3916
3930
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3931
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3917
3932
|
|
|
3918
3933
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3919
3934
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -3925,6 +3940,61 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3925
3940
|
options: localVarRequestOptions,
|
|
3926
3941
|
};
|
|
3927
3942
|
},
|
|
3943
|
+
/**
|
|
3944
|
+
*
|
|
3945
|
+
* @summary Update order
|
|
3946
|
+
* @param {string} project Project unique identifier
|
|
3947
|
+
* @param {string} platformId The platform identifier
|
|
3948
|
+
* @param {string} orderId The order identifier
|
|
3949
|
+
* @param {UpdateOrderRequest} [updateOrderRequest]
|
|
3950
|
+
* @param {*} [options] Override http request option.
|
|
3951
|
+
* @throws {RequiredError}
|
|
3952
|
+
*/
|
|
3953
|
+
updateOrder: async (project: string, platformId: string, orderId: string, updateOrderRequest?: UpdateOrderRequest, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3954
|
+
// verify required parameter 'project' is not null or undefined
|
|
3955
|
+
assertParamExists('updateOrder', 'project', project)
|
|
3956
|
+
// verify required parameter 'platformId' is not null or undefined
|
|
3957
|
+
assertParamExists('updateOrder', 'platformId', platformId)
|
|
3958
|
+
// verify required parameter 'orderId' is not null or undefined
|
|
3959
|
+
assertParamExists('updateOrder', 'orderId', orderId)
|
|
3960
|
+
const localVarPath = `/v1/platform/{platformId}/orders/{orderId}`
|
|
3961
|
+
.replace(`{${"platformId"}}`, encodeURIComponent(String(platformId)))
|
|
3962
|
+
.replace(`{${"orderId"}}`, encodeURIComponent(String(orderId)));
|
|
3963
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3964
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3965
|
+
let baseOptions;
|
|
3966
|
+
if (configuration) {
|
|
3967
|
+
baseOptions = configuration.baseOptions;
|
|
3968
|
+
}
|
|
3969
|
+
|
|
3970
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
3971
|
+
const localVarHeaderParameter = {} as any;
|
|
3972
|
+
const localVarQueryParameter = {} as any;
|
|
3973
|
+
|
|
3974
|
+
// authentication session-oauth required
|
|
3975
|
+
// oauth required
|
|
3976
|
+
await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
|
|
3977
|
+
|
|
3978
|
+
// authentication api-key required
|
|
3979
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
3980
|
+
|
|
3981
|
+
if (project !== undefined) {
|
|
3982
|
+
localVarQueryParameter['project'] = project;
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3986
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3987
|
+
|
|
3988
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3989
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3990
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3991
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateOrderRequest, localVarRequestOptions, configuration)
|
|
3992
|
+
|
|
3993
|
+
return {
|
|
3994
|
+
url: toPathString(localVarUrlObj),
|
|
3995
|
+
options: localVarRequestOptions,
|
|
3996
|
+
};
|
|
3997
|
+
},
|
|
3928
3998
|
/**
|
|
3929
3999
|
* Update a fulfillment style application for a fulfillment for a platform order
|
|
3930
4000
|
* @summary Update platform fulfillment style application
|
|
@@ -3973,9 +4043,8 @@ export const OrdersApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
3973
4043
|
localVarQueryParameter['project'] = project;
|
|
3974
4044
|
}
|
|
3975
4045
|
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
4046
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
4047
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
3979
4048
|
|
|
3980
4049
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3981
4050
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -4221,6 +4290,22 @@ export const OrdersApiFp = function(configuration?: Configuration) {
|
|
|
4221
4290
|
const localVarOperationServerBasePath = operationServerMap['OrdersApi.updateFulfillment']?.[localVarOperationServerIndex]?.url;
|
|
4222
4291
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4223
4292
|
},
|
|
4293
|
+
/**
|
|
4294
|
+
*
|
|
4295
|
+
* @summary Update order
|
|
4296
|
+
* @param {string} project Project unique identifier
|
|
4297
|
+
* @param {string} platformId The platform identifier
|
|
4298
|
+
* @param {string} orderId The order identifier
|
|
4299
|
+
* @param {UpdateOrderRequest} [updateOrderRequest]
|
|
4300
|
+
* @param {*} [options] Override http request option.
|
|
4301
|
+
* @throws {RequiredError}
|
|
4302
|
+
*/
|
|
4303
|
+
async updateOrder(project: string, platformId: string, orderId: string, updateOrderRequest?: UpdateOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Order>> {
|
|
4304
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.updateOrder(project, platformId, orderId, updateOrderRequest, options);
|
|
4305
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
4306
|
+
const localVarOperationServerBasePath = operationServerMap['OrdersApi.updateOrder']?.[localVarOperationServerIndex]?.url;
|
|
4307
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
4308
|
+
},
|
|
4224
4309
|
/**
|
|
4225
4310
|
* Update a fulfillment style application for a fulfillment for a platform order
|
|
4226
4311
|
* @summary Update platform fulfillment style application
|
|
@@ -4387,6 +4472,16 @@ export const OrdersApiFactory = function (configuration?: Configuration, basePat
|
|
|
4387
4472
|
updateFulfillment(requestParameters: OrdersApiUpdateFulfillmentRequest, options?: RawAxiosRequestConfig): AxiosPromise<Fulfillment> {
|
|
4388
4473
|
return localVarFp.updateFulfillment(requestParameters.project, requestParameters.platformId, requestParameters.fulfillmentId, requestParameters.updateFulfillmentRequest, options).then((request) => request(axios, basePath));
|
|
4389
4474
|
},
|
|
4475
|
+
/**
|
|
4476
|
+
*
|
|
4477
|
+
* @summary Update order
|
|
4478
|
+
* @param {OrdersApiUpdateOrderRequest} requestParameters Request parameters.
|
|
4479
|
+
* @param {*} [options] Override http request option.
|
|
4480
|
+
* @throws {RequiredError}
|
|
4481
|
+
*/
|
|
4482
|
+
updateOrder(requestParameters: OrdersApiUpdateOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<Order> {
|
|
4483
|
+
return localVarFp.updateOrder(requestParameters.project, requestParameters.platformId, requestParameters.orderId, requestParameters.updateOrderRequest, options).then((request) => request(axios, basePath));
|
|
4484
|
+
},
|
|
4390
4485
|
/**
|
|
4391
4486
|
* Update a fulfillment style application for a fulfillment for a platform order
|
|
4392
4487
|
* @summary Update platform fulfillment style application
|
|
@@ -4752,6 +4847,28 @@ export interface OrdersApiUpdateFulfillmentRequest {
|
|
|
4752
4847
|
readonly updateFulfillmentRequest: UpdateFulfillmentRequest
|
|
4753
4848
|
}
|
|
4754
4849
|
|
|
4850
|
+
/**
|
|
4851
|
+
* Request parameters for updateOrder operation in OrdersApi.
|
|
4852
|
+
*/
|
|
4853
|
+
export interface OrdersApiUpdateOrderRequest {
|
|
4854
|
+
/**
|
|
4855
|
+
* Project unique identifier
|
|
4856
|
+
*/
|
|
4857
|
+
readonly project: string
|
|
4858
|
+
|
|
4859
|
+
/**
|
|
4860
|
+
* The platform identifier
|
|
4861
|
+
*/
|
|
4862
|
+
readonly platformId: string
|
|
4863
|
+
|
|
4864
|
+
/**
|
|
4865
|
+
* The order identifier
|
|
4866
|
+
*/
|
|
4867
|
+
readonly orderId: string
|
|
4868
|
+
|
|
4869
|
+
readonly updateOrderRequest?: UpdateOrderRequest
|
|
4870
|
+
}
|
|
4871
|
+
|
|
4755
4872
|
/**
|
|
4756
4873
|
* Request parameters for updatePlatformFulfillmentStyleApplication operation in OrdersApi.
|
|
4757
4874
|
*/
|
|
@@ -4937,6 +5054,17 @@ export class OrdersApi extends BaseAPI {
|
|
|
4937
5054
|
return OrdersApiFp(this.configuration).updateFulfillment(requestParameters.project, requestParameters.platformId, requestParameters.fulfillmentId, requestParameters.updateFulfillmentRequest, options).then((request) => request(this.axios, this.basePath));
|
|
4938
5055
|
}
|
|
4939
5056
|
|
|
5057
|
+
/**
|
|
5058
|
+
*
|
|
5059
|
+
* @summary Update order
|
|
5060
|
+
* @param {OrdersApiUpdateOrderRequest} requestParameters Request parameters.
|
|
5061
|
+
* @param {*} [options] Override http request option.
|
|
5062
|
+
* @throws {RequiredError}
|
|
5063
|
+
*/
|
|
5064
|
+
public updateOrder(requestParameters: OrdersApiUpdateOrderRequest, options?: RawAxiosRequestConfig) {
|
|
5065
|
+
return OrdersApiFp(this.configuration).updateOrder(requestParameters.project, requestParameters.platformId, requestParameters.orderId, requestParameters.updateOrderRequest, options).then((request) => request(this.axios, this.basePath));
|
|
5066
|
+
}
|
|
5067
|
+
|
|
4940
5068
|
/**
|
|
4941
5069
|
* Update a fulfillment style application for a fulfillment for a platform order
|
|
4942
5070
|
* @summary Update platform fulfillment style application
|
|
@@ -5012,8 +5140,8 @@ export const PaymentApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5012
5140
|
localVarQueryParameter['project'] = project;
|
|
5013
5141
|
}
|
|
5014
5142
|
|
|
5143
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5015
5144
|
|
|
5016
|
-
|
|
5017
5145
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5018
5146
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5019
5147
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5056,8 +5184,8 @@ export const PaymentApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5056
5184
|
localVarQueryParameter['project'] = project;
|
|
5057
5185
|
}
|
|
5058
5186
|
|
|
5187
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5059
5188
|
|
|
5060
|
-
|
|
5061
5189
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5062
5190
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5063
5191
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5100,8 +5228,8 @@ export const PaymentApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
5100
5228
|
localVarQueryParameter['project'] = project;
|
|
5101
5229
|
}
|
|
5102
5230
|
|
|
5231
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5103
5232
|
|
|
5104
|
-
|
|
5105
5233
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5106
5234
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5107
5235
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5329,9 +5457,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5329
5457
|
localVarQueryParameter['search'] = search;
|
|
5330
5458
|
}
|
|
5331
5459
|
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
5460
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5461
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5335
5462
|
|
|
5336
5463
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5337
5464
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5384,8 +5511,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5384
5511
|
localVarQueryParameter['project'] = project;
|
|
5385
5512
|
}
|
|
5386
5513
|
|
|
5514
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5387
5515
|
|
|
5388
|
-
|
|
5389
5516
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5390
5517
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5391
5518
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5436,8 +5563,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5436
5563
|
localVarQueryParameter['project'] = project;
|
|
5437
5564
|
}
|
|
5438
5565
|
|
|
5566
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5439
5567
|
|
|
5440
|
-
|
|
5441
5568
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5442
5569
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5443
5570
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5499,8 +5626,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5499
5626
|
localVarQueryParameter['search'] = search;
|
|
5500
5627
|
}
|
|
5501
5628
|
|
|
5629
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5502
5630
|
|
|
5503
|
-
|
|
5504
5631
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5505
5632
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5506
5633
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -5552,9 +5679,8 @@ export const PixelsApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5552
5679
|
localVarQueryParameter['project'] = project;
|
|
5553
5680
|
}
|
|
5554
5681
|
|
|
5555
|
-
|
|
5556
|
-
|
|
5557
5682
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
5683
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5558
5684
|
|
|
5559
5685
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5560
5686
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5943,9 +6069,8 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
5943
6069
|
localVarQueryParameter['project'] = project;
|
|
5944
6070
|
}
|
|
5945
6071
|
|
|
5946
|
-
|
|
5947
|
-
|
|
5948
6072
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6073
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5949
6074
|
|
|
5950
6075
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5951
6076
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -5991,9 +6116,8 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
5991
6116
|
localVarQueryParameter['project'] = project;
|
|
5992
6117
|
}
|
|
5993
6118
|
|
|
5994
|
-
|
|
5995
|
-
|
|
5996
6119
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6120
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
5997
6121
|
|
|
5998
6122
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5999
6123
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6042,8 +6166,8 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
6042
6166
|
localVarQueryParameter['project'] = project;
|
|
6043
6167
|
}
|
|
6044
6168
|
|
|
6169
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6045
6170
|
|
|
6046
|
-
|
|
6047
6171
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6048
6172
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6049
6173
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6090,8 +6214,8 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
6090
6214
|
localVarQueryParameter['project'] = project;
|
|
6091
6215
|
}
|
|
6092
6216
|
|
|
6217
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6093
6218
|
|
|
6094
|
-
|
|
6095
6219
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6096
6220
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6097
6221
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6134,8 +6258,8 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
6134
6258
|
localVarQueryParameter['project'] = project;
|
|
6135
6259
|
}
|
|
6136
6260
|
|
|
6261
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6137
6262
|
|
|
6138
|
-
|
|
6139
6263
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6140
6264
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6141
6265
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6178,8 +6302,8 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
6178
6302
|
localVarQueryParameter['project'] = project;
|
|
6179
6303
|
}
|
|
6180
6304
|
|
|
6305
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6181
6306
|
|
|
6182
|
-
|
|
6183
6307
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6184
6308
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6185
6309
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6222,8 +6346,8 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
6222
6346
|
localVarQueryParameter['project'] = project;
|
|
6223
6347
|
}
|
|
6224
6348
|
|
|
6349
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6225
6350
|
|
|
6226
|
-
|
|
6227
6351
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6228
6352
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6229
6353
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6269,9 +6393,8 @@ export const PlatformApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
6269
6393
|
localVarQueryParameter['project'] = project;
|
|
6270
6394
|
}
|
|
6271
6395
|
|
|
6272
|
-
|
|
6273
|
-
|
|
6274
6396
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6397
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6275
6398
|
|
|
6276
6399
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6277
6400
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6763,9 +6886,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6763
6886
|
end;
|
|
6764
6887
|
}
|
|
6765
6888
|
|
|
6766
|
-
|
|
6767
|
-
|
|
6768
6889
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
6890
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6769
6891
|
|
|
6770
6892
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6771
6893
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -6830,8 +6952,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6830
6952
|
end;
|
|
6831
6953
|
}
|
|
6832
6954
|
|
|
6955
|
+
localVarHeaderParameter['Accept'] = 'text/csv; charset=utf-8,application/json';
|
|
6833
6956
|
|
|
6834
|
-
|
|
6835
6957
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6836
6958
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6837
6959
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6882,8 +7004,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6882
7004
|
localVarQueryParameter['project'] = project;
|
|
6883
7005
|
}
|
|
6884
7006
|
|
|
7007
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6885
7008
|
|
|
6886
|
-
|
|
6887
7009
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6888
7010
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6889
7011
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -6964,8 +7086,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
6964
7086
|
end;
|
|
6965
7087
|
}
|
|
6966
7088
|
|
|
7089
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
6967
7090
|
|
|
6968
|
-
|
|
6969
7091
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6970
7092
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6971
7093
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -7017,9 +7139,8 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
7017
7139
|
localVarQueryParameter['project'] = project;
|
|
7018
7140
|
}
|
|
7019
7141
|
|
|
7020
|
-
|
|
7021
|
-
|
|
7022
7142
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7143
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
7023
7144
|
|
|
7024
7145
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7025
7146
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
@@ -7453,8 +7574,8 @@ export const TermsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
7453
7574
|
localVarQueryParameter['project'] = project;
|
|
7454
7575
|
}
|
|
7455
7576
|
|
|
7577
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
7456
7578
|
|
|
7457
|
-
|
|
7458
7579
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7459
7580
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
7460
7581
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -7504,9 +7625,8 @@ export const TermsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
7504
7625
|
localVarQueryParameter['project'] = project;
|
|
7505
7626
|
}
|
|
7506
7627
|
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
7628
|
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
7629
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
7510
7630
|
|
|
7511
7631
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
7512
7632
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|