@sp-api-sdk/feeds-api-2021-06-30 1.10.5 → 1.10.6
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.
|
@@ -22,13 +22,13 @@ export interface FeedDocument {
|
|
|
22
22
|
*/
|
|
23
23
|
'feedDocumentId': string;
|
|
24
24
|
/**
|
|
25
|
-
* A presigned URL for the feed document. This URL expires after 5 minutes.
|
|
25
|
+
* A presigned URL for the feed document. If `compressionAlgorithm` is not returned, you can download the feed directly from this URL. This URL expires after 5 minutes.
|
|
26
26
|
* @type {string}
|
|
27
27
|
* @memberof FeedDocument
|
|
28
28
|
*/
|
|
29
29
|
'url': string;
|
|
30
30
|
/**
|
|
31
|
-
* If
|
|
31
|
+
* If the feed document contents have been compressed, the compression algorithm used is returned in this property and you must decompress the feed when you download. Otherwise, you can download the feed directly. Refer to [Step 7. Download the feed processing report](https://developer-docs.amazon.com/sp-api/docs/feeds-api-v2021-06-30-use-case-guide#step-7-download-the-feed-processing-report) in the use case guide, where sample code is provided.
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof FeedDocument
|
|
34
34
|
*/
|
|
@@ -37,4 +37,4 @@ export interface FeedDocument {
|
|
|
37
37
|
export declare const FeedDocumentCompressionAlgorithmEnum: {
|
|
38
38
|
readonly Gzip: "GZIP";
|
|
39
39
|
};
|
|
40
|
-
export
|
|
40
|
+
export type FeedDocumentCompressionAlgorithmEnum = typeof FeedDocumentCompressionAlgorithmEnum[keyof typeof FeedDocumentCompressionAlgorithmEnum];
|
|
@@ -71,4 +71,4 @@ export declare const FeedProcessingStatusEnum: {
|
|
|
71
71
|
readonly InProgress: "IN_PROGRESS";
|
|
72
72
|
readonly InQueue: "IN_QUEUE";
|
|
73
73
|
};
|
|
74
|
-
export
|
|
74
|
+
export type FeedProcessingStatusEnum = typeof FeedProcessingStatusEnum[keyof typeof FeedProcessingStatusEnum];
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sp-api-sdk/feeds-api-2021-06-30",
|
|
3
3
|
"author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
|
|
4
4
|
"description": "The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.",
|
|
5
|
-
"version": "1.10.
|
|
5
|
+
"version": "1.10.6",
|
|
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.18",
|
|
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": "59d4ae523f7261bbee380ef3bd43a368266a55a6"
|
|
55
55
|
}
|