@whiplashmerch/whiplash-api-client 2.0.11 → 2.0.12

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.
@@ -4607,6 +4607,11 @@ export interface ApiV2EntitiesShipnotice {
4607
4607
  * @format date-time
4608
4608
  */
4609
4609
  arrived_at?: string;
4610
+ /**
4611
+ * BOL proxy for this shipnotice.
4612
+ * Note: this field has a limit of 30 chars.
4613
+ */
4614
+ bol_proxy?: string | null;
4610
4615
  /** shipping carrier */
4611
4616
  carrier?: string;
4612
4617
  /**
@@ -4660,6 +4665,11 @@ export interface ApiV2EntitiesShipnotice {
4660
4665
  inspection_required?: boolean;
4661
4666
  /** meta data for this shipnotice as stringified JSON */
4662
4667
  meta_data?: string | null;
4668
+ /**
4669
+ * MID code for this shipnotice.
4670
+ * Note: this field has a limit of 15 chars.
4671
+ */
4672
+ mid_code?: string | null;
4663
4673
  /** notes by customer */
4664
4674
  notes_by_customer?: string | null;
4665
4675
  /** notes by whiplash */
@@ -4750,6 +4760,11 @@ export interface ApiV2EntitiesShipnotice {
4750
4760
  * @format int32
4751
4761
  */
4752
4762
  warehouse_id?: number;
4763
+ /**
4764
+ * zone status of this shipnotice.
4765
+ * Note: this field has a limit of 3 chars.
4766
+ */
4767
+ zone_status?: string | null;
4753
4768
  }
4754
4769
  /** V2 */
4755
4770
  export interface ApiV2EntitiesShipnoticeItem {
@@ -4831,6 +4846,11 @@ export interface ApiV2EntitiesShipnoticeItem {
4831
4846
  * @format int32
4832
4847
  */
4833
4848
  unallocated?: number;
4849
+ /**
4850
+ * unit price for this shipnotice item
4851
+ * @format float
4852
+ */
4853
+ unit_price?: number | null;
4834
4854
  /**
4835
4855
  * the shipnotice item last update date and time
4836
4856
  * @format date-time
@@ -8224,6 +8244,11 @@ export interface ApiV21EntitiesShipnotice {
8224
8244
  * @format date-time
8225
8245
  */
8226
8246
  arrived_at?: string;
8247
+ /**
8248
+ * BOL proxy for this shipnotice.
8249
+ * Note: this field has a limit of 30 chars.
8250
+ */
8251
+ bol_proxy?: string | null;
8227
8252
  /**
8228
8253
  * the shipnotice must be completed by date and time
8229
8254
  * @format date-time
@@ -8276,6 +8301,11 @@ export interface ApiV21EntitiesShipnotice {
8276
8301
  inspection_required?: boolean;
8277
8302
  /** meta data for this shipnotice as stringified JSON */
8278
8303
  meta_data?: string | null;
8304
+ /**
8305
+ * MID code for this shipnotice.
8306
+ * Note: this field has a limit of 15 chars.
8307
+ */
8308
+ mid_code?: string | null;
8279
8309
  /** notes by customer */
8280
8310
  notes_by_customer?: string | null;
8281
8311
  /** notes by whiplash */
@@ -8364,6 +8394,11 @@ export interface ApiV21EntitiesShipnotice {
8364
8394
  warehouse_id?: number;
8365
8395
  /** The name of the associated warehouse */
8366
8396
  warehouse_name?: string;
8397
+ /**
8398
+ * zone status of this shipnotice.
8399
+ * Note: this field has a limit of 3 chars.
8400
+ */
8401
+ zone_status?: string | null;
8367
8402
  }
8368
8403
  /** V2_1 */
8369
8404
  export interface ApiV21EntitiesShipnoticeItem {
@@ -8428,6 +8463,11 @@ export interface ApiV21EntitiesShipnoticeItem {
8428
8463
  * @format int32
8429
8464
  */
8430
8465
  shipnotice_id?: number | null;
8466
+ /**
8467
+ * unit price for this shipnotice item
8468
+ * @format float
8469
+ */
8470
+ unit_price?: number | null;
8431
8471
  /**
8432
8472
  * the shipnotice item last update date and time
8433
8473
  * @format date-time
@@ -17184,6 +17224,21 @@ export interface PostApiV21ShipnoticesBulkRequest {
17184
17224
  reference?: string;
17185
17225
  /** JSON object of required and optional receiving quantities verified by staff */
17186
17226
  quantities_verified?: object;
17227
+ /**
17228
+ * BOL proxy for this shipnotice.
17229
+ * Note: this field has a limit of 30 chars.
17230
+ */
17231
+ bol_proxy?: string;
17232
+ /**
17233
+ * MID code for this shipnotice.
17234
+ * Note: this field has a limit of 15 chars.
17235
+ */
17236
+ mid_code?: string;
17237
+ /**
17238
+ * zone status of this shipnotice.
17239
+ * Note: this field has a limit of 3 chars.
17240
+ */
17241
+ zone_status?: string;
17187
17242
  /** is inspection required? (default: false) */
17188
17243
  inspection_required?: boolean;
17189
17244
  /**
@@ -17349,6 +17404,11 @@ export interface PostApiV21ShipnoticesRequest {
17349
17404
  * @format date-time
17350
17405
  */
17351
17406
  arrived_at?: string;
17407
+ /**
17408
+ * BOL proxy for this shipnotice.
17409
+ * Note: this field has a limit of 30 chars.
17410
+ */
17411
+ bol_proxy?: string;
17352
17412
  carrier?: string;
17353
17413
  /**
17354
17414
  * the shipnotice completion date and time
@@ -17387,6 +17447,11 @@ export interface PostApiV21ShipnoticesRequest {
17387
17447
  /** Included meta fields for associations */
17388
17448
  association_fields?: object;
17389
17449
  };
17450
+ /**
17451
+ * MID code for this shipnotice.
17452
+ * Note: this field has a limit of 15 chars.
17453
+ */
17454
+ mid_code?: string;
17390
17455
  /** notes by customer */
17391
17456
  notes_by_customer?: string;
17392
17457
  /** notes by whiplash */
@@ -17491,6 +17556,11 @@ export interface PostApiV21ShipnoticesRequest {
17491
17556
  * @format int32
17492
17557
  */
17493
17558
  warehouse_id?: number;
17559
+ /**
17560
+ * zone status of this shipnotice.
17561
+ * Note: this field has a limit of 3 chars.
17562
+ */
17563
+ zone_status?: string;
17494
17564
  }
17495
17565
  export interface PostApiV21ShippingAliasesRequest {
17496
17566
  /**
@@ -20788,6 +20858,21 @@ export interface PostApiV2ShipnoticesBulkRequest {
20788
20858
  reference?: string;
20789
20859
  /** JSON object of required and optional receiving quantities verified by staff */
20790
20860
  quantities_verified?: object;
20861
+ /**
20862
+ * BOL proxy for this shipnotice.
20863
+ * Note: this field has a limit of 30 chars.
20864
+ */
20865
+ bol_proxy?: string;
20866
+ /**
20867
+ * MID code for this shipnotice.
20868
+ * Note: this field has a limit of 15 chars.
20869
+ */
20870
+ mid_code?: string;
20871
+ /**
20872
+ * zone status of this shipnotice.
20873
+ * Note: this field has a limit of 3 chars.
20874
+ */
20875
+ zone_status?: string;
20791
20876
  /** is inspection required? (default: false) */
20792
20877
  inspection_required?: boolean;
20793
20878
  /**
@@ -20953,6 +21038,11 @@ export interface PostApiV2ShipnoticesRequest {
20953
21038
  * @format date-time
20954
21039
  */
20955
21040
  arrived_at?: string;
21041
+ /**
21042
+ * BOL proxy for this shipnotice.
21043
+ * Note: this field has a limit of 30 chars.
21044
+ */
21045
+ bol_proxy?: string;
20956
21046
  carrier?: string;
20957
21047
  /**
20958
21048
  * the shipnotice completion date and time
@@ -20991,6 +21081,11 @@ export interface PostApiV2ShipnoticesRequest {
20991
21081
  /** Included meta fields for associations */
20992
21082
  association_fields?: object;
20993
21083
  };
21084
+ /**
21085
+ * MID code for this shipnotice.
21086
+ * Note: this field has a limit of 15 chars.
21087
+ */
21088
+ mid_code?: string;
20994
21089
  /** notes by customer */
20995
21090
  notes_by_customer?: string;
20996
21091
  /** notes by whiplash */
@@ -21095,6 +21190,11 @@ export interface PostApiV2ShipnoticesRequest {
21095
21190
  * @format int32
21096
21191
  */
21097
21192
  warehouse_id?: number;
21193
+ /**
21194
+ * zone status of this shipnotice.
21195
+ * Note: this field has a limit of 3 chars.
21196
+ */
21197
+ zone_status?: string;
21098
21198
  }
21099
21199
  export interface PostApiV2ShippingAliasesRequest {
21100
21200
  /**
@@ -23870,6 +23970,11 @@ export interface PutApiV21ShipnoticesIdRequest {
23870
23970
  * @format date-time
23871
23971
  */
23872
23972
  arrived_at?: string;
23973
+ /**
23974
+ * BOL proxy for this shipnotice.
23975
+ * Note: this field has a limit of 30 chars.
23976
+ */
23977
+ bol_proxy?: string;
23873
23978
  carrier?: string;
23874
23979
  /**
23875
23980
  * the shipnotice completion date and time
@@ -23899,6 +24004,11 @@ export interface PutApiV21ShipnoticesIdRequest {
23899
24004
  handling_billed?: boolean;
23900
24005
  /** meta data for this shipnotice as stringified JSON */
23901
24006
  meta_data?: string;
24007
+ /**
24008
+ * MID code for this shipnotice.
24009
+ * Note: this field has a limit of 15 chars.
24010
+ */
24011
+ mid_code?: string;
23902
24012
  /** notes by customer */
23903
24013
  notes_by_customer?: string;
23904
24014
  /** notes by whiplash */
@@ -23953,6 +24063,11 @@ export interface PutApiV21ShipnoticesIdRequest {
23953
24063
  tracking?: string;
23954
24064
  /** shipnotice type (Shipnotice, ConsumerReturn) */
23955
24065
  type?: string;
24066
+ /**
24067
+ * zone status of this shipnotice.
24068
+ * Note: this field has a limit of 3 chars.
24069
+ */
24070
+ zone_status?: string;
23956
24071
  }
23957
24072
  export interface PutApiV21ShippingAliasesIdRequest {
23958
24073
  /**
@@ -26832,6 +26947,11 @@ export interface PutApiV2ShipnoticesIdRequest {
26832
26947
  * @format date-time
26833
26948
  */
26834
26949
  arrived_at?: string;
26950
+ /**
26951
+ * BOL proxy for this shipnotice.
26952
+ * Note: this field has a limit of 30 chars.
26953
+ */
26954
+ bol_proxy?: string;
26835
26955
  carrier?: string;
26836
26956
  /**
26837
26957
  * the shipnotice completion date and time
@@ -26861,6 +26981,11 @@ export interface PutApiV2ShipnoticesIdRequest {
26861
26981
  handling_billed?: boolean;
26862
26982
  /** meta data for this shipnotice as stringified JSON */
26863
26983
  meta_data?: string;
26984
+ /**
26985
+ * MID code for this shipnotice.
26986
+ * Note: this field has a limit of 15 chars.
26987
+ */
26988
+ mid_code?: string;
26864
26989
  /** notes by customer */
26865
26990
  notes_by_customer?: string;
26866
26991
  /** notes by whiplash */
@@ -26915,6 +27040,11 @@ export interface PutApiV2ShipnoticesIdRequest {
26915
27040
  tracking?: string;
26916
27041
  /** shipnotice type (Shipnotice, ConsumerReturn) */
26917
27042
  type?: string;
27043
+ /**
27044
+ * zone status of this shipnotice.
27045
+ * Note: this field has a limit of 3 chars.
27046
+ */
27047
+ zone_status?: string;
26918
27048
  }
26919
27049
  export interface PutApiV2ShippingAliasesIdRequest {
26920
27050
  /**
@@ -2131,6 +2131,11 @@ export interface ApiV2EntitiesShipnotice {
2131
2131
  * @format date-time
2132
2132
  */
2133
2133
  arrived_at?: string;
2134
+ /**
2135
+ * BOL proxy for this shipnotice.
2136
+ * Note: this field has a limit of 30 chars.
2137
+ */
2138
+ bol_proxy?: string | null;
2134
2139
  /** shipping carrier */
2135
2140
  carrier?: string;
2136
2141
  /**
@@ -2184,6 +2189,11 @@ export interface ApiV2EntitiesShipnotice {
2184
2189
  inspection_required?: boolean;
2185
2190
  /** meta data for this shipnotice as stringified JSON */
2186
2191
  meta_data?: string | null;
2192
+ /**
2193
+ * MID code for this shipnotice.
2194
+ * Note: this field has a limit of 15 chars.
2195
+ */
2196
+ mid_code?: string | null;
2187
2197
  /** notes by customer */
2188
2198
  notes_by_customer?: string | null;
2189
2199
  /** notes by whiplash */
@@ -2274,6 +2284,11 @@ export interface ApiV2EntitiesShipnotice {
2274
2284
  * @format int32
2275
2285
  */
2276
2286
  warehouse_id?: number;
2287
+ /**
2288
+ * zone status of this shipnotice.
2289
+ * Note: this field has a limit of 3 chars.
2290
+ */
2291
+ zone_status?: string | null;
2277
2292
  }
2278
2293
 
2279
2294
  /** V2 */
@@ -2356,6 +2371,11 @@ export interface ApiV2EntitiesShipnoticeItem {
2356
2371
  * @format int32
2357
2372
  */
2358
2373
  unallocated?: number;
2374
+ /**
2375
+ * unit price for this shipnotice item
2376
+ * @format float
2377
+ */
2378
+ unit_price?: number | null;
2359
2379
  /**
2360
2380
  * the shipnotice item last update date and time
2361
2381
  * @format date-time
@@ -4148,6 +4168,11 @@ export interface ApiV21EntitiesShipnotice {
4148
4168
  * @format date-time
4149
4169
  */
4150
4170
  arrived_at?: string;
4171
+ /**
4172
+ * BOL proxy for this shipnotice.
4173
+ * Note: this field has a limit of 30 chars.
4174
+ */
4175
+ bol_proxy?: string | null;
4151
4176
  /**
4152
4177
  * the shipnotice must be completed by date and time
4153
4178
  * @format date-time
@@ -4200,6 +4225,11 @@ export interface ApiV21EntitiesShipnotice {
4200
4225
  inspection_required?: boolean;
4201
4226
  /** meta data for this shipnotice as stringified JSON */
4202
4227
  meta_data?: string | null;
4228
+ /**
4229
+ * MID code for this shipnotice.
4230
+ * Note: this field has a limit of 15 chars.
4231
+ */
4232
+ mid_code?: string | null;
4203
4233
  /** notes by customer */
4204
4234
  notes_by_customer?: string | null;
4205
4235
  /** notes by whiplash */
@@ -4288,6 +4318,11 @@ export interface ApiV21EntitiesShipnotice {
4288
4318
  warehouse_id?: number;
4289
4319
  /** The name of the associated warehouse */
4290
4320
  warehouse_name?: string;
4321
+ /**
4322
+ * zone status of this shipnotice.
4323
+ * Note: this field has a limit of 3 chars.
4324
+ */
4325
+ zone_status?: string | null;
4291
4326
  }
4292
4327
 
4293
4328
  /** V2_1 */
@@ -4353,6 +4388,11 @@ export interface ApiV21EntitiesShipnoticeItem {
4353
4388
  * @format int32
4354
4389
  */
4355
4390
  shipnotice_id?: number | null;
4391
+ /**
4392
+ * unit price for this shipnotice item
4393
+ * @format float
4394
+ */
4395
+ unit_price?: number | null;
4356
4396
  /**
4357
4397
  * the shipnotice item last update date and time
4358
4398
  * @format date-time
@@ -7403,6 +7443,21 @@ export interface PostApiV21ShipnoticesBulkRequest {
7403
7443
  reference?: string;
7404
7444
  /** JSON object of required and optional receiving quantities verified by staff */
7405
7445
  quantities_verified?: object;
7446
+ /**
7447
+ * BOL proxy for this shipnotice.
7448
+ * Note: this field has a limit of 30 chars.
7449
+ */
7450
+ bol_proxy?: string;
7451
+ /**
7452
+ * MID code for this shipnotice.
7453
+ * Note: this field has a limit of 15 chars.
7454
+ */
7455
+ mid_code?: string;
7456
+ /**
7457
+ * zone status of this shipnotice.
7458
+ * Note: this field has a limit of 3 chars.
7459
+ */
7460
+ zone_status?: string;
7406
7461
  /** is inspection required? (default: false) */
7407
7462
  inspection_required?: boolean;
7408
7463
  /**
@@ -7520,6 +7575,11 @@ export interface PostApiV21ShipnoticesRequest {
7520
7575
  * @format date-time
7521
7576
  */
7522
7577
  arrived_at?: string;
7578
+ /**
7579
+ * BOL proxy for this shipnotice.
7580
+ * Note: this field has a limit of 30 chars.
7581
+ */
7582
+ bol_proxy?: string;
7523
7583
  carrier?: string;
7524
7584
  /**
7525
7585
  * the shipnotice completion date and time
@@ -7558,6 +7618,11 @@ export interface PostApiV21ShipnoticesRequest {
7558
7618
  /** Included meta fields for associations */
7559
7619
  association_fields?: object;
7560
7620
  };
7621
+ /**
7622
+ * MID code for this shipnotice.
7623
+ * Note: this field has a limit of 15 chars.
7624
+ */
7625
+ mid_code?: string;
7561
7626
  /** notes by customer */
7562
7627
  notes_by_customer?: string;
7563
7628
  /** notes by whiplash */
@@ -7662,6 +7727,11 @@ export interface PostApiV21ShipnoticesRequest {
7662
7727
  * @format int32
7663
7728
  */
7664
7729
  warehouse_id?: number;
7730
+ /**
7731
+ * zone status of this shipnotice.
7732
+ * Note: this field has a limit of 3 chars.
7733
+ */
7734
+ zone_status?: string;
7665
7735
  }
7666
7736
 
7667
7737
  export interface PostApiV21SimulateConsumerReturnsCreateRequest {
@@ -9332,6 +9402,21 @@ export interface PostApiV2ShipnoticesBulkRequest {
9332
9402
  reference?: string;
9333
9403
  /** JSON object of required and optional receiving quantities verified by staff */
9334
9404
  quantities_verified?: object;
9405
+ /**
9406
+ * BOL proxy for this shipnotice.
9407
+ * Note: this field has a limit of 30 chars.
9408
+ */
9409
+ bol_proxy?: string;
9410
+ /**
9411
+ * MID code for this shipnotice.
9412
+ * Note: this field has a limit of 15 chars.
9413
+ */
9414
+ mid_code?: string;
9415
+ /**
9416
+ * zone status of this shipnotice.
9417
+ * Note: this field has a limit of 3 chars.
9418
+ */
9419
+ zone_status?: string;
9335
9420
  /** is inspection required? (default: false) */
9336
9421
  inspection_required?: boolean;
9337
9422
  /**
@@ -9449,6 +9534,11 @@ export interface PostApiV2ShipnoticesRequest {
9449
9534
  * @format date-time
9450
9535
  */
9451
9536
  arrived_at?: string;
9537
+ /**
9538
+ * BOL proxy for this shipnotice.
9539
+ * Note: this field has a limit of 30 chars.
9540
+ */
9541
+ bol_proxy?: string;
9452
9542
  carrier?: string;
9453
9543
  /**
9454
9544
  * the shipnotice completion date and time
@@ -9487,6 +9577,11 @@ export interface PostApiV2ShipnoticesRequest {
9487
9577
  /** Included meta fields for associations */
9488
9578
  association_fields?: object;
9489
9579
  };
9580
+ /**
9581
+ * MID code for this shipnotice.
9582
+ * Note: this field has a limit of 15 chars.
9583
+ */
9584
+ mid_code?: string;
9490
9585
  /** notes by customer */
9491
9586
  notes_by_customer?: string;
9492
9587
  /** notes by whiplash */
@@ -9591,6 +9686,11 @@ export interface PostApiV2ShipnoticesRequest {
9591
9686
  * @format int32
9592
9687
  */
9593
9688
  warehouse_id?: number;
9689
+ /**
9690
+ * zone status of this shipnotice.
9691
+ * Note: this field has a limit of 3 chars.
9692
+ */
9693
+ zone_status?: string;
9594
9694
  }
9595
9695
 
9596
9696
  export interface PostApiV2SimulateConsumerReturnsCreateRequest {
@@ -10691,6 +10791,11 @@ export interface PutApiV21ShipnoticesIdRequest {
10691
10791
  * @format date-time
10692
10792
  */
10693
10793
  arrived_at?: string;
10794
+ /**
10795
+ * BOL proxy for this shipnotice.
10796
+ * Note: this field has a limit of 30 chars.
10797
+ */
10798
+ bol_proxy?: string;
10694
10799
  carrier?: string;
10695
10800
  /**
10696
10801
  * the shipnotice completion date and time
@@ -10720,6 +10825,11 @@ export interface PutApiV21ShipnoticesIdRequest {
10720
10825
  handling_billed?: boolean;
10721
10826
  /** meta data for this shipnotice as stringified JSON */
10722
10827
  meta_data?: string;
10828
+ /**
10829
+ * MID code for this shipnotice.
10830
+ * Note: this field has a limit of 15 chars.
10831
+ */
10832
+ mid_code?: string;
10723
10833
  /** notes by customer */
10724
10834
  notes_by_customer?: string;
10725
10835
  /** notes by whiplash */
@@ -10774,6 +10884,11 @@ export interface PutApiV21ShipnoticesIdRequest {
10774
10884
  tracking?: string;
10775
10885
  /** shipnotice type (Shipnotice, ConsumerReturn) */
10776
10886
  type?: string;
10887
+ /**
10888
+ * zone status of this shipnotice.
10889
+ * Note: this field has a limit of 3 chars.
10890
+ */
10891
+ zone_status?: string;
10777
10892
  }
10778
10893
 
10779
10894
  export interface PutApiV21SimulateConsumerReturnsConsumerReturnIdProcessingRequest {
@@ -11908,6 +12023,11 @@ export interface PutApiV2ShipnoticesIdRequest {
11908
12023
  * @format date-time
11909
12024
  */
11910
12025
  arrived_at?: string;
12026
+ /**
12027
+ * BOL proxy for this shipnotice.
12028
+ * Note: this field has a limit of 30 chars.
12029
+ */
12030
+ bol_proxy?: string;
11911
12031
  carrier?: string;
11912
12032
  /**
11913
12033
  * the shipnotice completion date and time
@@ -11937,6 +12057,11 @@ export interface PutApiV2ShipnoticesIdRequest {
11937
12057
  handling_billed?: boolean;
11938
12058
  /** meta data for this shipnotice as stringified JSON */
11939
12059
  meta_data?: string;
12060
+ /**
12061
+ * MID code for this shipnotice.
12062
+ * Note: this field has a limit of 15 chars.
12063
+ */
12064
+ mid_code?: string;
11940
12065
  /** notes by customer */
11941
12066
  notes_by_customer?: string;
11942
12067
  /** notes by whiplash */
@@ -11991,6 +12116,11 @@ export interface PutApiV2ShipnoticesIdRequest {
11991
12116
  tracking?: string;
11992
12117
  /** shipnotice type (Shipnotice, ConsumerReturn) */
11993
12118
  type?: string;
12119
+ /**
12120
+ * zone status of this shipnotice.
12121
+ * Note: this field has a limit of 3 chars.
12122
+ */
12123
+ zone_status?: string;
11994
12124
  }
11995
12125
 
11996
12126
  export interface PutApiV2SimulateConsumerReturnsConsumerReturnIdProcessingRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whiplashmerch/whiplash-api-client",
3
- "version": "2.0.11",
3
+ "version": "2.0.12",
4
4
  "description": "",
5
5
  "devDependencies": {},
6
6
  "scripts": {