@whiplashmerch/whiplash-api-client 3.0.9 → 3.0.10

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.
@@ -615,6 +615,11 @@ export interface ApiV2EntitiesConsumerReturn {
615
615
  */
616
616
  eta?: string | null;
617
617
  exchange_order?: ApiV2EntitiesOrder;
618
+ /**
619
+ * the id of the exhange order
620
+ * @format int32
621
+ */
622
+ exchange_order_id?: number | null;
618
623
  /** was handling billed? */
619
624
  handling_billed?: boolean | null;
620
625
  /**
@@ -841,6 +846,8 @@ export interface ApiV2EntitiesCustomer {
841
846
  * @format int32
842
847
  */
843
848
  id?: number;
849
+ /** Customer incoterm. */
850
+ incoterm?: string;
844
851
  /** Customer instructions. */
845
852
  instructions?: string | null;
846
853
  /** Customer has item scanning preference? */
@@ -1087,6 +1094,8 @@ export interface ApiV2EntitiesCustomerShallow {
1087
1094
  * @format int32
1088
1095
  */
1089
1096
  id?: number;
1097
+ /** Customer incoterm. */
1098
+ incoterm?: string;
1090
1099
  /** Customer instructions. */
1091
1100
  instructions?: string;
1092
1101
  /** Customer has item scanning preference? */
@@ -6494,6 +6503,11 @@ export interface ApiV21EntitiesConsumerReturn {
6494
6503
  * @format date-time
6495
6504
  */
6496
6505
  eta?: string | null;
6506
+ /**
6507
+ * the id of the exhange order
6508
+ * @format int32
6509
+ */
6510
+ exchange_order_id?: number | null;
6497
6511
  /** was handling billed? */
6498
6512
  handling_billed?: boolean | null;
6499
6513
  /**
@@ -6702,6 +6716,8 @@ export interface ApiV21EntitiesCustomer {
6702
6716
  * @format int32
6703
6717
  */
6704
6718
  id?: number;
6719
+ /** Customer incoterm. */
6720
+ incoterm?: string;
6705
6721
  /** Customer instructions. */
6706
6722
  instructions?: string | null;
6707
6723
  /** Customer has item scanning preference? */
@@ -16904,6 +16920,11 @@ export interface PostApiV21ConsumerReturnsBulkRequest {
16904
16920
  due_at?: string;
16905
16921
  /** purchase order number or other human readable token to another system */
16906
16922
  reference?: string;
16923
+ /**
16924
+ * the id of the exhange order
16925
+ * @format int32
16926
+ */
16927
+ exchange_order_id?: number;
16907
16928
  shipnotice_items_attributes?: {
16908
16929
  /**
16909
16930
  * the shipnotice item item id
@@ -17020,6 +17041,11 @@ export interface PostApiV21ConsumerReturnsRequest {
17020
17041
  eta?: string;
17021
17042
  /** List of whiplash item ids to be added to an exchange order */
17022
17043
  exchange_items?: number[];
17044
+ /**
17045
+ * the id of the exhange order
17046
+ * @format int32
17047
+ */
17048
+ exchange_order_id?: number;
17023
17049
  /** was handling billed? */
17024
17050
  handling_billed?: boolean;
17025
17051
  /** Hash of key value pairs (must conform to available meta keys) */
@@ -17229,6 +17255,8 @@ export interface PostApiV21CustomersRequest {
17229
17255
  full_logo_url?: string;
17230
17256
  /** Customer Global-E GUID. */
17231
17257
  global_e_guid?: string;
17258
+ /** Customer incoterm. */
17259
+ incoterm?: string;
17232
17260
  /** Customer instructions. */
17233
17261
  instructions?: string;
17234
17262
  /** Customer has item scanning preference? */
@@ -20576,6 +20604,11 @@ export interface PostApiV2ConsumerReturnsBulkRequest {
20576
20604
  due_at?: string;
20577
20605
  /** purchase order number or other human readable token to another system */
20578
20606
  reference?: string;
20607
+ /**
20608
+ * the id of the exhange order
20609
+ * @format int32
20610
+ */
20611
+ exchange_order_id?: number;
20579
20612
  shipnotice_items_attributes?: {
20580
20613
  /**
20581
20614
  * the shipnotice item item id
@@ -20692,6 +20725,11 @@ export interface PostApiV2ConsumerReturnsRequest {
20692
20725
  eta?: string;
20693
20726
  /** List of whiplash item ids to be added to an exchange order */
20694
20727
  exchange_items?: number[];
20728
+ /**
20729
+ * the id of the exhange order
20730
+ * @format int32
20731
+ */
20732
+ exchange_order_id?: number;
20695
20733
  /** was handling billed? */
20696
20734
  handling_billed?: boolean;
20697
20735
  /** Hash of key value pairs (must conform to available meta keys) */
@@ -20901,6 +20939,8 @@ export interface PostApiV2CustomersRequest {
20901
20939
  full_logo_url?: string;
20902
20940
  /** Customer Global-E GUID. */
20903
20941
  global_e_guid?: string;
20942
+ /** Customer incoterm. */
20943
+ incoterm?: string;
20904
20944
  /** Customer instructions. */
20905
20945
  instructions?: string;
20906
20946
  /** Customer has item scanning preference? */
@@ -24233,6 +24273,8 @@ export interface PutApiV21CustomersIdRequest {
24233
24273
  full_logo_url?: string;
24234
24274
  /** Customer Global-E GUID. */
24235
24275
  global_e_guid?: string;
24276
+ /** Customer incoterm. */
24277
+ incoterm?: string;
24236
24278
  /** Customer instructions. */
24237
24279
  instructions?: string;
24238
24280
  /** Customer has item scanning preference? */
@@ -27245,6 +27287,8 @@ export interface PutApiV2CustomersIdRequest {
27245
27287
  full_logo_url?: string;
27246
27288
  /** Customer Global-E GUID. */
27247
27289
  global_e_guid?: string;
27290
+ /** Customer incoterm. */
27291
+ incoterm?: string;
27248
27292
  /** Customer instructions. */
27249
27293
  instructions?: string;
27250
27294
  /** Customer has item scanning preference? */
@@ -136,6 +136,11 @@ export interface ApiV2EntitiesConsumerReturn {
136
136
  */
137
137
  eta?: string | null;
138
138
  exchange_order?: ApiV2EntitiesOrder;
139
+ /**
140
+ * the id of the exhange order
141
+ * @format int32
142
+ */
143
+ exchange_order_id?: number | null;
139
144
  /** was handling billed? */
140
145
  handling_billed?: boolean | null;
141
146
  /**
@@ -338,6 +343,8 @@ export interface ApiV2EntitiesCustomer {
338
343
  * @format int32
339
344
  */
340
345
  id?: number;
346
+ /** Customer incoterm. */
347
+ incoterm?: string;
341
348
  /** Customer instructions. */
342
349
  instructions?: string | null;
343
350
  /** Customer has item scanning preference? */
@@ -585,6 +592,8 @@ export interface ApiV2EntitiesCustomerShallow {
585
592
  * @format int32
586
593
  */
587
594
  id?: number;
595
+ /** Customer incoterm. */
596
+ incoterm?: string;
588
597
  /** Customer instructions. */
589
598
  instructions?: string;
590
599
  /** Customer has item scanning preference? */
@@ -3173,6 +3182,11 @@ export interface ApiV21EntitiesConsumerReturn {
3173
3182
  * @format date-time
3174
3183
  */
3175
3184
  eta?: string | null;
3185
+ /**
3186
+ * the id of the exhange order
3187
+ * @format int32
3188
+ */
3189
+ exchange_order_id?: number | null;
3176
3190
  /** was handling billed? */
3177
3191
  handling_billed?: boolean | null;
3178
3192
  /**
@@ -3357,6 +3371,8 @@ export interface ApiV21EntitiesCustomer {
3357
3371
  * @format int32
3358
3372
  */
3359
3373
  id?: number;
3374
+ /** Customer incoterm. */
3375
+ incoterm?: string;
3360
3376
  /** Customer instructions. */
3361
3377
  instructions?: string | null;
3362
3378
  /** Customer has item scanning preference? */
@@ -6412,6 +6428,11 @@ export interface PostApiV21ConsumerReturnsBulkRequest {
6412
6428
  due_at?: string;
6413
6429
  /** purchase order number or other human readable token to another system */
6414
6430
  reference?: string;
6431
+ /**
6432
+ * the id of the exhange order
6433
+ * @format int32
6434
+ */
6435
+ exchange_order_id?: number;
6415
6436
  shipnotice_items_attributes?: {
6416
6437
  /**
6417
6438
  * the shipnotice item item id
@@ -6506,6 +6527,11 @@ export interface PostApiV21ConsumerReturnsRequest {
6506
6527
  eta?: string;
6507
6528
  /** List of whiplash item ids to be added to an exchange order */
6508
6529
  exchange_items?: number[];
6530
+ /**
6531
+ * the id of the exhange order
6532
+ * @format int32
6533
+ */
6534
+ exchange_order_id?: number;
6509
6535
  /** was handling billed? */
6510
6536
  handling_billed?: boolean;
6511
6537
  /** Hash of key value pairs (must conform to available meta keys) */
@@ -8391,6 +8417,11 @@ export interface PostApiV2ConsumerReturnsBulkRequest {
8391
8417
  due_at?: string;
8392
8418
  /** purchase order number or other human readable token to another system */
8393
8419
  reference?: string;
8420
+ /**
8421
+ * the id of the exhange order
8422
+ * @format int32
8423
+ */
8424
+ exchange_order_id?: number;
8394
8425
  shipnotice_items_attributes?: {
8395
8426
  /**
8396
8427
  * the shipnotice item item id
@@ -8485,6 +8516,11 @@ export interface PostApiV2ConsumerReturnsRequest {
8485
8516
  eta?: string;
8486
8517
  /** List of whiplash item ids to be added to an exchange order */
8487
8518
  exchange_items?: number[];
8519
+ /**
8520
+ * the id of the exhange order
8521
+ * @format int32
8522
+ */
8523
+ exchange_order_id?: number;
8488
8524
  /** was handling billed? */
8489
8525
  handling_billed?: boolean;
8490
8526
  /** Hash of key value pairs (must conform to available meta keys) */
@@ -10422,6 +10458,8 @@ export interface PutApiV21CustomersIdRequest {
10422
10458
  full_logo_url?: string;
10423
10459
  /** Customer Global-E GUID. */
10424
10460
  global_e_guid?: string;
10461
+ /** Customer incoterm. */
10462
+ incoterm?: string;
10425
10463
  /** Customer instructions. */
10426
10464
  instructions?: string;
10427
10465
  /** Customer has item scanning preference? */
@@ -11663,6 +11701,8 @@ export interface PutApiV2CustomersIdRequest {
11663
11701
  full_logo_url?: string;
11664
11702
  /** Customer Global-E GUID. */
11665
11703
  global_e_guid?: string;
11704
+ /** Customer incoterm. */
11705
+ incoterm?: string;
11666
11706
  /** Customer instructions. */
11667
11707
  instructions?: string;
11668
11708
  /** Customer has item scanning preference? */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@whiplashmerch/whiplash-api-client",
3
- "version": "3.0.9",
3
+ "version": "3.0.10",
4
4
  "description": "",
5
5
  "devDependencies": {},
6
6
  "scripts": {