@whiplashmerch/whiplash-api-client 2.0.18 → 2.0.19
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.
|
@@ -4672,6 +4672,8 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
4672
4672
|
* @format date-time
|
|
4673
4673
|
*/
|
|
4674
4674
|
arrived_at?: string;
|
|
4675
|
+
/** BOL proxy for this shipnotice. */
|
|
4676
|
+
bol_proxy?: string | null;
|
|
4675
4677
|
/** shipping carrier */
|
|
4676
4678
|
carrier?: string;
|
|
4677
4679
|
/**
|
|
@@ -4725,6 +4727,8 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
4725
4727
|
inspection_required?: boolean;
|
|
4726
4728
|
/** meta data for this shipnotice as stringified JSON */
|
|
4727
4729
|
meta_data?: string | null;
|
|
4730
|
+
/** MID code for this shipnotice. */
|
|
4731
|
+
mid_code?: string | null;
|
|
4728
4732
|
/** notes by customer */
|
|
4729
4733
|
notes_by_customer?: string | null;
|
|
4730
4734
|
/** notes by whiplash */
|
|
@@ -4815,6 +4819,8 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
4815
4819
|
* @format int32
|
|
4816
4820
|
*/
|
|
4817
4821
|
warehouse_id?: number;
|
|
4822
|
+
/** zone status of this shipnotice. */
|
|
4823
|
+
zone_status?: string | null;
|
|
4818
4824
|
}
|
|
4819
4825
|
/** V2 */
|
|
4820
4826
|
export interface ApiV2EntitiesShipnoticeItem {
|
|
@@ -4896,6 +4902,11 @@ export interface ApiV2EntitiesShipnoticeItem {
|
|
|
4896
4902
|
* @format int32
|
|
4897
4903
|
*/
|
|
4898
4904
|
unallocated?: number;
|
|
4905
|
+
/**
|
|
4906
|
+
* unit cost for this shipnotice item
|
|
4907
|
+
* @format float
|
|
4908
|
+
*/
|
|
4909
|
+
unit_cost?: number | null;
|
|
4899
4910
|
/**
|
|
4900
4911
|
* the shipnotice item last update date and time
|
|
4901
4912
|
* @format date-time
|
|
@@ -8291,6 +8302,8 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
8291
8302
|
* @format date-time
|
|
8292
8303
|
*/
|
|
8293
8304
|
arrived_at?: string;
|
|
8305
|
+
/** BOL proxy for this shipnotice. */
|
|
8306
|
+
bol_proxy?: string | null;
|
|
8294
8307
|
/**
|
|
8295
8308
|
* the shipnotice must be completed by date and time
|
|
8296
8309
|
* @format date-time
|
|
@@ -8343,6 +8356,8 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
8343
8356
|
inspection_required?: boolean;
|
|
8344
8357
|
/** meta data for this shipnotice as stringified JSON */
|
|
8345
8358
|
meta_data?: string | null;
|
|
8359
|
+
/** MID code for this shipnotice. */
|
|
8360
|
+
mid_code?: string | null;
|
|
8346
8361
|
/** notes by customer */
|
|
8347
8362
|
notes_by_customer?: string | null;
|
|
8348
8363
|
/** notes by whiplash */
|
|
@@ -8431,6 +8446,8 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
8431
8446
|
warehouse_id?: number;
|
|
8432
8447
|
/** The name of the associated warehouse */
|
|
8433
8448
|
warehouse_name?: string;
|
|
8449
|
+
/** zone status of this shipnotice. */
|
|
8450
|
+
zone_status?: string | null;
|
|
8434
8451
|
}
|
|
8435
8452
|
/** V2_1 */
|
|
8436
8453
|
export interface ApiV21EntitiesShipnoticeItem {
|
|
@@ -8495,6 +8512,11 @@ export interface ApiV21EntitiesShipnoticeItem {
|
|
|
8495
8512
|
* @format int32
|
|
8496
8513
|
*/
|
|
8497
8514
|
shipnotice_id?: number | null;
|
|
8515
|
+
/**
|
|
8516
|
+
* unit cost for this shipnotice item
|
|
8517
|
+
* @format float
|
|
8518
|
+
*/
|
|
8519
|
+
unit_cost?: number | null;
|
|
8498
8520
|
/**
|
|
8499
8521
|
* the shipnotice item last update date and time
|
|
8500
8522
|
* @format date-time
|
|
@@ -17351,6 +17373,12 @@ export interface PostApiV21ShipnoticesBulkRequest {
|
|
|
17351
17373
|
reference?: string;
|
|
17352
17374
|
/** JSON object of required and optional receiving quantities verified by staff */
|
|
17353
17375
|
quantities_verified?: object;
|
|
17376
|
+
/** BOL proxy for this shipnotice. */
|
|
17377
|
+
bol_proxy?: string;
|
|
17378
|
+
/** MID code for this shipnotice. */
|
|
17379
|
+
mid_code?: string;
|
|
17380
|
+
/** zone status of this shipnotice. */
|
|
17381
|
+
zone_status?: string;
|
|
17354
17382
|
/** is inspection required? (default: false) */
|
|
17355
17383
|
inspection_required?: boolean;
|
|
17356
17384
|
/**
|
|
@@ -17504,6 +17532,11 @@ export interface PostApiV21ShipnoticesIdShipnoticeItemsRequest {
|
|
|
17504
17532
|
quantity?: number;
|
|
17505
17533
|
/** action to perform on item return */
|
|
17506
17534
|
return_action?: string;
|
|
17535
|
+
/**
|
|
17536
|
+
* Unit cost per item
|
|
17537
|
+
* @format float
|
|
17538
|
+
*/
|
|
17539
|
+
unit_cost?: number;
|
|
17507
17540
|
}
|
|
17508
17541
|
export interface PostApiV21ShipnoticesRequest {
|
|
17509
17542
|
/**
|
|
@@ -17516,6 +17549,8 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
17516
17549
|
* @format date-time
|
|
17517
17550
|
*/
|
|
17518
17551
|
arrived_at?: string;
|
|
17552
|
+
/** BOL proxy for this shipnotice. */
|
|
17553
|
+
bol_proxy?: string;
|
|
17519
17554
|
carrier?: string;
|
|
17520
17555
|
/**
|
|
17521
17556
|
* the shipnotice completion date and time
|
|
@@ -17554,6 +17589,8 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
17554
17589
|
/** Included meta fields for associations */
|
|
17555
17590
|
association_fields?: object;
|
|
17556
17591
|
};
|
|
17592
|
+
/** MID code for this shipnotice. */
|
|
17593
|
+
mid_code?: string;
|
|
17557
17594
|
/** notes by customer */
|
|
17558
17595
|
notes_by_customer?: string;
|
|
17559
17596
|
/** notes by whiplash */
|
|
@@ -17658,6 +17695,8 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
17658
17695
|
* @format int32
|
|
17659
17696
|
*/
|
|
17660
17697
|
warehouse_id?: number;
|
|
17698
|
+
/** zone status of this shipnotice. */
|
|
17699
|
+
zone_status?: string;
|
|
17661
17700
|
}
|
|
17662
17701
|
export interface PostApiV21ShippingAliasesRequest {
|
|
17663
17702
|
/**
|
|
@@ -20957,6 +20996,12 @@ export interface PostApiV2ShipnoticesBulkRequest {
|
|
|
20957
20996
|
reference?: string;
|
|
20958
20997
|
/** JSON object of required and optional receiving quantities verified by staff */
|
|
20959
20998
|
quantities_verified?: object;
|
|
20999
|
+
/** BOL proxy for this shipnotice. */
|
|
21000
|
+
bol_proxy?: string;
|
|
21001
|
+
/** MID code for this shipnotice. */
|
|
21002
|
+
mid_code?: string;
|
|
21003
|
+
/** zone status of this shipnotice. */
|
|
21004
|
+
zone_status?: string;
|
|
20960
21005
|
/** is inspection required? (default: false) */
|
|
20961
21006
|
inspection_required?: boolean;
|
|
20962
21007
|
/**
|
|
@@ -21110,6 +21155,11 @@ export interface PostApiV2ShipnoticesIdShipnoticeItemsRequest {
|
|
|
21110
21155
|
quantity?: number;
|
|
21111
21156
|
/** action to perform on item return */
|
|
21112
21157
|
return_action?: string;
|
|
21158
|
+
/**
|
|
21159
|
+
* Unit cost per item
|
|
21160
|
+
* @format float
|
|
21161
|
+
*/
|
|
21162
|
+
unit_cost?: number;
|
|
21113
21163
|
}
|
|
21114
21164
|
export interface PostApiV2ShipnoticesRequest {
|
|
21115
21165
|
/**
|
|
@@ -21122,6 +21172,8 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
21122
21172
|
* @format date-time
|
|
21123
21173
|
*/
|
|
21124
21174
|
arrived_at?: string;
|
|
21175
|
+
/** BOL proxy for this shipnotice. */
|
|
21176
|
+
bol_proxy?: string;
|
|
21125
21177
|
carrier?: string;
|
|
21126
21178
|
/**
|
|
21127
21179
|
* the shipnotice completion date and time
|
|
@@ -21160,6 +21212,8 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
21160
21212
|
/** Included meta fields for associations */
|
|
21161
21213
|
association_fields?: object;
|
|
21162
21214
|
};
|
|
21215
|
+
/** MID code for this shipnotice. */
|
|
21216
|
+
mid_code?: string;
|
|
21163
21217
|
/** notes by customer */
|
|
21164
21218
|
notes_by_customer?: string;
|
|
21165
21219
|
/** notes by whiplash */
|
|
@@ -21264,6 +21318,8 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
21264
21318
|
* @format int32
|
|
21265
21319
|
*/
|
|
21266
21320
|
warehouse_id?: number;
|
|
21321
|
+
/** zone status of this shipnotice. */
|
|
21322
|
+
zone_status?: string;
|
|
21267
21323
|
}
|
|
21268
21324
|
export interface PostApiV2ShippingAliasesRequest {
|
|
21269
21325
|
/**
|
|
@@ -24023,6 +24079,11 @@ export interface PutApiV21ShipnoticeItemsIdRequest {
|
|
|
24023
24079
|
* @format int32
|
|
24024
24080
|
*/
|
|
24025
24081
|
quantity?: number;
|
|
24082
|
+
/**
|
|
24083
|
+
* Unit cost per item
|
|
24084
|
+
* @format float
|
|
24085
|
+
*/
|
|
24086
|
+
unit_cost?: number;
|
|
24026
24087
|
}
|
|
24027
24088
|
export interface PutApiV21ShipnoticesIdCallActionRequest {
|
|
24028
24089
|
action?: string;
|
|
@@ -24051,6 +24112,8 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
24051
24112
|
* @format date-time
|
|
24052
24113
|
*/
|
|
24053
24114
|
arrived_at?: string;
|
|
24115
|
+
/** BOL proxy for this shipnotice. */
|
|
24116
|
+
bol_proxy?: string;
|
|
24054
24117
|
carrier?: string;
|
|
24055
24118
|
/**
|
|
24056
24119
|
* the shipnotice completion date and time
|
|
@@ -24080,6 +24143,8 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
24080
24143
|
handling_billed?: boolean;
|
|
24081
24144
|
/** meta data for this shipnotice as stringified JSON */
|
|
24082
24145
|
meta_data?: string;
|
|
24146
|
+
/** MID code for this shipnotice. */
|
|
24147
|
+
mid_code?: string;
|
|
24083
24148
|
/** notes by customer */
|
|
24084
24149
|
notes_by_customer?: string;
|
|
24085
24150
|
/** notes by whiplash */
|
|
@@ -24134,6 +24199,8 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
24134
24199
|
tracking?: string;
|
|
24135
24200
|
/** shipnotice type (Shipnotice, ConsumerReturn) */
|
|
24136
24201
|
type?: string;
|
|
24202
|
+
/** zone status of this shipnotice. */
|
|
24203
|
+
zone_status?: string;
|
|
24137
24204
|
}
|
|
24138
24205
|
export interface PutApiV21ShippingAliasesIdRequest {
|
|
24139
24206
|
/**
|
|
@@ -26997,6 +27064,11 @@ export interface PutApiV2ShipnoticeItemsIdRequest {
|
|
|
26997
27064
|
* @format int32
|
|
26998
27065
|
*/
|
|
26999
27066
|
quantity?: number;
|
|
27067
|
+
/**
|
|
27068
|
+
* Unit cost per item
|
|
27069
|
+
* @format float
|
|
27070
|
+
*/
|
|
27071
|
+
unit_cost?: number;
|
|
27000
27072
|
}
|
|
27001
27073
|
export interface PutApiV2ShipnoticesIdCallActionRequest {
|
|
27002
27074
|
action?: string;
|
|
@@ -27025,6 +27097,8 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
27025
27097
|
* @format date-time
|
|
27026
27098
|
*/
|
|
27027
27099
|
arrived_at?: string;
|
|
27100
|
+
/** BOL proxy for this shipnotice. */
|
|
27101
|
+
bol_proxy?: string;
|
|
27028
27102
|
carrier?: string;
|
|
27029
27103
|
/**
|
|
27030
27104
|
* the shipnotice completion date and time
|
|
@@ -27054,6 +27128,8 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
27054
27128
|
handling_billed?: boolean;
|
|
27055
27129
|
/** meta data for this shipnotice as stringified JSON */
|
|
27056
27130
|
meta_data?: string;
|
|
27131
|
+
/** MID code for this shipnotice. */
|
|
27132
|
+
mid_code?: string;
|
|
27057
27133
|
/** notes by customer */
|
|
27058
27134
|
notes_by_customer?: string;
|
|
27059
27135
|
/** notes by whiplash */
|
|
@@ -27108,6 +27184,8 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
27108
27184
|
tracking?: string;
|
|
27109
27185
|
/** shipnotice type (Shipnotice, ConsumerReturn) */
|
|
27110
27186
|
type?: string;
|
|
27187
|
+
/** zone status of this shipnotice. */
|
|
27188
|
+
zone_status?: string;
|
|
27111
27189
|
}
|
|
27112
27190
|
export interface PutApiV2ShippingAliasesIdRequest {
|
|
27113
27191
|
/**
|
|
@@ -2143,6 +2143,8 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
2143
2143
|
* @format date-time
|
|
2144
2144
|
*/
|
|
2145
2145
|
arrived_at?: string;
|
|
2146
|
+
/** BOL proxy for this shipnotice. */
|
|
2147
|
+
bol_proxy?: string | null;
|
|
2146
2148
|
/** shipping carrier */
|
|
2147
2149
|
carrier?: string;
|
|
2148
2150
|
/**
|
|
@@ -2196,6 +2198,8 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
2196
2198
|
inspection_required?: boolean;
|
|
2197
2199
|
/** meta data for this shipnotice as stringified JSON */
|
|
2198
2200
|
meta_data?: string | null;
|
|
2201
|
+
/** MID code for this shipnotice. */
|
|
2202
|
+
mid_code?: string | null;
|
|
2199
2203
|
/** notes by customer */
|
|
2200
2204
|
notes_by_customer?: string | null;
|
|
2201
2205
|
/** notes by whiplash */
|
|
@@ -2286,6 +2290,8 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
2286
2290
|
* @format int32
|
|
2287
2291
|
*/
|
|
2288
2292
|
warehouse_id?: number;
|
|
2293
|
+
/** zone status of this shipnotice. */
|
|
2294
|
+
zone_status?: string | null;
|
|
2289
2295
|
}
|
|
2290
2296
|
|
|
2291
2297
|
/** V2 */
|
|
@@ -2368,6 +2374,11 @@ export interface ApiV2EntitiesShipnoticeItem {
|
|
|
2368
2374
|
* @format int32
|
|
2369
2375
|
*/
|
|
2370
2376
|
unallocated?: number;
|
|
2377
|
+
/**
|
|
2378
|
+
* unit cost for this shipnotice item
|
|
2379
|
+
* @format float
|
|
2380
|
+
*/
|
|
2381
|
+
unit_cost?: number | null;
|
|
2371
2382
|
/**
|
|
2372
2383
|
* the shipnotice item last update date and time
|
|
2373
2384
|
* @format date-time
|
|
@@ -4162,6 +4173,8 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
4162
4173
|
* @format date-time
|
|
4163
4174
|
*/
|
|
4164
4175
|
arrived_at?: string;
|
|
4176
|
+
/** BOL proxy for this shipnotice. */
|
|
4177
|
+
bol_proxy?: string | null;
|
|
4165
4178
|
/**
|
|
4166
4179
|
* the shipnotice must be completed by date and time
|
|
4167
4180
|
* @format date-time
|
|
@@ -4214,6 +4227,8 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
4214
4227
|
inspection_required?: boolean;
|
|
4215
4228
|
/** meta data for this shipnotice as stringified JSON */
|
|
4216
4229
|
meta_data?: string | null;
|
|
4230
|
+
/** MID code for this shipnotice. */
|
|
4231
|
+
mid_code?: string | null;
|
|
4217
4232
|
/** notes by customer */
|
|
4218
4233
|
notes_by_customer?: string | null;
|
|
4219
4234
|
/** notes by whiplash */
|
|
@@ -4302,6 +4317,8 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
4302
4317
|
warehouse_id?: number;
|
|
4303
4318
|
/** The name of the associated warehouse */
|
|
4304
4319
|
warehouse_name?: string;
|
|
4320
|
+
/** zone status of this shipnotice. */
|
|
4321
|
+
zone_status?: string | null;
|
|
4305
4322
|
}
|
|
4306
4323
|
|
|
4307
4324
|
/** V2_1 */
|
|
@@ -4367,6 +4384,11 @@ export interface ApiV21EntitiesShipnoticeItem {
|
|
|
4367
4384
|
* @format int32
|
|
4368
4385
|
*/
|
|
4369
4386
|
shipnotice_id?: number | null;
|
|
4387
|
+
/**
|
|
4388
|
+
* unit cost for this shipnotice item
|
|
4389
|
+
* @format float
|
|
4390
|
+
*/
|
|
4391
|
+
unit_cost?: number | null;
|
|
4370
4392
|
/**
|
|
4371
4393
|
* the shipnotice item last update date and time
|
|
4372
4394
|
* @format date-time
|
|
@@ -7419,6 +7441,12 @@ export interface PostApiV21ShipnoticesBulkRequest {
|
|
|
7419
7441
|
reference?: string;
|
|
7420
7442
|
/** JSON object of required and optional receiving quantities verified by staff */
|
|
7421
7443
|
quantities_verified?: object;
|
|
7444
|
+
/** BOL proxy for this shipnotice. */
|
|
7445
|
+
bol_proxy?: string;
|
|
7446
|
+
/** MID code for this shipnotice. */
|
|
7447
|
+
mid_code?: string;
|
|
7448
|
+
/** zone status of this shipnotice. */
|
|
7449
|
+
zone_status?: string;
|
|
7422
7450
|
/** is inspection required? (default: false) */
|
|
7423
7451
|
inspection_required?: boolean;
|
|
7424
7452
|
/**
|
|
@@ -7523,6 +7551,11 @@ export interface PostApiV21ShipnoticesIdShipnoticeItemsRequest {
|
|
|
7523
7551
|
quantity?: number;
|
|
7524
7552
|
/** action to perform on item return */
|
|
7525
7553
|
return_action?: string;
|
|
7554
|
+
/**
|
|
7555
|
+
* Unit cost per item
|
|
7556
|
+
* @format float
|
|
7557
|
+
*/
|
|
7558
|
+
unit_cost?: number;
|
|
7526
7559
|
}
|
|
7527
7560
|
|
|
7528
7561
|
export interface PostApiV21ShipnoticesRequest {
|
|
@@ -7536,6 +7569,8 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
7536
7569
|
* @format date-time
|
|
7537
7570
|
*/
|
|
7538
7571
|
arrived_at?: string;
|
|
7572
|
+
/** BOL proxy for this shipnotice. */
|
|
7573
|
+
bol_proxy?: string;
|
|
7539
7574
|
carrier?: string;
|
|
7540
7575
|
/**
|
|
7541
7576
|
* the shipnotice completion date and time
|
|
@@ -7574,6 +7609,8 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
7574
7609
|
/** Included meta fields for associations */
|
|
7575
7610
|
association_fields?: object;
|
|
7576
7611
|
};
|
|
7612
|
+
/** MID code for this shipnotice. */
|
|
7613
|
+
mid_code?: string;
|
|
7577
7614
|
/** notes by customer */
|
|
7578
7615
|
notes_by_customer?: string;
|
|
7579
7616
|
/** notes by whiplash */
|
|
@@ -7678,6 +7715,8 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
7678
7715
|
* @format int32
|
|
7679
7716
|
*/
|
|
7680
7717
|
warehouse_id?: number;
|
|
7718
|
+
/** zone status of this shipnotice. */
|
|
7719
|
+
zone_status?: string;
|
|
7681
7720
|
}
|
|
7682
7721
|
|
|
7683
7722
|
export interface PostApiV21SimulateConsumerReturnsCreateRequest {
|
|
@@ -9350,6 +9389,12 @@ export interface PostApiV2ShipnoticesBulkRequest {
|
|
|
9350
9389
|
reference?: string;
|
|
9351
9390
|
/** JSON object of required and optional receiving quantities verified by staff */
|
|
9352
9391
|
quantities_verified?: object;
|
|
9392
|
+
/** BOL proxy for this shipnotice. */
|
|
9393
|
+
bol_proxy?: string;
|
|
9394
|
+
/** MID code for this shipnotice. */
|
|
9395
|
+
mid_code?: string;
|
|
9396
|
+
/** zone status of this shipnotice. */
|
|
9397
|
+
zone_status?: string;
|
|
9353
9398
|
/** is inspection required? (default: false) */
|
|
9354
9399
|
inspection_required?: boolean;
|
|
9355
9400
|
/**
|
|
@@ -9454,6 +9499,11 @@ export interface PostApiV2ShipnoticesIdShipnoticeItemsRequest {
|
|
|
9454
9499
|
quantity?: number;
|
|
9455
9500
|
/** action to perform on item return */
|
|
9456
9501
|
return_action?: string;
|
|
9502
|
+
/**
|
|
9503
|
+
* Unit cost per item
|
|
9504
|
+
* @format float
|
|
9505
|
+
*/
|
|
9506
|
+
unit_cost?: number;
|
|
9457
9507
|
}
|
|
9458
9508
|
|
|
9459
9509
|
export interface PostApiV2ShipnoticesRequest {
|
|
@@ -9467,6 +9517,8 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
9467
9517
|
* @format date-time
|
|
9468
9518
|
*/
|
|
9469
9519
|
arrived_at?: string;
|
|
9520
|
+
/** BOL proxy for this shipnotice. */
|
|
9521
|
+
bol_proxy?: string;
|
|
9470
9522
|
carrier?: string;
|
|
9471
9523
|
/**
|
|
9472
9524
|
* the shipnotice completion date and time
|
|
@@ -9505,6 +9557,8 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
9505
9557
|
/** Included meta fields for associations */
|
|
9506
9558
|
association_fields?: object;
|
|
9507
9559
|
};
|
|
9560
|
+
/** MID code for this shipnotice. */
|
|
9561
|
+
mid_code?: string;
|
|
9508
9562
|
/** notes by customer */
|
|
9509
9563
|
notes_by_customer?: string;
|
|
9510
9564
|
/** notes by whiplash */
|
|
@@ -9609,6 +9663,8 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
9609
9663
|
* @format int32
|
|
9610
9664
|
*/
|
|
9611
9665
|
warehouse_id?: number;
|
|
9666
|
+
/** zone status of this shipnotice. */
|
|
9667
|
+
zone_status?: string;
|
|
9612
9668
|
}
|
|
9613
9669
|
|
|
9614
9670
|
export interface PostApiV2SimulateConsumerReturnsCreateRequest {
|
|
@@ -10689,6 +10745,11 @@ export interface PutApiV21ShipnoticeItemsIdRequest {
|
|
|
10689
10745
|
* @format int32
|
|
10690
10746
|
*/
|
|
10691
10747
|
quantity?: number;
|
|
10748
|
+
/**
|
|
10749
|
+
* Unit cost per item
|
|
10750
|
+
* @format float
|
|
10751
|
+
*/
|
|
10752
|
+
unit_cost?: number;
|
|
10692
10753
|
}
|
|
10693
10754
|
|
|
10694
10755
|
export interface PutApiV21ShipnoticesIdMetaFieldsRequest {
|
|
@@ -10709,6 +10770,8 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
10709
10770
|
* @format date-time
|
|
10710
10771
|
*/
|
|
10711
10772
|
arrived_at?: string;
|
|
10773
|
+
/** BOL proxy for this shipnotice. */
|
|
10774
|
+
bol_proxy?: string;
|
|
10712
10775
|
carrier?: string;
|
|
10713
10776
|
/**
|
|
10714
10777
|
* the shipnotice completion date and time
|
|
@@ -10738,6 +10801,8 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
10738
10801
|
handling_billed?: boolean;
|
|
10739
10802
|
/** meta data for this shipnotice as stringified JSON */
|
|
10740
10803
|
meta_data?: string;
|
|
10804
|
+
/** MID code for this shipnotice. */
|
|
10805
|
+
mid_code?: string;
|
|
10741
10806
|
/** notes by customer */
|
|
10742
10807
|
notes_by_customer?: string;
|
|
10743
10808
|
/** notes by whiplash */
|
|
@@ -10792,6 +10857,8 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
10792
10857
|
tracking?: string;
|
|
10793
10858
|
/** shipnotice type (Shipnotice, ConsumerReturn) */
|
|
10794
10859
|
type?: string;
|
|
10860
|
+
/** zone status of this shipnotice. */
|
|
10861
|
+
zone_status?: string;
|
|
10795
10862
|
}
|
|
10796
10863
|
|
|
10797
10864
|
export interface PutApiV21SimulateConsumerReturnsConsumerReturnIdProcessingRequest {
|
|
@@ -11906,6 +11973,11 @@ export interface PutApiV2ShipnoticeItemsIdRequest {
|
|
|
11906
11973
|
* @format int32
|
|
11907
11974
|
*/
|
|
11908
11975
|
quantity?: number;
|
|
11976
|
+
/**
|
|
11977
|
+
* Unit cost per item
|
|
11978
|
+
* @format float
|
|
11979
|
+
*/
|
|
11980
|
+
unit_cost?: number;
|
|
11909
11981
|
}
|
|
11910
11982
|
|
|
11911
11983
|
export interface PutApiV2ShipnoticesIdMetaFieldsRequest {
|
|
@@ -11926,6 +11998,8 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
11926
11998
|
* @format date-time
|
|
11927
11999
|
*/
|
|
11928
12000
|
arrived_at?: string;
|
|
12001
|
+
/** BOL proxy for this shipnotice. */
|
|
12002
|
+
bol_proxy?: string;
|
|
11929
12003
|
carrier?: string;
|
|
11930
12004
|
/**
|
|
11931
12005
|
* the shipnotice completion date and time
|
|
@@ -11955,6 +12029,8 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
11955
12029
|
handling_billed?: boolean;
|
|
11956
12030
|
/** meta data for this shipnotice as stringified JSON */
|
|
11957
12031
|
meta_data?: string;
|
|
12032
|
+
/** MID code for this shipnotice. */
|
|
12033
|
+
mid_code?: string;
|
|
11958
12034
|
/** notes by customer */
|
|
11959
12035
|
notes_by_customer?: string;
|
|
11960
12036
|
/** notes by whiplash */
|
|
@@ -12009,6 +12085,8 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
12009
12085
|
tracking?: string;
|
|
12010
12086
|
/** shipnotice type (Shipnotice, ConsumerReturn) */
|
|
12011
12087
|
type?: string;
|
|
12088
|
+
/** zone status of this shipnotice. */
|
|
12089
|
+
zone_status?: string;
|
|
12012
12090
|
}
|
|
12013
12091
|
|
|
12014
12092
|
export interface PutApiV2SimulateConsumerReturnsConsumerReturnIdProcessingRequest {
|