@sp-api-sdk/application-integrations-api-2024-04-01 3.0.17 → 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/README.md +7 -8
  2. package/dist/index.cjs +449 -0
  3. package/dist/index.cjs.map +1 -0
  4. package/dist/index.d.cts +423 -0
  5. package/dist/index.d.ts +423 -0
  6. package/dist/index.js +418 -0
  7. package/dist/index.js.map +1 -0
  8. package/package.json +26 -12
  9. package/dist/cjs/api-model/api/application-integrations-api.js +0 -242
  10. package/dist/cjs/api-model/api.js +0 -30
  11. package/dist/cjs/api-model/base.js +0 -52
  12. package/dist/cjs/api-model/common.js +0 -123
  13. package/dist/cjs/api-model/configuration.js +0 -98
  14. package/dist/cjs/api-model/index.js +0 -32
  15. package/dist/cjs/api-model/models/create-notification-request.js +0 -15
  16. package/dist/cjs/api-model/models/create-notification-response.js +0 -15
  17. package/dist/cjs/api-model/models/delete-notifications-request.js +0 -20
  18. package/dist/cjs/api-model/models/error-list.js +0 -15
  19. package/dist/cjs/api-model/models/index.js +0 -22
  20. package/dist/cjs/api-model/models/model-error.js +0 -15
  21. package/dist/cjs/api-model/models/record-action-feedback-request.js +0 -19
  22. package/dist/cjs/client.js +0 -35
  23. package/dist/cjs/index.js +0 -19
  24. package/dist/es/api-model/api/application-integrations-api.js +0 -232
  25. package/dist/es/api-model/api.js +0 -14
  26. package/dist/es/api-model/base.js +0 -44
  27. package/dist/es/api-model/common.js +0 -110
  28. package/dist/es/api-model/configuration.js +0 -94
  29. package/dist/es/api-model/index.js +0 -16
  30. package/dist/es/api-model/models/create-notification-request.js +0 -14
  31. package/dist/es/api-model/models/create-notification-response.js +0 -14
  32. package/dist/es/api-model/models/delete-notifications-request.js +0 -17
  33. package/dist/es/api-model/models/error-list.js +0 -14
  34. package/dist/es/api-model/models/index.js +0 -6
  35. package/dist/es/api-model/models/model-error.js +0 -14
  36. package/dist/es/api-model/models/record-action-feedback-request.js +0 -16
  37. package/dist/es/client.js +0 -31
  38. package/dist/es/index.js +0 -3
  39. package/dist/types/api-model/api/application-integrations-api.d.ts +0 -156
  40. package/dist/types/api-model/api.d.ts +0 -12
  41. package/dist/types/api-model/base.d.ts +0 -42
  42. package/dist/types/api-model/common.d.ts +0 -34
  43. package/dist/types/api-model/configuration.d.ts +0 -98
  44. package/dist/types/api-model/index.d.ts +0 -14
  45. package/dist/types/api-model/models/create-notification-request.d.ts +0 -30
  46. package/dist/types/api-model/models/create-notification-response.d.ts +0 -20
  47. package/dist/types/api-model/models/delete-notifications-request.d.ts +0 -29
  48. package/dist/types/api-model/models/error-list.d.ts +0 -20
  49. package/dist/types/api-model/models/index.d.ts +0 -6
  50. package/dist/types/api-model/models/model-error.d.ts +0 -28
  51. package/dist/types/api-model/models/record-action-feedback-request.d.ts +0 -24
  52. package/dist/types/client.d.ts +0 -6
  53. package/dist/types/index.d.ts +0 -3
@@ -0,0 +1,423 @@
1
+ import { ClientConfiguration, RateLimit } from "@sp-api-sdk/common";
2
+ import { AxiosInstance, AxiosPromise, RawAxiosRequestConfig } from "axios";
3
+ //#region src/api-model/configuration.d.ts
4
+ /**
5
+ * The Selling Partner API for third party application integrations.
6
+ * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
7
+ *
8
+ * The version of the OpenAPI document: 2024-04-01
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ interface AWSv4Configuration {
16
+ options?: {
17
+ region?: string;
18
+ service?: string;
19
+ };
20
+ credentials?: {
21
+ accessKeyId?: string;
22
+ secretAccessKey?: string;
23
+ sessionToken?: string;
24
+ };
25
+ }
26
+ interface ConfigurationParameters {
27
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
28
+ username?: string;
29
+ password?: string;
30
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
31
+ awsv4?: AWSv4Configuration;
32
+ basePath?: string;
33
+ serverIndex?: number;
34
+ baseOptions?: any;
35
+ formDataCtor?: new () => any;
36
+ }
37
+ declare class Configuration {
38
+ /**
39
+ * parameter for apiKey security
40
+ * @param name security name
41
+ */
42
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
43
+ /**
44
+ * parameter for basic security
45
+ */
46
+ username?: string;
47
+ /**
48
+ * parameter for basic security
49
+ */
50
+ password?: string;
51
+ /**
52
+ * parameter for oauth2 security
53
+ * @param name security name
54
+ * @param scopes oauth2 scope
55
+ */
56
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
57
+ /**
58
+ * parameter for aws4 signature security
59
+ * @param {Object} AWS4Signature - AWS4 Signature security
60
+ * @param {string} options.region - aws region
61
+ * @param {string} options.service - name of the service.
62
+ * @param {string} credentials.accessKeyId - aws access key id
63
+ * @param {string} credentials.secretAccessKey - aws access key
64
+ * @param {string} credentials.sessionToken - aws session token
65
+ * @memberof Configuration
66
+ */
67
+ awsv4?: AWSv4Configuration;
68
+ /**
69
+ * override base path
70
+ */
71
+ basePath?: string;
72
+ /**
73
+ * override server index
74
+ */
75
+ serverIndex?: number;
76
+ /**
77
+ * base options for axios calls
78
+ */
79
+ baseOptions?: any;
80
+ /**
81
+ * The FormData constructor that will be used to create multipart form data
82
+ * requests. You can inject this here so that execution environments that
83
+ * do not support the FormData class can still run the generated client.
84
+ *
85
+ * @type {new () => FormData}
86
+ */
87
+ formDataCtor?: new () => any;
88
+ constructor(param?: ConfigurationParameters);
89
+ /**
90
+ * Check if the given MIME is a JSON MIME.
91
+ * JSON MIME examples:
92
+ * application/json
93
+ * application/json; charset=UTF8
94
+ * APPLICATION/JSON
95
+ * application/vnd.company+json
96
+ * @param mime - MIME (Multipurpose Internet Mail Extensions)
97
+ * @return True if the given MIME is JSON, false otherwise.
98
+ */
99
+ isJsonMime(mime: string): boolean;
100
+ }
101
+ //#endregion
102
+ //#region src/api-model/base.d.ts
103
+ interface RequestArgs {
104
+ url: string;
105
+ options: RawAxiosRequestConfig;
106
+ }
107
+ declare class BaseAPI {
108
+ protected basePath: string;
109
+ protected axios: AxiosInstance;
110
+ protected configuration: Configuration | undefined;
111
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
112
+ }
113
+ //#endregion
114
+ //#region src/api-model/models/create-notification-request.d.ts
115
+ /**
116
+ * The Selling Partner API for third party application integrations.
117
+ * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
118
+ *
119
+ * The version of the OpenAPI document: 2024-04-01
120
+ *
121
+ *
122
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
123
+ * https://openapi-generator.tech
124
+ * Do not edit the class manually.
125
+ */
126
+ /**
127
+ * The request for the `createNotification` operation.
128
+ */
129
+ interface CreateNotificationRequest {
130
+ /**
131
+ * The unique identifier of the notification template you used to onboard your application.
132
+ */
133
+ 'templateId': string;
134
+ /**
135
+ * The dynamic parameters required by the notification templated specified by `templateId`.
136
+ */
137
+ 'notificationParameters': {
138
+ [key: string]: object;
139
+ };
140
+ /**
141
+ * An encrypted marketplace identifier for the posted notification.
142
+ */
143
+ 'marketplaceId'?: string;
144
+ }
145
+ //#endregion
146
+ //#region src/api-model/models/create-notification-response.d.ts
147
+ /**
148
+ * The Selling Partner API for third party application integrations.
149
+ * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
150
+ *
151
+ * The version of the OpenAPI document: 2024-04-01
152
+ *
153
+ *
154
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
155
+ * https://openapi-generator.tech
156
+ * Do not edit the class manually.
157
+ */
158
+ /**
159
+ * The response for the `createNotification` operation.
160
+ */
161
+ interface CreateNotificationResponse {
162
+ /**
163
+ * The unique identifier assigned to each notification.
164
+ */
165
+ 'notificationId'?: string;
166
+ }
167
+ //#endregion
168
+ //#region src/api-model/models/delete-notifications-request.d.ts
169
+ /**
170
+ * The Selling Partner API for third party application integrations.
171
+ * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
172
+ *
173
+ * The version of the OpenAPI document: 2024-04-01
174
+ *
175
+ *
176
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
177
+ * https://openapi-generator.tech
178
+ * Do not edit the class manually.
179
+ */
180
+ /**
181
+ * The request for the `deleteNotifications` operation.
182
+ */
183
+ interface DeleteNotificationsRequest {
184
+ /**
185
+ * The unique identifier of the notification template you used to onboard your application.
186
+ */
187
+ 'templateId': string;
188
+ /**
189
+ * The unique identifier that maps each notification status to a reason code.
190
+ */
191
+ 'deletionReason': DeleteNotificationsRequestDeletionReasonEnum;
192
+ }
193
+ declare const DeleteNotificationsRequestDeletionReasonEnum: {
194
+ readonly IncorrectContent: "INCORRECT_CONTENT";
195
+ readonly IncorrectRecipient: "INCORRECT_RECIPIENT";
196
+ };
197
+ type DeleteNotificationsRequestDeletionReasonEnum = typeof DeleteNotificationsRequestDeletionReasonEnum[keyof typeof DeleteNotificationsRequestDeletionReasonEnum];
198
+ //#endregion
199
+ //#region src/api-model/models/error-list.d.ts
200
+ /**
201
+ * The Selling Partner API for third party application integrations.
202
+ * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
203
+ *
204
+ * The version of the OpenAPI document: 2024-04-01
205
+ *
206
+ *
207
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
208
+ * https://openapi-generator.tech
209
+ * Do not edit the class manually.
210
+ */
211
+ /**
212
+ * A list of error responses returned when a request is unsuccessful.
213
+ */
214
+ interface ErrorList {
215
+ /**
216
+ * Error response returned when the request is unsuccessful.
217
+ */
218
+ 'errors': Array<Error>;
219
+ }
220
+ //#endregion
221
+ //#region src/api-model/models/model-error.d.ts
222
+ /**
223
+ * The Selling Partner API for third party application integrations.
224
+ * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
225
+ *
226
+ * The version of the OpenAPI document: 2024-04-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
+ /**
234
+ * Error response returned when the request is unsuccessful.
235
+ */
236
+ interface ModelError {
237
+ /**
238
+ * An error code that identifies the type of error that occurred.
239
+ */
240
+ 'code': string;
241
+ /**
242
+ * A message that describes the error condition.
243
+ */
244
+ 'message': string;
245
+ /**
246
+ * Additional details that can help the caller understand or fix the issue.
247
+ */
248
+ 'details'?: string;
249
+ }
250
+ //#endregion
251
+ //#region src/api-model/models/record-action-feedback-request.d.ts
252
+ /**
253
+ * The Selling Partner API for third party application integrations.
254
+ * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
255
+ *
256
+ * The version of the OpenAPI document: 2024-04-01
257
+ *
258
+ *
259
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
260
+ * https://openapi-generator.tech
261
+ * Do not edit the class manually.
262
+ */
263
+ /**
264
+ * The request for the `recordActionFeedback` operation.
265
+ */
266
+ interface RecordActionFeedbackRequest {
267
+ /**
268
+ * The unique identifier for each notification status.
269
+ */
270
+ 'feedbackActionCode': RecordActionFeedbackRequestFeedbackActionCodeEnum;
271
+ }
272
+ declare const RecordActionFeedbackRequestFeedbackActionCodeEnum: {
273
+ readonly SellerActionCompleted: "SELLER_ACTION_COMPLETED";
274
+ };
275
+ type RecordActionFeedbackRequestFeedbackActionCodeEnum = typeof RecordActionFeedbackRequestFeedbackActionCodeEnum[keyof typeof RecordActionFeedbackRequestFeedbackActionCodeEnum];
276
+ //#endregion
277
+ //#region src/api-model/api/application-integrations-api.d.ts
278
+ /**
279
+ * ApplicationIntegrationsApi - axios parameter creator
280
+ */
281
+ declare const ApplicationIntegrationsApiAxiosParamCreator: (configuration?: Configuration) => {
282
+ /**
283
+ * Create a notification for sellers in Seller Central. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
284
+ * @param {CreateNotificationRequest} body The request body for the &#x60;createNotification&#x60; operation.
285
+ * @param {*} [options] Override http request option.
286
+ * @throws {RequiredError}
287
+ */
288
+ createNotification: (body: CreateNotificationRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
289
+ /**
290
+ * Remove your application\'s notifications from the Appstore notifications dashboard. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
291
+ * @param {DeleteNotificationsRequest} body The request body for the &#x60;deleteNotifications&#x60; operation.
292
+ * @param {*} [options] Override http request option.
293
+ * @throws {RequiredError}
294
+ */
295
+ deleteNotifications: (body: DeleteNotificationsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
296
+ /**
297
+ * Records the seller\'s response to a notification. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
298
+ * @param {string} notificationId A &#x60;notificationId&#x60; uniquely identifies a notification.
299
+ * @param {RecordActionFeedbackRequest} body The request body for the &#x60;recordActionFeedback&#x60; operation.
300
+ * @param {*} [options] Override http request option.
301
+ * @throws {RequiredError}
302
+ */
303
+ recordActionFeedback: (notificationId: string, body: RecordActionFeedbackRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
304
+ };
305
+ /**
306
+ * ApplicationIntegrationsApi - functional programming interface
307
+ */
308
+ declare const ApplicationIntegrationsApiFp: (configuration?: Configuration) => {
309
+ /**
310
+ * Create a notification for sellers in Seller Central. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
311
+ * @param {CreateNotificationRequest} body The request body for the &#x60;createNotification&#x60; operation.
312
+ * @param {*} [options] Override http request option.
313
+ * @throws {RequiredError}
314
+ */
315
+ createNotification(body: CreateNotificationRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateNotificationResponse>>;
316
+ /**
317
+ * Remove your application\'s notifications from the Appstore notifications dashboard. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
318
+ * @param {DeleteNotificationsRequest} body The request body for the &#x60;deleteNotifications&#x60; operation.
319
+ * @param {*} [options] Override http request option.
320
+ * @throws {RequiredError}
321
+ */
322
+ deleteNotifications(body: DeleteNotificationsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
323
+ /**
324
+ * Records the seller\'s response to a notification. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
325
+ * @param {string} notificationId A &#x60;notificationId&#x60; uniquely identifies a notification.
326
+ * @param {RecordActionFeedbackRequest} body The request body for the &#x60;recordActionFeedback&#x60; operation.
327
+ * @param {*} [options] Override http request option.
328
+ * @throws {RequiredError}
329
+ */
330
+ recordActionFeedback(notificationId: string, body: RecordActionFeedbackRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
331
+ };
332
+ /**
333
+ * ApplicationIntegrationsApi - factory interface
334
+ */
335
+ declare const ApplicationIntegrationsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
336
+ /**
337
+ * Create a notification for sellers in Seller Central. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
338
+ * @param {ApplicationIntegrationsApiCreateNotificationRequest} requestParameters Request parameters.
339
+ * @param {*} [options] Override http request option.
340
+ * @throws {RequiredError}
341
+ */
342
+ createNotification(requestParameters: ApplicationIntegrationsApiCreateNotificationRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateNotificationResponse>;
343
+ /**
344
+ * Remove your application\'s notifications from the Appstore notifications dashboard. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
345
+ * @param {ApplicationIntegrationsApiDeleteNotificationsRequest} requestParameters Request parameters.
346
+ * @param {*} [options] Override http request option.
347
+ * @throws {RequiredError}
348
+ */
349
+ deleteNotifications(requestParameters: ApplicationIntegrationsApiDeleteNotificationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
350
+ /**
351
+ * Records the seller\'s response to a notification. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
352
+ * @param {ApplicationIntegrationsApiRecordActionFeedbackRequest} requestParameters Request parameters.
353
+ * @param {*} [options] Override http request option.
354
+ * @throws {RequiredError}
355
+ */
356
+ recordActionFeedback(requestParameters: ApplicationIntegrationsApiRecordActionFeedbackRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
357
+ };
358
+ /**
359
+ * Request parameters for createNotification operation in ApplicationIntegrationsApi.
360
+ */
361
+ interface ApplicationIntegrationsApiCreateNotificationRequest {
362
+ /**
363
+ * The request body for the &#x60;createNotification&#x60; operation.
364
+ */
365
+ readonly body: CreateNotificationRequest;
366
+ }
367
+ /**
368
+ * Request parameters for deleteNotifications operation in ApplicationIntegrationsApi.
369
+ */
370
+ interface ApplicationIntegrationsApiDeleteNotificationsRequest {
371
+ /**
372
+ * The request body for the &#x60;deleteNotifications&#x60; operation.
373
+ */
374
+ readonly body: DeleteNotificationsRequest;
375
+ }
376
+ /**
377
+ * Request parameters for recordActionFeedback operation in ApplicationIntegrationsApi.
378
+ */
379
+ interface ApplicationIntegrationsApiRecordActionFeedbackRequest {
380
+ /**
381
+ * A &#x60;notificationId&#x60; uniquely identifies a notification.
382
+ */
383
+ readonly notificationId: string;
384
+ /**
385
+ * The request body for the &#x60;recordActionFeedback&#x60; operation.
386
+ */
387
+ readonly body: RecordActionFeedbackRequest;
388
+ }
389
+ /**
390
+ * ApplicationIntegrationsApi - object-oriented interface
391
+ */
392
+ declare class ApplicationIntegrationsApi extends BaseAPI {
393
+ /**
394
+ * Create a notification for sellers in Seller Central. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
395
+ * @param {ApplicationIntegrationsApiCreateNotificationRequest} requestParameters Request parameters.
396
+ * @param {*} [options] Override http request option.
397
+ * @throws {RequiredError}
398
+ */
399
+ createNotification(requestParameters: ApplicationIntegrationsApiCreateNotificationRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateNotificationResponse, any, {}>>;
400
+ /**
401
+ * Remove your application\'s notifications from the Appstore notifications dashboard. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
402
+ * @param {ApplicationIntegrationsApiDeleteNotificationsRequest} requestParameters Request parameters.
403
+ * @param {*} [options] Override http request option.
404
+ * @throws {RequiredError}
405
+ */
406
+ deleteNotifications(requestParameters: ApplicationIntegrationsApiDeleteNotificationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
407
+ /**
408
+ * Records the seller\'s response to a notification. **Usage Plan:** | Rate (requests per second) | Burst | | ---- | ---- | | 1 | 5 | The `x-amzn-RateLimit-Limit` response header returns the usage plan rate limits that were applied to the requested operation, when available. The preceding table indicates the default rate and burst values for this operation. Sellers whose business demands require higher throughput may have higher rate and burst values than those shown here. For more information, refer to [Usage Plans and Rate Limits in the Selling Partner API](https://developer-docs.amazon.com/sp-api/docs/usage-plans-and-rate-limits-in-the-sp-api).
409
+ * @param {ApplicationIntegrationsApiRecordActionFeedbackRequest} requestParameters Request parameters.
410
+ * @param {*} [options] Override http request option.
411
+ * @throws {RequiredError}
412
+ */
413
+ recordActionFeedback(requestParameters: ApplicationIntegrationsApiRecordActionFeedbackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
414
+ }
415
+ //#endregion
416
+ //#region src/client.d.ts
417
+ declare const clientRateLimits: RateLimit[];
418
+ declare class ApplicationIntegrationsApiClient extends ApplicationIntegrationsApi {
419
+ constructor(configuration: ClientConfiguration);
420
+ }
421
+ //#endregion
422
+ export { ApplicationIntegrationsApi, ApplicationIntegrationsApiAxiosParamCreator, ApplicationIntegrationsApiClient, ApplicationIntegrationsApiCreateNotificationRequest, ApplicationIntegrationsApiDeleteNotificationsRequest, ApplicationIntegrationsApiFactory, ApplicationIntegrationsApiFp, ApplicationIntegrationsApiRecordActionFeedbackRequest, CreateNotificationRequest, CreateNotificationResponse, DeleteNotificationsRequest, DeleteNotificationsRequestDeletionReasonEnum, ErrorList, ModelError, RecordActionFeedbackRequest, RecordActionFeedbackRequestFeedbackActionCodeEnum, clientRateLimits };
423
+ //# sourceMappingURL=index.d.ts.map