@sp-api-sdk/aplus-content-api-2020-11-01 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/aplus-paginated-response.d.ts +1 -1
- package/dist/types/src/api-model/models/asin-badge.d.ts +1 -1
- package/dist/types/src/api-model/models/color-type.d.ts +1 -1
- package/dist/types/src/api-model/models/content-badge.d.ts +1 -1
- package/dist/types/src/api-model/models/content-module-type.d.ts +1 -1
- package/dist/types/src/api-model/models/content-status.d.ts +1 -1
- package/dist/types/src/api-model/models/content-type.d.ts +1 -1
- package/dist/types/src/api-model/models/decorator-type.d.ts +1 -1
- package/dist/types/src/api-model/models/get-content-document-response.d.ts +1 -1
- package/dist/types/src/api-model/models/list-content-document-asin-relations-response.d.ts +1 -1
- package/dist/types/src/api-model/models/position-type.d.ts +1 -1
- package/dist/types/src/api-model/models/post-content-document-approval-submission-response.d.ts +1 -1
- package/dist/types/src/api-model/models/post-content-document-asin-relations-response.d.ts +1 -1
- package/dist/types/src/api-model/models/post-content-document-response.d.ts +1 -1
- package/dist/types/src/api-model/models/post-content-document-suspend-submission-response.d.ts +1 -1
- package/dist/types/src/api-model/models/search-content-documents-response.d.ts +1 -1
- package/dist/types/src/api-model/models/search-content-publish-records-response.d.ts +1 -1
- package/dist/types/src/api-model/models/validate-content-document-asin-relations-response.d.ts +1 -1
- package/package.json +3 -3
|
@@ -16,4 +16,4 @@ import { AplusResponse } from './aplus-response';
|
|
|
16
16
|
* The base response data for paginated A+ Content operations. Individual operations may extend this with additional data. If nextPageToken is not returned, there are no more pages to return.
|
|
17
17
|
* @export
|
|
18
18
|
*/
|
|
19
|
-
export
|
|
19
|
+
export type AplusPaginatedResponse = AplusPaginatedResponseAllOf & AplusResponse;
|
|
@@ -20,4 +20,4 @@ export declare const AsinBadge: {
|
|
|
20
20
|
readonly ContentNotPublished: "CONTENT_NOT_PUBLISHED";
|
|
21
21
|
readonly ContentPublished: "CONTENT_PUBLISHED";
|
|
22
22
|
};
|
|
23
|
-
export
|
|
23
|
+
export type AsinBadge = typeof AsinBadge[keyof typeof AsinBadge];
|
|
@@ -21,4 +21,4 @@ export declare const ContentBadge: {
|
|
|
21
21
|
readonly Premium: "PREMIUM";
|
|
22
22
|
readonly Standard: "STANDARD";
|
|
23
23
|
};
|
|
24
|
-
export
|
|
24
|
+
export type ContentBadge = typeof ContentBadge[keyof typeof ContentBadge];
|
|
@@ -31,4 +31,4 @@ export declare const ContentModuleType: {
|
|
|
31
31
|
readonly Text: "STANDARD_TEXT";
|
|
32
32
|
readonly ThreeImageText: "STANDARD_THREE_IMAGE_TEXT";
|
|
33
33
|
};
|
|
34
|
-
export
|
|
34
|
+
export type ContentModuleType = typeof ContentModuleType[keyof typeof ContentModuleType];
|
|
@@ -20,4 +20,4 @@ export declare const ContentStatus: {
|
|
|
20
20
|
readonly Rejected: "REJECTED";
|
|
21
21
|
readonly Submitted: "SUBMITTED";
|
|
22
22
|
};
|
|
23
|
-
export
|
|
23
|
+
export type ContentStatus = typeof ContentStatus[keyof typeof ContentStatus];
|
|
@@ -24,4 +24,4 @@ export declare const DecoratorType: {
|
|
|
24
24
|
readonly StyleParagraph: "STYLE_PARAGRAPH";
|
|
25
25
|
readonly StyleUnderline: "STYLE_UNDERLINE";
|
|
26
26
|
};
|
|
27
|
-
export
|
|
27
|
+
export type DecoratorType = typeof DecoratorType[keyof typeof DecoratorType];
|
|
@@ -15,4 +15,4 @@ import { GetContentDocumentResponseAllOf } from './get-content-document-response
|
|
|
15
15
|
* @type GetContentDocumentResponse
|
|
16
16
|
* @export
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type GetContentDocumentResponse = AplusResponse & GetContentDocumentResponseAllOf;
|
|
@@ -15,4 +15,4 @@ import { ListContentDocumentAsinRelationsResponseAllOf } from './list-content-do
|
|
|
15
15
|
* @type ListContentDocumentAsinRelationsResponse
|
|
16
16
|
* @export
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type ListContentDocumentAsinRelationsResponse = AplusPaginatedResponse & ListContentDocumentAsinRelationsResponseAllOf;
|
package/dist/types/src/api-model/models/post-content-document-approval-submission-response.d.ts
CHANGED
|
@@ -14,4 +14,4 @@ import { AplusResponse } from './aplus-response';
|
|
|
14
14
|
* @type PostContentDocumentApprovalSubmissionResponse
|
|
15
15
|
* @export
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
17
|
+
export type PostContentDocumentApprovalSubmissionResponse = AplusResponse;
|
|
@@ -14,4 +14,4 @@ import { AplusResponse } from './aplus-response';
|
|
|
14
14
|
* @type PostContentDocumentAsinRelationsResponse
|
|
15
15
|
* @export
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
17
|
+
export type PostContentDocumentAsinRelationsResponse = AplusResponse;
|
|
@@ -15,4 +15,4 @@ import { PostContentDocumentResponseAllOf } from './post-content-document-respon
|
|
|
15
15
|
* @type PostContentDocumentResponse
|
|
16
16
|
* @export
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type PostContentDocumentResponse = AplusResponse & PostContentDocumentResponseAllOf;
|
package/dist/types/src/api-model/models/post-content-document-suspend-submission-response.d.ts
CHANGED
|
@@ -14,4 +14,4 @@ import { AplusResponse } from './aplus-response';
|
|
|
14
14
|
* @type PostContentDocumentSuspendSubmissionResponse
|
|
15
15
|
* @export
|
|
16
16
|
*/
|
|
17
|
-
export
|
|
17
|
+
export type PostContentDocumentSuspendSubmissionResponse = AplusResponse;
|
|
@@ -15,4 +15,4 @@ import { SearchContentDocumentsResponseAllOf } from './search-content-documents-
|
|
|
15
15
|
* @type SearchContentDocumentsResponse
|
|
16
16
|
* @export
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type SearchContentDocumentsResponse = AplusPaginatedResponse & SearchContentDocumentsResponseAllOf;
|
|
@@ -15,4 +15,4 @@ import { SearchContentPublishRecordsResponseAllOf } from './search-content-publi
|
|
|
15
15
|
* @type SearchContentPublishRecordsResponse
|
|
16
16
|
* @export
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type SearchContentPublishRecordsResponse = AplusPaginatedResponse & SearchContentPublishRecordsResponseAllOf;
|
package/dist/types/src/api-model/models/validate-content-document-asin-relations-response.d.ts
CHANGED
|
@@ -15,4 +15,4 @@ import { ErrorList } from './error-list';
|
|
|
15
15
|
* @type ValidateContentDocumentAsinRelationsResponse
|
|
16
16
|
* @export
|
|
17
17
|
*/
|
|
18
|
-
export
|
|
18
|
+
export type ValidateContentDocumentAsinRelationsResponse = AplusResponse & ErrorList;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@sp-api-sdk/aplus-content-api-2020-11-01",
|
|
3
3
|
"author": "Vincent Mesquita <vincent.mesquita@bizon.solutions>",
|
|
4
4
|
"description": "With the A+ Content API, you can build applications that help selling partners add rich marketing content to their Amazon product detail pages. A+ content helps selling partners share their brand and product story, which helps buyers make informed purchasing decisions. Selling partners assemble content by choosing from content modules and adding images and text.",
|
|
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
|
}
|