@whiplashmerch/whiplash-api-client 3.0.3 → 3.0.4
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.
|
@@ -5074,6 +5074,8 @@ export interface ApiV2EntitiesShippingMethod {
|
|
|
5074
5074
|
/** nicely formatted carrier and service */
|
|
5075
5075
|
name?: string;
|
|
5076
5076
|
origins?: string[];
|
|
5077
|
+
/** Standard Carrier Alpha Code */
|
|
5078
|
+
scac?: string | null;
|
|
5077
5079
|
/** the shipping method service (NextDayAir, Ground, etc) */
|
|
5078
5080
|
service?: string | null;
|
|
5079
5081
|
/** is the shipping method trackable? */
|
|
@@ -10148,6 +10150,8 @@ export interface ApiV21EntitiesShippingMethod {
|
|
|
10148
10150
|
/** nicely formatted carrier and service */
|
|
10149
10151
|
name?: string;
|
|
10150
10152
|
origins?: string[];
|
|
10153
|
+
/** Standard Carrier Alpha Code */
|
|
10154
|
+
scac?: string | null;
|
|
10151
10155
|
/** the shipping method service (NextDayAir, Ground, etc) */
|
|
10152
10156
|
service?: string | null;
|
|
10153
10157
|
/** is the shipping method trackable? */
|
|
@@ -19793,6 +19797,8 @@ export interface PostApiV21ShippingMethodsRequest {
|
|
|
19793
19797
|
name?: string;
|
|
19794
19798
|
/** the shipping method origin countries (["CA", "US", "GB", ...]) */
|
|
19795
19799
|
origins?: string[];
|
|
19800
|
+
/** Standard Carrier Alpha Code */
|
|
19801
|
+
scac?: string;
|
|
19796
19802
|
/** the shipping method service (NextDayAir, Ground, etc) */
|
|
19797
19803
|
service?: string;
|
|
19798
19804
|
/** is the shipping method trackable? */
|
|
@@ -23463,6 +23469,8 @@ export interface PostApiV2ShippingMethodsRequest {
|
|
|
23463
23469
|
name?: string;
|
|
23464
23470
|
/** the shipping method origin countries (["CA", "US", "GB", ...]) */
|
|
23465
23471
|
origins?: string[];
|
|
23472
|
+
/** Standard Carrier Alpha Code */
|
|
23473
|
+
scac?: string;
|
|
23466
23474
|
/** the shipping method service (NextDayAir, Ground, etc) */
|
|
23467
23475
|
service?: string;
|
|
23468
23476
|
/** is the shipping method trackable? */
|
|
@@ -26366,6 +26374,8 @@ export interface PutApiV21ShippingMethodsIdRequest {
|
|
|
26366
26374
|
name?: string;
|
|
26367
26375
|
/** the shipping method origin countries (["CA", "US", "GB", ...]) */
|
|
26368
26376
|
origins?: string[];
|
|
26377
|
+
/** Standard Carrier Alpha Code */
|
|
26378
|
+
scac?: string;
|
|
26369
26379
|
/** the shipping method service (NextDayAir, Ground, etc) */
|
|
26370
26380
|
service?: string;
|
|
26371
26381
|
/** is the shipping method trackable? */
|
|
@@ -29376,6 +29386,8 @@ export interface PutApiV2ShippingMethodsIdRequest {
|
|
|
29376
29386
|
name?: string;
|
|
29377
29387
|
/** the shipping method origin countries (["CA", "US", "GB", ...]) */
|
|
29378
29388
|
origins?: string[];
|
|
29389
|
+
/** Standard Carrier Alpha Code */
|
|
29390
|
+
scac?: string;
|
|
29379
29391
|
/** the shipping method service (NextDayAir, Ground, etc) */
|
|
29380
29392
|
service?: string;
|
|
29381
29393
|
/** is the shipping method trackable? */
|
|
@@ -2440,6 +2440,8 @@ export interface ApiV2EntitiesShippingMethod {
|
|
|
2440
2440
|
/** nicely formatted carrier and service */
|
|
2441
2441
|
name?: string;
|
|
2442
2442
|
origins?: string[];
|
|
2443
|
+
/** Standard Carrier Alpha Code */
|
|
2444
|
+
scac?: string | null;
|
|
2443
2445
|
/** the shipping method service (NextDayAir, Ground, etc) */
|
|
2444
2446
|
service?: string | null;
|
|
2445
2447
|
/** is the shipping method trackable? */
|