@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/README.md +3 -4
- package/dist/index.cjs +655 -651
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +785 -1067
- package/dist/index.d.ts +785 -1067
- package/dist/index.js +632 -615
- package/dist/index.js.map +1 -1
- package/package.json +7 -4
package/dist/index.d.cts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { ClientConfiguration, RateLimit } from
|
|
2
|
-
import
|
|
3
|
-
|
|
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
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
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
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
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
|
-
|
|
117
|
-
|
|
104
|
+
url: string;
|
|
105
|
+
options: RawAxiosRequestConfig;
|
|
118
106
|
}
|
|
119
107
|
declare class BaseAPI {
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
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
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
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
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
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
|
-
|
|
193
|
-
|
|
194
|
-
|
|
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
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
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
|
-
|
|
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
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
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
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
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
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
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
|
-
|
|
345
|
-
|
|
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
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
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
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
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
|
-
|
|
430
|
-
|
|
431
|
-
|
|
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
|
-
|
|
451
|
-
|
|
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
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
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
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
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
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
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
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
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
|
-
|
|
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
|
-
|
|
610
|
-
|
|
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
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
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
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
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
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
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
|
-
|
|
718
|
-
|
|
719
|
-
|
|
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
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
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
|
-
|
|
764
|
-
|
|
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
|
-
|
|
784
|
-
|
|
785
|
-
|
|
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
|
-
|
|
805
|
-
|
|
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
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
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
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
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
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
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
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
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
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
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
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
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
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
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
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
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
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
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
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
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
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
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
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
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
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
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
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
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
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
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
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
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
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
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
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
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
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
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
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
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
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
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
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
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
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
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
|
-
|
|
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,
|
|
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.cts.map
|