@whiplashmerch/whiplash-api-client 3.2.49 → 3.2.51
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.
|
@@ -709,6 +709,8 @@ export interface ApiV2EntitiesCustomer {
|
|
|
709
709
|
auto_merge_gestation?: number | null;
|
|
710
710
|
/** auto merge SKUs? */
|
|
711
711
|
auto_merge_skus?: boolean | null;
|
|
712
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
713
|
+
auto_promote_backstock?: boolean;
|
|
712
714
|
/** Customer billing city. */
|
|
713
715
|
billing_city?: string | null;
|
|
714
716
|
/** Customer billing company. */
|
|
@@ -968,6 +970,8 @@ export interface ApiV2EntitiesCustomerShallow {
|
|
|
968
970
|
auto_merge_gestation?: number;
|
|
969
971
|
/** auto merge SKUs? */
|
|
970
972
|
auto_merge_skus?: boolean;
|
|
973
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
974
|
+
auto_promote_backstock?: boolean;
|
|
971
975
|
/** Customer billing city. */
|
|
972
976
|
billing_city?: string;
|
|
973
977
|
/** Customer billing company. */
|
|
@@ -2874,6 +2878,11 @@ export interface ApiV2EntitiesOrder {
|
|
|
2874
2878
|
require_signature?: boolean | null;
|
|
2875
2879
|
/** is the order address residential? */
|
|
2876
2880
|
residential?: boolean | null;
|
|
2881
|
+
/**
|
|
2882
|
+
* the id of the associated return address record
|
|
2883
|
+
* @format int32
|
|
2884
|
+
*/
|
|
2885
|
+
return_address_id?: number | null;
|
|
2877
2886
|
/** is the order return address verified? */
|
|
2878
2887
|
return_address_verified?: boolean | null;
|
|
2879
2888
|
/** the order return city */
|
|
@@ -6562,6 +6571,8 @@ export interface ApiV21EntitiesCustomer {
|
|
|
6562
6571
|
auto_merge_gestation?: number | null;
|
|
6563
6572
|
/** auto merge SKUs? */
|
|
6564
6573
|
auto_merge_skus?: boolean | null;
|
|
6574
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
6575
|
+
auto_promote_backstock?: boolean;
|
|
6565
6576
|
/** Customer billing city. */
|
|
6566
6577
|
billing_city?: string | null;
|
|
6567
6578
|
/** Customer billing company. */
|
|
@@ -8138,6 +8149,11 @@ export interface ApiV21EntitiesOrder {
|
|
|
8138
8149
|
require_signature?: boolean | null;
|
|
8139
8150
|
/** is the order address residential? */
|
|
8140
8151
|
residential?: boolean | null;
|
|
8152
|
+
/**
|
|
8153
|
+
* the id of the associated return address record
|
|
8154
|
+
* @format int32
|
|
8155
|
+
*/
|
|
8156
|
+
return_address_id?: number | null;
|
|
8141
8157
|
/** is the order return address verified? */
|
|
8142
8158
|
return_address_verified?: boolean | null;
|
|
8143
8159
|
/** the order return city */
|
|
@@ -17460,6 +17476,8 @@ export interface PostApiV21CustomersRequest {
|
|
|
17460
17476
|
auto_merge_gestation?: number;
|
|
17461
17477
|
/** auto merge SKUs? */
|
|
17462
17478
|
auto_merge_skus?: boolean;
|
|
17479
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
17480
|
+
auto_promote_backstock?: boolean;
|
|
17463
17481
|
/** Customer billing city. */
|
|
17464
17482
|
billing_city?: string;
|
|
17465
17483
|
/** Customer billing company. */
|
|
@@ -18458,6 +18476,11 @@ export interface PostApiV21OrdersBulkRequest {
|
|
|
18458
18476
|
return_phone?: string;
|
|
18459
18477
|
/** the order return email */
|
|
18460
18478
|
return_email?: string;
|
|
18479
|
+
/**
|
|
18480
|
+
* the id of the associated return address record
|
|
18481
|
+
* @format int32
|
|
18482
|
+
*/
|
|
18483
|
+
return_address_id?: number;
|
|
18461
18484
|
/**
|
|
18462
18485
|
* the order return time limit
|
|
18463
18486
|
* @format int32
|
|
@@ -19147,6 +19170,11 @@ export interface PostApiV21OrdersRequest {
|
|
|
19147
19170
|
require_signature?: boolean;
|
|
19148
19171
|
/** is the order address residential? */
|
|
19149
19172
|
residential?: boolean;
|
|
19173
|
+
/**
|
|
19174
|
+
* the id of the associated return address record
|
|
19175
|
+
* @format int32
|
|
19176
|
+
*/
|
|
19177
|
+
return_address_id?: number;
|
|
19150
19178
|
/** the order return city */
|
|
19151
19179
|
return_city?: string;
|
|
19152
19180
|
/** the order return company */
|
|
@@ -20991,6 +21019,8 @@ export interface PostApiV2CustomersRequest {
|
|
|
20991
21019
|
auto_merge_gestation?: number;
|
|
20992
21020
|
/** auto merge SKUs? */
|
|
20993
21021
|
auto_merge_skus?: boolean;
|
|
21022
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
21023
|
+
auto_promote_backstock?: boolean;
|
|
20994
21024
|
/** Customer billing city. */
|
|
20995
21025
|
billing_city?: string;
|
|
20996
21026
|
/** Customer billing company. */
|
|
@@ -21989,6 +22019,11 @@ export interface PostApiV2OrdersBulkRequest {
|
|
|
21989
22019
|
return_phone?: string;
|
|
21990
22020
|
/** the order return email */
|
|
21991
22021
|
return_email?: string;
|
|
22022
|
+
/**
|
|
22023
|
+
* the id of the associated return address record
|
|
22024
|
+
* @format int32
|
|
22025
|
+
*/
|
|
22026
|
+
return_address_id?: number;
|
|
21992
22027
|
/**
|
|
21993
22028
|
* the order return time limit
|
|
21994
22029
|
* @format int32
|
|
@@ -22678,6 +22713,11 @@ export interface PostApiV2OrdersRequest {
|
|
|
22678
22713
|
require_signature?: boolean;
|
|
22679
22714
|
/** is the order address residential? */
|
|
22680
22715
|
residential?: boolean;
|
|
22716
|
+
/**
|
|
22717
|
+
* the id of the associated return address record
|
|
22718
|
+
* @format int32
|
|
22719
|
+
*/
|
|
22720
|
+
return_address_id?: number;
|
|
22681
22721
|
/** the order return city */
|
|
22682
22722
|
return_city?: string;
|
|
22683
22723
|
/** the order return company */
|
|
@@ -24193,6 +24233,8 @@ export interface PutApiV21CustomersIdRequest {
|
|
|
24193
24233
|
auto_merge_gestation?: number;
|
|
24194
24234
|
/** auto merge SKUs? */
|
|
24195
24235
|
auto_merge_skus?: boolean;
|
|
24236
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
24237
|
+
auto_promote_backstock?: boolean;
|
|
24196
24238
|
/** Customer billing city. */
|
|
24197
24239
|
billing_city?: string;
|
|
24198
24240
|
/** Customer billing company. */
|
|
@@ -25532,6 +25574,11 @@ export interface PutApiV21OrdersIdRequest {
|
|
|
25532
25574
|
require_signature?: boolean;
|
|
25533
25575
|
/** is the order address residential? */
|
|
25534
25576
|
residential?: boolean;
|
|
25577
|
+
/**
|
|
25578
|
+
* the id of the associated return address record
|
|
25579
|
+
* @format int32
|
|
25580
|
+
*/
|
|
25581
|
+
return_address_id?: number;
|
|
25535
25582
|
/** the order return city */
|
|
25536
25583
|
return_city?: string;
|
|
25537
25584
|
/** the order return company */
|
|
@@ -27072,6 +27119,8 @@ export interface PutApiV2CustomersIdRequest {
|
|
|
27072
27119
|
auto_merge_gestation?: number;
|
|
27073
27120
|
/** auto merge SKUs? */
|
|
27074
27121
|
auto_merge_skus?: boolean;
|
|
27122
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
27123
|
+
auto_promote_backstock?: boolean;
|
|
27075
27124
|
/** Customer billing city. */
|
|
27076
27125
|
billing_city?: string;
|
|
27077
27126
|
/** Customer billing company. */
|
|
@@ -28411,6 +28460,11 @@ export interface PutApiV2OrdersIdRequest {
|
|
|
28411
28460
|
require_signature?: boolean;
|
|
28412
28461
|
/** is the order address residential? */
|
|
28413
28462
|
residential?: boolean;
|
|
28463
|
+
/**
|
|
28464
|
+
* the id of the associated return address record
|
|
28465
|
+
* @format int32
|
|
28466
|
+
*/
|
|
28467
|
+
return_address_id?: number;
|
|
28414
28468
|
/** the order return city */
|
|
28415
28469
|
return_city?: string;
|
|
28416
28470
|
/** the order return company */
|
|
@@ -242,6 +242,8 @@ export interface ApiV2EntitiesCustomer {
|
|
|
242
242
|
auto_merge_gestation?: number | null;
|
|
243
243
|
/** auto merge SKUs? */
|
|
244
244
|
auto_merge_skus?: boolean | null;
|
|
245
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
246
|
+
auto_promote_backstock?: boolean;
|
|
245
247
|
/** Customer billing city. */
|
|
246
248
|
billing_city?: string | null;
|
|
247
249
|
/** Customer billing company. */
|
|
@@ -502,6 +504,8 @@ export interface ApiV2EntitiesCustomerShallow {
|
|
|
502
504
|
auto_merge_gestation?: number;
|
|
503
505
|
/** auto merge SKUs? */
|
|
504
506
|
auto_merge_skus?: boolean;
|
|
507
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
508
|
+
auto_promote_backstock?: boolean;
|
|
505
509
|
/** Customer billing city. */
|
|
506
510
|
billing_city?: string;
|
|
507
511
|
/** Customer billing company. */
|
|
@@ -1514,6 +1518,11 @@ export interface ApiV2EntitiesOrder {
|
|
|
1514
1518
|
require_signature?: boolean | null;
|
|
1515
1519
|
/** is the order address residential? */
|
|
1516
1520
|
residential?: boolean | null;
|
|
1521
|
+
/**
|
|
1522
|
+
* the id of the associated return address record
|
|
1523
|
+
* @format int32
|
|
1524
|
+
*/
|
|
1525
|
+
return_address_id?: number | null;
|
|
1517
1526
|
/** is the order return address verified? */
|
|
1518
1527
|
return_address_verified?: boolean | null;
|
|
1519
1528
|
/** the order return city */
|
|
@@ -3428,6 +3437,8 @@ export interface ApiV21EntitiesCustomer {
|
|
|
3428
3437
|
auto_merge_gestation?: number | null;
|
|
3429
3438
|
/** auto merge SKUs? */
|
|
3430
3439
|
auto_merge_skus?: boolean | null;
|
|
3440
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
3441
|
+
auto_promote_backstock?: boolean;
|
|
3431
3442
|
/** Customer billing city. */
|
|
3432
3443
|
billing_city?: string | null;
|
|
3433
3444
|
/** Customer billing company. */
|
|
@@ -4244,6 +4255,11 @@ export interface ApiV21EntitiesOrder {
|
|
|
4244
4255
|
require_signature?: boolean | null;
|
|
4245
4256
|
/** is the order address residential? */
|
|
4246
4257
|
residential?: boolean | null;
|
|
4258
|
+
/**
|
|
4259
|
+
* the id of the associated return address record
|
|
4260
|
+
* @format int32
|
|
4261
|
+
*/
|
|
4262
|
+
return_address_id?: number | null;
|
|
4247
4263
|
/** is the order return address verified? */
|
|
4248
4264
|
return_address_verified?: boolean | null;
|
|
4249
4265
|
/** the order return city */
|
|
@@ -7534,6 +7550,11 @@ export interface PostApiV21OrdersBulkRequest {
|
|
|
7534
7550
|
return_phone?: string;
|
|
7535
7551
|
/** the order return email */
|
|
7536
7552
|
return_email?: string;
|
|
7553
|
+
/**
|
|
7554
|
+
* the id of the associated return address record
|
|
7555
|
+
* @format int32
|
|
7556
|
+
*/
|
|
7557
|
+
return_address_id?: number;
|
|
7537
7558
|
/**
|
|
7538
7559
|
* the order return time limit
|
|
7539
7560
|
* @format int32
|
|
@@ -8141,6 +8162,11 @@ export interface PostApiV21OrdersRequest {
|
|
|
8141
8162
|
require_signature?: boolean;
|
|
8142
8163
|
/** is the order address residential? */
|
|
8143
8164
|
residential?: boolean;
|
|
8165
|
+
/**
|
|
8166
|
+
* the id of the associated return address record
|
|
8167
|
+
* @format int32
|
|
8168
|
+
*/
|
|
8169
|
+
return_address_id?: number;
|
|
8144
8170
|
/** the order return city */
|
|
8145
8171
|
return_city?: string;
|
|
8146
8172
|
/** the order return company */
|
|
@@ -9478,6 +9504,11 @@ export interface PostApiV2OrdersBulkRequest {
|
|
|
9478
9504
|
return_phone?: string;
|
|
9479
9505
|
/** the order return email */
|
|
9480
9506
|
return_email?: string;
|
|
9507
|
+
/**
|
|
9508
|
+
* the id of the associated return address record
|
|
9509
|
+
* @format int32
|
|
9510
|
+
*/
|
|
9511
|
+
return_address_id?: number;
|
|
9481
9512
|
/**
|
|
9482
9513
|
* the order return time limit
|
|
9483
9514
|
* @format int32
|
|
@@ -10085,6 +10116,11 @@ export interface PostApiV2OrdersRequest {
|
|
|
10085
10116
|
require_signature?: boolean;
|
|
10086
10117
|
/** is the order address residential? */
|
|
10087
10118
|
residential?: boolean;
|
|
10119
|
+
/**
|
|
10120
|
+
* the id of the associated return address record
|
|
10121
|
+
* @format int32
|
|
10122
|
+
*/
|
|
10123
|
+
return_address_id?: number;
|
|
10088
10124
|
/** the order return city */
|
|
10089
10125
|
return_city?: string;
|
|
10090
10126
|
/** the order return company */
|
|
@@ -10776,6 +10812,8 @@ export interface PutApiV21CustomersIdRequest {
|
|
|
10776
10812
|
auto_merge_gestation?: number;
|
|
10777
10813
|
/** auto merge SKUs? */
|
|
10778
10814
|
auto_merge_skus?: boolean;
|
|
10815
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
10816
|
+
auto_promote_backstock?: boolean;
|
|
10779
10817
|
/** Customer billing city. */
|
|
10780
10818
|
billing_city?: string;
|
|
10781
10819
|
/** Customer billing company. */
|
|
@@ -11515,6 +11553,11 @@ export interface PutApiV21OrdersIdRequest {
|
|
|
11515
11553
|
require_signature?: boolean;
|
|
11516
11554
|
/** is the order address residential? */
|
|
11517
11555
|
residential?: boolean;
|
|
11556
|
+
/**
|
|
11557
|
+
* the id of the associated return address record
|
|
11558
|
+
* @format int32
|
|
11559
|
+
*/
|
|
11560
|
+
return_address_id?: number;
|
|
11518
11561
|
/** the order return city */
|
|
11519
11562
|
return_city?: string;
|
|
11520
11563
|
/** the order return company */
|
|
@@ -11998,6 +12041,8 @@ export interface PutApiV2CustomersIdRequest {
|
|
|
11998
12041
|
auto_merge_gestation?: number;
|
|
11999
12042
|
/** auto merge SKUs? */
|
|
12000
12043
|
auto_merge_skus?: boolean;
|
|
12044
|
+
/** Automatically promote backstock locations to pickable when pickable stock is depleted (admins only) */
|
|
12045
|
+
auto_promote_backstock?: boolean;
|
|
12001
12046
|
/** Customer billing city. */
|
|
12002
12047
|
billing_city?: string;
|
|
12003
12048
|
/** Customer billing company. */
|
|
@@ -12737,6 +12782,11 @@ export interface PutApiV2OrdersIdRequest {
|
|
|
12737
12782
|
require_signature?: boolean;
|
|
12738
12783
|
/** is the order address residential? */
|
|
12739
12784
|
residential?: boolean;
|
|
12785
|
+
/**
|
|
12786
|
+
* the id of the associated return address record
|
|
12787
|
+
* @format int32
|
|
12788
|
+
*/
|
|
12789
|
+
return_address_id?: number;
|
|
12740
12790
|
/** the order return city */
|
|
12741
12791
|
return_city?: string;
|
|
12742
12792
|
/** the order return company */
|