@whiplashmerch/whiplash-api-client 3.2.49 → 3.2.50
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.
|
@@ -2874,6 +2874,11 @@ export interface ApiV2EntitiesOrder {
|
|
|
2874
2874
|
require_signature?: boolean | null;
|
|
2875
2875
|
/** is the order address residential? */
|
|
2876
2876
|
residential?: boolean | null;
|
|
2877
|
+
/**
|
|
2878
|
+
* the id of the associated return address record
|
|
2879
|
+
* @format int32
|
|
2880
|
+
*/
|
|
2881
|
+
return_address_id?: number | null;
|
|
2877
2882
|
/** is the order return address verified? */
|
|
2878
2883
|
return_address_verified?: boolean | null;
|
|
2879
2884
|
/** the order return city */
|
|
@@ -8138,6 +8143,11 @@ export interface ApiV21EntitiesOrder {
|
|
|
8138
8143
|
require_signature?: boolean | null;
|
|
8139
8144
|
/** is the order address residential? */
|
|
8140
8145
|
residential?: boolean | null;
|
|
8146
|
+
/**
|
|
8147
|
+
* the id of the associated return address record
|
|
8148
|
+
* @format int32
|
|
8149
|
+
*/
|
|
8150
|
+
return_address_id?: number | null;
|
|
8141
8151
|
/** is the order return address verified? */
|
|
8142
8152
|
return_address_verified?: boolean | null;
|
|
8143
8153
|
/** the order return city */
|
|
@@ -18458,6 +18468,11 @@ export interface PostApiV21OrdersBulkRequest {
|
|
|
18458
18468
|
return_phone?: string;
|
|
18459
18469
|
/** the order return email */
|
|
18460
18470
|
return_email?: string;
|
|
18471
|
+
/**
|
|
18472
|
+
* the id of the associated return address record
|
|
18473
|
+
* @format int32
|
|
18474
|
+
*/
|
|
18475
|
+
return_address_id?: number;
|
|
18461
18476
|
/**
|
|
18462
18477
|
* the order return time limit
|
|
18463
18478
|
* @format int32
|
|
@@ -19147,6 +19162,11 @@ export interface PostApiV21OrdersRequest {
|
|
|
19147
19162
|
require_signature?: boolean;
|
|
19148
19163
|
/** is the order address residential? */
|
|
19149
19164
|
residential?: boolean;
|
|
19165
|
+
/**
|
|
19166
|
+
* the id of the associated return address record
|
|
19167
|
+
* @format int32
|
|
19168
|
+
*/
|
|
19169
|
+
return_address_id?: number;
|
|
19150
19170
|
/** the order return city */
|
|
19151
19171
|
return_city?: string;
|
|
19152
19172
|
/** the order return company */
|
|
@@ -21989,6 +22009,11 @@ export interface PostApiV2OrdersBulkRequest {
|
|
|
21989
22009
|
return_phone?: string;
|
|
21990
22010
|
/** the order return email */
|
|
21991
22011
|
return_email?: string;
|
|
22012
|
+
/**
|
|
22013
|
+
* the id of the associated return address record
|
|
22014
|
+
* @format int32
|
|
22015
|
+
*/
|
|
22016
|
+
return_address_id?: number;
|
|
21992
22017
|
/**
|
|
21993
22018
|
* the order return time limit
|
|
21994
22019
|
* @format int32
|
|
@@ -22678,6 +22703,11 @@ export interface PostApiV2OrdersRequest {
|
|
|
22678
22703
|
require_signature?: boolean;
|
|
22679
22704
|
/** is the order address residential? */
|
|
22680
22705
|
residential?: boolean;
|
|
22706
|
+
/**
|
|
22707
|
+
* the id of the associated return address record
|
|
22708
|
+
* @format int32
|
|
22709
|
+
*/
|
|
22710
|
+
return_address_id?: number;
|
|
22681
22711
|
/** the order return city */
|
|
22682
22712
|
return_city?: string;
|
|
22683
22713
|
/** the order return company */
|
|
@@ -25532,6 +25562,11 @@ export interface PutApiV21OrdersIdRequest {
|
|
|
25532
25562
|
require_signature?: boolean;
|
|
25533
25563
|
/** is the order address residential? */
|
|
25534
25564
|
residential?: boolean;
|
|
25565
|
+
/**
|
|
25566
|
+
* the id of the associated return address record
|
|
25567
|
+
* @format int32
|
|
25568
|
+
*/
|
|
25569
|
+
return_address_id?: number;
|
|
25535
25570
|
/** the order return city */
|
|
25536
25571
|
return_city?: string;
|
|
25537
25572
|
/** the order return company */
|
|
@@ -28411,6 +28446,11 @@ export interface PutApiV2OrdersIdRequest {
|
|
|
28411
28446
|
require_signature?: boolean;
|
|
28412
28447
|
/** is the order address residential? */
|
|
28413
28448
|
residential?: boolean;
|
|
28449
|
+
/**
|
|
28450
|
+
* the id of the associated return address record
|
|
28451
|
+
* @format int32
|
|
28452
|
+
*/
|
|
28453
|
+
return_address_id?: number;
|
|
28414
28454
|
/** the order return city */
|
|
28415
28455
|
return_city?: string;
|
|
28416
28456
|
/** the order return company */
|
|
@@ -1514,6 +1514,11 @@ export interface ApiV2EntitiesOrder {
|
|
|
1514
1514
|
require_signature?: boolean | null;
|
|
1515
1515
|
/** is the order address residential? */
|
|
1516
1516
|
residential?: boolean | null;
|
|
1517
|
+
/**
|
|
1518
|
+
* the id of the associated return address record
|
|
1519
|
+
* @format int32
|
|
1520
|
+
*/
|
|
1521
|
+
return_address_id?: number | null;
|
|
1517
1522
|
/** is the order return address verified? */
|
|
1518
1523
|
return_address_verified?: boolean | null;
|
|
1519
1524
|
/** the order return city */
|
|
@@ -4244,6 +4249,11 @@ export interface ApiV21EntitiesOrder {
|
|
|
4244
4249
|
require_signature?: boolean | null;
|
|
4245
4250
|
/** is the order address residential? */
|
|
4246
4251
|
residential?: boolean | null;
|
|
4252
|
+
/**
|
|
4253
|
+
* the id of the associated return address record
|
|
4254
|
+
* @format int32
|
|
4255
|
+
*/
|
|
4256
|
+
return_address_id?: number | null;
|
|
4247
4257
|
/** is the order return address verified? */
|
|
4248
4258
|
return_address_verified?: boolean | null;
|
|
4249
4259
|
/** the order return city */
|
|
@@ -7534,6 +7544,11 @@ export interface PostApiV21OrdersBulkRequest {
|
|
|
7534
7544
|
return_phone?: string;
|
|
7535
7545
|
/** the order return email */
|
|
7536
7546
|
return_email?: string;
|
|
7547
|
+
/**
|
|
7548
|
+
* the id of the associated return address record
|
|
7549
|
+
* @format int32
|
|
7550
|
+
*/
|
|
7551
|
+
return_address_id?: number;
|
|
7537
7552
|
/**
|
|
7538
7553
|
* the order return time limit
|
|
7539
7554
|
* @format int32
|
|
@@ -8141,6 +8156,11 @@ export interface PostApiV21OrdersRequest {
|
|
|
8141
8156
|
require_signature?: boolean;
|
|
8142
8157
|
/** is the order address residential? */
|
|
8143
8158
|
residential?: boolean;
|
|
8159
|
+
/**
|
|
8160
|
+
* the id of the associated return address record
|
|
8161
|
+
* @format int32
|
|
8162
|
+
*/
|
|
8163
|
+
return_address_id?: number;
|
|
8144
8164
|
/** the order return city */
|
|
8145
8165
|
return_city?: string;
|
|
8146
8166
|
/** the order return company */
|
|
@@ -9478,6 +9498,11 @@ export interface PostApiV2OrdersBulkRequest {
|
|
|
9478
9498
|
return_phone?: string;
|
|
9479
9499
|
/** the order return email */
|
|
9480
9500
|
return_email?: string;
|
|
9501
|
+
/**
|
|
9502
|
+
* the id of the associated return address record
|
|
9503
|
+
* @format int32
|
|
9504
|
+
*/
|
|
9505
|
+
return_address_id?: number;
|
|
9481
9506
|
/**
|
|
9482
9507
|
* the order return time limit
|
|
9483
9508
|
* @format int32
|
|
@@ -10085,6 +10110,11 @@ export interface PostApiV2OrdersRequest {
|
|
|
10085
10110
|
require_signature?: boolean;
|
|
10086
10111
|
/** is the order address residential? */
|
|
10087
10112
|
residential?: boolean;
|
|
10113
|
+
/**
|
|
10114
|
+
* the id of the associated return address record
|
|
10115
|
+
* @format int32
|
|
10116
|
+
*/
|
|
10117
|
+
return_address_id?: number;
|
|
10088
10118
|
/** the order return city */
|
|
10089
10119
|
return_city?: string;
|
|
10090
10120
|
/** the order return company */
|
|
@@ -11515,6 +11545,11 @@ export interface PutApiV21OrdersIdRequest {
|
|
|
11515
11545
|
require_signature?: boolean;
|
|
11516
11546
|
/** is the order address residential? */
|
|
11517
11547
|
residential?: boolean;
|
|
11548
|
+
/**
|
|
11549
|
+
* the id of the associated return address record
|
|
11550
|
+
* @format int32
|
|
11551
|
+
*/
|
|
11552
|
+
return_address_id?: number;
|
|
11518
11553
|
/** the order return city */
|
|
11519
11554
|
return_city?: string;
|
|
11520
11555
|
/** the order return company */
|
|
@@ -12737,6 +12772,11 @@ export interface PutApiV2OrdersIdRequest {
|
|
|
12737
12772
|
require_signature?: boolean;
|
|
12738
12773
|
/** is the order address residential? */
|
|
12739
12774
|
residential?: boolean;
|
|
12775
|
+
/**
|
|
12776
|
+
* the id of the associated return address record
|
|
12777
|
+
* @format int32
|
|
12778
|
+
*/
|
|
12779
|
+
return_address_id?: number;
|
|
12740
12780
|
/** the order return city */
|
|
12741
12781
|
return_city?: string;
|
|
12742
12782
|
/** the order return company */
|