@whiplashmerch/whiplash-api-client 2.0.32 → 2.0.34
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ApiV21EntitiesWholesale, ApiV2EntitiesWholesale, GetApiV21WholesalesParams, GetApiV2WholesalesParams, PutApiV21WholesalesIdRequest, PutApiV2WholesalesIdRequest } from "./data-contracts";
|
|
1
|
+
import { ApiV21EntitiesWholesale, ApiV2EntitiesAddress, ApiV2EntitiesWholesale, GetApiV21WholesalesAddressesParams, GetApiV21WholesalesParams, GetApiV2WholesalesAddressesParams, GetApiV2WholesalesParams, PutApiV21WholesalesIdRequest, PutApiV2WholesalesIdRequest } from "./data-contracts";
|
|
2
2
|
import { HttpClient, RequestParams } from "./http-client";
|
|
3
3
|
/**
|
|
4
4
|
* @description Returns all wholesale objects
|
|
@@ -9,6 +9,15 @@ import { HttpClient, RequestParams } from "./http-client";
|
|
|
9
9
|
* @request GET:/api/v2/wholesales
|
|
10
10
|
*/
|
|
11
11
|
export declare const getApiV2Wholesales: (client: HttpClient, query: GetApiV2WholesalesParams, params?: RequestParams) => Promise<ApiV2EntitiesWholesale[]>;
|
|
12
|
+
/**
|
|
13
|
+
* @description Returns addresses for wholesales
|
|
14
|
+
*
|
|
15
|
+
* @tags wholesales
|
|
16
|
+
* @name GetApiV2WholesalesAddresses
|
|
17
|
+
* @summary List addresses for wholesales
|
|
18
|
+
* @request GET:/api/v2/wholesales/addresses
|
|
19
|
+
*/
|
|
20
|
+
export declare const getApiV2WholesalesAddresses: (client: HttpClient, query: GetApiV2WholesalesAddressesParams, params?: RequestParams) => Promise<ApiV2EntitiesAddress[]>;
|
|
12
21
|
/**
|
|
13
22
|
* @description get a Wholesale object
|
|
14
23
|
*
|
|
@@ -36,6 +45,15 @@ export declare const putApiV2WholesalesId: (client: HttpClient, id: number, data
|
|
|
36
45
|
* @request GET:/api/v2.1/wholesales
|
|
37
46
|
*/
|
|
38
47
|
export declare const getApiV21Wholesales: (client: HttpClient, query: GetApiV21WholesalesParams, params?: RequestParams) => Promise<ApiV21EntitiesWholesale[]>;
|
|
48
|
+
/**
|
|
49
|
+
* @description Returns addresses for wholesales
|
|
50
|
+
*
|
|
51
|
+
* @tags wholesales
|
|
52
|
+
* @name GetApiV21WholesalesAddresses
|
|
53
|
+
* @summary List addresses for wholesales
|
|
54
|
+
* @request GET:/api/v2.1/wholesales/addresses
|
|
55
|
+
*/
|
|
56
|
+
export declare const getApiV21WholesalesAddresses: (client: HttpClient, query: GetApiV21WholesalesAddressesParams, params?: RequestParams) => Promise<ApiV2EntitiesAddress[]>;
|
|
39
57
|
/**
|
|
40
58
|
* @description get a Wholesale object
|
|
41
59
|
*
|
|
@@ -801,6 +801,8 @@ export interface ApiV2EntitiesCustomer {
|
|
|
801
801
|
from_email?: string | null;
|
|
802
802
|
/** Customer full logo url. */
|
|
803
803
|
full_logo_url?: string;
|
|
804
|
+
/** Customer Global-E GUID. */
|
|
805
|
+
global_e_guid?: string | null;
|
|
804
806
|
/**
|
|
805
807
|
* the customer id
|
|
806
808
|
* @format int32
|
|
@@ -1045,6 +1047,8 @@ export interface ApiV2EntitiesCustomerShallow {
|
|
|
1045
1047
|
from_email?: string;
|
|
1046
1048
|
/** Customer full logo url. */
|
|
1047
1049
|
full_logo_url?: string;
|
|
1050
|
+
/** Customer Global-E GUID. */
|
|
1051
|
+
global_e_guid?: string;
|
|
1048
1052
|
/**
|
|
1049
1053
|
* the customer id
|
|
1050
1054
|
* @format int32
|
|
@@ -1359,131 +1363,131 @@ export interface ApiV2EntitiesFilterSet {
|
|
|
1359
1363
|
/** V2 */
|
|
1360
1364
|
export interface ApiV2EntitiesFilterSetOptions {
|
|
1361
1365
|
bulk_actions?: {
|
|
1366
|
+
location_transfer?: object;
|
|
1367
|
+
order_batch?: object;
|
|
1368
|
+
meta_key?: object;
|
|
1369
|
+
shipping_method?: object;
|
|
1370
|
+
order?: object;
|
|
1362
1371
|
project?: object;
|
|
1372
|
+
incident?: object;
|
|
1373
|
+
item?: object;
|
|
1374
|
+
manifest?: object;
|
|
1363
1375
|
warehouse?: object;
|
|
1376
|
+
account_transaction?: object;
|
|
1377
|
+
user?: object;
|
|
1364
1378
|
consumer_return?: object;
|
|
1365
|
-
shipping_method?: object;
|
|
1366
|
-
manifest?: object;
|
|
1367
|
-
location?: object;
|
|
1368
|
-
incident?: object;
|
|
1369
1379
|
shipnotice?: object;
|
|
1370
|
-
|
|
1380
|
+
location?: object;
|
|
1371
1381
|
carrier_account?: object;
|
|
1372
|
-
item?: object;
|
|
1373
1382
|
location_audit?: object;
|
|
1374
|
-
order?: object;
|
|
1375
|
-
order_batch?: object;
|
|
1376
|
-
user?: object;
|
|
1377
|
-
meta_key?: object;
|
|
1378
|
-
location_transfer?: object;
|
|
1379
1383
|
};
|
|
1380
1384
|
exporters?: {
|
|
1381
|
-
|
|
1385
|
+
location_transfer?: object;
|
|
1382
1386
|
shipping_method?: object;
|
|
1383
|
-
|
|
1384
|
-
incident?: object;
|
|
1385
|
-
customer?: object;
|
|
1386
|
-
shipnotice?: object;
|
|
1387
|
+
order?: object;
|
|
1387
1388
|
document?: object;
|
|
1388
|
-
|
|
1389
|
+
incident?: object;
|
|
1389
1390
|
item?: object;
|
|
1391
|
+
account_transaction?: object;
|
|
1392
|
+
consumer_return?: object;
|
|
1393
|
+
shipnotice?: object;
|
|
1394
|
+
location?: object;
|
|
1395
|
+
customer?: object;
|
|
1390
1396
|
location_audit?: object;
|
|
1391
|
-
order?: object;
|
|
1392
|
-
location_transfer?: object;
|
|
1393
1397
|
};
|
|
1394
1398
|
filters?: {
|
|
1399
|
+
location_transfer?: any[];
|
|
1400
|
+
order_batch?: any[];
|
|
1401
|
+
meta_key?: any[];
|
|
1402
|
+
shipping_method?: any[];
|
|
1403
|
+
order?: any[];
|
|
1395
1404
|
project?: any[];
|
|
1405
|
+
document?: any[];
|
|
1406
|
+
incident?: any[];
|
|
1407
|
+
item?: any[];
|
|
1408
|
+
manifest?: any[];
|
|
1396
1409
|
warehouse?: any[];
|
|
1410
|
+
account_transaction?: any[];
|
|
1411
|
+
user?: any[];
|
|
1397
1412
|
consumer_return?: any[];
|
|
1398
|
-
|
|
1399
|
-
|
|
1413
|
+
partner?: any[];
|
|
1414
|
+
shipnotice?: any[];
|
|
1400
1415
|
location?: any[];
|
|
1401
1416
|
transaction?: any[];
|
|
1402
|
-
incident?: any[];
|
|
1403
|
-
customer?: any[];
|
|
1404
|
-
shipnotice?: any[];
|
|
1405
|
-
document?: any[];
|
|
1406
|
-
account_transaction?: any[];
|
|
1407
1417
|
carrier_account?: any[];
|
|
1408
|
-
|
|
1418
|
+
customer?: any[];
|
|
1409
1419
|
location_audit?: any[];
|
|
1410
|
-
order?: any[];
|
|
1411
|
-
order_batch?: any[];
|
|
1412
|
-
user?: any[];
|
|
1413
|
-
meta_key?: any[];
|
|
1414
|
-
partner?: any[];
|
|
1415
|
-
location_transfer?: any[];
|
|
1416
1420
|
};
|
|
1417
1421
|
importers?: {
|
|
1418
|
-
|
|
1419
|
-
|
|
1422
|
+
location_transfer?: any[];
|
|
1423
|
+
order?: any[];
|
|
1420
1424
|
document?: any[];
|
|
1421
1425
|
item?: any[];
|
|
1422
|
-
|
|
1423
|
-
|
|
1426
|
+
consumer_return?: any[];
|
|
1427
|
+
shipnotice?: any[];
|
|
1424
1428
|
};
|
|
1425
1429
|
required_scopes?: {
|
|
1430
|
+
location_transfer?: any[];
|
|
1431
|
+
order_batch?: any[];
|
|
1432
|
+
meta_key?: any[];
|
|
1433
|
+
shipping_method?: any[];
|
|
1434
|
+
order?: any[];
|
|
1426
1435
|
project?: any[];
|
|
1436
|
+
document?: any[];
|
|
1437
|
+
incident?: any[];
|
|
1438
|
+
item?: any[];
|
|
1439
|
+
manifest?: any[];
|
|
1427
1440
|
warehouse?: any[];
|
|
1441
|
+
account_transaction?: any[];
|
|
1442
|
+
user?: any[];
|
|
1428
1443
|
consumer_return?: any[];
|
|
1429
|
-
|
|
1430
|
-
|
|
1444
|
+
partner?: any[];
|
|
1445
|
+
shipnotice?: any[];
|
|
1431
1446
|
location?: any[];
|
|
1432
1447
|
transaction?: any[];
|
|
1433
|
-
incident?: any[];
|
|
1434
|
-
customer?: any[];
|
|
1435
|
-
shipnotice?: any[];
|
|
1436
|
-
document?: any[];
|
|
1437
|
-
account_transaction?: any[];
|
|
1438
1448
|
carrier_account?: any[];
|
|
1439
|
-
|
|
1449
|
+
customer?: any[];
|
|
1440
1450
|
location_audit?: any[];
|
|
1441
|
-
order?: any[];
|
|
1442
|
-
order_batch?: any[];
|
|
1443
|
-
user?: any[];
|
|
1444
|
-
meta_key?: any[];
|
|
1445
|
-
partner?: any[];
|
|
1446
|
-
location_transfer?: any[];
|
|
1447
1451
|
};
|
|
1448
1452
|
resource_actions?: {
|
|
1453
|
+
location_transfer?: object;
|
|
1454
|
+
order_batch?: object;
|
|
1455
|
+
meta_key?: object;
|
|
1456
|
+
shipping_method?: object;
|
|
1457
|
+
order?: object;
|
|
1449
1458
|
project?: object;
|
|
1459
|
+
document?: object;
|
|
1460
|
+
incident?: object;
|
|
1461
|
+
item?: object;
|
|
1462
|
+
manifest?: object;
|
|
1450
1463
|
warehouse?: object;
|
|
1464
|
+
account_transaction?: object;
|
|
1465
|
+
user?: object;
|
|
1451
1466
|
consumer_return?: object;
|
|
1452
|
-
shipping_method?: object;
|
|
1453
|
-
manifest?: object;
|
|
1454
|
-
location?: object;
|
|
1455
|
-
incident?: object;
|
|
1456
|
-
customer?: object;
|
|
1457
1467
|
shipnotice?: object;
|
|
1458
|
-
|
|
1459
|
-
account_transaction?: object;
|
|
1468
|
+
location?: object;
|
|
1460
1469
|
carrier_account?: object;
|
|
1461
|
-
|
|
1470
|
+
customer?: object;
|
|
1462
1471
|
location_audit?: object;
|
|
1463
|
-
order?: object;
|
|
1464
|
-
order_batch?: object;
|
|
1465
|
-
user?: object;
|
|
1466
|
-
meta_key?: object;
|
|
1467
|
-
location_transfer?: object;
|
|
1468
1472
|
};
|
|
1469
1473
|
rule_actions?: {
|
|
1470
|
-
packing?: object;
|
|
1471
|
-
shipping_method?: object;
|
|
1472
|
-
routing?: object;
|
|
1473
1474
|
batching?: object;
|
|
1474
1475
|
replenishment?: object;
|
|
1475
|
-
|
|
1476
|
+
packing?: object;
|
|
1476
1477
|
backstock?: object;
|
|
1478
|
+
shipping_method?: object;
|
|
1479
|
+
carrier_account?: object;
|
|
1480
|
+
routing?: object;
|
|
1477
1481
|
};
|
|
1478
1482
|
traits?: {
|
|
1483
|
+
order_batch?: any[];
|
|
1484
|
+
order?: any[];
|
|
1485
|
+
item?: any[];
|
|
1479
1486
|
warehouse?: any[];
|
|
1487
|
+
user?: any[];
|
|
1480
1488
|
consumer_return?: any[];
|
|
1481
|
-
customer?: any[];
|
|
1482
1489
|
shipnotice?: any[];
|
|
1483
|
-
|
|
1484
|
-
order?: any[];
|
|
1485
|
-
order_batch?: any[];
|
|
1486
|
-
user?: any[];
|
|
1490
|
+
customer?: any[];
|
|
1487
1491
|
};
|
|
1488
1492
|
}
|
|
1489
1493
|
/** V2 */
|
|
@@ -6448,6 +6452,8 @@ export interface ApiV21EntitiesCustomer {
|
|
|
6448
6452
|
from_email?: string | null;
|
|
6449
6453
|
/** Customer full logo url. */
|
|
6450
6454
|
full_logo_url?: string;
|
|
6455
|
+
/** Customer Global-E GUID. */
|
|
6456
|
+
global_e_guid?: string | null;
|
|
6451
6457
|
/**
|
|
6452
6458
|
* the customer id
|
|
6453
6459
|
* @format int32
|
|
@@ -11719,6 +11725,14 @@ export interface GetApiV21WholesaleItemsParams {
|
|
|
11719
11725
|
/** Include prev/next links in response headers */
|
|
11720
11726
|
page_links?: boolean;
|
|
11721
11727
|
}
|
|
11728
|
+
export interface GetApiV21WholesalesAddressesParams {
|
|
11729
|
+
/** JSON search string like {"attribute_eq": "Term"} */
|
|
11730
|
+
search?: string;
|
|
11731
|
+
/** A list of sort options (ex: name asc,created_at desc) */
|
|
11732
|
+
sort?: string;
|
|
11733
|
+
/** Comma-separated list of owner IDs */
|
|
11734
|
+
owner_ids?: string;
|
|
11735
|
+
}
|
|
11722
11736
|
export interface GetApiV21WholesalesParams {
|
|
11723
11737
|
/** JSON search string like {"attribute_eq": "Term"} */
|
|
11724
11738
|
search?: string;
|
|
@@ -14420,6 +14434,14 @@ export interface GetApiV2WholesaleItemsParams {
|
|
|
14420
14434
|
/** Include prev/next links in response headers */
|
|
14421
14435
|
page_links?: boolean;
|
|
14422
14436
|
}
|
|
14437
|
+
export interface GetApiV2WholesalesAddressesParams {
|
|
14438
|
+
/** JSON search string like {"attribute_eq": "Term"} */
|
|
14439
|
+
search?: string;
|
|
14440
|
+
/** A list of sort options (ex: name asc,created_at desc) */
|
|
14441
|
+
sort?: string;
|
|
14442
|
+
/** Comma-separated list of owner IDs */
|
|
14443
|
+
owner_ids?: string;
|
|
14444
|
+
}
|
|
14423
14445
|
export interface GetApiV2WholesalesParams {
|
|
14424
14446
|
/** JSON search string like {"attribute_eq": "Term"} */
|
|
14425
14447
|
search?: string;
|
|
@@ -15179,6 +15201,8 @@ export interface PostApiV21CustomersRequest {
|
|
|
15179
15201
|
from_email?: string;
|
|
15180
15202
|
/** Customer full logo url. */
|
|
15181
15203
|
full_logo_url?: string;
|
|
15204
|
+
/** Customer Global-E GUID. */
|
|
15205
|
+
global_e_guid?: string;
|
|
15182
15206
|
/** Customer instructions. */
|
|
15183
15207
|
instructions?: string;
|
|
15184
15208
|
/** Customer has item scanning preference? */
|
|
@@ -18814,6 +18838,8 @@ export interface PostApiV2CustomersRequest {
|
|
|
18814
18838
|
from_email?: string;
|
|
18815
18839
|
/** Customer full logo url. */
|
|
18816
18840
|
full_logo_url?: string;
|
|
18841
|
+
/** Customer Global-E GUID. */
|
|
18842
|
+
global_e_guid?: string;
|
|
18817
18843
|
/** Customer instructions. */
|
|
18818
18844
|
instructions?: string;
|
|
18819
18845
|
/** Customer has item scanning preference? */
|
|
@@ -22119,6 +22145,8 @@ export interface PutApiV21CustomersIdRequest {
|
|
|
22119
22145
|
from_email?: string;
|
|
22120
22146
|
/** Customer full logo url. */
|
|
22121
22147
|
full_logo_url?: string;
|
|
22148
|
+
/** Customer Global-E GUID. */
|
|
22149
|
+
global_e_guid?: string;
|
|
22122
22150
|
/** Customer instructions. */
|
|
22123
22151
|
instructions?: string;
|
|
22124
22152
|
/** Customer has item scanning preference? */
|
|
@@ -25115,6 +25143,8 @@ export interface PutApiV2CustomersIdRequest {
|
|
|
25115
25143
|
from_email?: string;
|
|
25116
25144
|
/** Customer full logo url. */
|
|
25117
25145
|
full_logo_url?: string;
|
|
25146
|
+
/** Customer Global-E GUID. */
|
|
25147
|
+
global_e_guid?: string;
|
|
25118
25148
|
/** Customer instructions. */
|
|
25119
25149
|
instructions?: string;
|
|
25120
25150
|
/** Customer has item scanning preference? */
|
|
@@ -27723,8 +27753,10 @@ export interface PutApiV2WholesalesIdRequest {
|
|
|
27723
27753
|
export declare enum ApiV21EntitiesItemHazmatType {
|
|
27724
27754
|
Ormd = "ormd",
|
|
27725
27755
|
Lithium = "lithium",
|
|
27756
|
+
Lighters = "lighters",
|
|
27726
27757
|
ORMD = "ORMD",
|
|
27727
|
-
LITHIUM = "LITHIUM"
|
|
27758
|
+
LITHIUM = "LITHIUM",
|
|
27759
|
+
LIGHTERS = "LIGHTERS"
|
|
27728
27760
|
}
|
|
27729
27761
|
/** label format */
|
|
27730
27762
|
export declare enum ApiV21EntitiesItemLabelFormat {
|
|
@@ -28153,8 +28185,10 @@ export declare enum ApiV2EntitiesChromalistResourceType {
|
|
|
28153
28185
|
export declare enum ApiV2EntitiesItemHazmatType {
|
|
28154
28186
|
Ormd = "ormd",
|
|
28155
28187
|
Lithium = "lithium",
|
|
28188
|
+
Lighters = "lighters",
|
|
28156
28189
|
ORMD = "ORMD",
|
|
28157
|
-
LITHIUM = "LITHIUM"
|
|
28190
|
+
LITHIUM = "LITHIUM",
|
|
28191
|
+
LIGHTERS = "LIGHTERS"
|
|
28158
28192
|
}
|
|
28159
28193
|
/** label format */
|
|
28160
28194
|
export declare enum ApiV2EntitiesItemLabelFormat {
|
|
@@ -28937,8 +28971,10 @@ export declare enum PostApiV21ItemsIdLocationsRequestRole {
|
|
|
28937
28971
|
export declare enum PostApiV21ItemsRequestHazmatType {
|
|
28938
28972
|
Ormd = "ormd",
|
|
28939
28973
|
Lithium = "lithium",
|
|
28974
|
+
Lighters = "lighters",
|
|
28940
28975
|
ORMD = "ORMD",
|
|
28941
|
-
LITHIUM = "LITHIUM"
|
|
28976
|
+
LITHIUM = "LITHIUM",
|
|
28977
|
+
LIGHTERS = "LIGHTERS"
|
|
28942
28978
|
}
|
|
28943
28979
|
/** label format */
|
|
28944
28980
|
export declare enum PostApiV21ItemsRequestLabelFormat {
|
|
@@ -29622,13 +29658,13 @@ export declare enum PostApiV21RulesRequestState {
|
|
|
29622
29658
|
}
|
|
29623
29659
|
/** Which type of rule this is */
|
|
29624
29660
|
export declare enum PostApiV21RulesRequestType {
|
|
29625
|
-
PackingRule = "PackingRule",
|
|
29626
|
-
ShippingMethodRule = "ShippingMethodRule",
|
|
29627
|
-
RoutingRule = "RoutingRule",
|
|
29628
29661
|
BatchingRule = "BatchingRule",
|
|
29629
29662
|
ReplenishmentRule = "ReplenishmentRule",
|
|
29663
|
+
PackingRule = "PackingRule",
|
|
29664
|
+
BackstockRule = "BackstockRule",
|
|
29665
|
+
ShippingMethodRule = "ShippingMethodRule",
|
|
29630
29666
|
CarrierAccountRule = "CarrierAccountRule",
|
|
29631
|
-
|
|
29667
|
+
RoutingRule = "RoutingRule"
|
|
29632
29668
|
}
|
|
29633
29669
|
/** locale for language settings */
|
|
29634
29670
|
export declare enum PostApiV21UsersRequestLocale {
|
|
@@ -29743,8 +29779,10 @@ export declare enum PostApiV2ItemsIdLocationsRequestRole {
|
|
|
29743
29779
|
export declare enum PostApiV2ItemsRequestHazmatType {
|
|
29744
29780
|
Ormd = "ormd",
|
|
29745
29781
|
Lithium = "lithium",
|
|
29782
|
+
Lighters = "lighters",
|
|
29746
29783
|
ORMD = "ORMD",
|
|
29747
|
-
LITHIUM = "LITHIUM"
|
|
29784
|
+
LITHIUM = "LITHIUM",
|
|
29785
|
+
LIGHTERS = "LIGHTERS"
|
|
29748
29786
|
}
|
|
29749
29787
|
/** label format */
|
|
29750
29788
|
export declare enum PostApiV2ItemsRequestLabelFormat {
|
|
@@ -30428,13 +30466,13 @@ export declare enum PostApiV2RulesRequestState {
|
|
|
30428
30466
|
}
|
|
30429
30467
|
/** Which type of rule this is */
|
|
30430
30468
|
export declare enum PostApiV2RulesRequestType {
|
|
30431
|
-
PackingRule = "PackingRule",
|
|
30432
|
-
ShippingMethodRule = "ShippingMethodRule",
|
|
30433
|
-
RoutingRule = "RoutingRule",
|
|
30434
30469
|
BatchingRule = "BatchingRule",
|
|
30435
30470
|
ReplenishmentRule = "ReplenishmentRule",
|
|
30471
|
+
PackingRule = "PackingRule",
|
|
30472
|
+
BackstockRule = "BackstockRule",
|
|
30473
|
+
ShippingMethodRule = "ShippingMethodRule",
|
|
30436
30474
|
CarrierAccountRule = "CarrierAccountRule",
|
|
30437
|
-
|
|
30475
|
+
RoutingRule = "RoutingRule"
|
|
30438
30476
|
}
|
|
30439
30477
|
/** locale for language settings */
|
|
30440
30478
|
export declare enum PostApiV2UsersRequestLocale {
|
|
@@ -30549,8 +30587,10 @@ export declare enum PutApiV21FilterSetsUpsertRequestType {
|
|
|
30549
30587
|
export declare enum PutApiV21IncidentsIdRequestHazmatType {
|
|
30550
30588
|
Ormd = "ormd",
|
|
30551
30589
|
Lithium = "lithium",
|
|
30590
|
+
Lighters = "lighters",
|
|
30552
30591
|
ORMD = "ORMD",
|
|
30553
|
-
LITHIUM = "LITHIUM"
|
|
30592
|
+
LITHIUM = "LITHIUM",
|
|
30593
|
+
LIGHTERS = "LIGHTERS"
|
|
30554
30594
|
}
|
|
30555
30595
|
/** label format */
|
|
30556
30596
|
export declare enum PutApiV21IncidentsIdRequestLabelFormat {
|
|
@@ -30865,8 +30905,10 @@ export declare enum PutApiV21IncidentsIdRequestPackagingType {
|
|
|
30865
30905
|
export declare enum PutApiV21ItemsIdRequestHazmatType {
|
|
30866
30906
|
Ormd = "ormd",
|
|
30867
30907
|
Lithium = "lithium",
|
|
30908
|
+
Lighters = "lighters",
|
|
30868
30909
|
ORMD = "ORMD",
|
|
30869
|
-
LITHIUM = "LITHIUM"
|
|
30910
|
+
LITHIUM = "LITHIUM",
|
|
30911
|
+
LIGHTERS = "LIGHTERS"
|
|
30870
30912
|
}
|
|
30871
30913
|
/** label format */
|
|
30872
30914
|
export declare enum PutApiV21ItemsIdRequestLabelFormat {
|
|
@@ -31610,8 +31652,10 @@ export declare enum PutApiV2FilterSetsUpsertRequestType {
|
|
|
31610
31652
|
export declare enum PutApiV2IncidentsIdRequestHazmatType {
|
|
31611
31653
|
Ormd = "ormd",
|
|
31612
31654
|
Lithium = "lithium",
|
|
31655
|
+
Lighters = "lighters",
|
|
31613
31656
|
ORMD = "ORMD",
|
|
31614
|
-
LITHIUM = "LITHIUM"
|
|
31657
|
+
LITHIUM = "LITHIUM",
|
|
31658
|
+
LIGHTERS = "LIGHTERS"
|
|
31615
31659
|
}
|
|
31616
31660
|
/** label format */
|
|
31617
31661
|
export declare enum PutApiV2IncidentsIdRequestLabelFormat {
|
|
@@ -31926,8 +31970,10 @@ export declare enum PutApiV2IncidentsIdRequestPackagingType {
|
|
|
31926
31970
|
export declare enum PutApiV2ItemsIdRequestHazmatType {
|
|
31927
31971
|
Ormd = "ormd",
|
|
31928
31972
|
Lithium = "lithium",
|
|
31973
|
+
Lighters = "lighters",
|
|
31929
31974
|
ORMD = "ORMD",
|
|
31930
|
-
LITHIUM = "LITHIUM"
|
|
31975
|
+
LITHIUM = "LITHIUM",
|
|
31976
|
+
LIGHTERS = "LIGHTERS"
|
|
31931
31977
|
}
|
|
31932
31978
|
/** label format */
|
|
31933
31979
|
export declare enum PutApiV2ItemsIdRequestLabelFormat {
|
|
@@ -323,6 +323,8 @@ export interface ApiV2EntitiesCustomer {
|
|
|
323
323
|
from_email?: string | null;
|
|
324
324
|
/** Customer full logo url. */
|
|
325
325
|
full_logo_url?: string;
|
|
326
|
+
/** Customer Global-E GUID. */
|
|
327
|
+
global_e_guid?: string | null;
|
|
326
328
|
/**
|
|
327
329
|
* the customer id
|
|
328
330
|
* @format int32
|
|
@@ -568,6 +570,8 @@ export interface ApiV2EntitiesCustomerShallow {
|
|
|
568
570
|
from_email?: string;
|
|
569
571
|
/** Customer full logo url. */
|
|
570
572
|
full_logo_url?: string;
|
|
573
|
+
/** Customer Global-E GUID. */
|
|
574
|
+
global_e_guid?: string;
|
|
571
575
|
/**
|
|
572
576
|
* the customer id
|
|
573
577
|
* @format int32
|
|
@@ -3291,6 +3295,8 @@ export interface ApiV21EntitiesCustomer {
|
|
|
3291
3295
|
from_email?: string | null;
|
|
3292
3296
|
/** Customer full logo url. */
|
|
3293
3297
|
full_logo_url?: string;
|
|
3298
|
+
/** Customer Global-E GUID. */
|
|
3299
|
+
global_e_guid?: string | null;
|
|
3294
3300
|
/**
|
|
3295
3301
|
* the customer id
|
|
3296
3302
|
* @format int32
|
|
@@ -9915,6 +9921,8 @@ export interface PutApiV21CustomersIdRequest {
|
|
|
9915
9921
|
from_email?: string;
|
|
9916
9922
|
/** Customer full logo url. */
|
|
9917
9923
|
full_logo_url?: string;
|
|
9924
|
+
/** Customer Global-E GUID. */
|
|
9925
|
+
global_e_guid?: string;
|
|
9918
9926
|
/** Customer instructions. */
|
|
9919
9927
|
instructions?: string;
|
|
9920
9928
|
/** Customer has item scanning preference? */
|
|
@@ -11154,6 +11162,8 @@ export interface PutApiV2CustomersIdRequest {
|
|
|
11154
11162
|
from_email?: string;
|
|
11155
11163
|
/** Customer full logo url. */
|
|
11156
11164
|
full_logo_url?: string;
|
|
11165
|
+
/** Customer Global-E GUID. */
|
|
11166
|
+
global_e_guid?: string;
|
|
11157
11167
|
/** Customer instructions. */
|
|
11158
11168
|
instructions?: string;
|
|
11159
11169
|
/** Customer has item scanning preference? */
|
|
@@ -12250,8 +12260,10 @@ export interface PutApiV2WholesaleItemsIdRequest {
|
|
|
12250
12260
|
export enum ApiV21EntitiesItemHazmatType {
|
|
12251
12261
|
Ormd = "ormd",
|
|
12252
12262
|
Lithium = "lithium",
|
|
12263
|
+
Lighters = "lighters",
|
|
12253
12264
|
ORMD = "ORMD",
|
|
12254
12265
|
LITHIUM = "LITHIUM",
|
|
12266
|
+
LIGHTERS = "LIGHTERS",
|
|
12255
12267
|
}
|
|
12256
12268
|
|
|
12257
12269
|
/** label format */
|
|
@@ -12640,8 +12652,10 @@ export enum ApiV21EntitiesOrderStatus {
|
|
|
12640
12652
|
export enum ApiV2EntitiesItemHazmatType {
|
|
12641
12653
|
Ormd = "ormd",
|
|
12642
12654
|
Lithium = "lithium",
|
|
12655
|
+
Lighters = "lighters",
|
|
12643
12656
|
ORMD = "ORMD",
|
|
12644
12657
|
LITHIUM = "LITHIUM",
|
|
12658
|
+
LIGHTERS = "LIGHTERS",
|
|
12645
12659
|
}
|
|
12646
12660
|
|
|
12647
12661
|
/** label format */
|
|
@@ -13084,8 +13098,10 @@ export enum GetApiV2ItemsIdLocationsWithTransferCountParamsRole {
|
|
|
13084
13098
|
export enum PostApiV21ItemsRequestHazmatType {
|
|
13085
13099
|
Ormd = "ormd",
|
|
13086
13100
|
Lithium = "lithium",
|
|
13101
|
+
Lighters = "lighters",
|
|
13087
13102
|
ORMD = "ORMD",
|
|
13088
13103
|
LITHIUM = "LITHIUM",
|
|
13104
|
+
LIGHTERS = "LIGHTERS",
|
|
13089
13105
|
}
|
|
13090
13106
|
|
|
13091
13107
|
/** label format */
|
|
@@ -13494,8 +13510,10 @@ export enum PostApiV21OrdersRequestStatus {
|
|
|
13494
13510
|
export enum PostApiV2ItemsRequestHazmatType {
|
|
13495
13511
|
Ormd = "ormd",
|
|
13496
13512
|
Lithium = "lithium",
|
|
13513
|
+
Lighters = "lighters",
|
|
13497
13514
|
ORMD = "ORMD",
|
|
13498
13515
|
LITHIUM = "LITHIUM",
|
|
13516
|
+
LIGHTERS = "LIGHTERS",
|
|
13499
13517
|
}
|
|
13500
13518
|
|
|
13501
13519
|
/** label format */
|
|
@@ -13904,8 +13922,10 @@ export enum PostApiV2OrdersRequestStatus {
|
|
|
13904
13922
|
export enum PutApiV21ItemsIdRequestHazmatType {
|
|
13905
13923
|
Ormd = "ormd",
|
|
13906
13924
|
Lithium = "lithium",
|
|
13925
|
+
Lighters = "lighters",
|
|
13907
13926
|
ORMD = "ORMD",
|
|
13908
13927
|
LITHIUM = "LITHIUM",
|
|
13928
|
+
LIGHTERS = "LIGHTERS",
|
|
13909
13929
|
}
|
|
13910
13930
|
|
|
13911
13931
|
/** label format */
|
|
@@ -14267,8 +14287,10 @@ export enum PutApiV21SimulateOrdersOrderIdProcessingRequestStatus {
|
|
|
14267
14287
|
export enum PutApiV2ItemsIdRequestHazmatType {
|
|
14268
14288
|
Ormd = "ormd",
|
|
14269
14289
|
Lithium = "lithium",
|
|
14290
|
+
Lighters = "lighters",
|
|
14270
14291
|
ORMD = "ORMD",
|
|
14271
14292
|
LITHIUM = "LITHIUM",
|
|
14293
|
+
LIGHTERS = "LIGHTERS",
|
|
14272
14294
|
}
|
|
14273
14295
|
|
|
14274
14296
|
/** label format */
|