@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
@@ -1,24 +0,0 @@
1
- /**
2
- * The Selling Partner API for third party application integrations.
3
- * With the AppIntegrations API v2024-04-01, you can send notifications to Amazon Selling Partners and display the notifications in Seller Central.
4
- *
5
- * The version of the OpenAPI document: 2024-04-01
6
- *
7
- *
8
- * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
- * https://openapi-generator.tech
10
- * Do not edit the class manually.
11
- */
12
- /**
13
- * The request for the `recordActionFeedback` operation.
14
- */
15
- export interface RecordActionFeedbackRequest {
16
- /**
17
- * The unique identifier for each notification status.
18
- */
19
- 'feedbackActionCode': RecordActionFeedbackRequestFeedbackActionCodeEnum;
20
- }
21
- export declare const RecordActionFeedbackRequestFeedbackActionCodeEnum: {
22
- readonly SellerActionCompleted: "SELLER_ACTION_COMPLETED";
23
- };
24
- export type RecordActionFeedbackRequestFeedbackActionCodeEnum = typeof RecordActionFeedbackRequestFeedbackActionCodeEnum[keyof typeof RecordActionFeedbackRequestFeedbackActionCodeEnum];
@@ -1,6 +0,0 @@
1
- import { type ClientConfiguration, type RateLimit } from '@sp-api-sdk/common';
2
- import { ApplicationIntegrationsApi } from './api-model';
3
- export declare const clientRateLimits: RateLimit[];
4
- export declare class ApplicationIntegrationsApiClient extends ApplicationIntegrationsApi {
5
- constructor(configuration: ClientConfiguration);
6
- }
@@ -1,3 +0,0 @@
1
- export * from './client';
2
- export * from './api-model/api';
3
- export * from './api-model/models';