@whiplashmerch/whiplash-api-client 3.2.5 → 3.2.7
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.
|
@@ -3795,6 +3795,8 @@ export interface ApiV2EntitiesPallet {
|
|
|
3795
3795
|
* @format int32
|
|
3796
3796
|
*/
|
|
3797
3797
|
total_package_count?: number | null;
|
|
3798
|
+
/** the total weight of the pallet */
|
|
3799
|
+
total_weight?: string | null;
|
|
3798
3800
|
/**
|
|
3799
3801
|
* the pallet last update date and time
|
|
3800
3802
|
* @format date-time
|
|
@@ -4587,6 +4589,11 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
4587
4589
|
* @format date-time
|
|
4588
4590
|
*/
|
|
4589
4591
|
eta?: string | null;
|
|
4592
|
+
/**
|
|
4593
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
4594
|
+
* @format date-time
|
|
4595
|
+
*/
|
|
4596
|
+
fully_delivered_at?: string | null;
|
|
4590
4597
|
/** was handling billed? */
|
|
4591
4598
|
handling_billed?: boolean | null;
|
|
4592
4599
|
/**
|
|
@@ -4610,6 +4617,8 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
4610
4617
|
*/
|
|
4611
4618
|
order_id?: number | null;
|
|
4612
4619
|
originator?: ApiV2EntitiesOriginator;
|
|
4620
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
4621
|
+
partially_arrived?: boolean | null;
|
|
4613
4622
|
/** was postage billed? */
|
|
4614
4623
|
postage_billed?: boolean | null;
|
|
4615
4624
|
/**
|
|
@@ -8865,6 +8874,8 @@ export interface ApiV21EntitiesPallet {
|
|
|
8865
8874
|
* @format int32
|
|
8866
8875
|
*/
|
|
8867
8876
|
total_package_count?: number | null;
|
|
8877
|
+
/** the total weight of the pallet */
|
|
8878
|
+
total_weight?: string | null;
|
|
8868
8879
|
/**
|
|
8869
8880
|
* the pallet last update date and time
|
|
8870
8881
|
* @format date-time
|
|
@@ -9567,6 +9578,11 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
9567
9578
|
* @format date-time
|
|
9568
9579
|
*/
|
|
9569
9580
|
eta?: string | null;
|
|
9581
|
+
/**
|
|
9582
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
9583
|
+
* @format date-time
|
|
9584
|
+
*/
|
|
9585
|
+
fully_delivered_at?: string | null;
|
|
9570
9586
|
/** was handling billed? */
|
|
9571
9587
|
handling_billed?: boolean | null;
|
|
9572
9588
|
/**
|
|
@@ -9590,6 +9606,8 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
9590
9606
|
*/
|
|
9591
9607
|
order_id?: number | null;
|
|
9592
9608
|
originator?: ApiV21EntitiesOriginator;
|
|
9609
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
9610
|
+
partially_arrived?: boolean | null;
|
|
9593
9611
|
/** was postage billed? */
|
|
9594
9612
|
postage_billed?: boolean | null;
|
|
9595
9613
|
/**
|
|
@@ -19215,6 +19233,13 @@ export interface PostApiV21ShipnoticesBulkRequest {
|
|
|
19215
19233
|
* @format date-time
|
|
19216
19234
|
*/
|
|
19217
19235
|
delivered_at?: string;
|
|
19236
|
+
/**
|
|
19237
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
19238
|
+
* @format date-time
|
|
19239
|
+
*/
|
|
19240
|
+
fully_delivered_at?: string;
|
|
19241
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
19242
|
+
partially_arrived?: boolean;
|
|
19218
19243
|
/**
|
|
19219
19244
|
* date when the shipnotice is due to be delivered
|
|
19220
19245
|
* @format date-time
|
|
@@ -19426,6 +19451,11 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
19426
19451
|
* @format date-time
|
|
19427
19452
|
*/
|
|
19428
19453
|
eta: string;
|
|
19454
|
+
/**
|
|
19455
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
19456
|
+
* @format date-time
|
|
19457
|
+
*/
|
|
19458
|
+
fully_delivered_at?: string;
|
|
19429
19459
|
/** was handling billed? */
|
|
19430
19460
|
handling_billed?: boolean;
|
|
19431
19461
|
/** is inspection required? (default: false) */
|
|
@@ -19458,6 +19488,8 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
19458
19488
|
/** miscellaneous info for the originator */
|
|
19459
19489
|
misc?: string;
|
|
19460
19490
|
};
|
|
19491
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
19492
|
+
partially_arrived?: boolean;
|
|
19461
19493
|
/** was postage billed? */
|
|
19462
19494
|
postage_billed?: boolean;
|
|
19463
19495
|
/**
|
|
@@ -22689,6 +22721,13 @@ export interface PostApiV2ShipnoticesBulkRequest {
|
|
|
22689
22721
|
* @format date-time
|
|
22690
22722
|
*/
|
|
22691
22723
|
delivered_at?: string;
|
|
22724
|
+
/**
|
|
22725
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
22726
|
+
* @format date-time
|
|
22727
|
+
*/
|
|
22728
|
+
fully_delivered_at?: string;
|
|
22729
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
22730
|
+
partially_arrived?: boolean;
|
|
22692
22731
|
/**
|
|
22693
22732
|
* date when the shipnotice is due to be delivered
|
|
22694
22733
|
* @format date-time
|
|
@@ -22900,6 +22939,11 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
22900
22939
|
* @format date-time
|
|
22901
22940
|
*/
|
|
22902
22941
|
eta: string;
|
|
22942
|
+
/**
|
|
22943
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
22944
|
+
* @format date-time
|
|
22945
|
+
*/
|
|
22946
|
+
fully_delivered_at?: string;
|
|
22903
22947
|
/** was handling billed? */
|
|
22904
22948
|
handling_billed?: boolean;
|
|
22905
22949
|
/** is inspection required? (default: false) */
|
|
@@ -22932,6 +22976,8 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
22932
22976
|
/** miscellaneous info for the originator */
|
|
22933
22977
|
misc?: string;
|
|
22934
22978
|
};
|
|
22979
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
22980
|
+
partially_arrived?: boolean;
|
|
22935
22981
|
/** was postage billed? */
|
|
22936
22982
|
postage_billed?: boolean;
|
|
22937
22983
|
/**
|
|
@@ -25701,6 +25747,11 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
25701
25747
|
* @format date-time
|
|
25702
25748
|
*/
|
|
25703
25749
|
eta?: string;
|
|
25750
|
+
/**
|
|
25751
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
25752
|
+
* @format date-time
|
|
25753
|
+
*/
|
|
25754
|
+
fully_delivered_at?: string;
|
|
25704
25755
|
/** was handling billed? */
|
|
25705
25756
|
handling_billed?: boolean;
|
|
25706
25757
|
/** meta data for this shipnotice as stringified JSON */
|
|
@@ -25711,6 +25762,8 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
25711
25762
|
notes_by_customer?: string;
|
|
25712
25763
|
/** notes by whiplash */
|
|
25713
25764
|
notes_by_whiplash?: string;
|
|
25765
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
25766
|
+
partially_arrived?: boolean;
|
|
25714
25767
|
/** was postage billed? */
|
|
25715
25768
|
postage_billed?: boolean;
|
|
25716
25769
|
/**
|
|
@@ -28561,6 +28614,11 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
28561
28614
|
* @format date-time
|
|
28562
28615
|
*/
|
|
28563
28616
|
eta?: string;
|
|
28617
|
+
/**
|
|
28618
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
28619
|
+
* @format date-time
|
|
28620
|
+
*/
|
|
28621
|
+
fully_delivered_at?: string;
|
|
28564
28622
|
/** was handling billed? */
|
|
28565
28623
|
handling_billed?: boolean;
|
|
28566
28624
|
/** meta data for this shipnotice as stringified JSON */
|
|
@@ -28571,6 +28629,8 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
28571
28629
|
notes_by_customer?: string;
|
|
28572
28630
|
/** notes by whiplash */
|
|
28573
28631
|
notes_by_whiplash?: string;
|
|
28632
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
28633
|
+
partially_arrived?: boolean;
|
|
28574
28634
|
/** was postage billed? */
|
|
28575
28635
|
postage_billed?: boolean;
|
|
28576
28636
|
/**
|
|
@@ -2118,6 +2118,11 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
2118
2118
|
* @format date-time
|
|
2119
2119
|
*/
|
|
2120
2120
|
eta?: string | null;
|
|
2121
|
+
/**
|
|
2122
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
2123
|
+
* @format date-time
|
|
2124
|
+
*/
|
|
2125
|
+
fully_delivered_at?: string | null;
|
|
2121
2126
|
/** was handling billed? */
|
|
2122
2127
|
handling_billed?: boolean | null;
|
|
2123
2128
|
/**
|
|
@@ -2141,6 +2146,8 @@ export interface ApiV2EntitiesShipnotice {
|
|
|
2141
2146
|
*/
|
|
2142
2147
|
order_id?: number | null;
|
|
2143
2148
|
originator?: ApiV2EntitiesOriginator;
|
|
2149
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
2150
|
+
partially_arrived?: boolean | null;
|
|
2144
2151
|
/** was postage billed? */
|
|
2145
2152
|
postage_billed?: boolean | null;
|
|
2146
2153
|
/**
|
|
@@ -4548,6 +4555,11 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
4548
4555
|
* @format date-time
|
|
4549
4556
|
*/
|
|
4550
4557
|
eta?: string | null;
|
|
4558
|
+
/**
|
|
4559
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
4560
|
+
* @format date-time
|
|
4561
|
+
*/
|
|
4562
|
+
fully_delivered_at?: string | null;
|
|
4551
4563
|
/** was handling billed? */
|
|
4552
4564
|
handling_billed?: boolean | null;
|
|
4553
4565
|
/**
|
|
@@ -4571,6 +4583,8 @@ export interface ApiV21EntitiesShipnotice {
|
|
|
4571
4583
|
*/
|
|
4572
4584
|
order_id?: number | null;
|
|
4573
4585
|
originator?: ApiV21EntitiesOriginator;
|
|
4586
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
4587
|
+
partially_arrived?: boolean | null;
|
|
4574
4588
|
/** was postage billed? */
|
|
4575
4589
|
postage_billed?: boolean | null;
|
|
4576
4590
|
/**
|
|
@@ -7970,6 +7984,13 @@ export interface PostApiV21ShipnoticesBulkRequest {
|
|
|
7970
7984
|
* @format date-time
|
|
7971
7985
|
*/
|
|
7972
7986
|
delivered_at?: string;
|
|
7987
|
+
/**
|
|
7988
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
7989
|
+
* @format date-time
|
|
7990
|
+
*/
|
|
7991
|
+
fully_delivered_at?: string;
|
|
7992
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
7993
|
+
partially_arrived?: boolean;
|
|
7973
7994
|
/**
|
|
7974
7995
|
* date when the shipnotice is due to be delivered
|
|
7975
7996
|
* @format date-time
|
|
@@ -8133,6 +8154,11 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
8133
8154
|
* @format date-time
|
|
8134
8155
|
*/
|
|
8135
8156
|
eta: string;
|
|
8157
|
+
/**
|
|
8158
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
8159
|
+
* @format date-time
|
|
8160
|
+
*/
|
|
8161
|
+
fully_delivered_at?: string;
|
|
8136
8162
|
/** was handling billed? */
|
|
8137
8163
|
handling_billed?: boolean;
|
|
8138
8164
|
/** is inspection required? (default: false) */
|
|
@@ -8165,6 +8191,8 @@ export interface PostApiV21ShipnoticesRequest {
|
|
|
8165
8191
|
/** miscellaneous info for the originator */
|
|
8166
8192
|
misc?: string;
|
|
8167
8193
|
};
|
|
8194
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
8195
|
+
partially_arrived?: boolean;
|
|
8168
8196
|
/** was postage billed? */
|
|
8169
8197
|
postage_billed?: boolean;
|
|
8170
8198
|
/**
|
|
@@ -9859,6 +9887,13 @@ export interface PostApiV2ShipnoticesBulkRequest {
|
|
|
9859
9887
|
* @format date-time
|
|
9860
9888
|
*/
|
|
9861
9889
|
delivered_at?: string;
|
|
9890
|
+
/**
|
|
9891
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
9892
|
+
* @format date-time
|
|
9893
|
+
*/
|
|
9894
|
+
fully_delivered_at?: string;
|
|
9895
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
9896
|
+
partially_arrived?: boolean;
|
|
9862
9897
|
/**
|
|
9863
9898
|
* date when the shipnotice is due to be delivered
|
|
9864
9899
|
* @format date-time
|
|
@@ -10022,6 +10057,11 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
10022
10057
|
* @format date-time
|
|
10023
10058
|
*/
|
|
10024
10059
|
eta: string;
|
|
10060
|
+
/**
|
|
10061
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
10062
|
+
* @format date-time
|
|
10063
|
+
*/
|
|
10064
|
+
fully_delivered_at?: string;
|
|
10025
10065
|
/** was handling billed? */
|
|
10026
10066
|
handling_billed?: boolean;
|
|
10027
10067
|
/** is inspection required? (default: false) */
|
|
@@ -10054,6 +10094,8 @@ export interface PostApiV2ShipnoticesRequest {
|
|
|
10054
10094
|
/** miscellaneous info for the originator */
|
|
10055
10095
|
misc?: string;
|
|
10056
10096
|
};
|
|
10097
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
10098
|
+
partially_arrived?: boolean;
|
|
10057
10099
|
/** was postage billed? */
|
|
10058
10100
|
postage_billed?: boolean;
|
|
10059
10101
|
/**
|
|
@@ -11234,6 +11276,11 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
11234
11276
|
* @format date-time
|
|
11235
11277
|
*/
|
|
11236
11278
|
eta?: string;
|
|
11279
|
+
/**
|
|
11280
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
11281
|
+
* @format date-time
|
|
11282
|
+
*/
|
|
11283
|
+
fully_delivered_at?: string;
|
|
11237
11284
|
/** was handling billed? */
|
|
11238
11285
|
handling_billed?: boolean;
|
|
11239
11286
|
/** meta data for this shipnotice as stringified JSON */
|
|
@@ -11244,6 +11291,8 @@ export interface PutApiV21ShipnoticesIdRequest {
|
|
|
11244
11291
|
notes_by_customer?: string;
|
|
11245
11292
|
/** notes by whiplash */
|
|
11246
11293
|
notes_by_whiplash?: string;
|
|
11294
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
11295
|
+
partially_arrived?: boolean;
|
|
11247
11296
|
/** was postage billed? */
|
|
11248
11297
|
postage_billed?: boolean;
|
|
11249
11298
|
/**
|
|
@@ -12421,6 +12470,11 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
12421
12470
|
* @format date-time
|
|
12422
12471
|
*/
|
|
12423
12472
|
eta?: string;
|
|
12473
|
+
/**
|
|
12474
|
+
* date when the shipnotice was fully delivered (all items received)
|
|
12475
|
+
* @format date-time
|
|
12476
|
+
*/
|
|
12477
|
+
fully_delivered_at?: string;
|
|
12424
12478
|
/** was handling billed? */
|
|
12425
12479
|
handling_billed?: boolean;
|
|
12426
12480
|
/** meta data for this shipnotice as stringified JSON */
|
|
@@ -12431,6 +12485,8 @@ export interface PutApiV2ShipnoticesIdRequest {
|
|
|
12431
12485
|
notes_by_customer?: string;
|
|
12432
12486
|
/** notes by whiplash */
|
|
12433
12487
|
notes_by_whiplash?: string;
|
|
12488
|
+
/** was anything missing on initial arrival of the shipnotice */
|
|
12489
|
+
partially_arrived?: boolean;
|
|
12434
12490
|
/** was postage billed? */
|
|
12435
12491
|
postage_billed?: boolean;
|
|
12436
12492
|
/**
|