@whiplashmerch/whiplash-api-client 2.0.14 → 2.0.16

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.
@@ -1259,6 +1259,8 @@ export interface ApiV2EntitiesDocument {
1259
1259
  customer_id?: number | null;
1260
1260
  /** associated customer name */
1261
1261
  customer_name?: string;
1262
+ /** the document name */
1263
+ file_name?: string;
1262
1264
  /**
1263
1265
  * the document id
1264
1266
  * @format int32
@@ -4670,8 +4672,6 @@ export interface ApiV2EntitiesShipnotice {
4670
4672
  * @format date-time
4671
4673
  */
4672
4674
  arrived_at?: string;
4673
- /** BOL proxy for this shipnotice. */
4674
- bol_proxy?: string | null;
4675
4675
  /** shipping carrier */
4676
4676
  carrier?: string;
4677
4677
  /**
@@ -4725,8 +4725,6 @@ export interface ApiV2EntitiesShipnotice {
4725
4725
  inspection_required?: boolean;
4726
4726
  /** meta data for this shipnotice as stringified JSON */
4727
4727
  meta_data?: string | null;
4728
- /** MID code for this shipnotice. */
4729
- mid_code?: string | null;
4730
4728
  /** notes by customer */
4731
4729
  notes_by_customer?: string | null;
4732
4730
  /** notes by whiplash */
@@ -4817,8 +4815,6 @@ export interface ApiV2EntitiesShipnotice {
4817
4815
  * @format int32
4818
4816
  */
4819
4817
  warehouse_id?: number;
4820
- /** zone status of this shipnotice. */
4821
- zone_status?: string | null;
4822
4818
  }
4823
4819
  /** V2 */
4824
4820
  export interface ApiV2EntitiesShipnoticeItem {
@@ -4900,11 +4896,6 @@ export interface ApiV2EntitiesShipnoticeItem {
4900
4896
  * @format int32
4901
4897
  */
4902
4898
  unallocated?: number;
4903
- /**
4904
- * unit cost for this shipnotice item
4905
- * @format float
4906
- */
4907
- unit_cost?: number | null;
4908
4899
  /**
4909
4900
  * the shipnotice item last update date and time
4910
4901
  * @format date-time
@@ -6643,6 +6634,8 @@ export interface ApiV21EntitiesDocument {
6643
6634
  customer_id?: number | null;
6644
6635
  /** associated customer name */
6645
6636
  customer_name?: string;
6637
+ /** the document name */
6638
+ file_name?: string;
6646
6639
  /**
6647
6640
  * the document id
6648
6641
  * @format int32
@@ -8298,8 +8291,6 @@ export interface ApiV21EntitiesShipnotice {
8298
8291
  * @format date-time
8299
8292
  */
8300
8293
  arrived_at?: string;
8301
- /** BOL proxy for this shipnotice. */
8302
- bol_proxy?: string | null;
8303
8294
  /**
8304
8295
  * the shipnotice must be completed by date and time
8305
8296
  * @format date-time
@@ -8352,8 +8343,6 @@ export interface ApiV21EntitiesShipnotice {
8352
8343
  inspection_required?: boolean;
8353
8344
  /** meta data for this shipnotice as stringified JSON */
8354
8345
  meta_data?: string | null;
8355
- /** MID code for this shipnotice. */
8356
- mid_code?: string | null;
8357
8346
  /** notes by customer */
8358
8347
  notes_by_customer?: string | null;
8359
8348
  /** notes by whiplash */
@@ -8442,8 +8431,6 @@ export interface ApiV21EntitiesShipnotice {
8442
8431
  warehouse_id?: number;
8443
8432
  /** The name of the associated warehouse */
8444
8433
  warehouse_name?: string;
8445
- /** zone status of this shipnotice. */
8446
- zone_status?: string | null;
8447
8434
  }
8448
8435
  /** V2_1 */
8449
8436
  export interface ApiV21EntitiesShipnoticeItem {
@@ -8508,11 +8495,6 @@ export interface ApiV21EntitiesShipnoticeItem {
8508
8495
  * @format int32
8509
8496
  */
8510
8497
  shipnotice_id?: number | null;
8511
- /**
8512
- * unit cost for this shipnotice item
8513
- * @format float
8514
- */
8515
- unit_cost?: number | null;
8516
8498
  /**
8517
8499
  * the shipnotice item last update date and time
8518
8500
  * @format date-time
@@ -15279,6 +15261,8 @@ export interface PostApiV21DocumentsRequest {
15279
15261
  context_list?: string;
15280
15262
  /** associated customer name */
15281
15263
  customer_name?: string;
15264
+ /** the document name */
15265
+ file_name?: string;
15282
15266
  /** Comma separated list of keyword tags */
15283
15267
  keyword_list?: string;
15284
15268
  /** Comma separated list of message tags */
@@ -17367,12 +17351,6 @@ export interface PostApiV21ShipnoticesBulkRequest {
17367
17351
  reference?: string;
17368
17352
  /** JSON object of required and optional receiving quantities verified by staff */
17369
17353
  quantities_verified?: object;
17370
- /** BOL proxy for this shipnotice. */
17371
- bol_proxy?: string;
17372
- /** MID code for this shipnotice. */
17373
- mid_code?: string;
17374
- /** zone status of this shipnotice. */
17375
- zone_status?: string;
17376
17354
  /** is inspection required? (default: false) */
17377
17355
  inspection_required?: boolean;
17378
17356
  /**
@@ -17526,11 +17504,6 @@ export interface PostApiV21ShipnoticesIdShipnoticeItemsRequest {
17526
17504
  quantity?: number;
17527
17505
  /** action to perform on item return */
17528
17506
  return_action?: string;
17529
- /**
17530
- * Unit cost per item
17531
- * @format float
17532
- */
17533
- unit_cost?: number;
17534
17507
  }
17535
17508
  export interface PostApiV21ShipnoticesRequest {
17536
17509
  /**
@@ -17543,8 +17516,6 @@ export interface PostApiV21ShipnoticesRequest {
17543
17516
  * @format date-time
17544
17517
  */
17545
17518
  arrived_at?: string;
17546
- /** BOL proxy for this shipnotice. */
17547
- bol_proxy?: string;
17548
17519
  carrier?: string;
17549
17520
  /**
17550
17521
  * the shipnotice completion date and time
@@ -17583,8 +17554,6 @@ export interface PostApiV21ShipnoticesRequest {
17583
17554
  /** Included meta fields for associations */
17584
17555
  association_fields?: object;
17585
17556
  };
17586
- /** MID code for this shipnotice. */
17587
- mid_code?: string;
17588
17557
  /** notes by customer */
17589
17558
  notes_by_customer?: string;
17590
17559
  /** notes by whiplash */
@@ -17689,8 +17658,6 @@ export interface PostApiV21ShipnoticesRequest {
17689
17658
  * @format int32
17690
17659
  */
17691
17660
  warehouse_id?: number;
17692
- /** zone status of this shipnotice. */
17693
- zone_status?: string;
17694
17661
  }
17695
17662
  export interface PostApiV21ShippingAliasesRequest {
17696
17663
  /**
@@ -18900,6 +18867,8 @@ export interface PostApiV2DocumentsRequest {
18900
18867
  context_list?: string;
18901
18868
  /** associated customer name */
18902
18869
  customer_name?: string;
18870
+ /** the document name */
18871
+ file_name?: string;
18903
18872
  /** Comma separated list of keyword tags */
18904
18873
  keyword_list?: string;
18905
18874
  /** Comma separated list of message tags */
@@ -20988,12 +20957,6 @@ export interface PostApiV2ShipnoticesBulkRequest {
20988
20957
  reference?: string;
20989
20958
  /** JSON object of required and optional receiving quantities verified by staff */
20990
20959
  quantities_verified?: object;
20991
- /** BOL proxy for this shipnotice. */
20992
- bol_proxy?: string;
20993
- /** MID code for this shipnotice. */
20994
- mid_code?: string;
20995
- /** zone status of this shipnotice. */
20996
- zone_status?: string;
20997
20960
  /** is inspection required? (default: false) */
20998
20961
  inspection_required?: boolean;
20999
20962
  /**
@@ -21147,11 +21110,6 @@ export interface PostApiV2ShipnoticesIdShipnoticeItemsRequest {
21147
21110
  quantity?: number;
21148
21111
  /** action to perform on item return */
21149
21112
  return_action?: string;
21150
- /**
21151
- * Unit cost per item
21152
- * @format float
21153
- */
21154
- unit_cost?: number;
21155
21113
  }
21156
21114
  export interface PostApiV2ShipnoticesRequest {
21157
21115
  /**
@@ -21164,8 +21122,6 @@ export interface PostApiV2ShipnoticesRequest {
21164
21122
  * @format date-time
21165
21123
  */
21166
21124
  arrived_at?: string;
21167
- /** BOL proxy for this shipnotice. */
21168
- bol_proxy?: string;
21169
21125
  carrier?: string;
21170
21126
  /**
21171
21127
  * the shipnotice completion date and time
@@ -21204,8 +21160,6 @@ export interface PostApiV2ShipnoticesRequest {
21204
21160
  /** Included meta fields for associations */
21205
21161
  association_fields?: object;
21206
21162
  };
21207
- /** MID code for this shipnotice. */
21208
- mid_code?: string;
21209
21163
  /** notes by customer */
21210
21164
  notes_by_customer?: string;
21211
21165
  /** notes by whiplash */
@@ -21310,8 +21264,6 @@ export interface PostApiV2ShipnoticesRequest {
21310
21264
  * @format int32
21311
21265
  */
21312
21266
  warehouse_id?: number;
21313
- /** zone status of this shipnotice. */
21314
- zone_status?: string;
21315
21267
  }
21316
21268
  export interface PostApiV2ShippingAliasesRequest {
21317
21269
  /**
@@ -24071,11 +24023,6 @@ export interface PutApiV21ShipnoticeItemsIdRequest {
24071
24023
  * @format int32
24072
24024
  */
24073
24025
  quantity?: number;
24074
- /**
24075
- * Unit cost per item
24076
- * @format float
24077
- */
24078
- unit_cost?: number;
24079
24026
  }
24080
24027
  export interface PutApiV21ShipnoticesIdCallActionRequest {
24081
24028
  action?: string;
@@ -24104,8 +24051,6 @@ export interface PutApiV21ShipnoticesIdRequest {
24104
24051
  * @format date-time
24105
24052
  */
24106
24053
  arrived_at?: string;
24107
- /** BOL proxy for this shipnotice. */
24108
- bol_proxy?: string;
24109
24054
  carrier?: string;
24110
24055
  /**
24111
24056
  * the shipnotice completion date and time
@@ -24135,8 +24080,6 @@ export interface PutApiV21ShipnoticesIdRequest {
24135
24080
  handling_billed?: boolean;
24136
24081
  /** meta data for this shipnotice as stringified JSON */
24137
24082
  meta_data?: string;
24138
- /** MID code for this shipnotice. */
24139
- mid_code?: string;
24140
24083
  /** notes by customer */
24141
24084
  notes_by_customer?: string;
24142
24085
  /** notes by whiplash */
@@ -24191,8 +24134,6 @@ export interface PutApiV21ShipnoticesIdRequest {
24191
24134
  tracking?: string;
24192
24135
  /** shipnotice type (Shipnotice, ConsumerReturn) */
24193
24136
  type?: string;
24194
- /** zone status of this shipnotice. */
24195
- zone_status?: string;
24196
24137
  }
24197
24138
  export interface PutApiV21ShippingAliasesIdRequest {
24198
24139
  /**
@@ -27056,11 +26997,6 @@ export interface PutApiV2ShipnoticeItemsIdRequest {
27056
26997
  * @format int32
27057
26998
  */
27058
26999
  quantity?: number;
27059
- /**
27060
- * Unit cost per item
27061
- * @format float
27062
- */
27063
- unit_cost?: number;
27064
27000
  }
27065
27001
  export interface PutApiV2ShipnoticesIdCallActionRequest {
27066
27002
  action?: string;
@@ -27089,8 +27025,6 @@ export interface PutApiV2ShipnoticesIdRequest {
27089
27025
  * @format date-time
27090
27026
  */
27091
27027
  arrived_at?: string;
27092
- /** BOL proxy for this shipnotice. */
27093
- bol_proxy?: string;
27094
27028
  carrier?: string;
27095
27029
  /**
27096
27030
  * the shipnotice completion date and time
@@ -27120,8 +27054,6 @@ export interface PutApiV2ShipnoticesIdRequest {
27120
27054
  handling_billed?: boolean;
27121
27055
  /** meta data for this shipnotice as stringified JSON */
27122
27056
  meta_data?: string;
27123
- /** MID code for this shipnotice. */
27124
- mid_code?: string;
27125
27057
  /** notes by customer */
27126
27058
  notes_by_customer?: string;
27127
27059
  /** notes by whiplash */
@@ -27176,8 +27108,6 @@ export interface PutApiV2ShipnoticesIdRequest {
27176
27108
  tracking?: string;
27177
27109
  /** shipnotice type (Shipnotice, ConsumerReturn) */
27178
27110
  type?: string;
27179
- /** zone status of this shipnotice. */
27180
- zone_status?: string;
27181
27111
  }
27182
27112
  export interface PutApiV2ShippingAliasesIdRequest {
27183
27113
  /**
@@ -755,6 +755,8 @@ export interface ApiV2EntitiesDocument {
755
755
  customer_id?: number | null;
756
756
  /** associated customer name */
757
757
  customer_name?: string;
758
+ /** the document name */
759
+ file_name?: string;
758
760
  /**
759
761
  * the document id
760
762
  * @format int32
@@ -2141,8 +2143,6 @@ export interface ApiV2EntitiesShipnotice {
2141
2143
  * @format date-time
2142
2144
  */
2143
2145
  arrived_at?: string;
2144
- /** BOL proxy for this shipnotice. */
2145
- bol_proxy?: string | null;
2146
2146
  /** shipping carrier */
2147
2147
  carrier?: string;
2148
2148
  /**
@@ -2196,8 +2196,6 @@ export interface ApiV2EntitiesShipnotice {
2196
2196
  inspection_required?: boolean;
2197
2197
  /** meta data for this shipnotice as stringified JSON */
2198
2198
  meta_data?: string | null;
2199
- /** MID code for this shipnotice. */
2200
- mid_code?: string | null;
2201
2199
  /** notes by customer */
2202
2200
  notes_by_customer?: string | null;
2203
2201
  /** notes by whiplash */
@@ -2288,8 +2286,6 @@ export interface ApiV2EntitiesShipnotice {
2288
2286
  * @format int32
2289
2287
  */
2290
2288
  warehouse_id?: number;
2291
- /** zone status of this shipnotice. */
2292
- zone_status?: string | null;
2293
2289
  }
2294
2290
 
2295
2291
  /** V2 */
@@ -2372,11 +2368,6 @@ export interface ApiV2EntitiesShipnoticeItem {
2372
2368
  * @format int32
2373
2369
  */
2374
2370
  unallocated?: number;
2375
- /**
2376
- * unit cost for this shipnotice item
2377
- * @format float
2378
- */
2379
- unit_cost?: number | null;
2380
2371
  /**
2381
2372
  * the shipnotice item last update date and time
2382
2373
  * @format date-time
@@ -3460,6 +3451,8 @@ export interface ApiV21EntitiesDocument {
3460
3451
  customer_id?: number | null;
3461
3452
  /** associated customer name */
3462
3453
  customer_name?: string;
3454
+ /** the document name */
3455
+ file_name?: string;
3463
3456
  /**
3464
3457
  * the document id
3465
3458
  * @format int32
@@ -4169,8 +4162,6 @@ export interface ApiV21EntitiesShipnotice {
4169
4162
  * @format date-time
4170
4163
  */
4171
4164
  arrived_at?: string;
4172
- /** BOL proxy for this shipnotice. */
4173
- bol_proxy?: string | null;
4174
4165
  /**
4175
4166
  * the shipnotice must be completed by date and time
4176
4167
  * @format date-time
@@ -4223,8 +4214,6 @@ export interface ApiV21EntitiesShipnotice {
4223
4214
  inspection_required?: boolean;
4224
4215
  /** meta data for this shipnotice as stringified JSON */
4225
4216
  meta_data?: string | null;
4226
- /** MID code for this shipnotice. */
4227
- mid_code?: string | null;
4228
4217
  /** notes by customer */
4229
4218
  notes_by_customer?: string | null;
4230
4219
  /** notes by whiplash */
@@ -4313,8 +4302,6 @@ export interface ApiV21EntitiesShipnotice {
4313
4302
  warehouse_id?: number;
4314
4303
  /** The name of the associated warehouse */
4315
4304
  warehouse_name?: string;
4316
- /** zone status of this shipnotice. */
4317
- zone_status?: string | null;
4318
4305
  }
4319
4306
 
4320
4307
  /** V2_1 */
@@ -4380,11 +4367,6 @@ export interface ApiV21EntitiesShipnoticeItem {
4380
4367
  * @format int32
4381
4368
  */
4382
4369
  shipnotice_id?: number | null;
4383
- /**
4384
- * unit cost for this shipnotice item
4385
- * @format float
4386
- */
4387
- unit_cost?: number | null;
4388
4370
  /**
4389
4371
  * the shipnotice item last update date and time
4390
4372
  * @format date-time
@@ -6101,6 +6083,8 @@ export interface PostApiV21DocumentsRequest {
6101
6083
  context_list?: string;
6102
6084
  /** associated customer name */
6103
6085
  customer_name?: string;
6086
+ /** the document name */
6087
+ file_name?: string;
6104
6088
  /** Comma separated list of keyword tags */
6105
6089
  keyword_list?: string;
6106
6090
  /** Comma separated list of message tags */
@@ -7435,12 +7419,6 @@ export interface PostApiV21ShipnoticesBulkRequest {
7435
7419
  reference?: string;
7436
7420
  /** JSON object of required and optional receiving quantities verified by staff */
7437
7421
  quantities_verified?: object;
7438
- /** BOL proxy for this shipnotice. */
7439
- bol_proxy?: string;
7440
- /** MID code for this shipnotice. */
7441
- mid_code?: string;
7442
- /** zone status of this shipnotice. */
7443
- zone_status?: string;
7444
7422
  /** is inspection required? (default: false) */
7445
7423
  inspection_required?: boolean;
7446
7424
  /**
@@ -7545,11 +7523,6 @@ export interface PostApiV21ShipnoticesIdShipnoticeItemsRequest {
7545
7523
  quantity?: number;
7546
7524
  /** action to perform on item return */
7547
7525
  return_action?: string;
7548
- /**
7549
- * Unit cost per item
7550
- * @format float
7551
- */
7552
- unit_cost?: number;
7553
7526
  }
7554
7527
 
7555
7528
  export interface PostApiV21ShipnoticesRequest {
@@ -7563,8 +7536,6 @@ export interface PostApiV21ShipnoticesRequest {
7563
7536
  * @format date-time
7564
7537
  */
7565
7538
  arrived_at?: string;
7566
- /** BOL proxy for this shipnotice. */
7567
- bol_proxy?: string;
7568
7539
  carrier?: string;
7569
7540
  /**
7570
7541
  * the shipnotice completion date and time
@@ -7603,8 +7574,6 @@ export interface PostApiV21ShipnoticesRequest {
7603
7574
  /** Included meta fields for associations */
7604
7575
  association_fields?: object;
7605
7576
  };
7606
- /** MID code for this shipnotice. */
7607
- mid_code?: string;
7608
7577
  /** notes by customer */
7609
7578
  notes_by_customer?: string;
7610
7579
  /** notes by whiplash */
@@ -7709,8 +7678,6 @@ export interface PostApiV21ShipnoticesRequest {
7709
7678
  * @format int32
7710
7679
  */
7711
7680
  warehouse_id?: number;
7712
- /** zone status of this shipnotice. */
7713
- zone_status?: string;
7714
7681
  }
7715
7682
 
7716
7683
  export interface PostApiV21SimulateConsumerReturnsCreateRequest {
@@ -8047,6 +8014,8 @@ export interface PostApiV2DocumentsRequest {
8047
8014
  context_list?: string;
8048
8015
  /** associated customer name */
8049
8016
  customer_name?: string;
8017
+ /** the document name */
8018
+ file_name?: string;
8050
8019
  /** Comma separated list of keyword tags */
8051
8020
  keyword_list?: string;
8052
8021
  /** Comma separated list of message tags */
@@ -9381,12 +9350,6 @@ export interface PostApiV2ShipnoticesBulkRequest {
9381
9350
  reference?: string;
9382
9351
  /** JSON object of required and optional receiving quantities verified by staff */
9383
9352
  quantities_verified?: object;
9384
- /** BOL proxy for this shipnotice. */
9385
- bol_proxy?: string;
9386
- /** MID code for this shipnotice. */
9387
- mid_code?: string;
9388
- /** zone status of this shipnotice. */
9389
- zone_status?: string;
9390
9353
  /** is inspection required? (default: false) */
9391
9354
  inspection_required?: boolean;
9392
9355
  /**
@@ -9491,11 +9454,6 @@ export interface PostApiV2ShipnoticesIdShipnoticeItemsRequest {
9491
9454
  quantity?: number;
9492
9455
  /** action to perform on item return */
9493
9456
  return_action?: string;
9494
- /**
9495
- * Unit cost per item
9496
- * @format float
9497
- */
9498
- unit_cost?: number;
9499
9457
  }
9500
9458
 
9501
9459
  export interface PostApiV2ShipnoticesRequest {
@@ -9509,8 +9467,6 @@ export interface PostApiV2ShipnoticesRequest {
9509
9467
  * @format date-time
9510
9468
  */
9511
9469
  arrived_at?: string;
9512
- /** BOL proxy for this shipnotice. */
9513
- bol_proxy?: string;
9514
9470
  carrier?: string;
9515
9471
  /**
9516
9472
  * the shipnotice completion date and time
@@ -9549,8 +9505,6 @@ export interface PostApiV2ShipnoticesRequest {
9549
9505
  /** Included meta fields for associations */
9550
9506
  association_fields?: object;
9551
9507
  };
9552
- /** MID code for this shipnotice. */
9553
- mid_code?: string;
9554
9508
  /** notes by customer */
9555
9509
  notes_by_customer?: string;
9556
9510
  /** notes by whiplash */
@@ -9655,8 +9609,6 @@ export interface PostApiV2ShipnoticesRequest {
9655
9609
  * @format int32
9656
9610
  */
9657
9611
  warehouse_id?: number;
9658
- /** zone status of this shipnotice. */
9659
- zone_status?: string;
9660
9612
  }
9661
9613
 
9662
9614
  export interface PostApiV2SimulateConsumerReturnsCreateRequest {
@@ -10737,11 +10689,6 @@ export interface PutApiV21ShipnoticeItemsIdRequest {
10737
10689
  * @format int32
10738
10690
  */
10739
10691
  quantity?: number;
10740
- /**
10741
- * Unit cost per item
10742
- * @format float
10743
- */
10744
- unit_cost?: number;
10745
10692
  }
10746
10693
 
10747
10694
  export interface PutApiV21ShipnoticesIdMetaFieldsRequest {
@@ -10762,8 +10709,6 @@ export interface PutApiV21ShipnoticesIdRequest {
10762
10709
  * @format date-time
10763
10710
  */
10764
10711
  arrived_at?: string;
10765
- /** BOL proxy for this shipnotice. */
10766
- bol_proxy?: string;
10767
10712
  carrier?: string;
10768
10713
  /**
10769
10714
  * the shipnotice completion date and time
@@ -10793,8 +10738,6 @@ export interface PutApiV21ShipnoticesIdRequest {
10793
10738
  handling_billed?: boolean;
10794
10739
  /** meta data for this shipnotice as stringified JSON */
10795
10740
  meta_data?: string;
10796
- /** MID code for this shipnotice. */
10797
- mid_code?: string;
10798
10741
  /** notes by customer */
10799
10742
  notes_by_customer?: string;
10800
10743
  /** notes by whiplash */
@@ -10849,8 +10792,6 @@ export interface PutApiV21ShipnoticesIdRequest {
10849
10792
  tracking?: string;
10850
10793
  /** shipnotice type (Shipnotice, ConsumerReturn) */
10851
10794
  type?: string;
10852
- /** zone status of this shipnotice. */
10853
- zone_status?: string;
10854
10795
  }
10855
10796
 
10856
10797
  export interface PutApiV21SimulateConsumerReturnsConsumerReturnIdProcessingRequest {
@@ -11965,11 +11906,6 @@ export interface PutApiV2ShipnoticeItemsIdRequest {
11965
11906
  * @format int32
11966
11907
  */
11967
11908
  quantity?: number;
11968
- /**
11969
- * Unit cost per item
11970
- * @format float
11971
- */
11972
- unit_cost?: number;
11973
11909
  }
11974
11910
 
11975
11911
  export interface PutApiV2ShipnoticesIdMetaFieldsRequest {
@@ -11990,8 +11926,6 @@ export interface PutApiV2ShipnoticesIdRequest {
11990
11926
  * @format date-time
11991
11927
  */
11992
11928
  arrived_at?: string;
11993
- /** BOL proxy for this shipnotice. */
11994
- bol_proxy?: string;
11995
11929
  carrier?: string;
11996
11930
  /**
11997
11931
  * the shipnotice completion date and time
@@ -12021,8 +11955,6 @@ export interface PutApiV2ShipnoticesIdRequest {
12021
11955
  handling_billed?: boolean;
12022
11956
  /** meta data for this shipnotice as stringified JSON */
12023
11957
  meta_data?: string;
12024
- /** MID code for this shipnotice. */
12025
- mid_code?: string;
12026
11958
  /** notes by customer */
12027
11959
  notes_by_customer?: string;
12028
11960
  /** notes by whiplash */
@@ -12077,8 +12009,6 @@ export interface PutApiV2ShipnoticesIdRequest {
12077
12009
  tracking?: string;
12078
12010
  /** shipnotice type (Shipnotice, ConsumerReturn) */
12079
12011
  type?: string;
12080
- /** zone status of this shipnotice. */
12081
- zone_status?: string;
12082
12012
  }
12083
12013
 
12084
12014
  export interface PutApiV2SimulateConsumerReturnsConsumerReturnIdProcessingRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whiplashmerch/whiplash-api-client",
3
- "version": "2.0.14",
3
+ "version": "2.0.16",
4
4
  "description": "",
5
5
  "devDependencies": {},
6
6
  "scripts": {