@sp-api-sdk/shipping-api-v1 1.10.5 → 1.10.7
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.
- package/dist/types/src/api-model/models/container.d.ts +1 -1
- package/dist/types/src/api-model/models/dimensions.d.ts +1 -1
- package/dist/types/src/api-model/models/label-specification.d.ts +2 -2
- package/dist/types/src/api-model/models/service-type.d.ts +1 -1
- package/dist/types/src/api-model/models/weight.d.ts +1 -1
- package/package.json +3 -3
|
@@ -59,4 +59,4 @@ export interface Container {
|
|
|
59
59
|
export declare const ContainerContainerTypeEnum: {
|
|
60
60
|
readonly Package: "PACKAGE";
|
|
61
61
|
};
|
|
62
|
-
export
|
|
62
|
+
export type ContainerContainerTypeEnum = typeof ContainerContainerTypeEnum[keyof typeof ContainerContainerTypeEnum];
|
|
@@ -44,4 +44,4 @@ export declare const DimensionsUnitEnum: {
|
|
|
44
44
|
readonly In: "IN";
|
|
45
45
|
readonly Cm: "CM";
|
|
46
46
|
};
|
|
47
|
-
export
|
|
47
|
+
export type DimensionsUnitEnum = typeof DimensionsUnitEnum[keyof typeof DimensionsUnitEnum];
|
|
@@ -31,8 +31,8 @@ export interface LabelSpecification {
|
|
|
31
31
|
export declare const LabelSpecificationLabelFormatEnum: {
|
|
32
32
|
readonly Png: "PNG";
|
|
33
33
|
};
|
|
34
|
-
export
|
|
34
|
+
export type LabelSpecificationLabelFormatEnum = typeof LabelSpecificationLabelFormatEnum[keyof typeof LabelSpecificationLabelFormatEnum];
|
|
35
35
|
export declare const LabelSpecificationLabelStockSizeEnum: {
|
|
36
36
|
readonly _4x6: "4x6";
|
|
37
37
|
};
|
|
38
|
-
export
|
|
38
|
+
export type LabelSpecificationLabelStockSizeEnum = typeof LabelSpecificationLabelStockSizeEnum[keyof typeof LabelSpecificationLabelStockSizeEnum];
|
|
@@ -19,4 +19,4 @@ export declare const ServiceType: {
|
|
|
19
19
|
readonly Standard: "Amazon Shipping Standard";
|
|
20
20
|
readonly Premium: "Amazon Shipping Premium";
|
|
21
21
|
};
|
|
22
|
-
export
|
|
22
|
+
export type ServiceType = typeof ServiceType[keyof typeof ServiceType];
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sp-api-sdk/shipping-api-v1",
|
|
3
3
|
"author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
|
|
4
4
|
"description": "Provides programmatic access to Amazon Shipping APIs. Note: If you are new to the Amazon Shipping API, refer to the latest version of Amazon Shipping API (v2) on the Amazon Shipping Developer Documentation site.",
|
|
5
|
-
"version": "1.10.
|
|
5
|
+
"version": "1.10.7",
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
7
7
|
"module": "dist/es/index.js",
|
|
8
8
|
"types": "dist/types/index.d.ts",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test": "jest"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@sp-api-sdk/common": "^1.9.
|
|
29
|
+
"@sp-api-sdk/common": "^1.9.19",
|
|
30
30
|
"axios": "^0.27.2"
|
|
31
31
|
},
|
|
32
32
|
"repository": {
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"typedoc": {
|
|
52
52
|
"entryPoint": "./index.ts"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "51c491e1ac6ad46d8cfae56568f17b350fc9e367"
|
|
55
55
|
}
|