@sp-api-sdk/customer-feedback-api-2024-06-01 2.0.0 → 2.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.
package/dist/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
- import { ClientConfiguration, RateLimit } from '@sp-api-sdk/common';
2
- import * as axios from 'axios';
3
- import { AxiosInstance, RawAxiosRequestConfig, AxiosPromise } from 'axios';
4
-
1
+ import { ClientConfiguration, RateLimit } from "@sp-api-sdk/common";
2
+ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
3
+ //#region src/api-model/configuration.d.ts
5
4
  /**
6
5
  * The Selling Partner API for CustomerFeedback
7
6
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -14,115 +13,105 @@ import { AxiosInstance, RawAxiosRequestConfig, AxiosPromise } from 'axios';
14
13
  * Do not edit the class manually.
15
14
  */
16
15
  interface AWSv4Configuration {
17
- options?: {
18
- region?: string;
19
- service?: string;
20
- };
21
- credentials?: {
22
- accessKeyId?: string;
23
- secretAccessKey?: string;
24
- sessionToken?: string;
25
- };
16
+ options?: {
17
+ region?: string;
18
+ service?: string;
19
+ };
20
+ credentials?: {
21
+ accessKeyId?: string;
22
+ secretAccessKey?: string;
23
+ sessionToken?: string;
24
+ };
26
25
  }
27
26
  interface ConfigurationParameters {
28
- apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
29
- username?: string;
30
- password?: string;
31
- accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
32
- awsv4?: AWSv4Configuration;
33
- basePath?: string;
34
- serverIndex?: number;
35
- baseOptions?: any;
36
- formDataCtor?: new () => any;
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;
37
36
  }
38
37
  declare class Configuration {
39
- /**
40
- * parameter for apiKey security
41
- * @param name security name
42
- */
43
- apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
44
- /**
45
- * parameter for basic security
46
- */
47
- username?: string;
48
- /**
49
- * parameter for basic security
50
- */
51
- password?: string;
52
- /**
53
- * parameter for oauth2 security
54
- * @param name security name
55
- * @param scopes oauth2 scope
56
- */
57
- accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
58
- /**
59
- * parameter for aws4 signature security
60
- * @param {Object} AWS4Signature - AWS4 Signature security
61
- * @param {string} options.region - aws region
62
- * @param {string} options.service - name of the service.
63
- * @param {string} credentials.accessKeyId - aws access key id
64
- * @param {string} credentials.secretAccessKey - aws access key
65
- * @param {string} credentials.sessionToken - aws session token
66
- * @memberof Configuration
67
- */
68
- awsv4?: AWSv4Configuration;
69
- /**
70
- * override base path
71
- */
72
- basePath?: string;
73
- /**
74
- * override server index
75
- */
76
- serverIndex?: number;
77
- /**
78
- * base options for axios calls
79
- */
80
- baseOptions?: any;
81
- /**
82
- * The FormData constructor that will be used to create multipart form data
83
- * requests. You can inject this here so that execution environments that
84
- * do not support the FormData class can still run the generated client.
85
- *
86
- * @type {new () => FormData}
87
- */
88
- formDataCtor?: new () => any;
89
- constructor(param?: ConfigurationParameters);
90
- /**
91
- * Check if the given MIME is a JSON MIME.
92
- * JSON MIME examples:
93
- * application/json
94
- * application/json; charset=UTF8
95
- * APPLICATION/JSON
96
- * application/vnd.company+json
97
- * @param mime - MIME (Multipurpose Internet Mail Extensions)
98
- * @return True if the given MIME is JSON, false otherwise.
99
- */
100
- isJsonMime(mime: string): boolean;
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;
101
100
  }
102
-
103
- /**
104
- * The Selling Partner API for CustomerFeedback
105
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
106
- *
107
- * The version of the OpenAPI document: 2024-06-01
108
- *
109
- *
110
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
111
- * https://openapi-generator.tech
112
- * Do not edit the class manually.
113
- */
114
-
101
+ //#endregion
102
+ //#region src/api-model/base.d.ts
115
103
  interface RequestArgs {
116
- url: string;
117
- options: RawAxiosRequestConfig;
104
+ url: string;
105
+ options: RawAxiosRequestConfig;
118
106
  }
119
107
  declare class BaseAPI {
120
- protected basePath: string;
121
- protected axios: AxiosInstance;
122
- protected configuration: Configuration | undefined;
123
- constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
108
+ protected basePath: string;
109
+ protected axios: AxiosInstance;
110
+ protected configuration: Configuration | undefined;
111
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
124
112
  }
125
-
113
+ //#endregion
114
+ //#region src/api-model/models/browse-node-all-occurrence.d.ts
126
115
  /**
127
116
  * The Selling Partner API for CustomerFeedback
128
117
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -138,16 +127,17 @@ declare class BaseAPI {
138
127
  * The browse node review occurrence metrics.
139
128
  */
140
129
  interface BrowseNodeAllOccurrence {
141
- /**
142
- * The percentage of reviews of the top 25 percent of products in the browse node that mention the topic.
143
- */
144
- 'topTwentyFivePercentProducts': number;
145
- /**
146
- * The percentage of reviews of products in the browse node that mention the topic.
147
- */
148
- 'allProducts': number;
130
+ /**
131
+ * The percentage of reviews of the top 25 percent of products in the browse node that mention the topic.
132
+ */
133
+ 'topTwentyFivePercentProducts': number;
134
+ /**
135
+ * The percentage of reviews of products in the browse node that mention the topic.
136
+ */
137
+ 'allProducts': number;
149
138
  }
150
-
139
+ //#endregion
140
+ //#region src/api-model/models/browse-node-all-star-rating-impact.d.ts
151
141
  /**
152
142
  * The Selling Partner API for CustomerFeedback
153
143
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -163,16 +153,17 @@ interface BrowseNodeAllOccurrence {
163
153
  * The effects of a topic on the star ratings in a browse node.
164
154
  */
165
155
  interface BrowseNodeAllStarRatingImpact {
166
- /**
167
- * The effect of the topic on the star rating of the top 25 percent of products in the browse node. This value can be positive or negative.
168
- */
169
- 'topTwentyFivePercentProducts': number;
170
- /**
171
- * The effect of the topic on the star rating of all products in the browse node. This value can be positive or negative.
172
- */
173
- 'allProducts': number;
156
+ /**
157
+ * The effect of the topic on the star rating of the top 25 percent of products in the browse node. This value can be positive or negative.
158
+ */
159
+ 'topTwentyFivePercentProducts': number;
160
+ /**
161
+ * The effect of the topic on the star rating of all products in the browse node. This value can be positive or negative.
162
+ */
163
+ 'allProducts': number;
174
164
  }
175
-
165
+ //#endregion
166
+ //#region src/api-model/models/browse-node-occurrence.d.ts
176
167
  /**
177
168
  * The Selling Partner API for CustomerFeedback
178
169
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -188,12 +179,13 @@ interface BrowseNodeAllStarRatingImpact {
188
179
  * The browse node review trend occurrence metrics.
189
180
  */
190
181
  interface BrowseNodeOccurrence {
191
- /**
192
- * The percentage of reviews of products in the browse node that mention a topic.
193
- */
194
- 'allProducts': number;
182
+ /**
183
+ * The percentage of reviews of products in the browse node that mention a topic.
184
+ */
185
+ 'allProducts': number;
195
186
  }
196
-
187
+ //#endregion
188
+ //#region src/api-model/models/browse-node-response.d.ts
197
189
  /**
198
190
  * The Selling Partner API for CustomerFeedback
199
191
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -209,58 +201,37 @@ interface BrowseNodeOccurrence {
209
201
  * The response for the `getItemBrowseNode` operation.
210
202
  */
211
203
  interface BrowseNodeResponse {
212
- /**
213
- * A browse node id is the unique identifier of a given browse node. A browse node is a location in a browse tree that is used for navigation, product classification, and website content.
214
- */
215
- 'browseNodeId': string;
216
- /**
217
- * The display name of the browse node as visible on the Amazon retail website.
218
- */
219
- 'displayName': string;
204
+ /**
205
+ * A browse node id is the unique identifier of a given browse node. A browse node is a location in a browse tree that is used for navigation, product classification, and website content.
206
+ */
207
+ 'browseNodeId': string;
208
+ /**
209
+ * The display name of the browse node as visible on the Amazon retail website.
210
+ */
211
+ 'displayName': string;
220
212
  }
221
-
222
- /**
223
- * The Selling Partner API for CustomerFeedback
224
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
225
- *
226
- * The version of the OpenAPI document: 2024-06-01
227
- *
228
- *
229
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
230
- * https://openapi-generator.tech
231
- * Do not edit the class manually.
232
- */
233
-
213
+ //#endregion
214
+ //#region src/api-model/models/browse-node-trend-metrics.d.ts
234
215
  /**
235
216
  * A single browse node review or return trend metric.
236
217
  */
237
218
  interface BrowseNodeTrendMetrics {
238
- 'occurrencePercentage': BrowseNodeOccurrence;
219
+ 'occurrencePercentage': BrowseNodeOccurrence;
239
220
  }
240
-
241
- /**
242
- * The Selling Partner API for CustomerFeedback
243
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
244
- *
245
- * The version of the OpenAPI document: 2024-06-01
246
- *
247
- *
248
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
249
- * https://openapi-generator.tech
250
- * Do not edit the class manually.
251
- */
252
-
221
+ //#endregion
222
+ //#region src/api-model/models/browse-node-return-topics.d.ts
253
223
  /**
254
224
  * Topics from returns for all items in a browse node.
255
225
  */
256
226
  interface BrowseNodeReturnTopics {
257
- /**
258
- * The name of the return feedback topic .
259
- */
260
- 'topic': string;
261
- 'browseNodeMetrics': BrowseNodeTrendMetrics;
227
+ /**
228
+ * The name of the return feedback topic .
229
+ */
230
+ 'topic': string;
231
+ 'browseNodeMetrics': BrowseNodeTrendMetrics;
262
232
  }
263
-
233
+ //#endregion
234
+ //#region src/api-model/models/date-range.d.ts
264
235
  /**
265
236
  * The Selling Partner API for CustomerFeedback
266
237
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -276,140 +247,97 @@ interface BrowseNodeReturnTopics {
276
247
  * A date range.
277
248
  */
278
249
  interface DateRange {
279
- /**
280
- * The start date of the date range in ISO-8601 date/time format.
281
- */
282
- 'startDate': string;
283
- /**
284
- * The end date of the date range in ISO-8601 date/time format.
285
- */
286
- 'endDate': string;
250
+ /**
251
+ * The start date of the date range in ISO-8601 date/time format.
252
+ */
253
+ 'startDate': string;
254
+ /**
255
+ * The end date of the date range in ISO-8601 date/time format.
256
+ */
257
+ 'endDate': string;
287
258
  }
288
-
289
- /**
290
- * The Selling Partner API for CustomerFeedback
291
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
292
- *
293
- * The version of the OpenAPI document: 2024-06-01
294
- *
295
- *
296
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
297
- * https://openapi-generator.tech
298
- * Do not edit the class manually.
299
- */
300
-
259
+ //#endregion
260
+ //#region src/api-model/models/browse-node-return-topics-response.d.ts
301
261
  /**
302
262
  * The response for the `getBrowseNodeReturnTopics` operation.
303
263
  */
304
264
  interface BrowseNodeReturnTopicsResponse {
305
- /**
306
- * The requested browse node id. A browse node id is the unique identifier of a given browse node.
307
- */
308
- 'browseNodeId': string;
309
- /**
310
- * The display name of the browse node, as visible on the Amazon retail website.
311
- */
312
- 'displayName': string;
313
- /**
314
- * The requested marketplace id.
315
- */
316
- 'marketplaceId': string;
317
- /**
318
- * The two digit country code of requested marketplace id, in ISO 3166-1 alpha-2 format.
319
- */
320
- 'countryCode': string;
321
- 'dateRange': DateRange;
322
- /**
323
- * The list of browse node return topics.
324
- */
325
- 'topics': Array<BrowseNodeReturnTopics>;
265
+ /**
266
+ * The requested browse node id. A browse node id is the unique identifier of a given browse node.
267
+ */
268
+ 'browseNodeId': string;
269
+ /**
270
+ * The display name of the browse node, as visible on the Amazon retail website.
271
+ */
272
+ 'displayName': string;
273
+ /**
274
+ * The requested marketplace id.
275
+ */
276
+ 'marketplaceId': string;
277
+ /**
278
+ * The two digit country code of requested marketplace id, in ISO 3166-1 alpha-2 format.
279
+ */
280
+ 'countryCode': string;
281
+ 'dateRange': DateRange;
282
+ /**
283
+ * The list of browse node return topics.
284
+ */
285
+ 'topics': Array<BrowseNodeReturnTopics>;
326
286
  }
327
-
328
- /**
329
- * The Selling Partner API for CustomerFeedback
330
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
331
- *
332
- * The version of the OpenAPI document: 2024-06-01
333
- *
334
- *
335
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
336
- * https://openapi-generator.tech
337
- * Do not edit the class manually.
338
- */
339
-
287
+ //#endregion
288
+ //#region src/api-model/models/browse-node-return-trend-point.d.ts
340
289
  /**
341
290
  * The return metrics for a certain month.
342
291
  */
343
292
  interface BrowseNodeReturnTrendPoint {
344
- 'dateRange': DateRange;
345
- 'browseNodeMetrics': BrowseNodeTrendMetrics;
293
+ 'dateRange': DateRange;
294
+ 'browseNodeMetrics': BrowseNodeTrendMetrics;
346
295
  }
347
-
348
- /**
349
- * The Selling Partner API for CustomerFeedback
350
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
351
- *
352
- * The version of the OpenAPI document: 2024-06-01
353
- *
354
- *
355
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
356
- * https://openapi-generator.tech
357
- * Do not edit the class manually.
358
- */
359
-
296
+ //#endregion
297
+ //#region src/api-model/models/browse-node-return-trend.d.ts
360
298
  /**
361
299
  * The trend of return topic metrics for all items in the requested browse node.
362
300
  */
363
301
  interface BrowseNodeReturnTrend {
364
- /**
365
- * The name of the topic.
366
- */
367
- 'topic': string;
368
- /**
369
- * The browse node return trend metrics.
370
- */
371
- 'trendMetrics': Array<BrowseNodeReturnTrendPoint>;
302
+ /**
303
+ * The name of the topic.
304
+ */
305
+ 'topic': string;
306
+ /**
307
+ * The browse node return trend metrics.
308
+ */
309
+ 'trendMetrics': Array<BrowseNodeReturnTrendPoint>;
372
310
  }
373
-
374
- /**
375
- * The Selling Partner API for CustomerFeedback
376
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
377
- *
378
- * The version of the OpenAPI document: 2024-06-01
379
- *
380
- *
381
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
382
- * https://openapi-generator.tech
383
- * Do not edit the class manually.
384
- */
385
-
311
+ //#endregion
312
+ //#region src/api-model/models/browse-node-return-trends-response.d.ts
386
313
  /**
387
314
  * The response for the `getBrowseNodeReturnTrends` operation.
388
315
  */
389
316
  interface BrowseNodeReturnTrendsResponse {
390
- /**
391
- * The requested browse node id. A browse node id is the unique identifier of a given browse node.
392
- */
393
- 'browseNodeId': string;
394
- /**
395
- * The display name of the browse node, as visible on the Amazon retail website.
396
- */
397
- 'displayName': string;
398
- /**
399
- * The requested marketplace id.
400
- */
401
- 'marketplaceId': string;
402
- /**
403
- * The two digit country code of requested marketplace id, in ISO 3166-1 alpha-2 format.
404
- */
405
- 'countryCode': string;
406
- 'dateRange': DateRange;
407
- /**
408
- * The browse node return trends.
409
- */
410
- 'returnTrends': Array<BrowseNodeReturnTrend>;
317
+ /**
318
+ * The requested browse node id. A browse node id is the unique identifier of a given browse node.
319
+ */
320
+ 'browseNodeId': string;
321
+ /**
322
+ * The display name of the browse node, as visible on the Amazon retail website.
323
+ */
324
+ 'displayName': string;
325
+ /**
326
+ * The requested marketplace id.
327
+ */
328
+ 'marketplaceId': string;
329
+ /**
330
+ * The two digit country code of requested marketplace id, in ISO 3166-1 alpha-2 format.
331
+ */
332
+ 'countryCode': string;
333
+ 'dateRange': DateRange;
334
+ /**
335
+ * The browse node return trends.
336
+ */
337
+ 'returnTrends': Array<BrowseNodeReturnTrend>;
411
338
  }
412
-
339
+ //#endregion
340
+ //#region src/api-model/models/browse-node-review-subtopic-metrics.d.ts
413
341
  /**
414
342
  * The Selling Partner API for CustomerFeedback
415
343
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -425,279 +353,170 @@ interface BrowseNodeReturnTrendsResponse {
425
353
  * The browse node review subtopic metrics.
426
354
  */
427
355
  interface BrowseNodeReviewSubtopicMetrics {
428
- /**
429
- * The percentage of reviews that mention the subtopic.
430
- */
431
- 'occurrencePercentage': number;
356
+ /**
357
+ * The percentage of reviews that mention the subtopic.
358
+ */
359
+ 'occurrencePercentage': number;
432
360
  }
433
-
434
- /**
435
- * The Selling Partner API for CustomerFeedback
436
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
437
- *
438
- * The version of the OpenAPI document: 2024-06-01
439
- *
440
- *
441
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
442
- * https://openapi-generator.tech
443
- * Do not edit the class manually.
444
- */
445
-
361
+ //#endregion
362
+ //#region src/api-model/models/browse-node-review-topic-metrics.d.ts
446
363
  /**
447
364
  * The browse node review topic metrics.
448
365
  */
449
366
  interface BrowseNodeReviewTopicMetrics {
450
- 'occurrencePercentage'?: BrowseNodeAllOccurrence;
451
- 'starRatingImpact'?: BrowseNodeAllStarRatingImpact;
367
+ 'occurrencePercentage'?: BrowseNodeAllOccurrence;
368
+ 'starRatingImpact'?: BrowseNodeAllStarRatingImpact;
452
369
  }
453
-
454
- /**
455
- * The Selling Partner API for CustomerFeedback
456
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
457
- *
458
- * The version of the OpenAPI document: 2024-06-01
459
- *
460
- *
461
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
462
- * https://openapi-generator.tech
463
- * Do not edit the class manually.
464
- */
465
-
370
+ //#endregion
371
+ //#region src/api-model/models/browse-node-subtopic.d.ts
466
372
  /**
467
373
  * The browse node review subtopic.
468
374
  */
469
375
  interface BrowseNodeSubtopic {
470
- /**
471
- * The name of the browse node review subtopic.
472
- */
473
- 'subtopic': string;
474
- 'metrics': BrowseNodeReviewSubtopicMetrics;
475
- /**
476
- * A list of up to three snippets from reviews that contain the topic. This value is `null` if there aren\'t enough review snippets for the subtopic.
477
- */
478
- 'reviewSnippets'?: Array<string>;
376
+ /**
377
+ * The name of the browse node review subtopic.
378
+ */
379
+ 'subtopic': string;
380
+ 'metrics': BrowseNodeReviewSubtopicMetrics;
381
+ /**
382
+ * A list of up to three snippets from reviews that contain the topic. This value is `null` if there aren\'t enough review snippets for the subtopic.
383
+ */
384
+ 'reviewSnippets'?: Array<string>;
479
385
  }
480
-
481
- /**
482
- * The Selling Partner API for CustomerFeedback
483
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
484
- *
485
- * The version of the OpenAPI document: 2024-06-01
486
- *
487
- *
488
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
489
- * https://openapi-generator.tech
490
- * Do not edit the class manually.
491
- */
492
-
386
+ //#endregion
387
+ //#region src/api-model/models/browse-node-review-topic.d.ts
493
388
  /**
494
389
  * The browse node review topic.
495
390
  */
496
391
  interface BrowseNodeReviewTopic {
497
- /**
498
- * The name browse node review topic.
499
- */
500
- 'topic': string;
501
- 'browseNodeMetrics': BrowseNodeReviewTopicMetrics;
502
- /**
503
- * A list of up to three snippets from reviews that contain the topic. This value is `null` if there aren\'t enough review snippets for the topic.
504
- */
505
- 'reviewSnippets'?: Array<string>;
506
- /**
507
- * A list of the five subtopics that occur most frequently. This value is `null` if there are no subtopics.
508
- */
509
- 'subtopics'?: Array<BrowseNodeSubtopic>;
392
+ /**
393
+ * The name browse node review topic.
394
+ */
395
+ 'topic': string;
396
+ 'browseNodeMetrics': BrowseNodeReviewTopicMetrics;
397
+ /**
398
+ * A list of up to three snippets from reviews that contain the topic. This value is `null` if there aren\'t enough review snippets for the topic.
399
+ */
400
+ 'reviewSnippets'?: Array<string>;
401
+ /**
402
+ * A list of the five subtopics that occur most frequently. This value is `null` if there are no subtopics.
403
+ */
404
+ 'subtopics'?: Array<BrowseNodeSubtopic>;
510
405
  }
511
-
512
- /**
513
- * The Selling Partner API for CustomerFeedback
514
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
515
- *
516
- * The version of the OpenAPI document: 2024-06-01
517
- *
518
- *
519
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
520
- * https://openapi-generator.tech
521
- * Do not edit the class manually.
522
- */
523
-
406
+ //#endregion
407
+ //#region src/api-model/models/browse-node-review-topics.d.ts
524
408
  /**
525
409
  * The 10 most positive and most negative review topics for all items in a browse node.
526
410
  */
527
411
  interface BrowseNodeReviewTopics {
528
- /**
529
- * A list of the most positive review topics. When the `sortBy` query parameter is set to `MENTIONS`, the number of reviews of items within the requested browse node that mention the topic determine the topic\'s placement in the list. When `sortBy` is set to `STAR_RATING_IMPACT`, the effect that the topic has on the star rating of items within the requested browse node determine placement in the list. This value is `null` if there are not enough positive reviews for the requested browse node. **Max length:** 10
530
- */
531
- 'positiveTopics'?: Array<BrowseNodeReviewTopic>;
532
- /**
533
- * A list of the most negative review topics. When the `sortBy` query parameter is set to `MENTIONS`, the number of reviews of items within the requested browse node that mention the topic determine the topic\'s placement in the list. When `sortBy` is set to `STAR_RATING_IMPACT`, the effect that the topic has on the star rating of items within the requested browse node determine placement in the list. This value is `null` if there are not enough negative reviews for the requested browse node. **Max length:** 10
534
- */
535
- 'negativeTopics'?: Array<BrowseNodeReviewTopic>;
412
+ /**
413
+ * A list of the most positive review topics. When the `sortBy` query parameter is set to `MENTIONS`, the number of reviews of items within the requested browse node that mention the topic determine the topic\'s placement in the list. When `sortBy` is set to `STAR_RATING_IMPACT`, the effect that the topic has on the star rating of items within the requested browse node determine placement in the list. This value is `null` if there are not enough positive reviews for the requested browse node. **Max length:** 10
414
+ */
415
+ 'positiveTopics'?: Array<BrowseNodeReviewTopic>;
416
+ /**
417
+ * A list of the most negative review topics. When the `sortBy` query parameter is set to `MENTIONS`, the number of reviews of items within the requested browse node that mention the topic determine the topic\'s placement in the list. When `sortBy` is set to `STAR_RATING_IMPACT`, the effect that the topic has on the star rating of items within the requested browse node determine placement in the list. This value is `null` if there are not enough negative reviews for the requested browse node. **Max length:** 10
418
+ */
419
+ 'negativeTopics'?: Array<BrowseNodeReviewTopic>;
536
420
  }
537
-
538
- /**
539
- * The Selling Partner API for CustomerFeedback
540
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
541
- *
542
- * The version of the OpenAPI document: 2024-06-01
543
- *
544
- *
545
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
546
- * https://openapi-generator.tech
547
- * Do not edit the class manually.
548
- */
549
-
421
+ //#endregion
422
+ //#region src/api-model/models/browse-node-review-topics-response.d.ts
550
423
  /**
551
424
  * The response for the `getBrowseNodeReviewTopics` operation.
552
425
  */
553
426
  interface BrowseNodeReviewTopicsResponse {
554
- /**
555
- * The requested browse node id. A browse node id is the unique identifier of a given browse node.
556
- */
557
- 'browseNodeId': string;
558
- /**
559
- * The display name of the requested browse node id. The display name of the browse node as visible on the Amazon retail website.
560
- */
561
- 'displayName': string;
562
- /**
563
- * The requested marketplace id.
564
- */
565
- 'marketplaceId': string;
566
- /**
567
- * The two digit country code of requested marketplace id, in ISO 3166-1 alpha-2 format.
568
- */
569
- 'countryCode': string;
570
- 'dateRange': DateRange;
571
- 'topics': BrowseNodeReviewTopics;
427
+ /**
428
+ * The requested browse node id. A browse node id is the unique identifier of a given browse node.
429
+ */
430
+ 'browseNodeId': string;
431
+ /**
432
+ * The display name of the requested browse node id. The display name of the browse node as visible on the Amazon retail website.
433
+ */
434
+ 'displayName': string;
435
+ /**
436
+ * The requested marketplace id.
437
+ */
438
+ 'marketplaceId': string;
439
+ /**
440
+ * The two digit country code of requested marketplace id, in ISO 3166-1 alpha-2 format.
441
+ */
442
+ 'countryCode': string;
443
+ 'dateRange': DateRange;
444
+ 'topics': BrowseNodeReviewTopics;
572
445
  }
573
-
574
- /**
575
- * The Selling Partner API for CustomerFeedback
576
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
577
- *
578
- * The version of the OpenAPI document: 2024-06-01
579
- *
580
- *
581
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
582
- * https://openapi-generator.tech
583
- * Do not edit the class manually.
584
- */
585
-
446
+ //#endregion
447
+ //#region src/api-model/models/browse-node-review-trend-metrics.d.ts
586
448
  /**
587
449
  * The browse node review topic metrics.
588
450
  */
589
451
  interface BrowseNodeReviewTrendMetrics {
590
- 'occurrencePercentage': BrowseNodeAllOccurrence;
452
+ 'occurrencePercentage': BrowseNodeAllOccurrence;
591
453
  }
592
-
593
- /**
594
- * The Selling Partner API for CustomerFeedback
595
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
596
- *
597
- * The version of the OpenAPI document: 2024-06-01
598
- *
599
- *
600
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
601
- * https://openapi-generator.tech
602
- * Do not edit the class manually.
603
- */
604
-
454
+ //#endregion
455
+ //#region src/api-model/models/browse-node-review-trend-point.d.ts
605
456
  /**
606
457
  * The browse node\'s review metrics for a certain month.
607
458
  */
608
459
  interface BrowseNodeReviewTrendPoint {
609
- 'dateRange': DateRange;
610
- 'browseNodeMetrics': BrowseNodeReviewTrendMetrics;
460
+ 'dateRange': DateRange;
461
+ 'browseNodeMetrics': BrowseNodeReviewTrendMetrics;
611
462
  }
612
-
613
- /**
614
- * The Selling Partner API for CustomerFeedback
615
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
616
- *
617
- * The version of the OpenAPI document: 2024-06-01
618
- *
619
- *
620
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
621
- * https://openapi-generator.tech
622
- * Do not edit the class manually.
623
- */
624
-
463
+ //#endregion
464
+ //#region src/api-model/models/browse-node-review-trend.d.ts
625
465
  /**
626
466
  * The trend of review topic metrics for all items in the requested browse node.
627
467
  */
628
468
  interface BrowseNodeReviewTrend {
629
- /**
630
- * The name of the topic.
631
- */
632
- 'topic': string;
633
- /**
634
- * The browse node\'s review trend metrics for the past six months.
635
- */
636
- 'trendMetrics': Array<BrowseNodeReviewTrendPoint>;
469
+ /**
470
+ * The name of the topic.
471
+ */
472
+ 'topic': string;
473
+ /**
474
+ * The browse node\'s review trend metrics for the past six months.
475
+ */
476
+ 'trendMetrics': Array<BrowseNodeReviewTrendPoint>;
637
477
  }
638
-
639
- /**
640
- * The Selling Partner API for CustomerFeedback
641
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
642
- *
643
- * The version of the OpenAPI document: 2024-06-01
644
- *
645
- *
646
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
647
- * https://openapi-generator.tech
648
- * Do not edit the class manually.
649
- */
650
-
478
+ //#endregion
479
+ //#region src/api-model/models/browse-node-review-trends.d.ts
651
480
  /**
652
481
  * The 10 most positive and most negative review topics for all items in a browse node.
653
482
  */
654
483
  interface BrowseNodeReviewTrends {
655
- /**
656
- * The trends of the most positive review topics. The percentage of reviews that contain the topic across all products in the requested browse node determine the topic\'s placement in the list. This value is `null` if there aren\'t enough positive reviews for the requested browse node. **Max length:** 10
657
- */
658
- 'positiveTopics'?: Array<BrowseNodeReviewTrend>;
659
- /**
660
- * The trends of the most negative review topics. The percentage of reviews that contain the topic across all products in the requested browse node determine the topic\'s placement in the list. This value is `null` if there aren\'t enough positive reviews for the requested browse node. **Max length:** 10
661
- */
662
- 'negativeTopics'?: Array<BrowseNodeReviewTrend>;
484
+ /**
485
+ * The trends of the most positive review topics. The percentage of reviews that contain the topic across all products in the requested browse node determine the topic\'s placement in the list. This value is `null` if there aren\'t enough positive reviews for the requested browse node. **Max length:** 10
486
+ */
487
+ 'positiveTopics'?: Array<BrowseNodeReviewTrend>;
488
+ /**
489
+ * The trends of the most negative review topics. The percentage of reviews that contain the topic across all products in the requested browse node determine the topic\'s placement in the list. This value is `null` if there aren\'t enough positive reviews for the requested browse node. **Max length:** 10
490
+ */
491
+ 'negativeTopics'?: Array<BrowseNodeReviewTrend>;
663
492
  }
664
-
665
- /**
666
- * The Selling Partner API for CustomerFeedback
667
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
668
- *
669
- * The version of the OpenAPI document: 2024-06-01
670
- *
671
- *
672
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
673
- * https://openapi-generator.tech
674
- * Do not edit the class manually.
675
- */
676
-
493
+ //#endregion
494
+ //#region src/api-model/models/browse-node-review-trends-response.d.ts
677
495
  /**
678
496
  * The response for the `getBrowseNodeReviewTrends` operation.
679
497
  */
680
498
  interface BrowseNodeReviewTrendsResponse {
681
- /**
682
- * The requested browse node id. A browse node id is the unique identifier of a given browse node.
683
- */
684
- 'browseNodeId': string;
685
- /**
686
- * The display name of the requested browse node id. The display name of the browse node as visible on the Amazon retail website.
687
- */
688
- 'displayName': string;
689
- /**
690
- * The requested marketplace id.
691
- */
692
- 'marketplaceId': string;
693
- /**
694
- * The two digit country code of requested marketplace id, in ISO 3166-1 alpha-2 format.
695
- */
696
- 'countryCode': string;
697
- 'dateRange': DateRange;
698
- 'reviewTrends': BrowseNodeReviewTrends;
499
+ /**
500
+ * The requested browse node id. A browse node id is the unique identifier of a given browse node.
501
+ */
502
+ 'browseNodeId': string;
503
+ /**
504
+ * The display name of the requested browse node id. The display name of the browse node as visible on the Amazon retail website.
505
+ */
506
+ 'displayName': string;
507
+ /**
508
+ * The requested marketplace id.
509
+ */
510
+ 'marketplaceId': string;
511
+ /**
512
+ * The two digit country code of requested marketplace id, in ISO 3166-1 alpha-2 format.
513
+ */
514
+ 'countryCode': string;
515
+ 'dateRange': DateRange;
516
+ 'reviewTrends': BrowseNodeReviewTrends;
699
517
  }
700
-
518
+ //#endregion
519
+ //#region src/api-model/models/browse-node-star-rating-impact.d.ts
701
520
  /**
702
521
  * The Selling Partner API for CustomerFeedback
703
522
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -713,12 +532,13 @@ interface BrowseNodeReviewTrendsResponse {
713
532
  * The effects of a topic on a browse node\'s star rating.
714
533
  */
715
534
  interface BrowseNodeStarRatingImpact {
716
- /**
717
- * The effect of the topic on the star rating for all products in this browse node. This value can be positive or negative.
718
- */
719
- 'allProducts': number;
535
+ /**
536
+ * The effect of the topic on the star rating for all products in this browse node. This value can be positive or negative.
537
+ */
538
+ 'allProducts': number;
720
539
  }
721
-
540
+ //#endregion
541
+ //#region src/api-model/models/child-asin-mention-metrics.d.ts
722
542
  /**
723
543
  * The Selling Partner API for CustomerFeedback
724
544
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -734,36 +554,26 @@ interface BrowseNodeStarRatingImpact {
734
554
  * The child ASIN review topic mention metrics.
735
555
  */
736
556
  interface ChildAsinMentionMetrics {
737
- /**
738
- * The child ASIN of the requested item.
739
- */
740
- 'asin': string;
741
- /**
742
- * The number of times reviews of the child ASIN mention the topic.
743
- */
744
- 'numberOfMentions': number;
557
+ /**
558
+ * The child ASIN of the requested item.
559
+ */
560
+ 'asin': string;
561
+ /**
562
+ * The number of times reviews of the child ASIN mention the topic.
563
+ */
564
+ 'numberOfMentions': number;
745
565
  }
746
-
747
- /**
748
- * The Selling Partner API for CustomerFeedback
749
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
750
- *
751
- * The version of the OpenAPI document: 2024-06-01
752
- *
753
- *
754
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
755
- * https://openapi-generator.tech
756
- * Do not edit the class manually.
757
- */
758
-
566
+ //#endregion
567
+ //#region src/api-model/models/child-asin-metrics.d.ts
759
568
  /**
760
569
  * The review topic metrics for other child ASINs that have the same parent ASIN. This value is `null` if there isn\'t any child ASIN metric data.
761
570
  */
762
571
  interface ChildAsinMetrics {
763
- 'mostMentions'?: ChildAsinMentionMetrics;
764
- 'leastMentions'?: ChildAsinMentionMetrics;
572
+ 'mostMentions'?: ChildAsinMentionMetrics;
573
+ 'leastMentions'?: ChildAsinMentionMetrics;
765
574
  }
766
-
575
+ //#endregion
576
+ //#region src/api-model/models/error-list.d.ts
767
577
  /**
768
578
  * The Selling Partner API for CustomerFeedback
769
579
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -779,32 +589,22 @@ interface ChildAsinMetrics {
779
589
  * A list of error responses returned when a request is unsuccessful.
780
590
  */
781
591
  interface ErrorList {
782
- /**
783
- * List of errors.
784
- */
785
- 'errors': Array<Error>;
592
+ /**
593
+ * List of errors.
594
+ */
595
+ 'errors': Array<Error>;
786
596
  }
787
-
788
- /**
789
- * The Selling Partner API for CustomerFeedback
790
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
791
- *
792
- * The version of the OpenAPI document: 2024-06-01
793
- *
794
- *
795
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
796
- * https://openapi-generator.tech
797
- * Do not edit the class manually.
798
- */
799
-
597
+ //#endregion
598
+ //#region src/api-model/models/item-review-browse-node-metrics.d.ts
800
599
  /**
801
600
  * The browse node review topic metrics.
802
601
  */
803
602
  interface ItemReviewBrowseNodeMetrics {
804
- 'occurrencePercentage'?: BrowseNodeOccurrence;
805
- 'starRatingImpact'?: BrowseNodeStarRatingImpact;
603
+ 'occurrencePercentage'?: BrowseNodeOccurrence;
604
+ 'starRatingImpact'?: BrowseNodeStarRatingImpact;
806
605
  }
807
-
606
+ //#endregion
607
+ //#region src/api-model/models/item-review-subtopic-metrics.d.ts
808
608
  /**
809
609
  * The Selling Partner API for CustomerFeedback
810
610
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -820,43 +620,33 @@ interface ItemReviewBrowseNodeMetrics {
820
620
  * The item review subtopic metrics.
821
621
  */
822
622
  interface ItemReviewSubtopicMetrics {
823
- /**
824
- * The number of times that reviews mention the subtopic.
825
- */
826
- 'numberOfMentions': number;
827
- /**
828
- * The percentage of reviews that mention the subtopic.
829
- */
830
- 'occurrencePercentage': number;
623
+ /**
624
+ * The number of times that reviews mention the subtopic.
625
+ */
626
+ 'numberOfMentions': number;
627
+ /**
628
+ * The percentage of reviews that mention the subtopic.
629
+ */
630
+ 'occurrencePercentage': number;
831
631
  }
832
-
833
- /**
834
- * The Selling Partner API for CustomerFeedback
835
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
836
- *
837
- * The version of the OpenAPI document: 2024-06-01
838
- *
839
- *
840
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
841
- * https://openapi-generator.tech
842
- * Do not edit the class manually.
843
- */
844
-
632
+ //#endregion
633
+ //#region src/api-model/models/item-review-subtopic.d.ts
845
634
  /**
846
635
  * Details of the subtopic for an item review topic.
847
636
  */
848
637
  interface ItemReviewSubtopic {
849
- /**
850
- * The name of the subtopic.
851
- */
852
- 'subtopic': string;
853
- 'metrics': ItemReviewSubtopicMetrics;
854
- /**
855
- * A list of up to three snippets from reviews that contain the subtopic. This value is `null` if there aren\'t enough review snippets for the subtopic.
856
- */
857
- 'reviewSnippets'?: Array<string>;
638
+ /**
639
+ * The name of the subtopic.
640
+ */
641
+ 'subtopic': string;
642
+ 'metrics': ItemReviewSubtopicMetrics;
643
+ /**
644
+ * A list of up to three snippets from reviews that contain the subtopic. This value is `null` if there aren\'t enough review snippets for the subtopic.
645
+ */
646
+ 'reviewSnippets'?: Array<string>;
858
647
  }
859
-
648
+ //#endregion
649
+ //#region src/api-model/models/item-review-topic-metrics.d.ts
860
650
  /**
861
651
  * The Selling Partner API for CustomerFeedback
862
652
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -872,116 +662,84 @@ interface ItemReviewSubtopic {
872
662
  * The item review topic metrics.
873
663
  */
874
664
  interface ItemReviewTopicMetrics {
875
- /**
876
- * The number of times that reviews mention the topic. This value is `null` if reviews do not mention the topic frequently enough.
877
- */
878
- 'numberOfMentions'?: number;
879
- /**
880
- * The percentage of customer reviews that mention the topic. This value is `null` if reviews do not mention the topic frequently enough.
881
- */
882
- 'occurrencePercentage'?: number;
883
- /**
884
- * The effect of the topic on the star rating of the ASIN. This value can be positive or negative. This value is `null` if the topic does\'t affect the star rating of the ASIN.
885
- */
886
- 'starRatingImpact'?: number;
665
+ /**
666
+ * The number of times that reviews mention the topic. This value is `null` if reviews do not mention the topic frequently enough.
667
+ */
668
+ 'numberOfMentions'?: number;
669
+ /**
670
+ * The percentage of customer reviews that mention the topic. This value is `null` if reviews do not mention the topic frequently enough.
671
+ */
672
+ 'occurrencePercentage'?: number;
673
+ /**
674
+ * The effect of the topic on the star rating of the ASIN. This value can be positive or negative. This value is `null` if the topic does\'t affect the star rating of the ASIN.
675
+ */
676
+ 'starRatingImpact'?: number;
887
677
  }
888
-
889
- /**
890
- * The Selling Partner API for CustomerFeedback
891
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
892
- *
893
- * The version of the OpenAPI document: 2024-06-01
894
- *
895
- *
896
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
897
- * https://openapi-generator.tech
898
- * Do not edit the class manually.
899
- */
900
-
678
+ //#endregion
679
+ //#region src/api-model/models/item-review-topic.d.ts
901
680
  /**
902
681
  * Details of item review topic.
903
682
  */
904
683
  interface ItemReviewTopic {
905
- /**
906
- * The name of the item review topic.
907
- */
908
- 'topic': string;
909
- 'asinMetrics': ItemReviewTopicMetrics;
910
- 'parentAsinMetrics'?: ItemReviewTopicMetrics;
911
- 'browseNodeMetrics'?: ItemReviewBrowseNodeMetrics;
912
- 'childAsinMetrics'?: ChildAsinMetrics;
913
- /**
914
- * A list of up to three snippets from reviews that contain the topic. This value is `null` if there aren\'t enough review snippets for the topic.
915
- */
916
- 'reviewSnippets'?: Array<string>;
917
- /**
918
- * A list of up to five top subtopics for the topic. The percentage of customer reviews that mention the subtopic determine the topic\'s placement in the list. This value is `null` if there are no subtopics.
919
- */
920
- 'subtopics'?: Array<ItemReviewSubtopic>;
684
+ /**
685
+ * The name of the item review topic.
686
+ */
687
+ 'topic': string;
688
+ 'asinMetrics': ItemReviewTopicMetrics;
689
+ 'parentAsinMetrics'?: ItemReviewTopicMetrics;
690
+ 'browseNodeMetrics'?: ItemReviewBrowseNodeMetrics;
691
+ 'childAsinMetrics'?: ChildAsinMetrics;
692
+ /**
693
+ * A list of up to three snippets from reviews that contain the topic. This value is `null` if there aren\'t enough review snippets for the topic.
694
+ */
695
+ 'reviewSnippets'?: Array<string>;
696
+ /**
697
+ * A list of up to five top subtopics for the topic. The percentage of customer reviews that mention the subtopic determine the topic\'s placement in the list. This value is `null` if there are no subtopics.
698
+ */
699
+ 'subtopics'?: Array<ItemReviewSubtopic>;
921
700
  }
922
-
923
- /**
924
- * The Selling Partner API for CustomerFeedback
925
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
926
- *
927
- * The version of the OpenAPI document: 2024-06-01
928
- *
929
- *
930
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
931
- * https://openapi-generator.tech
932
- * Do not edit the class manually.
933
- */
934
-
701
+ //#endregion
702
+ //#region src/api-model/models/item-review-topics.d.ts
935
703
  /**
936
704
  * The top 10 positive and negative item review topics.
937
705
  */
938
706
  interface ItemReviewTopics {
939
- /**
940
- * A list of the most positive review topics. When the `sortBy` query parameter is set to `MENTIONS`, the number of reviews that mention the topic determines the topic\'s placement in the list. When `sortBy` is set to `STAR_RATING_IMPACT`, the effect that the topic has on the star rating of the item determines placement in the list. This value is `null` if there are not enough positive reviews for the specified ASIN. **Max length:** 10
941
- */
942
- 'positiveTopics'?: Array<ItemReviewTopic>;
943
- /**
944
- * A list of the most negative review topics. When the `sortBy` query parameter is set to `MENTIONS`, the number of reviews that mention the topic determines the topic\'s placement in the list. When `sortBy` is set to `STAR_RATING_IMPACT`, the effect that the topic has on the star rating of the item determines placement in the list. This value is `null` if there are not enough negative reviews for the specified ASIN. **Max length:** 10
945
- */
946
- 'negativeTopics'?: Array<ItemReviewTopic>;
707
+ /**
708
+ * A list of the most positive review topics. When the `sortBy` query parameter is set to `MENTIONS`, the number of reviews that mention the topic determines the topic\'s placement in the list. When `sortBy` is set to `STAR_RATING_IMPACT`, the effect that the topic has on the star rating of the item determines placement in the list. This value is `null` if there are not enough positive reviews for the specified ASIN. **Max length:** 10
709
+ */
710
+ 'positiveTopics'?: Array<ItemReviewTopic>;
711
+ /**
712
+ * A list of the most negative review topics. When the `sortBy` query parameter is set to `MENTIONS`, the number of reviews that mention the topic determines the topic\'s placement in the list. When `sortBy` is set to `STAR_RATING_IMPACT`, the effect that the topic has on the star rating of the item determines placement in the list. This value is `null` if there are not enough negative reviews for the specified ASIN. **Max length:** 10
713
+ */
714
+ 'negativeTopics'?: Array<ItemReviewTopic>;
947
715
  }
948
-
949
- /**
950
- * The Selling Partner API for CustomerFeedback
951
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
952
- *
953
- * The version of the OpenAPI document: 2024-06-01
954
- *
955
- *
956
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
957
- * https://openapi-generator.tech
958
- * Do not edit the class manually.
959
- */
960
-
716
+ //#endregion
717
+ //#region src/api-model/models/item-review-topics-response.d.ts
961
718
  /**
962
719
  * The response for the `getItemReviewTopics` operation.
963
720
  */
964
721
  interface ItemReviewTopicsResponse {
965
- /**
966
- * The requested ASIN. The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
967
- */
968
- 'asin': string;
969
- /**
970
- * The product title of the requested ASIN.
971
- */
972
- 'itemName': string;
973
- /**
974
- * The requested marketplace id.
975
- */
976
- 'marketplaceId': string;
977
- /**
978
- * The two digit country code of the requested marketplace id, in ISO 3166-1 alpha-2 format.
979
- */
980
- 'countryCode': string;
981
- 'dateRange': DateRange;
982
- 'topics': ItemReviewTopics;
722
+ /**
723
+ * The requested ASIN. The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
724
+ */
725
+ 'asin': string;
726
+ /**
727
+ * The product title of the requested ASIN.
728
+ */
729
+ 'itemName': string;
730
+ /**
731
+ * The requested marketplace id.
732
+ */
733
+ 'marketplaceId': string;
734
+ /**
735
+ * The two digit country code of the requested marketplace id, in ISO 3166-1 alpha-2 format.
736
+ */
737
+ 'countryCode': string;
738
+ 'dateRange': DateRange;
739
+ 'topics': ItemReviewTopics;
983
740
  }
984
-
741
+ //#endregion
742
+ //#region src/api-model/models/review-trend-metrics.d.ts
985
743
  /**
986
744
  * The Selling Partner API for CustomerFeedback
987
745
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -997,122 +755,79 @@ interface ItemReviewTopicsResponse {
997
755
  * The item review trend metrics.
998
756
  */
999
757
  interface ReviewTrendMetrics {
1000
- /**
1001
- * The percentage of reviews that mention the topic.
1002
- */
1003
- 'occurrencePercentage': number;
758
+ /**
759
+ * The percentage of reviews that mention the topic.
760
+ */
761
+ 'occurrencePercentage': number;
1004
762
  }
1005
-
1006
- /**
1007
- * The Selling Partner API for CustomerFeedback
1008
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
1009
- *
1010
- * The version of the OpenAPI document: 2024-06-01
1011
- *
1012
- *
1013
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1014
- * https://openapi-generator.tech
1015
- * Do not edit the class manually.
1016
- */
1017
-
763
+ //#endregion
764
+ //#region src/api-model/models/item-review-trend-point.d.ts
1018
765
  /**
1019
766
  * The review metrics for a certain month.
1020
767
  */
1021
768
  interface ItemReviewTrendPoint {
1022
- 'dateRange': DateRange;
1023
- 'asinMetrics': ReviewTrendMetrics;
1024
- 'parentAsinMetrics'?: ReviewTrendMetrics;
1025
- 'browseNodeMetrics'?: BrowseNodeTrendMetrics;
769
+ 'dateRange': DateRange;
770
+ 'asinMetrics': ReviewTrendMetrics;
771
+ 'parentAsinMetrics'?: ReviewTrendMetrics;
772
+ 'browseNodeMetrics'?: BrowseNodeTrendMetrics;
1026
773
  }
1027
-
1028
- /**
1029
- * The Selling Partner API for CustomerFeedback
1030
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
1031
- *
1032
- * The version of the OpenAPI document: 2024-06-01
1033
- *
1034
- *
1035
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1036
- * https://openapi-generator.tech
1037
- * Do not edit the class manually.
1038
- */
1039
-
774
+ //#endregion
775
+ //#region src/api-model/models/item-review-trend.d.ts
1040
776
  /**
1041
777
  * The trend of review topic metrics for the requested item.
1042
778
  */
1043
779
  interface ItemReviewTrend {
1044
- /**
1045
- * The name of the item review topic.
1046
- */
1047
- 'topic': string;
1048
- /**
1049
- * The item\'s review trend metrics for the past six months.
1050
- */
1051
- 'trendMetrics': Array<ItemReviewTrendPoint>;
780
+ /**
781
+ * The name of the item review topic.
782
+ */
783
+ 'topic': string;
784
+ /**
785
+ * The item\'s review trend metrics for the past six months.
786
+ */
787
+ 'trendMetrics': Array<ItemReviewTrendPoint>;
1052
788
  }
1053
-
1054
- /**
1055
- * The Selling Partner API for CustomerFeedback
1056
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
1057
- *
1058
- * The version of the OpenAPI document: 2024-06-01
1059
- *
1060
- *
1061
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1062
- * https://openapi-generator.tech
1063
- * Do not edit the class manually.
1064
- */
1065
-
789
+ //#endregion
790
+ //#region src/api-model/models/item-review-trends.d.ts
1066
791
  /**
1067
792
  * The 10 most positive and most negative review topics for all items in a browse node.
1068
793
  */
1069
794
  interface ItemReviewTrends {
1070
- /**
1071
- * A list of the most positive review topics. The percentage of reviews that contain the topic determines the topic\'s placement in the list. This value is `null` if there are not enough positive reviews for the specified ASIN. **Max length:** 10
1072
- */
1073
- 'positiveTopics'?: Array<ItemReviewTrend>;
1074
- /**
1075
- * A list of the most negative review topics. The percentage of reviews that contain the topic determines the topic\'s placement in the list. This value is `null` if there are not enough negative reviews for the specified ASIN. **Max length:** 10
1076
- */
1077
- 'negativeTopics'?: Array<ItemReviewTrend>;
795
+ /**
796
+ * A list of the most positive review topics. The percentage of reviews that contain the topic determines the topic\'s placement in the list. This value is `null` if there are not enough positive reviews for the specified ASIN. **Max length:** 10
797
+ */
798
+ 'positiveTopics'?: Array<ItemReviewTrend>;
799
+ /**
800
+ * A list of the most negative review topics. The percentage of reviews that contain the topic determines the topic\'s placement in the list. This value is `null` if there are not enough negative reviews for the specified ASIN. **Max length:** 10
801
+ */
802
+ 'negativeTopics'?: Array<ItemReviewTrend>;
1078
803
  }
1079
-
1080
- /**
1081
- * The Selling Partner API for CustomerFeedback
1082
- * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
1083
- *
1084
- * The version of the OpenAPI document: 2024-06-01
1085
- *
1086
- *
1087
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1088
- * https://openapi-generator.tech
1089
- * Do not edit the class manually.
1090
- */
1091
-
804
+ //#endregion
805
+ //#region src/api-model/models/item-review-trends-response.d.ts
1092
806
  /**
1093
807
  * The response for the `getItemReviewTrends` operation.
1094
808
  */
1095
809
  interface ItemReviewTrendsResponse {
1096
- /**
1097
- * The requested ASIN. The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
1098
- */
1099
- 'asin': string;
1100
- /**
1101
- * The product title of the requested ASIN.
1102
- */
1103
- 'itemName': string;
1104
- /**
1105
- * The requested marketplace id.
1106
- */
1107
- 'marketplaceId': string;
1108
- /**
1109
- * The two digit country code of the requested marketplace id, in ISO 3166-1 alpha-2 format.
1110
- */
1111
- 'countryCode': string;
1112
- 'dateRange': DateRange;
1113
- 'reviewTrends': ItemReviewTrends;
810
+ /**
811
+ * The requested ASIN. The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
812
+ */
813
+ 'asin': string;
814
+ /**
815
+ * The product title of the requested ASIN.
816
+ */
817
+ 'itemName': string;
818
+ /**
819
+ * The requested marketplace id.
820
+ */
821
+ 'marketplaceId': string;
822
+ /**
823
+ * The two digit country code of the requested marketplace id, in ISO 3166-1 alpha-2 format.
824
+ */
825
+ 'countryCode': string;
826
+ 'dateRange': DateRange;
827
+ 'reviewTrends': ItemReviewTrends;
1114
828
  }
1115
-
829
+ //#endregion
830
+ //#region src/api-model/models/model-error.d.ts
1116
831
  /**
1117
832
  * The Selling Partner API for CustomerFeedback
1118
833
  * The Selling Partner API for Customer Feedback (Customer Feedback API) provides information about customer reviews and returns at both the item and browse node level.
@@ -1128,357 +843,360 @@ interface ItemReviewTrendsResponse {
1128
843
  * Error response returned when the request is unsuccessful.
1129
844
  */
1130
845
  interface ModelError {
1131
- /**
1132
- * An error code that identifies the type of error that occurred.
1133
- */
1134
- 'code': string;
1135
- /**
1136
- * A message that describes the error condition.
1137
- */
1138
- 'message': string;
1139
- /**
1140
- * Additional details that can help the caller understand or fix the issue.
1141
- */
1142
- 'details'?: string;
846
+ /**
847
+ * An error code that identifies the type of error that occurred.
848
+ */
849
+ 'code': string;
850
+ /**
851
+ * A message that describes the error condition.
852
+ */
853
+ 'message': string;
854
+ /**
855
+ * Additional details that can help the caller understand or fix the issue.
856
+ */
857
+ 'details'?: string;
1143
858
  }
1144
-
859
+ //#endregion
860
+ //#region src/api-model/api/customer-feedback-api.d.ts
1145
861
  /**
1146
862
  * CustomerFeedbackApi - axios parameter creator
1147
863
  */
1148
864
  declare const CustomerFeedbackApiAxiosParamCreator: (configuration?: Configuration) => {
1149
- /**
1150
- * Retrieve the topics that customers mention when they return items in a browse node.
1151
- * @param {string} browseNodeId A browse node ID is a unique identifier for a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1152
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1153
- * @param {*} [options] Override http request option.
1154
- * @throws {RequiredError}
1155
- */
1156
- getBrowseNodeReturnTopics: (browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1157
- /**
1158
- * Retrieve the trends of topics that customers mention when they return items in a browse node.
1159
- * @param {string} browseNodeId A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1160
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1161
- * @param {*} [options] Override http request option.
1162
- * @throws {RequiredError}
1163
- */
1164
- getBrowseNodeReturnTrends: (browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1165
- /**
1166
- * Retrieve a browse node\'s ten most positive and ten most negative review topics.
1167
- * @param {string} browseNodeId The ID of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1168
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1169
- * @param {string} sortBy The metric by which to sort the data in the response.
1170
- * @param {*} [options] Override http request option.
1171
- * @throws {RequiredError}
1172
- */
1173
- getBrowseNodeReviewTopics: (browseNodeId: string, marketplaceId: string, sortBy: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1174
- /**
1175
- * Retrieve the positive and negative review trends of items in a browse node for the past six months.
1176
- * @param {string} browseNodeId A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1177
- * @param {string} marketplaceId The marketplace ID is the globally unique identifier of a marketplace. For more information, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
1178
- * @param {*} [options] Override http request option.
1179
- * @throws {RequiredError}
1180
- */
1181
- getBrowseNodeReviewTrends: (browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1182
- /**
1183
- * This API returns the associated browse node of the requested ASIN. A browse node is a location in a browse tree that is used for navigation, product classification, and website content on the Amazon retail website.
1184
- * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
1185
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1186
- * @param {*} [options] Override http request option.
1187
- * @throws {RequiredError}
1188
- */
1189
- getItemBrowseNode: (asin: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1190
- /**
1191
- * Retrieve an item\'s ten most positive and ten most negative review topics.
1192
- * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. The value must be a child ASIN.
1193
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1194
- * @param {string} sortBy The metric by which to sort data in the response.
1195
- * @param {*} [options] Override http request option.
1196
- * @throws {RequiredError}
1197
- */
1198
- getItemReviewTopics: (asin: string, marketplaceId: string, sortBy: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1199
- /**
1200
- * Retrieve an item\'s positive and negative review trends for the past six months.
1201
- * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. This API takes child ASIN as an input.
1202
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1203
- * @param {*} [options] Override http request option.
1204
- * @throws {RequiredError}
1205
- */
1206
- getItemReviewTrends: (asin: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
865
+ /**
866
+ * Retrieve the topics that customers mention when they return items in a browse node.
867
+ * @param {string} browseNodeId A browse node ID is a unique identifier for a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
868
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
869
+ * @param {*} [options] Override http request option.
870
+ * @throws {RequiredError}
871
+ */
872
+ getBrowseNodeReturnTopics: (browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
873
+ /**
874
+ * Retrieve the trends of topics that customers mention when they return items in a browse node.
875
+ * @param {string} browseNodeId A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
876
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
877
+ * @param {*} [options] Override http request option.
878
+ * @throws {RequiredError}
879
+ */
880
+ getBrowseNodeReturnTrends: (browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
881
+ /**
882
+ * Retrieve a browse node\'s ten most positive and ten most negative review topics.
883
+ * @param {string} browseNodeId The ID of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
884
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
885
+ * @param {string} sortBy The metric by which to sort the data in the response.
886
+ * @param {*} [options] Override http request option.
887
+ * @throws {RequiredError}
888
+ */
889
+ getBrowseNodeReviewTopics: (browseNodeId: string, marketplaceId: string, sortBy: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
890
+ /**
891
+ * Retrieve the positive and negative review trends of items in a browse node for the past six months.
892
+ * @param {string} browseNodeId A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
893
+ * @param {string} marketplaceId The marketplace ID is the globally unique identifier of a marketplace. For more information, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
894
+ * @param {*} [options] Override http request option.
895
+ * @throws {RequiredError}
896
+ */
897
+ getBrowseNodeReviewTrends: (browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
898
+ /**
899
+ * This API returns the associated browse node of the requested ASIN. A browse node is a location in a browse tree that is used for navigation, product classification, and website content on the Amazon retail website.
900
+ * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
901
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
902
+ * @param {*} [options] Override http request option.
903
+ * @throws {RequiredError}
904
+ */
905
+ getItemBrowseNode: (asin: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
906
+ /**
907
+ * Retrieve an item\'s ten most positive and ten most negative review topics.
908
+ * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. The value must be a child ASIN.
909
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
910
+ * @param {string} sortBy The metric by which to sort data in the response.
911
+ * @param {*} [options] Override http request option.
912
+ * @throws {RequiredError}
913
+ */
914
+ getItemReviewTopics: (asin: string, marketplaceId: string, sortBy: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
915
+ /**
916
+ * Retrieve an item\'s positive and negative review trends for the past six months.
917
+ * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. This API takes child ASIN as an input.
918
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
919
+ * @param {*} [options] Override http request option.
920
+ * @throws {RequiredError}
921
+ */
922
+ getItemReviewTrends: (asin: string, marketplaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
1207
923
  };
1208
924
  /**
1209
925
  * CustomerFeedbackApi - functional programming interface
1210
926
  */
1211
927
  declare const CustomerFeedbackApiFp: (configuration?: Configuration) => {
1212
- /**
1213
- * Retrieve the topics that customers mention when they return items in a browse node.
1214
- * @param {string} browseNodeId A browse node ID is a unique identifier for a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1215
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1216
- * @param {*} [options] Override http request option.
1217
- * @throws {RequiredError}
1218
- */
1219
- getBrowseNodeReturnTopics(browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeReturnTopicsResponse>>;
1220
- /**
1221
- * Retrieve the trends of topics that customers mention when they return items in a browse node.
1222
- * @param {string} browseNodeId A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1223
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1224
- * @param {*} [options] Override http request option.
1225
- * @throws {RequiredError}
1226
- */
1227
- getBrowseNodeReturnTrends(browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeReturnTrendsResponse>>;
1228
- /**
1229
- * Retrieve a browse node\'s ten most positive and ten most negative review topics.
1230
- * @param {string} browseNodeId The ID of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1231
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1232
- * @param {string} sortBy The metric by which to sort the data in the response.
1233
- * @param {*} [options] Override http request option.
1234
- * @throws {RequiredError}
1235
- */
1236
- getBrowseNodeReviewTopics(browseNodeId: string, marketplaceId: string, sortBy: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeReviewTopicsResponse>>;
1237
- /**
1238
- * Retrieve the positive and negative review trends of items in a browse node for the past six months.
1239
- * @param {string} browseNodeId A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1240
- * @param {string} marketplaceId The marketplace ID is the globally unique identifier of a marketplace. For more information, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
1241
- * @param {*} [options] Override http request option.
1242
- * @throws {RequiredError}
1243
- */
1244
- getBrowseNodeReviewTrends(browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeReviewTrendsResponse>>;
1245
- /**
1246
- * This API returns the associated browse node of the requested ASIN. A browse node is a location in a browse tree that is used for navigation, product classification, and website content on the Amazon retail website.
1247
- * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
1248
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1249
- * @param {*} [options] Override http request option.
1250
- * @throws {RequiredError}
1251
- */
1252
- getItemBrowseNode(asin: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeResponse>>;
1253
- /**
1254
- * Retrieve an item\'s ten most positive and ten most negative review topics.
1255
- * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. The value must be a child ASIN.
1256
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1257
- * @param {string} sortBy The metric by which to sort data in the response.
1258
- * @param {*} [options] Override http request option.
1259
- * @throws {RequiredError}
1260
- */
1261
- getItemReviewTopics(asin: string, marketplaceId: string, sortBy: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemReviewTopicsResponse>>;
1262
- /**
1263
- * Retrieve an item\'s positive and negative review trends for the past six months.
1264
- * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. This API takes child ASIN as an input.
1265
- * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1266
- * @param {*} [options] Override http request option.
1267
- * @throws {RequiredError}
1268
- */
1269
- getItemReviewTrends(asin: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemReviewTrendsResponse>>;
928
+ /**
929
+ * Retrieve the topics that customers mention when they return items in a browse node.
930
+ * @param {string} browseNodeId A browse node ID is a unique identifier for a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
931
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
932
+ * @param {*} [options] Override http request option.
933
+ * @throws {RequiredError}
934
+ */
935
+ getBrowseNodeReturnTopics(browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeReturnTopicsResponse>>;
936
+ /**
937
+ * Retrieve the trends of topics that customers mention when they return items in a browse node.
938
+ * @param {string} browseNodeId A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
939
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
940
+ * @param {*} [options] Override http request option.
941
+ * @throws {RequiredError}
942
+ */
943
+ getBrowseNodeReturnTrends(browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeReturnTrendsResponse>>;
944
+ /**
945
+ * Retrieve a browse node\'s ten most positive and ten most negative review topics.
946
+ * @param {string} browseNodeId The ID of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
947
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
948
+ * @param {string} sortBy The metric by which to sort the data in the response.
949
+ * @param {*} [options] Override http request option.
950
+ * @throws {RequiredError}
951
+ */
952
+ getBrowseNodeReviewTopics(browseNodeId: string, marketplaceId: string, sortBy: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeReviewTopicsResponse>>;
953
+ /**
954
+ * Retrieve the positive and negative review trends of items in a browse node for the past six months.
955
+ * @param {string} browseNodeId A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
956
+ * @param {string} marketplaceId The marketplace ID is the globally unique identifier of a marketplace. For more information, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
957
+ * @param {*} [options] Override http request option.
958
+ * @throws {RequiredError}
959
+ */
960
+ getBrowseNodeReviewTrends(browseNodeId: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeReviewTrendsResponse>>;
961
+ /**
962
+ * This API returns the associated browse node of the requested ASIN. A browse node is a location in a browse tree that is used for navigation, product classification, and website content on the Amazon retail website.
963
+ * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
964
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
965
+ * @param {*} [options] Override http request option.
966
+ * @throws {RequiredError}
967
+ */
968
+ getItemBrowseNode(asin: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BrowseNodeResponse>>;
969
+ /**
970
+ * Retrieve an item\'s ten most positive and ten most negative review topics.
971
+ * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. The value must be a child ASIN.
972
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
973
+ * @param {string} sortBy The metric by which to sort data in the response.
974
+ * @param {*} [options] Override http request option.
975
+ * @throws {RequiredError}
976
+ */
977
+ getItemReviewTopics(asin: string, marketplaceId: string, sortBy: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemReviewTopicsResponse>>;
978
+ /**
979
+ * Retrieve an item\'s positive and negative review trends for the past six months.
980
+ * @param {string} asin The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. This API takes child ASIN as an input.
981
+ * @param {string} marketplaceId The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
982
+ * @param {*} [options] Override http request option.
983
+ * @throws {RequiredError}
984
+ */
985
+ getItemReviewTrends(asin: string, marketplaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemReviewTrendsResponse>>;
1270
986
  };
1271
987
  /**
1272
988
  * CustomerFeedbackApi - factory interface
1273
989
  */
1274
990
  declare const CustomerFeedbackApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
1275
- /**
1276
- * Retrieve the topics that customers mention when they return items in a browse node.
1277
- * @param {CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest} requestParameters Request parameters.
1278
- * @param {*} [options] Override http request option.
1279
- * @throws {RequiredError}
1280
- */
1281
- getBrowseNodeReturnTopics(requestParameters: CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeReturnTopicsResponse>;
1282
- /**
1283
- * Retrieve the trends of topics that customers mention when they return items in a browse node.
1284
- * @param {CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest} requestParameters Request parameters.
1285
- * @param {*} [options] Override http request option.
1286
- * @throws {RequiredError}
1287
- */
1288
- getBrowseNodeReturnTrends(requestParameters: CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeReturnTrendsResponse>;
1289
- /**
1290
- * Retrieve a browse node\'s ten most positive and ten most negative review topics.
1291
- * @param {CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest} requestParameters Request parameters.
1292
- * @param {*} [options] Override http request option.
1293
- * @throws {RequiredError}
1294
- */
1295
- getBrowseNodeReviewTopics(requestParameters: CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeReviewTopicsResponse>;
1296
- /**
1297
- * Retrieve the positive and negative review trends of items in a browse node for the past six months.
1298
- * @param {CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest} requestParameters Request parameters.
1299
- * @param {*} [options] Override http request option.
1300
- * @throws {RequiredError}
1301
- */
1302
- getBrowseNodeReviewTrends(requestParameters: CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeReviewTrendsResponse>;
1303
- /**
1304
- * This API returns the associated browse node of the requested ASIN. A browse node is a location in a browse tree that is used for navigation, product classification, and website content on the Amazon retail website.
1305
- * @param {CustomerFeedbackApiGetItemBrowseNodeRequest} requestParameters Request parameters.
1306
- * @param {*} [options] Override http request option.
1307
- * @throws {RequiredError}
1308
- */
1309
- getItemBrowseNode(requestParameters: CustomerFeedbackApiGetItemBrowseNodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeResponse>;
1310
- /**
1311
- * Retrieve an item\'s ten most positive and ten most negative review topics.
1312
- * @param {CustomerFeedbackApiGetItemReviewTopicsRequest} requestParameters Request parameters.
1313
- * @param {*} [options] Override http request option.
1314
- * @throws {RequiredError}
1315
- */
1316
- getItemReviewTopics(requestParameters: CustomerFeedbackApiGetItemReviewTopicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ItemReviewTopicsResponse>;
1317
- /**
1318
- * Retrieve an item\'s positive and negative review trends for the past six months.
1319
- * @param {CustomerFeedbackApiGetItemReviewTrendsRequest} requestParameters Request parameters.
1320
- * @param {*} [options] Override http request option.
1321
- * @throws {RequiredError}
1322
- */
1323
- getItemReviewTrends(requestParameters: CustomerFeedbackApiGetItemReviewTrendsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ItemReviewTrendsResponse>;
991
+ /**
992
+ * Retrieve the topics that customers mention when they return items in a browse node.
993
+ * @param {CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest} requestParameters Request parameters.
994
+ * @param {*} [options] Override http request option.
995
+ * @throws {RequiredError}
996
+ */
997
+ getBrowseNodeReturnTopics(requestParameters: CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeReturnTopicsResponse>;
998
+ /**
999
+ * Retrieve the trends of topics that customers mention when they return items in a browse node.
1000
+ * @param {CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest} requestParameters Request parameters.
1001
+ * @param {*} [options] Override http request option.
1002
+ * @throws {RequiredError}
1003
+ */
1004
+ getBrowseNodeReturnTrends(requestParameters: CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeReturnTrendsResponse>;
1005
+ /**
1006
+ * Retrieve a browse node\'s ten most positive and ten most negative review topics.
1007
+ * @param {CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest} requestParameters Request parameters.
1008
+ * @param {*} [options] Override http request option.
1009
+ * @throws {RequiredError}
1010
+ */
1011
+ getBrowseNodeReviewTopics(requestParameters: CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeReviewTopicsResponse>;
1012
+ /**
1013
+ * Retrieve the positive and negative review trends of items in a browse node for the past six months.
1014
+ * @param {CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest} requestParameters Request parameters.
1015
+ * @param {*} [options] Override http request option.
1016
+ * @throws {RequiredError}
1017
+ */
1018
+ getBrowseNodeReviewTrends(requestParameters: CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeReviewTrendsResponse>;
1019
+ /**
1020
+ * This API returns the associated browse node of the requested ASIN. A browse node is a location in a browse tree that is used for navigation, product classification, and website content on the Amazon retail website.
1021
+ * @param {CustomerFeedbackApiGetItemBrowseNodeRequest} requestParameters Request parameters.
1022
+ * @param {*} [options] Override http request option.
1023
+ * @throws {RequiredError}
1024
+ */
1025
+ getItemBrowseNode(requestParameters: CustomerFeedbackApiGetItemBrowseNodeRequest, options?: RawAxiosRequestConfig): AxiosPromise<BrowseNodeResponse>;
1026
+ /**
1027
+ * Retrieve an item\'s ten most positive and ten most negative review topics.
1028
+ * @param {CustomerFeedbackApiGetItemReviewTopicsRequest} requestParameters Request parameters.
1029
+ * @param {*} [options] Override http request option.
1030
+ * @throws {RequiredError}
1031
+ */
1032
+ getItemReviewTopics(requestParameters: CustomerFeedbackApiGetItemReviewTopicsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ItemReviewTopicsResponse>;
1033
+ /**
1034
+ * Retrieve an item\'s positive and negative review trends for the past six months.
1035
+ * @param {CustomerFeedbackApiGetItemReviewTrendsRequest} requestParameters Request parameters.
1036
+ * @param {*} [options] Override http request option.
1037
+ * @throws {RequiredError}
1038
+ */
1039
+ getItemReviewTrends(requestParameters: CustomerFeedbackApiGetItemReviewTrendsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ItemReviewTrendsResponse>;
1324
1040
  };
1325
1041
  /**
1326
1042
  * Request parameters for getBrowseNodeReturnTopics operation in CustomerFeedbackApi.
1327
1043
  */
1328
1044
  interface CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest {
1329
- /**
1330
- * A browse node ID is a unique identifier for a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1331
- */
1332
- readonly browseNodeId: string;
1333
- /**
1334
- * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1335
- */
1336
- readonly marketplaceId: string;
1045
+ /**
1046
+ * A browse node ID is a unique identifier for a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1047
+ */
1048
+ readonly browseNodeId: string;
1049
+ /**
1050
+ * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1051
+ */
1052
+ readonly marketplaceId: string;
1337
1053
  }
1338
1054
  /**
1339
1055
  * Request parameters for getBrowseNodeReturnTrends operation in CustomerFeedbackApi.
1340
1056
  */
1341
1057
  interface CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest {
1342
- /**
1343
- * A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1344
- */
1345
- readonly browseNodeId: string;
1346
- /**
1347
- * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1348
- */
1349
- readonly marketplaceId: string;
1058
+ /**
1059
+ * A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1060
+ */
1061
+ readonly browseNodeId: string;
1062
+ /**
1063
+ * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1064
+ */
1065
+ readonly marketplaceId: string;
1350
1066
  }
1351
1067
  /**
1352
1068
  * Request parameters for getBrowseNodeReviewTopics operation in CustomerFeedbackApi.
1353
1069
  */
1354
1070
  interface CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest {
1355
- /**
1356
- * The ID of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1357
- */
1358
- readonly browseNodeId: string;
1359
- /**
1360
- * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1361
- */
1362
- readonly marketplaceId: string;
1363
- /**
1364
- * The metric by which to sort the data in the response.
1365
- */
1366
- readonly sortBy: string;
1071
+ /**
1072
+ * The ID of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1073
+ */
1074
+ readonly browseNodeId: string;
1075
+ /**
1076
+ * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1077
+ */
1078
+ readonly marketplaceId: string;
1079
+ /**
1080
+ * The metric by which to sort the data in the response.
1081
+ */
1082
+ readonly sortBy: string;
1367
1083
  }
1368
1084
  /**
1369
1085
  * Request parameters for getBrowseNodeReviewTrends operation in CustomerFeedbackApi.
1370
1086
  */
1371
1087
  interface CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest {
1372
- /**
1373
- * A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1374
- */
1375
- readonly browseNodeId: string;
1376
- /**
1377
- * The marketplace ID is the globally unique identifier of a marketplace. For more information, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
1378
- */
1379
- readonly marketplaceId: string;
1088
+ /**
1089
+ * A browse node ID is a unique identifier of a browse node. A browse node is a named location in a browse tree that is used for navigation, product classification, and website content.
1090
+ */
1091
+ readonly browseNodeId: string;
1092
+ /**
1093
+ * The marketplace ID is the globally unique identifier of a marketplace. For more information, refer to [Marketplace IDs](https://developer-docs.amazon.com/sp-api/docs/marketplace-ids).
1094
+ */
1095
+ readonly marketplaceId: string;
1380
1096
  }
1381
1097
  /**
1382
1098
  * Request parameters for getItemBrowseNode operation in CustomerFeedbackApi.
1383
1099
  */
1384
1100
  interface CustomerFeedbackApiGetItemBrowseNodeRequest {
1385
- /**
1386
- * The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
1387
- */
1388
- readonly asin: string;
1389
- /**
1390
- * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1391
- */
1392
- readonly marketplaceId: string;
1101
+ /**
1102
+ * The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace.
1103
+ */
1104
+ readonly asin: string;
1105
+ /**
1106
+ * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1107
+ */
1108
+ readonly marketplaceId: string;
1393
1109
  }
1394
1110
  /**
1395
1111
  * Request parameters for getItemReviewTopics operation in CustomerFeedbackApi.
1396
1112
  */
1397
1113
  interface CustomerFeedbackApiGetItemReviewTopicsRequest {
1398
- /**
1399
- * The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. The value must be a child ASIN.
1400
- */
1401
- readonly asin: string;
1402
- /**
1403
- * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1404
- */
1405
- readonly marketplaceId: string;
1406
- /**
1407
- * The metric by which to sort data in the response.
1408
- */
1409
- readonly sortBy: string;
1114
+ /**
1115
+ * The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. The value must be a child ASIN.
1116
+ */
1117
+ readonly asin: string;
1118
+ /**
1119
+ * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1120
+ */
1121
+ readonly marketplaceId: string;
1122
+ /**
1123
+ * The metric by which to sort data in the response.
1124
+ */
1125
+ readonly sortBy: string;
1410
1126
  }
1411
1127
  /**
1412
1128
  * Request parameters for getItemReviewTrends operation in CustomerFeedbackApi.
1413
1129
  */
1414
1130
  interface CustomerFeedbackApiGetItemReviewTrendsRequest {
1415
- /**
1416
- * The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. This API takes child ASIN as an input.
1417
- */
1418
- readonly asin: string;
1419
- /**
1420
- * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1421
- */
1422
- readonly marketplaceId: string;
1131
+ /**
1132
+ * The Amazon Standard Identification Number (ASIN) is the unique identifier of a product within a marketplace. This API takes child ASIN as an input.
1133
+ */
1134
+ readonly asin: string;
1135
+ /**
1136
+ * The MarketplaceId is the globally unique identifier of a marketplace, you can refer to the marketplaceId here : https://developer-docs.amazon.com/sp-api/docs/marketplace-ids.
1137
+ */
1138
+ readonly marketplaceId: string;
1423
1139
  }
1424
1140
  /**
1425
1141
  * CustomerFeedbackApi - object-oriented interface
1426
1142
  */
1427
1143
  declare class CustomerFeedbackApi extends BaseAPI {
1428
- /**
1429
- * Retrieve the topics that customers mention when they return items in a browse node.
1430
- * @param {CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest} requestParameters Request parameters.
1431
- * @param {*} [options] Override http request option.
1432
- * @throws {RequiredError}
1433
- */
1434
- getBrowseNodeReturnTopics(requestParameters: CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<BrowseNodeReturnTopicsResponse, any, {}>>;
1435
- /**
1436
- * Retrieve the trends of topics that customers mention when they return items in a browse node.
1437
- * @param {CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest} requestParameters Request parameters.
1438
- * @param {*} [options] Override http request option.
1439
- * @throws {RequiredError}
1440
- */
1441
- getBrowseNodeReturnTrends(requestParameters: CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<BrowseNodeReturnTrendsResponse, any, {}>>;
1442
- /**
1443
- * Retrieve a browse node\'s ten most positive and ten most negative review topics.
1444
- * @param {CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest} requestParameters Request parameters.
1445
- * @param {*} [options] Override http request option.
1446
- * @throws {RequiredError}
1447
- */
1448
- getBrowseNodeReviewTopics(requestParameters: CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<BrowseNodeReviewTopicsResponse, any, {}>>;
1449
- /**
1450
- * Retrieve the positive and negative review trends of items in a browse node for the past six months.
1451
- * @param {CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest} requestParameters Request parameters.
1452
- * @param {*} [options] Override http request option.
1453
- * @throws {RequiredError}
1454
- */
1455
- getBrowseNodeReviewTrends(requestParameters: CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<BrowseNodeReviewTrendsResponse, any, {}>>;
1456
- /**
1457
- * This API returns the associated browse node of the requested ASIN. A browse node is a location in a browse tree that is used for navigation, product classification, and website content on the Amazon retail website.
1458
- * @param {CustomerFeedbackApiGetItemBrowseNodeRequest} requestParameters Request parameters.
1459
- * @param {*} [options] Override http request option.
1460
- * @throws {RequiredError}
1461
- */
1462
- getItemBrowseNode(requestParameters: CustomerFeedbackApiGetItemBrowseNodeRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<BrowseNodeResponse, any, {}>>;
1463
- /**
1464
- * Retrieve an item\'s ten most positive and ten most negative review topics.
1465
- * @param {CustomerFeedbackApiGetItemReviewTopicsRequest} requestParameters Request parameters.
1466
- * @param {*} [options] Override http request option.
1467
- * @throws {RequiredError}
1468
- */
1469
- getItemReviewTopics(requestParameters: CustomerFeedbackApiGetItemReviewTopicsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ItemReviewTopicsResponse, any, {}>>;
1470
- /**
1471
- * Retrieve an item\'s positive and negative review trends for the past six months.
1472
- * @param {CustomerFeedbackApiGetItemReviewTrendsRequest} requestParameters Request parameters.
1473
- * @param {*} [options] Override http request option.
1474
- * @throws {RequiredError}
1475
- */
1476
- getItemReviewTrends(requestParameters: CustomerFeedbackApiGetItemReviewTrendsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ItemReviewTrendsResponse, any, {}>>;
1144
+ /**
1145
+ * Retrieve the topics that customers mention when they return items in a browse node.
1146
+ * @param {CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest} requestParameters Request parameters.
1147
+ * @param {*} [options] Override http request option.
1148
+ * @throws {RequiredError}
1149
+ */
1150
+ getBrowseNodeReturnTopics(requestParameters: CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrowseNodeReturnTopicsResponse, any, {}>>;
1151
+ /**
1152
+ * Retrieve the trends of topics that customers mention when they return items in a browse node.
1153
+ * @param {CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest} requestParameters Request parameters.
1154
+ * @param {*} [options] Override http request option.
1155
+ * @throws {RequiredError}
1156
+ */
1157
+ getBrowseNodeReturnTrends(requestParameters: CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrowseNodeReturnTrendsResponse, any, {}>>;
1158
+ /**
1159
+ * Retrieve a browse node\'s ten most positive and ten most negative review topics.
1160
+ * @param {CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest} requestParameters Request parameters.
1161
+ * @param {*} [options] Override http request option.
1162
+ * @throws {RequiredError}
1163
+ */
1164
+ getBrowseNodeReviewTopics(requestParameters: CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrowseNodeReviewTopicsResponse, any, {}>>;
1165
+ /**
1166
+ * Retrieve the positive and negative review trends of items in a browse node for the past six months.
1167
+ * @param {CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest} requestParameters Request parameters.
1168
+ * @param {*} [options] Override http request option.
1169
+ * @throws {RequiredError}
1170
+ */
1171
+ getBrowseNodeReviewTrends(requestParameters: CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrowseNodeReviewTrendsResponse, any, {}>>;
1172
+ /**
1173
+ * This API returns the associated browse node of the requested ASIN. A browse node is a location in a browse tree that is used for navigation, product classification, and website content on the Amazon retail website.
1174
+ * @param {CustomerFeedbackApiGetItemBrowseNodeRequest} requestParameters Request parameters.
1175
+ * @param {*} [options] Override http request option.
1176
+ * @throws {RequiredError}
1177
+ */
1178
+ getItemBrowseNode(requestParameters: CustomerFeedbackApiGetItemBrowseNodeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BrowseNodeResponse, any, {}>>;
1179
+ /**
1180
+ * Retrieve an item\'s ten most positive and ten most negative review topics.
1181
+ * @param {CustomerFeedbackApiGetItemReviewTopicsRequest} requestParameters Request parameters.
1182
+ * @param {*} [options] Override http request option.
1183
+ * @throws {RequiredError}
1184
+ */
1185
+ getItemReviewTopics(requestParameters: CustomerFeedbackApiGetItemReviewTopicsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemReviewTopicsResponse, any, {}>>;
1186
+ /**
1187
+ * Retrieve an item\'s positive and negative review trends for the past six months.
1188
+ * @param {CustomerFeedbackApiGetItemReviewTrendsRequest} requestParameters Request parameters.
1189
+ * @param {*} [options] Override http request option.
1190
+ * @throws {RequiredError}
1191
+ */
1192
+ getItemReviewTrends(requestParameters: CustomerFeedbackApiGetItemReviewTrendsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemReviewTrendsResponse, any, {}>>;
1477
1193
  }
1478
-
1194
+ //#endregion
1195
+ //#region src/client.d.ts
1479
1196
  declare const clientRateLimits: RateLimit[];
1480
1197
  declare class CustomerFeedbackApiClient extends CustomerFeedbackApi {
1481
- constructor(configuration: ClientConfiguration);
1198
+ constructor(configuration: ClientConfiguration);
1482
1199
  }
1483
-
1484
- export { type BrowseNodeAllOccurrence, type BrowseNodeAllStarRatingImpact, type BrowseNodeOccurrence, type BrowseNodeResponse, type BrowseNodeReturnTopics, type BrowseNodeReturnTopicsResponse, type BrowseNodeReturnTrend, type BrowseNodeReturnTrendPoint, type BrowseNodeReturnTrendsResponse, type BrowseNodeReviewSubtopicMetrics, type BrowseNodeReviewTopic, type BrowseNodeReviewTopicMetrics, type BrowseNodeReviewTopics, type BrowseNodeReviewTopicsResponse, type BrowseNodeReviewTrend, type BrowseNodeReviewTrendMetrics, type BrowseNodeReviewTrendPoint, type BrowseNodeReviewTrends, type BrowseNodeReviewTrendsResponse, type BrowseNodeStarRatingImpact, type BrowseNodeSubtopic, type BrowseNodeTrendMetrics, type ChildAsinMentionMetrics, type ChildAsinMetrics, CustomerFeedbackApi, CustomerFeedbackApiAxiosParamCreator, CustomerFeedbackApiClient, CustomerFeedbackApiFactory, CustomerFeedbackApiFp, type CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest, type CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest, type CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest, type CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest, type CustomerFeedbackApiGetItemBrowseNodeRequest, type CustomerFeedbackApiGetItemReviewTopicsRequest, type CustomerFeedbackApiGetItemReviewTrendsRequest, type DateRange, type ErrorList, type ItemReviewBrowseNodeMetrics, type ItemReviewSubtopic, type ItemReviewSubtopicMetrics, type ItemReviewTopic, type ItemReviewTopicMetrics, type ItemReviewTopics, type ItemReviewTopicsResponse, type ItemReviewTrend, type ItemReviewTrendPoint, type ItemReviewTrends, type ItemReviewTrendsResponse, type ModelError, type ReviewTrendMetrics, clientRateLimits };
1200
+ //#endregion
1201
+ export { type BrowseNodeAllOccurrence, type BrowseNodeAllStarRatingImpact, type BrowseNodeOccurrence, type BrowseNodeResponse, type BrowseNodeReturnTopics, type BrowseNodeReturnTopicsResponse, type BrowseNodeReturnTrend, type BrowseNodeReturnTrendPoint, type BrowseNodeReturnTrendsResponse, type BrowseNodeReviewSubtopicMetrics, type BrowseNodeReviewTopic, type BrowseNodeReviewTopicMetrics, type BrowseNodeReviewTopics, type BrowseNodeReviewTopicsResponse, type BrowseNodeReviewTrend, type BrowseNodeReviewTrendMetrics, type BrowseNodeReviewTrendPoint, type BrowseNodeReviewTrends, type BrowseNodeReviewTrendsResponse, type BrowseNodeStarRatingImpact, type BrowseNodeSubtopic, type BrowseNodeTrendMetrics, type ChildAsinMentionMetrics, type ChildAsinMetrics, CustomerFeedbackApi, CustomerFeedbackApiAxiosParamCreator, CustomerFeedbackApiClient, CustomerFeedbackApiFactory, CustomerFeedbackApiFp, CustomerFeedbackApiGetBrowseNodeReturnTopicsRequest, CustomerFeedbackApiGetBrowseNodeReturnTrendsRequest, CustomerFeedbackApiGetBrowseNodeReviewTopicsRequest, CustomerFeedbackApiGetBrowseNodeReviewTrendsRequest, CustomerFeedbackApiGetItemBrowseNodeRequest, CustomerFeedbackApiGetItemReviewTopicsRequest, CustomerFeedbackApiGetItemReviewTrendsRequest, type DateRange, type ErrorList, type ItemReviewBrowseNodeMetrics, type ItemReviewSubtopic, type ItemReviewSubtopicMetrics, type ItemReviewTopic, type ItemReviewTopicMetrics, type ItemReviewTopics, type ItemReviewTopicsResponse, type ItemReviewTrend, type ItemReviewTrendPoint, type ItemReviewTrends, type ItemReviewTrendsResponse, type ModelError, type ReviewTrendMetrics, clientRateLimits };
1202
+ //# sourceMappingURL=index.d.ts.map