@sp-api-sdk/feeds-api-2021-06-30 3.3.0 → 4.1.0

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.
Files changed (62) hide show
  1. package/README.md +7 -8
  2. package/dist/index.cjs +685 -0
  3. package/dist/index.cjs.map +1 -0
  4. package/dist/index.d.cts +680 -0
  5. package/dist/index.d.ts +680 -0
  6. package/dist/index.js +653 -0
  7. package/dist/index.js.map +1 -0
  8. package/package.json +26 -12
  9. package/dist/cjs/api-model/api/feeds-api.js +0 -459
  10. package/dist/cjs/api-model/api.js +0 -30
  11. package/dist/cjs/api-model/base.js +0 -52
  12. package/dist/cjs/api-model/common.js +0 -123
  13. package/dist/cjs/api-model/configuration.js +0 -98
  14. package/dist/cjs/api-model/index.js +0 -32
  15. package/dist/cjs/api-model/models/create-feed-document-response.js +0 -15
  16. package/dist/cjs/api-model/models/create-feed-document-specification.js +0 -15
  17. package/dist/cjs/api-model/models/create-feed-response.js +0 -15
  18. package/dist/cjs/api-model/models/create-feed-specification.js +0 -15
  19. package/dist/cjs/api-model/models/error-list.js +0 -15
  20. package/dist/cjs/api-model/models/feed-document.js +0 -19
  21. package/dist/cjs/api-model/models/feed.js +0 -23
  22. package/dist/cjs/api-model/models/get-feeds-response.js +0 -15
  23. package/dist/cjs/api-model/models/index.js +0 -25
  24. package/dist/cjs/api-model/models/model-error.js +0 -15
  25. package/dist/cjs/client.js +0 -56
  26. package/dist/cjs/index.js +0 -19
  27. package/dist/es/api-model/api/feeds-api.js +0 -449
  28. package/dist/es/api-model/api.js +0 -14
  29. package/dist/es/api-model/base.js +0 -44
  30. package/dist/es/api-model/common.js +0 -110
  31. package/dist/es/api-model/configuration.js +0 -94
  32. package/dist/es/api-model/index.js +0 -16
  33. package/dist/es/api-model/models/create-feed-document-response.js +0 -14
  34. package/dist/es/api-model/models/create-feed-document-specification.js +0 -14
  35. package/dist/es/api-model/models/create-feed-response.js +0 -14
  36. package/dist/es/api-model/models/create-feed-specification.js +0 -14
  37. package/dist/es/api-model/models/error-list.js +0 -14
  38. package/dist/es/api-model/models/feed-document.js +0 -16
  39. package/dist/es/api-model/models/feed.js +0 -20
  40. package/dist/es/api-model/models/get-feeds-response.js +0 -14
  41. package/dist/es/api-model/models/index.js +0 -9
  42. package/dist/es/api-model/models/model-error.js +0 -14
  43. package/dist/es/client.js +0 -52
  44. package/dist/es/index.js +0 -3
  45. package/dist/types/api-model/api/feeds-api.d.ts +0 -314
  46. package/dist/types/api-model/api.d.ts +0 -12
  47. package/dist/types/api-model/base.d.ts +0 -42
  48. package/dist/types/api-model/common.d.ts +0 -34
  49. package/dist/types/api-model/configuration.d.ts +0 -98
  50. package/dist/types/api-model/index.d.ts +0 -14
  51. package/dist/types/api-model/models/create-feed-document-response.d.ts +0 -24
  52. package/dist/types/api-model/models/create-feed-document-specification.d.ts +0 -20
  53. package/dist/types/api-model/models/create-feed-response.d.ts +0 -20
  54. package/dist/types/api-model/models/create-feed-specification.d.ts +0 -34
  55. package/dist/types/api-model/models/error-list.d.ts +0 -20
  56. package/dist/types/api-model/models/feed-document.d.ts +0 -32
  57. package/dist/types/api-model/models/feed.d.ts +0 -56
  58. package/dist/types/api-model/models/get-feeds-response.d.ts +0 -25
  59. package/dist/types/api-model/models/index.d.ts +0 -9
  60. package/dist/types/api-model/models/model-error.d.ts +0 -28
  61. package/dist/types/client.d.ts +0 -6
  62. package/dist/types/index.d.ts +0 -3
@@ -0,0 +1,680 @@
1
+ import { ClientConfiguration, RateLimit } from "@sp-api-sdk/common";
2
+ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
3
+ //#region src/api-model/configuration.d.ts
4
+ /**
5
+ * Selling Partner API for Feeds
6
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
7
+ *
8
+ * The version of the OpenAPI document: 2021-06-30
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ interface AWSv4Configuration {
16
+ options?: {
17
+ region?: string;
18
+ service?: string;
19
+ };
20
+ credentials?: {
21
+ accessKeyId?: string;
22
+ secretAccessKey?: string;
23
+ sessionToken?: string;
24
+ };
25
+ }
26
+ interface ConfigurationParameters {
27
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
28
+ username?: string;
29
+ password?: string;
30
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
31
+ awsv4?: AWSv4Configuration;
32
+ basePath?: string;
33
+ serverIndex?: number;
34
+ baseOptions?: any;
35
+ formDataCtor?: new () => any;
36
+ }
37
+ declare class Configuration {
38
+ /**
39
+ * parameter for apiKey security
40
+ * @param name security name
41
+ */
42
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
43
+ /**
44
+ * parameter for basic security
45
+ */
46
+ username?: string;
47
+ /**
48
+ * parameter for basic security
49
+ */
50
+ password?: string;
51
+ /**
52
+ * parameter for oauth2 security
53
+ * @param name security name
54
+ * @param scopes oauth2 scope
55
+ */
56
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
57
+ /**
58
+ * parameter for aws4 signature security
59
+ * @param {Object} AWS4Signature - AWS4 Signature security
60
+ * @param {string} options.region - aws region
61
+ * @param {string} options.service - name of the service.
62
+ * @param {string} credentials.accessKeyId - aws access key id
63
+ * @param {string} credentials.secretAccessKey - aws access key
64
+ * @param {string} credentials.sessionToken - aws session token
65
+ * @memberof Configuration
66
+ */
67
+ awsv4?: AWSv4Configuration;
68
+ /**
69
+ * override base path
70
+ */
71
+ basePath?: string;
72
+ /**
73
+ * override server index
74
+ */
75
+ serverIndex?: number;
76
+ /**
77
+ * base options for axios calls
78
+ */
79
+ baseOptions?: any;
80
+ /**
81
+ * The FormData constructor that will be used to create multipart form data
82
+ * requests. You can inject this here so that execution environments that
83
+ * do not support the FormData class can still run the generated client.
84
+ *
85
+ * @type {new () => FormData}
86
+ */
87
+ formDataCtor?: new () => any;
88
+ constructor(param?: ConfigurationParameters);
89
+ /**
90
+ * Check if the given MIME is a JSON MIME.
91
+ * JSON MIME examples:
92
+ * application/json
93
+ * application/json; charset=UTF8
94
+ * APPLICATION/JSON
95
+ * application/vnd.company+json
96
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
97
+ * @return True if the given MIME is JSON, false otherwise.
98
+ */
99
+ isJsonMime(mime: string): boolean;
100
+ }
101
+ //#endregion
102
+ //#region src/api-model/base.d.ts
103
+ interface RequestArgs {
104
+ url: string;
105
+ options: RawAxiosRequestConfig;
106
+ }
107
+ declare class BaseAPI {
108
+ protected basePath: string;
109
+ protected axios: AxiosInstance;
110
+ protected configuration: Configuration | undefined;
111
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
112
+ }
113
+ //#endregion
114
+ //#region src/api-model/models/create-feed-document-response.d.ts
115
+ /**
116
+ * Selling Partner API for Feeds
117
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
118
+ *
119
+ * The version of the OpenAPI document: 2021-06-30
120
+ *
121
+ *
122
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
123
+ * https://openapi-generator.tech
124
+ * Do not edit the class manually.
125
+ */
126
+ /**
127
+ * Information required to upload a feed document\'s contents.
128
+ */
129
+ interface CreateFeedDocumentResponse {
130
+ /**
131
+ * The identifier of the feed document.
132
+ */
133
+ 'feedDocumentId': string;
134
+ /**
135
+ * The presigned URL for uploading the feed contents. This URL expires after 5 minutes.
136
+ */
137
+ 'url': string;
138
+ }
139
+ //#endregion
140
+ //#region src/api-model/models/create-feed-document-specification.d.ts
141
+ /**
142
+ * Selling Partner API for Feeds
143
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
144
+ *
145
+ * The version of the OpenAPI document: 2021-06-30
146
+ *
147
+ *
148
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
149
+ * https://openapi-generator.tech
150
+ * Do not edit the class manually.
151
+ */
152
+ /**
153
+ * Specifies the content type for the createFeedDocument operation.
154
+ */
155
+ interface CreateFeedDocumentSpecification {
156
+ /**
157
+ * The content type of the feed.
158
+ */
159
+ 'contentType': string;
160
+ }
161
+ //#endregion
162
+ //#region src/api-model/models/create-feed-response.d.ts
163
+ /**
164
+ * Selling Partner API for Feeds
165
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
166
+ *
167
+ * The version of the OpenAPI document: 2021-06-30
168
+ *
169
+ *
170
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
171
+ * https://openapi-generator.tech
172
+ * Do not edit the class manually.
173
+ */
174
+ /**
175
+ * Response schema.
176
+ */
177
+ interface CreateFeedResponse {
178
+ /**
179
+ * The identifier for the feed. This identifier is unique only in combination with a seller ID.
180
+ */
181
+ 'feedId': string;
182
+ }
183
+ //#endregion
184
+ //#region src/api-model/models/create-feed-specification.d.ts
185
+ /**
186
+ * Selling Partner API for Feeds
187
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
188
+ *
189
+ * The version of the OpenAPI document: 2021-06-30
190
+ *
191
+ *
192
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
193
+ * https://openapi-generator.tech
194
+ * Do not edit the class manually.
195
+ */
196
+ /**
197
+ * Information required to create the feed.
198
+ */
199
+ interface CreateFeedSpecification {
200
+ /**
201
+ * The feed type.
202
+ */
203
+ 'feedType': string;
204
+ /**
205
+ * A list of identifiers for marketplaces that you want the feed to be applied to.
206
+ */
207
+ 'marketplaceIds': Array<string>;
208
+ /**
209
+ * The document identifier returned by the createFeedDocument operation. Upload the feed document contents before calling the createFeed operation.
210
+ */
211
+ 'inputFeedDocumentId': string;
212
+ /**
213
+ * Additional options to control the feed. These vary by feed type.
214
+ */
215
+ 'feedOptions'?: {
216
+ [key: string]: string;
217
+ };
218
+ }
219
+ //#endregion
220
+ //#region src/api-model/models/error-list.d.ts
221
+ /**
222
+ * Selling Partner API for Feeds
223
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
224
+ *
225
+ * The version of the OpenAPI document: 2021-06-30
226
+ *
227
+ *
228
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
229
+ * https://openapi-generator.tech
230
+ * Do not edit the class manually.
231
+ */
232
+ /**
233
+ * A list of error responses returned when a request is unsuccessful.
234
+ */
235
+ interface ErrorList {
236
+ /**
237
+ * An error response returned when the request is unsuccessful.
238
+ */
239
+ 'errors': Array<Error>;
240
+ }
241
+ //#endregion
242
+ //#region src/api-model/models/feed.d.ts
243
+ /**
244
+ * Selling Partner API for Feeds
245
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
246
+ *
247
+ * The version of the OpenAPI document: 2021-06-30
248
+ *
249
+ *
250
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
251
+ * https://openapi-generator.tech
252
+ * Do not edit the class manually.
253
+ */
254
+ /**
255
+ * Detailed information about the feed.
256
+ */
257
+ interface Feed {
258
+ /**
259
+ * The identifier for the feed. This identifier is unique only in combination with a seller ID.
260
+ */
261
+ 'feedId': string;
262
+ /**
263
+ * The feed type.
264
+ */
265
+ 'feedType': string;
266
+ /**
267
+ * A list of identifiers for the marketplaces that the feed is applied to.
268
+ */
269
+ 'marketplaceIds'?: Array<string>;
270
+ /**
271
+ * The date and time when the feed was created, in ISO 8601 date time format.
272
+ */
273
+ 'createdTime': string;
274
+ /**
275
+ * The processing status of the feed.
276
+ */
277
+ 'processingStatus': FeedProcessingStatusEnum;
278
+ /**
279
+ * The date and time when feed processing started, in ISO 8601 date time format.
280
+ */
281
+ 'processingStartTime'?: string;
282
+ /**
283
+ * The date and time when feed processing completed, in ISO 8601 date time format.
284
+ */
285
+ 'processingEndTime'?: string;
286
+ /**
287
+ * The identifier for the feed document. This identifier is unique only in combination with a seller ID.
288
+ */
289
+ 'resultFeedDocumentId'?: string;
290
+ }
291
+ declare const FeedProcessingStatusEnum: {
292
+ readonly Cancelled: "CANCELLED";
293
+ readonly Done: "DONE";
294
+ readonly Fatal: "FATAL";
295
+ readonly InProgress: "IN_PROGRESS";
296
+ readonly InQueue: "IN_QUEUE";
297
+ };
298
+ type FeedProcessingStatusEnum = typeof FeedProcessingStatusEnum[keyof typeof FeedProcessingStatusEnum];
299
+ //#endregion
300
+ //#region src/api-model/models/feed-document.d.ts
301
+ /**
302
+ * Selling Partner API for Feeds
303
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
304
+ *
305
+ * The version of the OpenAPI document: 2021-06-30
306
+ *
307
+ *
308
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
309
+ * https://openapi-generator.tech
310
+ * Do not edit the class manually.
311
+ */
312
+ /**
313
+ * Information required for the feed document.
314
+ */
315
+ interface FeedDocument {
316
+ /**
317
+ * The identifier for the feed document. This identifier is unique only in combination with a seller ID.
318
+ */
319
+ 'feedDocumentId': string;
320
+ /**
321
+ * 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.
322
+ */
323
+ 'url': string;
324
+ /**
325
+ * 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.
326
+ */
327
+ 'compressionAlgorithm'?: FeedDocumentCompressionAlgorithmEnum;
328
+ }
329
+ declare const FeedDocumentCompressionAlgorithmEnum: {
330
+ readonly Gzip: "GZIP";
331
+ };
332
+ type FeedDocumentCompressionAlgorithmEnum = typeof FeedDocumentCompressionAlgorithmEnum[keyof typeof FeedDocumentCompressionAlgorithmEnum];
333
+ //#endregion
334
+ //#region src/api-model/models/get-feeds-response.d.ts
335
+ /**
336
+ * Response schema.
337
+ */
338
+ interface GetFeedsResponse {
339
+ /**
340
+ * A list of feeds.
341
+ */
342
+ 'feeds': Array<Feed>;
343
+ /**
344
+ * Returned when the number of results exceeds pageSize. To get the next page of results, call the getFeeds operation with this token as the only parameter.
345
+ */
346
+ 'nextToken'?: string;
347
+ }
348
+ //#endregion
349
+ //#region src/api-model/models/model-error.d.ts
350
+ /**
351
+ * Selling Partner API for Feeds
352
+ * The Selling Partner API for Feeds lets you upload data to Amazon on behalf of a selling partner.
353
+ *
354
+ * The version of the OpenAPI document: 2021-06-30
355
+ *
356
+ *
357
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
358
+ * https://openapi-generator.tech
359
+ * Do not edit the class manually.
360
+ */
361
+ /**
362
+ * An error response returned when the request is unsuccessful.
363
+ */
364
+ interface ModelError {
365
+ /**
366
+ * An error code that identifies the type of error that occurred.
367
+ */
368
+ 'code': string;
369
+ /**
370
+ * A message that describes the error condition.
371
+ */
372
+ 'message': string;
373
+ /**
374
+ * Additional details that can help the caller understand or fix the issue.
375
+ */
376
+ 'details'?: string;
377
+ }
378
+ //#endregion
379
+ //#region src/api-model/api/feeds-api.d.ts
380
+ /**
381
+ * FeedsApi - axios parameter creator
382
+ */
383
+ declare const FeedsApiAxiosParamCreator: (configuration?: Configuration) => {
384
+ /**
385
+ * Cancels the feed that you specify. Only feeds with `processingStatus=IN_QUEUE` can be cancelled. Cancelled feeds are returned in subsequent calls to the [`getFeed`](https://developer-docs.amazon.com/sp-api/reference/getfeed) and [`getFeeds`](https://developer-docs.amazon.com/sp-api/reference/getfeeds) operations. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
386
+ * @param {string} feedId The identifier for the feed. This identifier is unique only in combination with a seller ID.
387
+ * @param {*} [options] Override http request option.
388
+ * @throws {RequiredError}
389
+ */
390
+ cancelFeed: (feedId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
391
+ /**
392
+ * Creates a feed. Upload the contents of the feed document before calling this operation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0083 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api). The rate limit for the [`JSON_LISTINGS_FEED`](https://developer-docs.amazon.com/sp-api/docs/listings-feed-type-values#listings-feed) feed type differs from the rate limit for the [`createFeed`](https://developer-docs.amazon.com/sp-api/reference/createfeed) operation. For more information, refer to the [Building Listings Management Workflows Guide](https://developer-docs.amazon.com/sp-api/docs/building-listings-management-workflows-guide#should-i-submit-in-bulk-using-the-json_listings_feed-or-individually-with-the-listings-items-api).
393
+ * @param {CreateFeedSpecification} body Information required to create the feed.
394
+ * @param {*} [options] Override http request option.
395
+ * @throws {RequiredError}
396
+ */
397
+ createFeed: (body: CreateFeedSpecification, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
398
+ /**
399
+ * Creates a feed document for the feed type that you specify. This operation returns a presigned URL for uploading the feed document contents. It also returns a `feedDocumentId` value that you can pass in with a subsequent call to the [`createFeed`](https://developer-docs.amazon.com/sp-api/reference/createfeed) operation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
400
+ * @param {CreateFeedDocumentSpecification} body Specifies the content type for the createFeedDocument operation.
401
+ * @param {*} [options] Override http request option.
402
+ * @throws {RequiredError}
403
+ */
404
+ createFeedDocument: (body: CreateFeedDocumentSpecification, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
405
+ /**
406
+ * Returns feed details (including the `resultDocumentId`, if available) for the feed that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
407
+ * @param {string} feedId The identifier for the feed. This identifier is unique only in combination with a seller ID.
408
+ * @param {*} [options] Override http request option.
409
+ * @throws {RequiredError}
410
+ */
411
+ getFeed: (feedId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
412
+ /**
413
+ * Returns the information required for retrieving a feed document\'s contents. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0222 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
414
+ * @param {string} feedDocumentId The identifier of the feed document.
415
+ * @param {boolean} [enableContentEncodingUrlHeader] When &#x60;true&#x60;, the Content-Encoding header on the returned URL is set to &#x60;gzip&#x60; instead of the default &#x60;identity&#x60; when &#x60;compressionAlgorithm&#x60; is &#x60;GZIP&#x60;. This allows automatic decompression by HTTP clients.
416
+ * @param {*} [options] Override http request option.
417
+ * @throws {RequiredError}
418
+ */
419
+ getFeedDocument: (feedDocumentId: string, enableContentEncodingUrlHeader?: boolean, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
420
+ /**
421
+ * Returns feed details for the feeds that match the filters that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0222 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
422
+ * @param {Array<string>} [feedTypes] A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required.
423
+ * @param {Array<string>} [marketplaceIds] A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify.
424
+ * @param {number} [pageSize] The maximum number of feeds to return in a single call.
425
+ * @param {Array<GetFeedsProcessingStatusesEnum>} [processingStatuses] A list of processing statuses used to filter feeds.
426
+ * @param {string} [createdSince] The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days.
427
+ * @param {string} [createdUntil] The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now.
428
+ * @param {string} [nextToken] A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail.
429
+ * @param {*} [options] Override http request option.
430
+ * @throws {RequiredError}
431
+ */
432
+ getFeeds: (feedTypes?: Array<string>, marketplaceIds?: Array<string>, pageSize?: number, processingStatuses?: Array<GetFeedsProcessingStatusesEnum>, createdSince?: string, createdUntil?: string, nextToken?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
433
+ };
434
+ /**
435
+ * FeedsApi - functional programming interface
436
+ */
437
+ declare const FeedsApiFp: (configuration?: Configuration) => {
438
+ /**
439
+ * Cancels the feed that you specify. Only feeds with `processingStatus=IN_QUEUE` can be cancelled. Cancelled feeds are returned in subsequent calls to the [`getFeed`](https://developer-docs.amazon.com/sp-api/reference/getfeed) and [`getFeeds`](https://developer-docs.amazon.com/sp-api/reference/getfeeds) operations. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
440
+ * @param {string} feedId The identifier for the feed. This identifier is unique only in combination with a seller ID.
441
+ * @param {*} [options] Override http request option.
442
+ * @throws {RequiredError}
443
+ */
444
+ cancelFeed(feedId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
445
+ /**
446
+ * Creates a feed. Upload the contents of the feed document before calling this operation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0083 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api). The rate limit for the [`JSON_LISTINGS_FEED`](https://developer-docs.amazon.com/sp-api/docs/listings-feed-type-values#listings-feed) feed type differs from the rate limit for the [`createFeed`](https://developer-docs.amazon.com/sp-api/reference/createfeed) operation. For more information, refer to the [Building Listings Management Workflows Guide](https://developer-docs.amazon.com/sp-api/docs/building-listings-management-workflows-guide#should-i-submit-in-bulk-using-the-json_listings_feed-or-individually-with-the-listings-items-api).
447
+ * @param {CreateFeedSpecification} body Information required to create the feed.
448
+ * @param {*} [options] Override http request option.
449
+ * @throws {RequiredError}
450
+ */
451
+ createFeed(body: CreateFeedSpecification, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFeedResponse>>;
452
+ /**
453
+ * Creates a feed document for the feed type that you specify. This operation returns a presigned URL for uploading the feed document contents. It also returns a `feedDocumentId` value that you can pass in with a subsequent call to the [`createFeed`](https://developer-docs.amazon.com/sp-api/reference/createfeed) operation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
454
+ * @param {CreateFeedDocumentSpecification} body Specifies the content type for the createFeedDocument operation.
455
+ * @param {*} [options] Override http request option.
456
+ * @throws {RequiredError}
457
+ */
458
+ createFeedDocument(body: CreateFeedDocumentSpecification, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFeedDocumentResponse>>;
459
+ /**
460
+ * Returns feed details (including the `resultDocumentId`, if available) for the feed that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
461
+ * @param {string} feedId The identifier for the feed. This identifier is unique only in combination with a seller ID.
462
+ * @param {*} [options] Override http request option.
463
+ * @throws {RequiredError}
464
+ */
465
+ getFeed(feedId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Feed>>;
466
+ /**
467
+ * Returns the information required for retrieving a feed document\'s contents. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0222 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
468
+ * @param {string} feedDocumentId The identifier of the feed document.
469
+ * @param {boolean} [enableContentEncodingUrlHeader] When &#x60;true&#x60;, the Content-Encoding header on the returned URL is set to &#x60;gzip&#x60; instead of the default &#x60;identity&#x60; when &#x60;compressionAlgorithm&#x60; is &#x60;GZIP&#x60;. This allows automatic decompression by HTTP clients.
470
+ * @param {*} [options] Override http request option.
471
+ * @throws {RequiredError}
472
+ */
473
+ getFeedDocument(feedDocumentId: string, enableContentEncodingUrlHeader?: boolean, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FeedDocument>>;
474
+ /**
475
+ * Returns feed details for the feeds that match the filters that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0222 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
476
+ * @param {Array<string>} [feedTypes] A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required.
477
+ * @param {Array<string>} [marketplaceIds] A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify.
478
+ * @param {number} [pageSize] The maximum number of feeds to return in a single call.
479
+ * @param {Array<GetFeedsProcessingStatusesEnum>} [processingStatuses] A list of processing statuses used to filter feeds.
480
+ * @param {string} [createdSince] The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days.
481
+ * @param {string} [createdUntil] The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now.
482
+ * @param {string} [nextToken] A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail.
483
+ * @param {*} [options] Override http request option.
484
+ * @throws {RequiredError}
485
+ */
486
+ getFeeds(feedTypes?: Array<string>, marketplaceIds?: Array<string>, pageSize?: number, processingStatuses?: Array<GetFeedsProcessingStatusesEnum>, createdSince?: string, createdUntil?: string, nextToken?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFeedsResponse>>;
487
+ };
488
+ /**
489
+ * FeedsApi - factory interface
490
+ */
491
+ declare const FeedsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
492
+ /**
493
+ * Cancels the feed that you specify. Only feeds with `processingStatus=IN_QUEUE` can be cancelled. Cancelled feeds are returned in subsequent calls to the [`getFeed`](https://developer-docs.amazon.com/sp-api/reference/getfeed) and [`getFeeds`](https://developer-docs.amazon.com/sp-api/reference/getfeeds) operations. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
494
+ * @param {FeedsApiCancelFeedRequest} requestParameters Request parameters.
495
+ * @param {*} [options] Override http request option.
496
+ * @throws {RequiredError}
497
+ */
498
+ cancelFeed(requestParameters: FeedsApiCancelFeedRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
499
+ /**
500
+ * Creates a feed. Upload the contents of the feed document before calling this operation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0083 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api). The rate limit for the [`JSON_LISTINGS_FEED`](https://developer-docs.amazon.com/sp-api/docs/listings-feed-type-values#listings-feed) feed type differs from the rate limit for the [`createFeed`](https://developer-docs.amazon.com/sp-api/reference/createfeed) operation. For more information, refer to the [Building Listings Management Workflows Guide](https://developer-docs.amazon.com/sp-api/docs/building-listings-management-workflows-guide#should-i-submit-in-bulk-using-the-json_listings_feed-or-individually-with-the-listings-items-api).
501
+ * @param {FeedsApiCreateFeedRequest} requestParameters Request parameters.
502
+ * @param {*} [options] Override http request option.
503
+ * @throws {RequiredError}
504
+ */
505
+ createFeed(requestParameters: FeedsApiCreateFeedRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateFeedResponse>;
506
+ /**
507
+ * Creates a feed document for the feed type that you specify. This operation returns a presigned URL for uploading the feed document contents. It also returns a `feedDocumentId` value that you can pass in with a subsequent call to the [`createFeed`](https://developer-docs.amazon.com/sp-api/reference/createfeed) operation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
508
+ * @param {FeedsApiCreateFeedDocumentRequest} requestParameters Request parameters.
509
+ * @param {*} [options] Override http request option.
510
+ * @throws {RequiredError}
511
+ */
512
+ createFeedDocument(requestParameters: FeedsApiCreateFeedDocumentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateFeedDocumentResponse>;
513
+ /**
514
+ * Returns feed details (including the `resultDocumentId`, if available) for the feed that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
515
+ * @param {FeedsApiGetFeedRequest} requestParameters Request parameters.
516
+ * @param {*} [options] Override http request option.
517
+ * @throws {RequiredError}
518
+ */
519
+ getFeed(requestParameters: FeedsApiGetFeedRequest, options?: RawAxiosRequestConfig): AxiosPromise<Feed>;
520
+ /**
521
+ * Returns the information required for retrieving a feed document\'s contents. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0222 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
522
+ * @param {FeedsApiGetFeedDocumentRequest} requestParameters Request parameters.
523
+ * @param {*} [options] Override http request option.
524
+ * @throws {RequiredError}
525
+ */
526
+ getFeedDocument(requestParameters: FeedsApiGetFeedDocumentRequest, options?: RawAxiosRequestConfig): AxiosPromise<FeedDocument>;
527
+ /**
528
+ * Returns feed details for the feeds that match the filters that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0222 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
529
+ * @param {FeedsApiGetFeedsRequest} requestParameters Request parameters.
530
+ * @param {*} [options] Override http request option.
531
+ * @throws {RequiredError}
532
+ */
533
+ getFeeds(requestParameters?: FeedsApiGetFeedsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFeedsResponse>;
534
+ };
535
+ /**
536
+ * Request parameters for cancelFeed operation in FeedsApi.
537
+ */
538
+ interface FeedsApiCancelFeedRequest {
539
+ /**
540
+ * The identifier for the feed. This identifier is unique only in combination with a seller ID.
541
+ */
542
+ readonly feedId: string;
543
+ }
544
+ /**
545
+ * Request parameters for createFeed operation in FeedsApi.
546
+ */
547
+ interface FeedsApiCreateFeedRequest {
548
+ /**
549
+ * Information required to create the feed.
550
+ */
551
+ readonly body: CreateFeedSpecification;
552
+ }
553
+ /**
554
+ * Request parameters for createFeedDocument operation in FeedsApi.
555
+ */
556
+ interface FeedsApiCreateFeedDocumentRequest {
557
+ /**
558
+ * Specifies the content type for the createFeedDocument operation.
559
+ */
560
+ readonly body: CreateFeedDocumentSpecification;
561
+ }
562
+ /**
563
+ * Request parameters for getFeed operation in FeedsApi.
564
+ */
565
+ interface FeedsApiGetFeedRequest {
566
+ /**
567
+ * The identifier for the feed. This identifier is unique only in combination with a seller ID.
568
+ */
569
+ readonly feedId: string;
570
+ }
571
+ /**
572
+ * Request parameters for getFeedDocument operation in FeedsApi.
573
+ */
574
+ interface FeedsApiGetFeedDocumentRequest {
575
+ /**
576
+ * The identifier of the feed document.
577
+ */
578
+ readonly feedDocumentId: string;
579
+ /**
580
+ * When &#x60;true&#x60;, the Content-Encoding header on the returned URL is set to &#x60;gzip&#x60; instead of the default &#x60;identity&#x60; when &#x60;compressionAlgorithm&#x60; is &#x60;GZIP&#x60;. This allows automatic decompression by HTTP clients.
581
+ */
582
+ readonly enableContentEncodingUrlHeader?: boolean;
583
+ }
584
+ /**
585
+ * Request parameters for getFeeds operation in FeedsApi.
586
+ */
587
+ interface FeedsApiGetFeedsRequest {
588
+ /**
589
+ * A list of feed types used to filter feeds. When feedTypes is provided, the other filter parameters (processingStatuses, marketplaceIds, createdSince, createdUntil) and pageSize may also be provided. Either feedTypes or nextToken is required.
590
+ */
591
+ readonly feedTypes?: Array<string>;
592
+ /**
593
+ * A list of marketplace identifiers used to filter feeds. The feeds returned will match at least one of the marketplaces that you specify.
594
+ */
595
+ readonly marketplaceIds?: Array<string>;
596
+ /**
597
+ * The maximum number of feeds to return in a single call.
598
+ */
599
+ readonly pageSize?: number;
600
+ /**
601
+ * A list of processing statuses used to filter feeds.
602
+ */
603
+ readonly processingStatuses?: Array<GetFeedsProcessingStatusesEnum>;
604
+ /**
605
+ * The earliest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is 90 days ago. Feeds are retained for a maximum of 90 days.
606
+ */
607
+ readonly createdSince?: string;
608
+ /**
609
+ * The latest feed creation date and time for feeds included in the response, in ISO 8601 format. The default is now.
610
+ */
611
+ readonly createdUntil?: string;
612
+ /**
613
+ * A string token returned in the response to your previous request. nextToken is returned when the number of results exceeds the specified pageSize value. To get the next page of results, call the getFeeds operation and include this token as the only parameter. Specifying nextToken with any other parameters will cause the request to fail.
614
+ */
615
+ readonly nextToken?: string;
616
+ }
617
+ /**
618
+ * FeedsApi - object-oriented interface
619
+ */
620
+ declare class FeedsApi extends BaseAPI {
621
+ /**
622
+ * Cancels the feed that you specify. Only feeds with `processingStatus=IN_QUEUE` can be cancelled. Cancelled feeds are returned in subsequent calls to the [`getFeed`](https://developer-docs.amazon.com/sp-api/reference/getfeed) and [`getFeeds`](https://developer-docs.amazon.com/sp-api/reference/getfeeds) operations. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
623
+ * @param {FeedsApiCancelFeedRequest} requestParameters Request parameters.
624
+ * @param {*} [options] Override http request option.
625
+ * @throws {RequiredError}
626
+ */
627
+ cancelFeed(requestParameters: FeedsApiCancelFeedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
628
+ /**
629
+ * Creates a feed. Upload the contents of the feed document before calling this operation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0083 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api). The rate limit for the [`JSON_LISTINGS_FEED`](https://developer-docs.amazon.com/sp-api/docs/listings-feed-type-values#listings-feed) feed type differs from the rate limit for the [`createFeed`](https://developer-docs.amazon.com/sp-api/reference/createfeed) operation. For more information, refer to the [Building Listings Management Workflows Guide](https://developer-docs.amazon.com/sp-api/docs/building-listings-management-workflows-guide#should-i-submit-in-bulk-using-the-json_listings_feed-or-individually-with-the-listings-items-api).
630
+ * @param {FeedsApiCreateFeedRequest} requestParameters Request parameters.
631
+ * @param {*} [options] Override http request option.
632
+ * @throws {RequiredError}
633
+ */
634
+ createFeed(requestParameters: FeedsApiCreateFeedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateFeedResponse, any, {}>>;
635
+ /**
636
+ * Creates a feed document for the feed type that you specify. This operation returns a presigned URL for uploading the feed document contents. It also returns a `feedDocumentId` value that you can pass in with a subsequent call to the [`createFeed`](https://developer-docs.amazon.com/sp-api/reference/createfeed) operation. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.5 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
637
+ * @param {FeedsApiCreateFeedDocumentRequest} requestParameters Request parameters.
638
+ * @param {*} [options] Override http request option.
639
+ * @throws {RequiredError}
640
+ */
641
+ createFeedDocument(requestParameters: FeedsApiCreateFeedDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateFeedDocumentResponse, any, {}>>;
642
+ /**
643
+ * Returns feed details (including the `resultDocumentId`, if available) for the feed that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 2 | 15 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
644
+ * @param {FeedsApiGetFeedRequest} requestParameters Request parameters.
645
+ * @param {*} [options] Override http request option.
646
+ * @throws {RequiredError}
647
+ */
648
+ getFeed(requestParameters: FeedsApiGetFeedRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Feed, any, {}>>;
649
+ /**
650
+ * Returns the information required for retrieving a feed document\'s contents. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0222 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
651
+ * @param {FeedsApiGetFeedDocumentRequest} requestParameters Request parameters.
652
+ * @param {*} [options] Override http request option.
653
+ * @throws {RequiredError}
654
+ */
655
+ getFeedDocument(requestParameters: FeedsApiGetFeedDocumentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FeedDocument, any, {}>>;
656
+ /**
657
+ * Returns feed details for the feeds that match the filters that you specify. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 0.0222 | 10 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Selling partners whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
658
+ * @param {FeedsApiGetFeedsRequest} requestParameters Request parameters.
659
+ * @param {*} [options] Override http request option.
660
+ * @throws {RequiredError}
661
+ */
662
+ getFeeds(requestParameters?: FeedsApiGetFeedsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFeedsResponse, any, {}>>;
663
+ }
664
+ declare const GetFeedsProcessingStatusesEnum: {
665
+ readonly Cancelled: "CANCELLED";
666
+ readonly Done: "DONE";
667
+ readonly Fatal: "FATAL";
668
+ readonly InProgress: "IN_PROGRESS";
669
+ readonly InQueue: "IN_QUEUE";
670
+ };
671
+ type GetFeedsProcessingStatusesEnum = typeof GetFeedsProcessingStatusesEnum[keyof typeof GetFeedsProcessingStatusesEnum];
672
+ //#endregion
673
+ //#region src/client.d.ts
674
+ declare const clientRateLimits: RateLimit[];
675
+ declare class FeedsApiClient extends FeedsApi {
676
+ constructor(configuration: ClientConfiguration);
677
+ }
678
+ //#endregion
679
+ export { CreateFeedDocumentResponse, CreateFeedDocumentSpecification, CreateFeedResponse, CreateFeedSpecification, ErrorList, Feed, FeedDocument, FeedDocumentCompressionAlgorithmEnum, FeedProcessingStatusEnum, FeedsApi, FeedsApiAxiosParamCreator, FeedsApiCancelFeedRequest, FeedsApiClient, FeedsApiCreateFeedDocumentRequest, FeedsApiCreateFeedRequest, FeedsApiFactory, FeedsApiFp, FeedsApiGetFeedDocumentRequest, FeedsApiGetFeedRequest, FeedsApiGetFeedsRequest, GetFeedsProcessingStatusesEnum, GetFeedsResponse, ModelError, clientRateLimits };
680
+ //# sourceMappingURL=index.d.ts.map