@aws-sdk/client-sns 3.948.0 → 3.953.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist-cjs/index.js +591 -409
  2. package/dist-cjs/runtimeConfig.shared.js +7 -6
  3. package/dist-es/commands/AddPermissionCommand.js +2 -2
  4. package/dist-es/commands/CheckIfPhoneNumberIsOptedOutCommand.js +2 -2
  5. package/dist-es/commands/ConfirmSubscriptionCommand.js +2 -2
  6. package/dist-es/commands/CreatePlatformApplicationCommand.js +2 -2
  7. package/dist-es/commands/CreatePlatformEndpointCommand.js +2 -2
  8. package/dist-es/commands/CreateSMSSandboxPhoneNumberCommand.js +2 -2
  9. package/dist-es/commands/CreateTopicCommand.js +2 -2
  10. package/dist-es/commands/DeleteEndpointCommand.js +2 -2
  11. package/dist-es/commands/DeletePlatformApplicationCommand.js +2 -2
  12. package/dist-es/commands/DeleteSMSSandboxPhoneNumberCommand.js +2 -2
  13. package/dist-es/commands/DeleteTopicCommand.js +2 -2
  14. package/dist-es/commands/GetDataProtectionPolicyCommand.js +2 -2
  15. package/dist-es/commands/GetEndpointAttributesCommand.js +2 -2
  16. package/dist-es/commands/GetPlatformApplicationAttributesCommand.js +2 -2
  17. package/dist-es/commands/GetSMSAttributesCommand.js +2 -2
  18. package/dist-es/commands/GetSMSSandboxAccountStatusCommand.js +2 -2
  19. package/dist-es/commands/GetSubscriptionAttributesCommand.js +2 -2
  20. package/dist-es/commands/GetTopicAttributesCommand.js +2 -2
  21. package/dist-es/commands/ListEndpointsByPlatformApplicationCommand.js +2 -2
  22. package/dist-es/commands/ListOriginationNumbersCommand.js +2 -2
  23. package/dist-es/commands/ListPhoneNumbersOptedOutCommand.js +2 -2
  24. package/dist-es/commands/ListPlatformApplicationsCommand.js +2 -2
  25. package/dist-es/commands/ListSMSSandboxPhoneNumbersCommand.js +2 -2
  26. package/dist-es/commands/ListSubscriptionsByTopicCommand.js +2 -2
  27. package/dist-es/commands/ListSubscriptionsCommand.js +2 -2
  28. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  29. package/dist-es/commands/ListTopicsCommand.js +2 -2
  30. package/dist-es/commands/OptInPhoneNumberCommand.js +2 -2
  31. package/dist-es/commands/PublishBatchCommand.js +2 -2
  32. package/dist-es/commands/PublishCommand.js +2 -2
  33. package/dist-es/commands/PutDataProtectionPolicyCommand.js +2 -2
  34. package/dist-es/commands/RemovePermissionCommand.js +2 -2
  35. package/dist-es/commands/SetEndpointAttributesCommand.js +2 -2
  36. package/dist-es/commands/SetPlatformApplicationAttributesCommand.js +2 -2
  37. package/dist-es/commands/SetSMSAttributesCommand.js +2 -2
  38. package/dist-es/commands/SetSubscriptionAttributesCommand.js +2 -2
  39. package/dist-es/commands/SetTopicAttributesCommand.js +2 -2
  40. package/dist-es/commands/SubscribeCommand.js +2 -2
  41. package/dist-es/commands/TagResourceCommand.js +2 -2
  42. package/dist-es/commands/UnsubscribeCommand.js +2 -2
  43. package/dist-es/commands/UntagResourceCommand.js +2 -2
  44. package/dist-es/commands/VerifySMSSandboxPhoneNumberCommand.js +2 -2
  45. package/dist-es/index.js +1 -0
  46. package/dist-es/runtimeConfig.shared.js +7 -6
  47. package/dist-es/schemas/schemas_0.js +298 -277
  48. package/dist-types/SNSClient.d.ts +1 -10
  49. package/dist-types/index.d.ts +1 -0
  50. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  51. package/dist-types/runtimeConfig.d.ts +6 -2
  52. package/dist-types/runtimeConfig.native.d.ts +6 -2
  53. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  54. package/dist-types/schemas/schemas_0.d.ts +162 -185
  55. package/dist-types/ts3.4/SNSClient.d.ts +0 -4
  56. package/dist-types/ts3.4/index.d.ts +1 -0
  57. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  58. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  59. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  60. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  61. package/dist-types/ts3.4/schemas/schemas_0.d.ts +161 -187
  62. package/package.json +34 -34
@@ -1,3 +1,4 @@
1
+ import { AwsQueryProtocol } from "@aws-sdk/core/protocols";
1
2
  import { SNSClientConfig } from "./SNSClient";
2
3
  export declare const getRuntimeConfig: (config: SNSClientConfig) => {
3
4
  apiVersion: string;
@@ -14,10 +15,14 @@ export declare const getRuntimeConfig: (config: SNSClientConfig) => {
14
15
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SNSHttpAuthSchemeProvider;
15
16
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
17
  logger: import("@smithy/types").Logger;
17
- protocol: import("@smithy/types").ClientProtocol<
18
- import("@smithy/types").HttpRequest,
19
- import("@smithy/types").HttpResponse
20
- >;
18
+ protocol:
19
+ | import("@smithy/types").ClientProtocol<any, any>
20
+ | import("@smithy/types").ClientProtocolCtor<any, any>
21
+ | typeof AwsQueryProtocol;
22
+ protocolSettings: {
23
+ [setting: string]: unknown;
24
+ defaultNamespace?: string;
25
+ };
21
26
  serviceId: string;
22
27
  urlParser: import("@smithy/types").UrlParser;
23
28
  utf8Decoder: import("@smithy/types").Decoder;
@@ -1,192 +1,166 @@
1
1
  import {
2
2
  StaticErrorSchema,
3
- StaticListSchema,
4
- StaticMapSchema,
5
3
  StaticOperationSchema,
6
- StaticSimpleSchema,
7
4
  StaticStructureSchema,
8
5
  } from "@smithy/types";
9
- export declare var PhoneNumber: StaticSimpleSchema;
10
- export declare var PhoneNumberString: StaticSimpleSchema;
11
- export declare var AddPermissionInput: StaticStructureSchema;
12
- export declare var AuthorizationErrorException: StaticErrorSchema;
13
- export declare var BatchEntryIdsNotDistinctException: StaticErrorSchema;
14
- export declare var BatchRequestTooLongException: StaticErrorSchema;
15
- export declare var BatchResultErrorEntry: StaticStructureSchema;
16
- export declare var CheckIfPhoneNumberIsOptedOutInput: StaticStructureSchema;
17
- export declare var CheckIfPhoneNumberIsOptedOutResponse: StaticStructureSchema;
18
- export declare var ConcurrentAccessException: StaticErrorSchema;
19
- export declare var ConfirmSubscriptionInput: StaticStructureSchema;
20
- export declare var ConfirmSubscriptionResponse: StaticStructureSchema;
21
- export declare var CreateEndpointResponse: StaticStructureSchema;
22
- export declare var CreatePlatformApplicationInput: StaticStructureSchema;
23
- export declare var CreatePlatformApplicationResponse: StaticStructureSchema;
24
- export declare var CreatePlatformEndpointInput: StaticStructureSchema;
25
- export declare var CreateSMSSandboxPhoneNumberInput: StaticStructureSchema;
26
- export declare var CreateSMSSandboxPhoneNumberResult: StaticStructureSchema;
27
- export declare var CreateTopicInput: StaticStructureSchema;
28
- export declare var CreateTopicResponse: StaticStructureSchema;
29
- export declare var DeleteEndpointInput: StaticStructureSchema;
30
- export declare var DeletePlatformApplicationInput: StaticStructureSchema;
31
- export declare var DeleteSMSSandboxPhoneNumberInput: StaticStructureSchema;
32
- export declare var DeleteSMSSandboxPhoneNumberResult: StaticStructureSchema;
33
- export declare var DeleteTopicInput: StaticStructureSchema;
34
- export declare var EmptyBatchRequestException: StaticErrorSchema;
35
- export declare var Endpoint: StaticStructureSchema;
36
- export declare var EndpointDisabledException: StaticErrorSchema;
37
- export declare var FilterPolicyLimitExceededException: StaticErrorSchema;
38
- export declare var GetDataProtectionPolicyInput: StaticStructureSchema;
39
- export declare var GetDataProtectionPolicyResponse: StaticStructureSchema;
40
- export declare var GetEndpointAttributesInput: StaticStructureSchema;
41
- export declare var GetEndpointAttributesResponse: StaticStructureSchema;
42
- export declare var GetPlatformApplicationAttributesInput: StaticStructureSchema;
43
- export declare var GetPlatformApplicationAttributesResponse: StaticStructureSchema;
44
- export declare var GetSMSAttributesInput: StaticStructureSchema;
45
- export declare var GetSMSAttributesResponse: StaticStructureSchema;
46
- export declare var GetSMSSandboxAccountStatusInput: StaticStructureSchema;
47
- export declare var GetSMSSandboxAccountStatusResult: StaticStructureSchema;
48
- export declare var GetSubscriptionAttributesInput: StaticStructureSchema;
49
- export declare var GetSubscriptionAttributesResponse: StaticStructureSchema;
50
- export declare var GetTopicAttributesInput: StaticStructureSchema;
51
- export declare var GetTopicAttributesResponse: StaticStructureSchema;
52
- export declare var InternalErrorException: StaticErrorSchema;
53
- export declare var InvalidBatchEntryIdException: StaticErrorSchema;
54
- export declare var InvalidParameterException: StaticErrorSchema;
55
- export declare var InvalidParameterValueException: StaticErrorSchema;
56
- export declare var InvalidSecurityException: StaticErrorSchema;
57
- export declare var InvalidStateException: StaticErrorSchema;
58
- export declare var KMSAccessDeniedException: StaticErrorSchema;
59
- export declare var KMSDisabledException: StaticErrorSchema;
60
- export declare var KMSInvalidStateException: StaticErrorSchema;
61
- export declare var KMSNotFoundException: StaticErrorSchema;
62
- export declare var KMSOptInRequired: StaticErrorSchema;
63
- export declare var KMSThrottlingException: StaticErrorSchema;
64
- export declare var ListEndpointsByPlatformApplicationInput: StaticStructureSchema;
65
- export declare var ListEndpointsByPlatformApplicationResponse: StaticStructureSchema;
66
- export declare var ListOriginationNumbersRequest: StaticStructureSchema;
67
- export declare var ListOriginationNumbersResult: StaticStructureSchema;
68
- export declare var ListPhoneNumbersOptedOutInput: StaticStructureSchema;
69
- export declare var ListPhoneNumbersOptedOutResponse: StaticStructureSchema;
70
- export declare var ListPlatformApplicationsInput: StaticStructureSchema;
71
- export declare var ListPlatformApplicationsResponse: StaticStructureSchema;
72
- export declare var ListSMSSandboxPhoneNumbersInput: StaticStructureSchema;
73
- export declare var ListSMSSandboxPhoneNumbersResult: StaticStructureSchema;
74
- export declare var ListSubscriptionsByTopicInput: StaticStructureSchema;
75
- export declare var ListSubscriptionsByTopicResponse: StaticStructureSchema;
76
- export declare var ListSubscriptionsInput: StaticStructureSchema;
77
- export declare var ListSubscriptionsResponse: StaticStructureSchema;
78
- export declare var ListTagsForResourceRequest: StaticStructureSchema;
79
- export declare var ListTagsForResourceResponse: StaticStructureSchema;
80
- export declare var ListTopicsInput: StaticStructureSchema;
81
- export declare var ListTopicsResponse: StaticStructureSchema;
82
- export declare var MessageAttributeValue: StaticStructureSchema;
83
- export declare var NotFoundException: StaticErrorSchema;
84
- export declare var OptedOutException: StaticErrorSchema;
85
- export declare var OptInPhoneNumberInput: StaticStructureSchema;
86
- export declare var OptInPhoneNumberResponse: StaticStructureSchema;
87
- export declare var PhoneNumberInformation: StaticStructureSchema;
88
- export declare var PlatformApplication: StaticStructureSchema;
89
- export declare var PlatformApplicationDisabledException: StaticErrorSchema;
90
- export declare var PublishBatchInput: StaticStructureSchema;
91
- export declare var PublishBatchRequestEntry: StaticStructureSchema;
92
- export declare var PublishBatchResponse: StaticStructureSchema;
93
- export declare var PublishBatchResultEntry: StaticStructureSchema;
94
- export declare var PublishInput: StaticStructureSchema;
95
- export declare var PublishResponse: StaticStructureSchema;
96
- export declare var PutDataProtectionPolicyInput: StaticStructureSchema;
97
- export declare var RemovePermissionInput: StaticStructureSchema;
98
- export declare var ReplayLimitExceededException: StaticErrorSchema;
99
- export declare var ResourceNotFoundException: StaticErrorSchema;
100
- export declare var SetEndpointAttributesInput: StaticStructureSchema;
101
- export declare var SetPlatformApplicationAttributesInput: StaticStructureSchema;
102
- export declare var SetSMSAttributesInput: StaticStructureSchema;
103
- export declare var SetSMSAttributesResponse: StaticStructureSchema;
104
- export declare var SetSubscriptionAttributesInput: StaticStructureSchema;
105
- export declare var SetTopicAttributesInput: StaticStructureSchema;
106
- export declare var SMSSandboxPhoneNumber: StaticStructureSchema;
107
- export declare var StaleTagException: StaticErrorSchema;
108
- export declare var SubscribeInput: StaticStructureSchema;
109
- export declare var SubscribeResponse: StaticStructureSchema;
110
- export declare var Subscription: StaticStructureSchema;
111
- export declare var SubscriptionLimitExceededException: StaticErrorSchema;
112
- export declare var Tag: StaticStructureSchema;
113
- export declare var TagLimitExceededException: StaticErrorSchema;
114
- export declare var TagPolicyException: StaticErrorSchema;
115
- export declare var TagResourceRequest: StaticStructureSchema;
116
- export declare var TagResourceResponse: StaticStructureSchema;
117
- export declare var ThrottledException: StaticErrorSchema;
118
- export declare var TooManyEntriesInBatchRequestException: StaticErrorSchema;
119
- export declare var Topic: StaticStructureSchema;
120
- export declare var TopicLimitExceededException: StaticErrorSchema;
121
- export declare var UnsubscribeInput: StaticStructureSchema;
122
- export declare var UntagResourceRequest: StaticStructureSchema;
123
- export declare var UntagResourceResponse: StaticStructureSchema;
124
- export declare var UserErrorException: StaticErrorSchema;
125
- export declare var ValidationException: StaticErrorSchema;
126
- export declare var VerificationException: StaticErrorSchema;
127
- export declare var VerifySMSSandboxPhoneNumberInput: StaticStructureSchema;
128
- export declare var VerifySMSSandboxPhoneNumberResult: StaticStructureSchema;
129
- export declare var __Unit: "unit";
130
- export declare var SNSServiceException: StaticErrorSchema;
131
- export declare var ActionsList: number;
132
- export declare var BatchResultErrorEntryList: StaticListSchema;
133
- export declare var DelegatesList: number;
134
- export declare var ListOfEndpoints: StaticListSchema;
135
- export declare var ListOfPlatformApplications: StaticListSchema;
136
- export declare var ListString: number;
137
- export declare var NumberCapabilityList: number;
138
- export declare var PhoneNumberInformationList: StaticListSchema;
139
- export declare var PhoneNumberList: StaticListSchema;
140
- export declare var PublishBatchRequestEntryList: StaticListSchema;
141
- export declare var PublishBatchResultEntryList: StaticListSchema;
142
- export declare var SMSSandboxPhoneNumberList: StaticListSchema;
143
- export declare var SubscriptionsList: StaticListSchema;
144
- export declare var TagKeyList: number;
145
- export declare var TagList: StaticListSchema;
146
- export declare var TopicsList: StaticListSchema;
147
- export declare var MapStringToString: number;
148
- export declare var MessageAttributeMap: StaticMapSchema;
149
- export declare var SubscriptionAttributesMap: number;
150
- export declare var TopicAttributesMap: number;
151
- export declare var AddPermission: StaticOperationSchema;
152
- export declare var CheckIfPhoneNumberIsOptedOut: StaticOperationSchema;
153
- export declare var ConfirmSubscription: StaticOperationSchema;
154
- export declare var CreatePlatformApplication: StaticOperationSchema;
155
- export declare var CreatePlatformEndpoint: StaticOperationSchema;
156
- export declare var CreateSMSSandboxPhoneNumber: StaticOperationSchema;
157
- export declare var CreateTopic: StaticOperationSchema;
158
- export declare var DeleteEndpoint: StaticOperationSchema;
159
- export declare var DeletePlatformApplication: StaticOperationSchema;
160
- export declare var DeleteSMSSandboxPhoneNumber: StaticOperationSchema;
161
- export declare var DeleteTopic: StaticOperationSchema;
162
- export declare var GetDataProtectionPolicy: StaticOperationSchema;
163
- export declare var GetEndpointAttributes: StaticOperationSchema;
164
- export declare var GetPlatformApplicationAttributes: StaticOperationSchema;
165
- export declare var GetSMSAttributes: StaticOperationSchema;
166
- export declare var GetSMSSandboxAccountStatus: StaticOperationSchema;
167
- export declare var GetSubscriptionAttributes: StaticOperationSchema;
168
- export declare var GetTopicAttributes: StaticOperationSchema;
169
- export declare var ListEndpointsByPlatformApplication: StaticOperationSchema;
170
- export declare var ListOriginationNumbers: StaticOperationSchema;
171
- export declare var ListPhoneNumbersOptedOut: StaticOperationSchema;
172
- export declare var ListPlatformApplications: StaticOperationSchema;
173
- export declare var ListSMSSandboxPhoneNumbers: StaticOperationSchema;
174
- export declare var ListSubscriptions: StaticOperationSchema;
175
- export declare var ListSubscriptionsByTopic: StaticOperationSchema;
176
- export declare var ListTagsForResource: StaticOperationSchema;
177
- export declare var ListTopics: StaticOperationSchema;
178
- export declare var OptInPhoneNumber: StaticOperationSchema;
179
- export declare var Publish: StaticOperationSchema;
180
- export declare var PublishBatch: StaticOperationSchema;
181
- export declare var PutDataProtectionPolicy: StaticOperationSchema;
182
- export declare var RemovePermission: StaticOperationSchema;
183
- export declare var SetEndpointAttributes: StaticOperationSchema;
184
- export declare var SetPlatformApplicationAttributes: StaticOperationSchema;
185
- export declare var SetSMSAttributes: StaticOperationSchema;
186
- export declare var SetSubscriptionAttributes: StaticOperationSchema;
187
- export declare var SetTopicAttributes: StaticOperationSchema;
188
- export declare var Subscribe: StaticOperationSchema;
189
- export declare var TagResource: StaticOperationSchema;
190
- export declare var Unsubscribe: StaticOperationSchema;
191
- export declare var UntagResource: StaticOperationSchema;
192
- export declare var VerifySMSSandboxPhoneNumber: StaticOperationSchema;
6
+ export declare var AddPermissionInput$: StaticStructureSchema;
7
+ export declare var AuthorizationErrorException$: StaticErrorSchema;
8
+ export declare var BatchEntryIdsNotDistinctException$: StaticErrorSchema;
9
+ export declare var BatchRequestTooLongException$: StaticErrorSchema;
10
+ export declare var BatchResultErrorEntry$: StaticStructureSchema;
11
+ export declare var CheckIfPhoneNumberIsOptedOutInput$: StaticStructureSchema;
12
+ export declare var CheckIfPhoneNumberIsOptedOutResponse$: StaticStructureSchema;
13
+ export declare var ConcurrentAccessException$: StaticErrorSchema;
14
+ export declare var ConfirmSubscriptionInput$: StaticStructureSchema;
15
+ export declare var ConfirmSubscriptionResponse$: StaticStructureSchema;
16
+ export declare var CreateEndpointResponse$: StaticStructureSchema;
17
+ export declare var CreatePlatformApplicationInput$: StaticStructureSchema;
18
+ export declare var CreatePlatformApplicationResponse$: StaticStructureSchema;
19
+ export declare var CreatePlatformEndpointInput$: StaticStructureSchema;
20
+ export declare var CreateSMSSandboxPhoneNumberInput$: StaticStructureSchema;
21
+ export declare var CreateSMSSandboxPhoneNumberResult$: StaticStructureSchema;
22
+ export declare var CreateTopicInput$: StaticStructureSchema;
23
+ export declare var CreateTopicResponse$: StaticStructureSchema;
24
+ export declare var DeleteEndpointInput$: StaticStructureSchema;
25
+ export declare var DeletePlatformApplicationInput$: StaticStructureSchema;
26
+ export declare var DeleteSMSSandboxPhoneNumberInput$: StaticStructureSchema;
27
+ export declare var DeleteSMSSandboxPhoneNumberResult$: StaticStructureSchema;
28
+ export declare var DeleteTopicInput$: StaticStructureSchema;
29
+ export declare var EmptyBatchRequestException$: StaticErrorSchema;
30
+ export declare var Endpoint$: StaticStructureSchema;
31
+ export declare var EndpointDisabledException$: StaticErrorSchema;
32
+ export declare var FilterPolicyLimitExceededException$: StaticErrorSchema;
33
+ export declare var GetDataProtectionPolicyInput$: StaticStructureSchema;
34
+ export declare var GetDataProtectionPolicyResponse$: StaticStructureSchema;
35
+ export declare var GetEndpointAttributesInput$: StaticStructureSchema;
36
+ export declare var GetEndpointAttributesResponse$: StaticStructureSchema;
37
+ export declare var GetPlatformApplicationAttributesInput$: StaticStructureSchema;
38
+ export declare var GetPlatformApplicationAttributesResponse$: StaticStructureSchema;
39
+ export declare var GetSMSAttributesInput$: StaticStructureSchema;
40
+ export declare var GetSMSAttributesResponse$: StaticStructureSchema;
41
+ export declare var GetSMSSandboxAccountStatusInput$: StaticStructureSchema;
42
+ export declare var GetSMSSandboxAccountStatusResult$: StaticStructureSchema;
43
+ export declare var GetSubscriptionAttributesInput$: StaticStructureSchema;
44
+ export declare var GetSubscriptionAttributesResponse$: StaticStructureSchema;
45
+ export declare var GetTopicAttributesInput$: StaticStructureSchema;
46
+ export declare var GetTopicAttributesResponse$: StaticStructureSchema;
47
+ export declare var InternalErrorException$: StaticErrorSchema;
48
+ export declare var InvalidBatchEntryIdException$: StaticErrorSchema;
49
+ export declare var InvalidParameterException$: StaticErrorSchema;
50
+ export declare var InvalidParameterValueException$: StaticErrorSchema;
51
+ export declare var InvalidSecurityException$: StaticErrorSchema;
52
+ export declare var InvalidStateException$: StaticErrorSchema;
53
+ export declare var KMSAccessDeniedException$: StaticErrorSchema;
54
+ export declare var KMSDisabledException$: StaticErrorSchema;
55
+ export declare var KMSInvalidStateException$: StaticErrorSchema;
56
+ export declare var KMSNotFoundException$: StaticErrorSchema;
57
+ export declare var KMSOptInRequired$: StaticErrorSchema;
58
+ export declare var KMSThrottlingException$: StaticErrorSchema;
59
+ export declare var ListEndpointsByPlatformApplicationInput$: StaticStructureSchema;
60
+ export declare var ListEndpointsByPlatformApplicationResponse$: StaticStructureSchema;
61
+ export declare var ListOriginationNumbersRequest$: StaticStructureSchema;
62
+ export declare var ListOriginationNumbersResult$: StaticStructureSchema;
63
+ export declare var ListPhoneNumbersOptedOutInput$: StaticStructureSchema;
64
+ export declare var ListPhoneNumbersOptedOutResponse$: StaticStructureSchema;
65
+ export declare var ListPlatformApplicationsInput$: StaticStructureSchema;
66
+ export declare var ListPlatformApplicationsResponse$: StaticStructureSchema;
67
+ export declare var ListSMSSandboxPhoneNumbersInput$: StaticStructureSchema;
68
+ export declare var ListSMSSandboxPhoneNumbersResult$: StaticStructureSchema;
69
+ export declare var ListSubscriptionsByTopicInput$: StaticStructureSchema;
70
+ export declare var ListSubscriptionsByTopicResponse$: StaticStructureSchema;
71
+ export declare var ListSubscriptionsInput$: StaticStructureSchema;
72
+ export declare var ListSubscriptionsResponse$: StaticStructureSchema;
73
+ export declare var ListTagsForResourceRequest$: StaticStructureSchema;
74
+ export declare var ListTagsForResourceResponse$: StaticStructureSchema;
75
+ export declare var ListTopicsInput$: StaticStructureSchema;
76
+ export declare var ListTopicsResponse$: StaticStructureSchema;
77
+ export declare var MessageAttributeValue$: StaticStructureSchema;
78
+ export declare var NotFoundException$: StaticErrorSchema;
79
+ export declare var OptedOutException$: StaticErrorSchema;
80
+ export declare var OptInPhoneNumberInput$: StaticStructureSchema;
81
+ export declare var OptInPhoneNumberResponse$: StaticStructureSchema;
82
+ export declare var PhoneNumberInformation$: StaticStructureSchema;
83
+ export declare var PlatformApplication$: StaticStructureSchema;
84
+ export declare var PlatformApplicationDisabledException$: StaticErrorSchema;
85
+ export declare var PublishBatchInput$: StaticStructureSchema;
86
+ export declare var PublishBatchRequestEntry$: StaticStructureSchema;
87
+ export declare var PublishBatchResponse$: StaticStructureSchema;
88
+ export declare var PublishBatchResultEntry$: StaticStructureSchema;
89
+ export declare var PublishInput$: StaticStructureSchema;
90
+ export declare var PublishResponse$: StaticStructureSchema;
91
+ export declare var PutDataProtectionPolicyInput$: StaticStructureSchema;
92
+ export declare var RemovePermissionInput$: StaticStructureSchema;
93
+ export declare var ReplayLimitExceededException$: StaticErrorSchema;
94
+ export declare var ResourceNotFoundException$: StaticErrorSchema;
95
+ export declare var SetEndpointAttributesInput$: StaticStructureSchema;
96
+ export declare var SetPlatformApplicationAttributesInput$: StaticStructureSchema;
97
+ export declare var SetSMSAttributesInput$: StaticStructureSchema;
98
+ export declare var SetSMSAttributesResponse$: StaticStructureSchema;
99
+ export declare var SetSubscriptionAttributesInput$: StaticStructureSchema;
100
+ export declare var SetTopicAttributesInput$: StaticStructureSchema;
101
+ export declare var SMSSandboxPhoneNumber$: StaticStructureSchema;
102
+ export declare var StaleTagException$: StaticErrorSchema;
103
+ export declare var SubscribeInput$: StaticStructureSchema;
104
+ export declare var SubscribeResponse$: StaticStructureSchema;
105
+ export declare var Subscription$: StaticStructureSchema;
106
+ export declare var SubscriptionLimitExceededException$: StaticErrorSchema;
107
+ export declare var Tag$: StaticStructureSchema;
108
+ export declare var TagLimitExceededException$: StaticErrorSchema;
109
+ export declare var TagPolicyException$: StaticErrorSchema;
110
+ export declare var TagResourceRequest$: StaticStructureSchema;
111
+ export declare var TagResourceResponse$: StaticStructureSchema;
112
+ export declare var ThrottledException$: StaticErrorSchema;
113
+ export declare var TooManyEntriesInBatchRequestException$: StaticErrorSchema;
114
+ export declare var Topic$: StaticStructureSchema;
115
+ export declare var TopicLimitExceededException$: StaticErrorSchema;
116
+ export declare var UnsubscribeInput$: StaticStructureSchema;
117
+ export declare var UntagResourceRequest$: StaticStructureSchema;
118
+ export declare var UntagResourceResponse$: StaticStructureSchema;
119
+ export declare var UserErrorException$: StaticErrorSchema;
120
+ export declare var ValidationException$: StaticErrorSchema;
121
+ export declare var VerificationException$: StaticErrorSchema;
122
+ export declare var VerifySMSSandboxPhoneNumberInput$: StaticStructureSchema;
123
+ export declare var VerifySMSSandboxPhoneNumberResult$: StaticStructureSchema;
124
+ export declare var SNSServiceException$: StaticErrorSchema;
125
+ export declare var AddPermission$: StaticOperationSchema;
126
+ export declare var CheckIfPhoneNumberIsOptedOut$: StaticOperationSchema;
127
+ export declare var ConfirmSubscription$: StaticOperationSchema;
128
+ export declare var CreatePlatformApplication$: StaticOperationSchema;
129
+ export declare var CreatePlatformEndpoint$: StaticOperationSchema;
130
+ export declare var CreateSMSSandboxPhoneNumber$: StaticOperationSchema;
131
+ export declare var CreateTopic$: StaticOperationSchema;
132
+ export declare var DeleteEndpoint$: StaticOperationSchema;
133
+ export declare var DeletePlatformApplication$: StaticOperationSchema;
134
+ export declare var DeleteSMSSandboxPhoneNumber$: StaticOperationSchema;
135
+ export declare var DeleteTopic$: StaticOperationSchema;
136
+ export declare var GetDataProtectionPolicy$: StaticOperationSchema;
137
+ export declare var GetEndpointAttributes$: StaticOperationSchema;
138
+ export declare var GetPlatformApplicationAttributes$: StaticOperationSchema;
139
+ export declare var GetSMSAttributes$: StaticOperationSchema;
140
+ export declare var GetSMSSandboxAccountStatus$: StaticOperationSchema;
141
+ export declare var GetSubscriptionAttributes$: StaticOperationSchema;
142
+ export declare var GetTopicAttributes$: StaticOperationSchema;
143
+ export declare var ListEndpointsByPlatformApplication$: StaticOperationSchema;
144
+ export declare var ListOriginationNumbers$: StaticOperationSchema;
145
+ export declare var ListPhoneNumbersOptedOut$: StaticOperationSchema;
146
+ export declare var ListPlatformApplications$: StaticOperationSchema;
147
+ export declare var ListSMSSandboxPhoneNumbers$: StaticOperationSchema;
148
+ export declare var ListSubscriptions$: StaticOperationSchema;
149
+ export declare var ListSubscriptionsByTopic$: StaticOperationSchema;
150
+ export declare var ListTagsForResource$: StaticOperationSchema;
151
+ export declare var ListTopics$: StaticOperationSchema;
152
+ export declare var OptInPhoneNumber$: StaticOperationSchema;
153
+ export declare var Publish$: StaticOperationSchema;
154
+ export declare var PublishBatch$: StaticOperationSchema;
155
+ export declare var PutDataProtectionPolicy$: StaticOperationSchema;
156
+ export declare var RemovePermission$: StaticOperationSchema;
157
+ export declare var SetEndpointAttributes$: StaticOperationSchema;
158
+ export declare var SetPlatformApplicationAttributes$: StaticOperationSchema;
159
+ export declare var SetSMSAttributes$: StaticOperationSchema;
160
+ export declare var SetSubscriptionAttributes$: StaticOperationSchema;
161
+ export declare var SetTopicAttributes$: StaticOperationSchema;
162
+ export declare var Subscribe$: StaticOperationSchema;
163
+ export declare var TagResource$: StaticOperationSchema;
164
+ export declare var Unsubscribe$: StaticOperationSchema;
165
+ export declare var UntagResource$: StaticOperationSchema;
166
+ export declare var VerifySMSSandboxPhoneNumber$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sns",
3
3
  "description": "AWS SDK for JavaScript Sns Client for Node.js, Browser and React Native",
4
- "version": "3.948.0",
4
+ "version": "3.953.0",
5
5
  "scripts": {
6
- "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
6
+ "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-sns",
8
8
  "build:es": "tsc -p tsconfig.es.json",
9
9
  "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
@@ -21,41 +21,41 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "3.947.0",
25
- "@aws-sdk/credential-provider-node": "3.948.0",
26
- "@aws-sdk/middleware-host-header": "3.936.0",
27
- "@aws-sdk/middleware-logger": "3.936.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.948.0",
29
- "@aws-sdk/middleware-user-agent": "3.947.0",
30
- "@aws-sdk/region-config-resolver": "3.936.0",
31
- "@aws-sdk/types": "3.936.0",
32
- "@aws-sdk/util-endpoints": "3.936.0",
33
- "@aws-sdk/util-user-agent-browser": "3.936.0",
34
- "@aws-sdk/util-user-agent-node": "3.947.0",
35
- "@smithy/config-resolver": "^4.4.3",
36
- "@smithy/core": "^3.18.7",
37
- "@smithy/fetch-http-handler": "^5.3.6",
38
- "@smithy/hash-node": "^4.2.5",
39
- "@smithy/invalid-dependency": "^4.2.5",
40
- "@smithy/middleware-content-length": "^4.2.5",
41
- "@smithy/middleware-endpoint": "^4.3.14",
42
- "@smithy/middleware-retry": "^4.4.14",
43
- "@smithy/middleware-serde": "^4.2.6",
44
- "@smithy/middleware-stack": "^4.2.5",
45
- "@smithy/node-config-provider": "^4.3.5",
46
- "@smithy/node-http-handler": "^4.4.5",
47
- "@smithy/protocol-http": "^5.3.5",
48
- "@smithy/smithy-client": "^4.9.10",
49
- "@smithy/types": "^4.9.0",
50
- "@smithy/url-parser": "^4.2.5",
24
+ "@aws-sdk/core": "3.953.0",
25
+ "@aws-sdk/credential-provider-node": "3.953.0",
26
+ "@aws-sdk/middleware-host-header": "3.953.0",
27
+ "@aws-sdk/middleware-logger": "3.953.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.953.0",
29
+ "@aws-sdk/middleware-user-agent": "3.953.0",
30
+ "@aws-sdk/region-config-resolver": "3.953.0",
31
+ "@aws-sdk/types": "3.953.0",
32
+ "@aws-sdk/util-endpoints": "3.953.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.953.0",
34
+ "@aws-sdk/util-user-agent-node": "3.953.0",
35
+ "@smithy/config-resolver": "^4.4.4",
36
+ "@smithy/core": "^3.19.0",
37
+ "@smithy/fetch-http-handler": "^5.3.7",
38
+ "@smithy/hash-node": "^4.2.6",
39
+ "@smithy/invalid-dependency": "^4.2.6",
40
+ "@smithy/middleware-content-length": "^4.2.6",
41
+ "@smithy/middleware-endpoint": "^4.3.15",
42
+ "@smithy/middleware-retry": "^4.4.15",
43
+ "@smithy/middleware-serde": "^4.2.7",
44
+ "@smithy/middleware-stack": "^4.2.6",
45
+ "@smithy/node-config-provider": "^4.3.6",
46
+ "@smithy/node-http-handler": "^4.4.6",
47
+ "@smithy/protocol-http": "^5.3.6",
48
+ "@smithy/smithy-client": "^4.10.0",
49
+ "@smithy/types": "^4.10.0",
50
+ "@smithy/url-parser": "^4.2.6",
51
51
  "@smithy/util-base64": "^4.3.0",
52
52
  "@smithy/util-body-length-browser": "^4.2.0",
53
53
  "@smithy/util-body-length-node": "^4.2.1",
54
- "@smithy/util-defaults-mode-browser": "^4.3.13",
55
- "@smithy/util-defaults-mode-node": "^4.2.16",
56
- "@smithy/util-endpoints": "^3.2.5",
57
- "@smithy/util-middleware": "^4.2.5",
58
- "@smithy/util-retry": "^4.2.5",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.14",
55
+ "@smithy/util-defaults-mode-node": "^4.2.17",
56
+ "@smithy/util-endpoints": "^3.2.6",
57
+ "@smithy/util-middleware": "^4.2.6",
58
+ "@smithy/util-retry": "^4.2.6",
59
59
  "@smithy/util-utf8": "^4.2.0",
60
60
  "tslib": "^2.6.2"
61
61
  },