@whiplashmerch/whiplash-api-client 3.2.4 → 3.2.6

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.
@@ -780,6 +780,8 @@ export interface ApiV2EntitiesCustomer {
780
780
  from_email?: string | null;
781
781
  /** Customer full logo url. */
782
782
  full_logo_url?: string;
783
+ /** Customer gestation length in hours. */
784
+ gestation_length?: string | null;
783
785
  /** Customer Global-E GUID. */
784
786
  global_e_guid?: string | null;
785
787
  /**
@@ -1022,6 +1024,8 @@ export interface ApiV2EntitiesCustomerShallow {
1022
1024
  from_email?: string;
1023
1025
  /** Customer full logo url. */
1024
1026
  full_logo_url?: string;
1027
+ /** Customer gestation length in hours. */
1028
+ gestation_length?: string;
1025
1029
  /** Customer Global-E GUID. */
1026
1030
  global_e_guid?: string;
1027
1031
  /**
@@ -4583,6 +4587,11 @@ export interface ApiV2EntitiesShipnotice {
4583
4587
  * @format date-time
4584
4588
  */
4585
4589
  eta?: string | null;
4590
+ /**
4591
+ * date when the shipnotice was fully delivered (all items received)
4592
+ * @format date-time
4593
+ */
4594
+ fully_delivered_at?: string | null;
4586
4595
  /** was handling billed? */
4587
4596
  handling_billed?: boolean | null;
4588
4597
  /**
@@ -4606,6 +4615,8 @@ export interface ApiV2EntitiesShipnotice {
4606
4615
  */
4607
4616
  order_id?: number | null;
4608
4617
  originator?: ApiV2EntitiesOriginator;
4618
+ /** was anything missing on initial arrival of the shipnotice */
4619
+ partially_arrived?: boolean | null;
4609
4620
  /** was postage billed? */
4610
4621
  postage_billed?: boolean | null;
4611
4622
  /**
@@ -6450,6 +6461,8 @@ export interface ApiV21EntitiesCustomer {
6450
6461
  from_email?: string | null;
6451
6462
  /** Customer full logo url. */
6452
6463
  full_logo_url?: string;
6464
+ /** Customer gestation length in hours. */
6465
+ gestation_length?: string | null;
6453
6466
  /** Customer Global-E GUID. */
6454
6467
  global_e_guid?: string | null;
6455
6468
  /**
@@ -9561,6 +9574,11 @@ export interface ApiV21EntitiesShipnotice {
9561
9574
  * @format date-time
9562
9575
  */
9563
9576
  eta?: string | null;
9577
+ /**
9578
+ * date when the shipnotice was fully delivered (all items received)
9579
+ * @format date-time
9580
+ */
9581
+ fully_delivered_at?: string | null;
9564
9582
  /** was handling billed? */
9565
9583
  handling_billed?: boolean | null;
9566
9584
  /**
@@ -9584,6 +9602,8 @@ export interface ApiV21EntitiesShipnotice {
9584
9602
  */
9585
9603
  order_id?: number | null;
9586
9604
  originator?: ApiV21EntitiesOriginator;
9605
+ /** was anything missing on initial arrival of the shipnotice */
9606
+ partially_arrived?: boolean | null;
9587
9607
  /** was postage billed? */
9588
9608
  postage_billed?: boolean | null;
9589
9609
  /**
@@ -17065,6 +17085,8 @@ export interface PostApiV21CustomersRequest {
17065
17085
  from_email?: string;
17066
17086
  /** Customer full logo url. */
17067
17087
  full_logo_url?: string;
17088
+ /** Customer gestation length in hours. */
17089
+ gestation_length?: string;
17068
17090
  /** Customer Global-E GUID. */
17069
17091
  global_e_guid?: string;
17070
17092
  /** Customer incoterm. */
@@ -19207,6 +19229,13 @@ export interface PostApiV21ShipnoticesBulkRequest {
19207
19229
  * @format date-time
19208
19230
  */
19209
19231
  delivered_at?: string;
19232
+ /**
19233
+ * date when the shipnotice was fully delivered (all items received)
19234
+ * @format date-time
19235
+ */
19236
+ fully_delivered_at?: string;
19237
+ /** was anything missing on initial arrival of the shipnotice */
19238
+ partially_arrived?: boolean;
19210
19239
  /**
19211
19240
  * date when the shipnotice is due to be delivered
19212
19241
  * @format date-time
@@ -19418,6 +19447,11 @@ export interface PostApiV21ShipnoticesRequest {
19418
19447
  * @format date-time
19419
19448
  */
19420
19449
  eta: string;
19450
+ /**
19451
+ * date when the shipnotice was fully delivered (all items received)
19452
+ * @format date-time
19453
+ */
19454
+ fully_delivered_at?: string;
19421
19455
  /** was handling billed? */
19422
19456
  handling_billed?: boolean;
19423
19457
  /** is inspection required? (default: false) */
@@ -19450,6 +19484,8 @@ export interface PostApiV21ShipnoticesRequest {
19450
19484
  /** miscellaneous info for the originator */
19451
19485
  misc?: string;
19452
19486
  };
19487
+ /** was anything missing on initial arrival of the shipnotice */
19488
+ partially_arrived?: boolean;
19453
19489
  /** was postage billed? */
19454
19490
  postage_billed?: boolean;
19455
19491
  /**
@@ -20537,6 +20573,8 @@ export interface PostApiV2CustomersRequest {
20537
20573
  from_email?: string;
20538
20574
  /** Customer full logo url. */
20539
20575
  full_logo_url?: string;
20576
+ /** Customer gestation length in hours. */
20577
+ gestation_length?: string;
20540
20578
  /** Customer Global-E GUID. */
20541
20579
  global_e_guid?: string;
20542
20580
  /** Customer incoterm. */
@@ -22679,6 +22717,13 @@ export interface PostApiV2ShipnoticesBulkRequest {
22679
22717
  * @format date-time
22680
22718
  */
22681
22719
  delivered_at?: string;
22720
+ /**
22721
+ * date when the shipnotice was fully delivered (all items received)
22722
+ * @format date-time
22723
+ */
22724
+ fully_delivered_at?: string;
22725
+ /** was anything missing on initial arrival of the shipnotice */
22726
+ partially_arrived?: boolean;
22682
22727
  /**
22683
22728
  * date when the shipnotice is due to be delivered
22684
22729
  * @format date-time
@@ -22890,6 +22935,11 @@ export interface PostApiV2ShipnoticesRequest {
22890
22935
  * @format date-time
22891
22936
  */
22892
22937
  eta: string;
22938
+ /**
22939
+ * date when the shipnotice was fully delivered (all items received)
22940
+ * @format date-time
22941
+ */
22942
+ fully_delivered_at?: string;
22893
22943
  /** was handling billed? */
22894
22944
  handling_billed?: boolean;
22895
22945
  /** is inspection required? (default: false) */
@@ -22922,6 +22972,8 @@ export interface PostApiV2ShipnoticesRequest {
22922
22972
  /** miscellaneous info for the originator */
22923
22973
  misc?: string;
22924
22974
  };
22975
+ /** was anything missing on initial arrival of the shipnotice */
22976
+ partially_arrived?: boolean;
22925
22977
  /** was postage billed? */
22926
22978
  postage_billed?: boolean;
22927
22979
  /**
@@ -23686,6 +23738,8 @@ export interface PutApiV21CustomersIdRequest {
23686
23738
  from_email?: string;
23687
23739
  /** Customer full logo url. */
23688
23740
  full_logo_url?: string;
23741
+ /** Customer gestation length in hours. */
23742
+ gestation_length?: string;
23689
23743
  /** Customer Global-E GUID. */
23690
23744
  global_e_guid?: string;
23691
23745
  /** Customer incoterm. */
@@ -25689,6 +25743,11 @@ export interface PutApiV21ShipnoticesIdRequest {
25689
25743
  * @format date-time
25690
25744
  */
25691
25745
  eta?: string;
25746
+ /**
25747
+ * date when the shipnotice was fully delivered (all items received)
25748
+ * @format date-time
25749
+ */
25750
+ fully_delivered_at?: string;
25692
25751
  /** was handling billed? */
25693
25752
  handling_billed?: boolean;
25694
25753
  /** meta data for this shipnotice as stringified JSON */
@@ -25699,6 +25758,8 @@ export interface PutApiV21ShipnoticesIdRequest {
25699
25758
  notes_by_customer?: string;
25700
25759
  /** notes by whiplash */
25701
25760
  notes_by_whiplash?: string;
25761
+ /** was anything missing on initial arrival of the shipnotice */
25762
+ partially_arrived?: boolean;
25702
25763
  /** was postage billed? */
25703
25764
  postage_billed?: boolean;
25704
25765
  /**
@@ -26544,6 +26605,8 @@ export interface PutApiV2CustomersIdRequest {
26544
26605
  from_email?: string;
26545
26606
  /** Customer full logo url. */
26546
26607
  full_logo_url?: string;
26608
+ /** Customer gestation length in hours. */
26609
+ gestation_length?: string;
26547
26610
  /** Customer Global-E GUID. */
26548
26611
  global_e_guid?: string;
26549
26612
  /** Customer incoterm. */
@@ -28547,6 +28610,11 @@ export interface PutApiV2ShipnoticesIdRequest {
28547
28610
  * @format date-time
28548
28611
  */
28549
28612
  eta?: string;
28613
+ /**
28614
+ * date when the shipnotice was fully delivered (all items received)
28615
+ * @format date-time
28616
+ */
28617
+ fully_delivered_at?: string;
28550
28618
  /** was handling billed? */
28551
28619
  handling_billed?: boolean;
28552
28620
  /** meta data for this shipnotice as stringified JSON */
@@ -28557,6 +28625,8 @@ export interface PutApiV2ShipnoticesIdRequest {
28557
28625
  notes_by_customer?: string;
28558
28626
  /** notes by whiplash */
28559
28627
  notes_by_whiplash?: string;
28628
+ /** was anything missing on initial arrival of the shipnotice */
28629
+ partially_arrived?: boolean;
28560
28630
  /** was postage billed? */
28561
28631
  postage_billed?: boolean;
28562
28632
  /**
@@ -313,6 +313,8 @@ export interface ApiV2EntitiesCustomer {
313
313
  from_email?: string | null;
314
314
  /** Customer full logo url. */
315
315
  full_logo_url?: string;
316
+ /** Customer gestation length in hours. */
317
+ gestation_length?: string | null;
316
318
  /** Customer Global-E GUID. */
317
319
  global_e_guid?: string | null;
318
320
  /**
@@ -556,6 +558,8 @@ export interface ApiV2EntitiesCustomerShallow {
556
558
  from_email?: string;
557
559
  /** Customer full logo url. */
558
560
  full_logo_url?: string;
561
+ /** Customer gestation length in hours. */
562
+ gestation_length?: string;
559
563
  /** Customer Global-E GUID. */
560
564
  global_e_guid?: string;
561
565
  /**
@@ -2114,6 +2118,11 @@ export interface ApiV2EntitiesShipnotice {
2114
2118
  * @format date-time
2115
2119
  */
2116
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;
2117
2126
  /** was handling billed? */
2118
2127
  handling_billed?: boolean | null;
2119
2128
  /**
@@ -2137,6 +2146,8 @@ export interface ApiV2EntitiesShipnotice {
2137
2146
  */
2138
2147
  order_id?: number | null;
2139
2148
  originator?: ApiV2EntitiesOriginator;
2149
+ /** was anything missing on initial arrival of the shipnotice */
2150
+ partially_arrived?: boolean | null;
2140
2151
  /** was postage billed? */
2141
2152
  postage_billed?: boolean | null;
2142
2153
  /**
@@ -3284,6 +3295,8 @@ export interface ApiV21EntitiesCustomer {
3284
3295
  from_email?: string | null;
3285
3296
  /** Customer full logo url. */
3286
3297
  full_logo_url?: string;
3298
+ /** Customer gestation length in hours. */
3299
+ gestation_length?: string | null;
3287
3300
  /** Customer Global-E GUID. */
3288
3301
  global_e_guid?: string | null;
3289
3302
  /**
@@ -4542,6 +4555,11 @@ export interface ApiV21EntitiesShipnotice {
4542
4555
  * @format date-time
4543
4556
  */
4544
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;
4545
4563
  /** was handling billed? */
4546
4564
  handling_billed?: boolean | null;
4547
4565
  /**
@@ -4565,6 +4583,8 @@ export interface ApiV21EntitiesShipnotice {
4565
4583
  */
4566
4584
  order_id?: number | null;
4567
4585
  originator?: ApiV21EntitiesOriginator;
4586
+ /** was anything missing on initial arrival of the shipnotice */
4587
+ partially_arrived?: boolean | null;
4568
4588
  /** was postage billed? */
4569
4589
  postage_billed?: boolean | null;
4570
4590
  /**
@@ -7964,6 +7984,13 @@ export interface PostApiV21ShipnoticesBulkRequest {
7964
7984
  * @format date-time
7965
7985
  */
7966
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;
7967
7994
  /**
7968
7995
  * date when the shipnotice is due to be delivered
7969
7996
  * @format date-time
@@ -8127,6 +8154,11 @@ export interface PostApiV21ShipnoticesRequest {
8127
8154
  * @format date-time
8128
8155
  */
8129
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;
8130
8162
  /** was handling billed? */
8131
8163
  handling_billed?: boolean;
8132
8164
  /** is inspection required? (default: false) */
@@ -8159,6 +8191,8 @@ export interface PostApiV21ShipnoticesRequest {
8159
8191
  /** miscellaneous info for the originator */
8160
8192
  misc?: string;
8161
8193
  };
8194
+ /** was anything missing on initial arrival of the shipnotice */
8195
+ partially_arrived?: boolean;
8162
8196
  /** was postage billed? */
8163
8197
  postage_billed?: boolean;
8164
8198
  /**
@@ -9853,6 +9887,13 @@ export interface PostApiV2ShipnoticesBulkRequest {
9853
9887
  * @format date-time
9854
9888
  */
9855
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;
9856
9897
  /**
9857
9898
  * date when the shipnotice is due to be delivered
9858
9899
  * @format date-time
@@ -10016,6 +10057,11 @@ export interface PostApiV2ShipnoticesRequest {
10016
10057
  * @format date-time
10017
10058
  */
10018
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;
10019
10065
  /** was handling billed? */
10020
10066
  handling_billed?: boolean;
10021
10067
  /** is inspection required? (default: false) */
@@ -10048,6 +10094,8 @@ export interface PostApiV2ShipnoticesRequest {
10048
10094
  /** miscellaneous info for the originator */
10049
10095
  misc?: string;
10050
10096
  };
10097
+ /** was anything missing on initial arrival of the shipnotice */
10098
+ partially_arrived?: boolean;
10051
10099
  /** was postage billed? */
10052
10100
  postage_billed?: boolean;
10053
10101
  /**
@@ -10320,6 +10368,8 @@ export interface PutApiV21CustomersIdRequest {
10320
10368
  from_email?: string;
10321
10369
  /** Customer full logo url. */
10322
10370
  full_logo_url?: string;
10371
+ /** Customer gestation length in hours. */
10372
+ gestation_length?: string;
10323
10373
  /** Customer Global-E GUID. */
10324
10374
  global_e_guid?: string;
10325
10375
  /** Customer incoterm. */
@@ -11226,6 +11276,11 @@ export interface PutApiV21ShipnoticesIdRequest {
11226
11276
  * @format date-time
11227
11277
  */
11228
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;
11229
11284
  /** was handling billed? */
11230
11285
  handling_billed?: boolean;
11231
11286
  /** meta data for this shipnotice as stringified JSON */
@@ -11236,6 +11291,8 @@ export interface PutApiV21ShipnoticesIdRequest {
11236
11291
  notes_by_customer?: string;
11237
11292
  /** notes by whiplash */
11238
11293
  notes_by_whiplash?: string;
11294
+ /** was anything missing on initial arrival of the shipnotice */
11295
+ partially_arrived?: boolean;
11239
11296
  /** was postage billed? */
11240
11297
  postage_billed?: boolean;
11241
11298
  /**
@@ -11505,6 +11562,8 @@ export interface PutApiV2CustomersIdRequest {
11505
11562
  from_email?: string;
11506
11563
  /** Customer full logo url. */
11507
11564
  full_logo_url?: string;
11565
+ /** Customer gestation length in hours. */
11566
+ gestation_length?: string;
11508
11567
  /** Customer Global-E GUID. */
11509
11568
  global_e_guid?: string;
11510
11569
  /** Customer incoterm. */
@@ -12411,6 +12470,11 @@ export interface PutApiV2ShipnoticesIdRequest {
12411
12470
  * @format date-time
12412
12471
  */
12413
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;
12414
12478
  /** was handling billed? */
12415
12479
  handling_billed?: boolean;
12416
12480
  /** meta data for this shipnotice as stringified JSON */
@@ -12421,6 +12485,8 @@ export interface PutApiV2ShipnoticesIdRequest {
12421
12485
  notes_by_customer?: string;
12422
12486
  /** notes by whiplash */
12423
12487
  notes_by_whiplash?: string;
12488
+ /** was anything missing on initial arrival of the shipnotice */
12489
+ partially_arrived?: boolean;
12424
12490
  /** was postage billed? */
12425
12491
  postage_billed?: boolean;
12426
12492
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whiplashmerch/whiplash-api-client",
3
- "version": "3.2.4",
3
+ "version": "3.2.6",
4
4
  "description": "",
5
5
  "devDependencies": {},
6
6
  "scripts": {