@aws-sdk/client-sqs 3.303.0 → 3.309.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 (45) hide show
  1. package/dist-cjs/commands/AddPermissionCommand.js +2 -2
  2. package/dist-cjs/commands/ChangeMessageVisibilityBatchCommand.js +2 -2
  3. package/dist-cjs/commands/ChangeMessageVisibilityCommand.js +2 -2
  4. package/dist-cjs/commands/CreateQueueCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteMessageBatchCommand.js +2 -2
  6. package/dist-cjs/commands/DeleteMessageCommand.js +2 -2
  7. package/dist-cjs/commands/DeleteQueueCommand.js +2 -2
  8. package/dist-cjs/commands/GetQueueAttributesCommand.js +2 -2
  9. package/dist-cjs/commands/GetQueueUrlCommand.js +2 -2
  10. package/dist-cjs/commands/ListDeadLetterSourceQueuesCommand.js +2 -2
  11. package/dist-cjs/commands/ListQueueTagsCommand.js +2 -2
  12. package/dist-cjs/commands/ListQueuesCommand.js +2 -2
  13. package/dist-cjs/commands/PurgeQueueCommand.js +2 -2
  14. package/dist-cjs/commands/ReceiveMessageCommand.js +2 -2
  15. package/dist-cjs/commands/RemovePermissionCommand.js +2 -2
  16. package/dist-cjs/commands/SendMessageBatchCommand.js +2 -2
  17. package/dist-cjs/commands/SendMessageCommand.js +2 -2
  18. package/dist-cjs/commands/SetQueueAttributesCommand.js +2 -2
  19. package/dist-cjs/commands/TagQueueCommand.js +2 -2
  20. package/dist-cjs/commands/UntagQueueCommand.js +2 -2
  21. package/dist-cjs/protocols/Aws_query.js +345 -345
  22. package/dist-es/commands/AddPermissionCommand.js +3 -3
  23. package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +3 -3
  24. package/dist-es/commands/ChangeMessageVisibilityCommand.js +3 -3
  25. package/dist-es/commands/CreateQueueCommand.js +3 -3
  26. package/dist-es/commands/DeleteMessageBatchCommand.js +3 -3
  27. package/dist-es/commands/DeleteMessageCommand.js +3 -3
  28. package/dist-es/commands/DeleteQueueCommand.js +3 -3
  29. package/dist-es/commands/GetQueueAttributesCommand.js +3 -3
  30. package/dist-es/commands/GetQueueUrlCommand.js +3 -3
  31. package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +3 -3
  32. package/dist-es/commands/ListQueueTagsCommand.js +3 -3
  33. package/dist-es/commands/ListQueuesCommand.js +3 -3
  34. package/dist-es/commands/PurgeQueueCommand.js +3 -3
  35. package/dist-es/commands/ReceiveMessageCommand.js +3 -3
  36. package/dist-es/commands/RemovePermissionCommand.js +3 -3
  37. package/dist-es/commands/SendMessageBatchCommand.js +3 -3
  38. package/dist-es/commands/SendMessageCommand.js +3 -3
  39. package/dist-es/commands/SetQueueAttributesCommand.js +3 -3
  40. package/dist-es/commands/TagQueueCommand.js +3 -3
  41. package/dist-es/commands/UntagQueueCommand.js +3 -3
  42. package/dist-es/protocols/Aws_query.js +304 -304
  43. package/dist-types/protocols/Aws_query.d.ts +160 -40
  44. package/dist-types/ts3.4/protocols/Aws_query.d.ts +40 -40
  45. package/package.json +31 -31
@@ -20,43 +20,163 @@ import { SendMessageCommandInput, SendMessageCommandOutput } from "../commands/S
20
20
  import { SetQueueAttributesCommandInput, SetQueueAttributesCommandOutput } from "../commands/SetQueueAttributesCommand";
21
21
  import { TagQueueCommandInput, TagQueueCommandOutput } from "../commands/TagQueueCommand";
22
22
  import { UntagQueueCommandInput, UntagQueueCommandOutput } from "../commands/UntagQueueCommand";
23
- export declare const serializeAws_queryAddPermissionCommand: (input: AddPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_queryChangeMessageVisibilityCommand: (input: ChangeMessageVisibilityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_queryChangeMessageVisibilityBatchCommand: (input: ChangeMessageVisibilityBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_queryCreateQueueCommand: (input: CreateQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_queryDeleteMessageCommand: (input: DeleteMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_queryDeleteMessageBatchCommand: (input: DeleteMessageBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const serializeAws_queryDeleteQueueCommand: (input: DeleteQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
- export declare const serializeAws_queryGetQueueAttributesCommand: (input: GetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
- export declare const serializeAws_queryGetQueueUrlCommand: (input: GetQueueUrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
- export declare const serializeAws_queryListDeadLetterSourceQueuesCommand: (input: ListDeadLetterSourceQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
- export declare const serializeAws_queryListQueuesCommand: (input: ListQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_queryListQueueTagsCommand: (input: ListQueueTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_queryPurgeQueueCommand: (input: PurgeQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_queryReceiveMessageCommand: (input: ReceiveMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_queryRemovePermissionCommand: (input: RemovePermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_querySendMessageCommand: (input: SendMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_querySendMessageBatchCommand: (input: SendMessageBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_querySetQueueAttributesCommand: (input: SetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_queryTagQueueCommand: (input: TagQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_queryUntagQueueCommand: (input: UntagQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const deserializeAws_queryAddPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPermissionCommandOutput>;
44
- export declare const deserializeAws_queryChangeMessageVisibilityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ChangeMessageVisibilityCommandOutput>;
45
- export declare const deserializeAws_queryChangeMessageVisibilityBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ChangeMessageVisibilityBatchCommandOutput>;
46
- export declare const deserializeAws_queryCreateQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQueueCommandOutput>;
47
- export declare const deserializeAws_queryDeleteMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageCommandOutput>;
48
- export declare const deserializeAws_queryDeleteMessageBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageBatchCommandOutput>;
49
- export declare const deserializeAws_queryDeleteQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueueCommandOutput>;
50
- export declare const deserializeAws_queryGetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueAttributesCommandOutput>;
51
- export declare const deserializeAws_queryGetQueueUrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueUrlCommandOutput>;
52
- export declare const deserializeAws_queryListDeadLetterSourceQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeadLetterSourceQueuesCommandOutput>;
53
- export declare const deserializeAws_queryListQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuesCommandOutput>;
54
- export declare const deserializeAws_queryListQueueTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueueTagsCommandOutput>;
55
- export declare const deserializeAws_queryPurgeQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PurgeQueueCommandOutput>;
56
- export declare const deserializeAws_queryReceiveMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReceiveMessageCommandOutput>;
57
- export declare const deserializeAws_queryRemovePermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemovePermissionCommandOutput>;
58
- export declare const deserializeAws_querySendMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageCommandOutput>;
59
- export declare const deserializeAws_querySendMessageBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageBatchCommandOutput>;
60
- export declare const deserializeAws_querySetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetQueueAttributesCommandOutput>;
61
- export declare const deserializeAws_queryTagQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagQueueCommandOutput>;
62
- export declare const deserializeAws_queryUntagQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagQueueCommandOutput>;
23
+ /**
24
+ * serializeAws_queryAddPermissionCommand
25
+ */
26
+ export declare const se_AddPermissionCommand: (input: AddPermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_queryChangeMessageVisibilityCommand
29
+ */
30
+ export declare const se_ChangeMessageVisibilityCommand: (input: ChangeMessageVisibilityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_queryChangeMessageVisibilityBatchCommand
33
+ */
34
+ export declare const se_ChangeMessageVisibilityBatchCommand: (input: ChangeMessageVisibilityBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_queryCreateQueueCommand
37
+ */
38
+ export declare const se_CreateQueueCommand: (input: CreateQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_queryDeleteMessageCommand
41
+ */
42
+ export declare const se_DeleteMessageCommand: (input: DeleteMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_queryDeleteMessageBatchCommand
45
+ */
46
+ export declare const se_DeleteMessageBatchCommand: (input: DeleteMessageBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ /**
48
+ * serializeAws_queryDeleteQueueCommand
49
+ */
50
+ export declare const se_DeleteQueueCommand: (input: DeleteQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ /**
52
+ * serializeAws_queryGetQueueAttributesCommand
53
+ */
54
+ export declare const se_GetQueueAttributesCommand: (input: GetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_queryGetQueueUrlCommand
57
+ */
58
+ export declare const se_GetQueueUrlCommand: (input: GetQueueUrlCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_queryListDeadLetterSourceQueuesCommand
61
+ */
62
+ export declare const se_ListDeadLetterSourceQueuesCommand: (input: ListDeadLetterSourceQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ /**
64
+ * serializeAws_queryListQueuesCommand
65
+ */
66
+ export declare const se_ListQueuesCommand: (input: ListQueuesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
67
+ /**
68
+ * serializeAws_queryListQueueTagsCommand
69
+ */
70
+ export declare const se_ListQueueTagsCommand: (input: ListQueueTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
71
+ /**
72
+ * serializeAws_queryPurgeQueueCommand
73
+ */
74
+ export declare const se_PurgeQueueCommand: (input: PurgeQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
75
+ /**
76
+ * serializeAws_queryReceiveMessageCommand
77
+ */
78
+ export declare const se_ReceiveMessageCommand: (input: ReceiveMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
79
+ /**
80
+ * serializeAws_queryRemovePermissionCommand
81
+ */
82
+ export declare const se_RemovePermissionCommand: (input: RemovePermissionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
83
+ /**
84
+ * serializeAws_querySendMessageCommand
85
+ */
86
+ export declare const se_SendMessageCommand: (input: SendMessageCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
87
+ /**
88
+ * serializeAws_querySendMessageBatchCommand
89
+ */
90
+ export declare const se_SendMessageBatchCommand: (input: SendMessageBatchCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
91
+ /**
92
+ * serializeAws_querySetQueueAttributesCommand
93
+ */
94
+ export declare const se_SetQueueAttributesCommand: (input: SetQueueAttributesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
95
+ /**
96
+ * serializeAws_queryTagQueueCommand
97
+ */
98
+ export declare const se_TagQueueCommand: (input: TagQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
99
+ /**
100
+ * serializeAws_queryUntagQueueCommand
101
+ */
102
+ export declare const se_UntagQueueCommand: (input: UntagQueueCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
103
+ /**
104
+ * deserializeAws_queryAddPermissionCommand
105
+ */
106
+ export declare const de_AddPermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddPermissionCommandOutput>;
107
+ /**
108
+ * deserializeAws_queryChangeMessageVisibilityCommand
109
+ */
110
+ export declare const de_ChangeMessageVisibilityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ChangeMessageVisibilityCommandOutput>;
111
+ /**
112
+ * deserializeAws_queryChangeMessageVisibilityBatchCommand
113
+ */
114
+ export declare const de_ChangeMessageVisibilityBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ChangeMessageVisibilityBatchCommandOutput>;
115
+ /**
116
+ * deserializeAws_queryCreateQueueCommand
117
+ */
118
+ export declare const de_CreateQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateQueueCommandOutput>;
119
+ /**
120
+ * deserializeAws_queryDeleteMessageCommand
121
+ */
122
+ export declare const de_DeleteMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageCommandOutput>;
123
+ /**
124
+ * deserializeAws_queryDeleteMessageBatchCommand
125
+ */
126
+ export declare const de_DeleteMessageBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteMessageBatchCommandOutput>;
127
+ /**
128
+ * deserializeAws_queryDeleteQueueCommand
129
+ */
130
+ export declare const de_DeleteQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteQueueCommandOutput>;
131
+ /**
132
+ * deserializeAws_queryGetQueueAttributesCommand
133
+ */
134
+ export declare const de_GetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueAttributesCommandOutput>;
135
+ /**
136
+ * deserializeAws_queryGetQueueUrlCommand
137
+ */
138
+ export declare const de_GetQueueUrlCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetQueueUrlCommandOutput>;
139
+ /**
140
+ * deserializeAws_queryListDeadLetterSourceQueuesCommand
141
+ */
142
+ export declare const de_ListDeadLetterSourceQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeadLetterSourceQueuesCommandOutput>;
143
+ /**
144
+ * deserializeAws_queryListQueuesCommand
145
+ */
146
+ export declare const de_ListQueuesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueuesCommandOutput>;
147
+ /**
148
+ * deserializeAws_queryListQueueTagsCommand
149
+ */
150
+ export declare const de_ListQueueTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListQueueTagsCommandOutput>;
151
+ /**
152
+ * deserializeAws_queryPurgeQueueCommand
153
+ */
154
+ export declare const de_PurgeQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PurgeQueueCommandOutput>;
155
+ /**
156
+ * deserializeAws_queryReceiveMessageCommand
157
+ */
158
+ export declare const de_ReceiveMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReceiveMessageCommandOutput>;
159
+ /**
160
+ * deserializeAws_queryRemovePermissionCommand
161
+ */
162
+ export declare const de_RemovePermissionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemovePermissionCommandOutput>;
163
+ /**
164
+ * deserializeAws_querySendMessageCommand
165
+ */
166
+ export declare const de_SendMessageCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageCommandOutput>;
167
+ /**
168
+ * deserializeAws_querySendMessageBatchCommand
169
+ */
170
+ export declare const de_SendMessageBatchCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SendMessageBatchCommandOutput>;
171
+ /**
172
+ * deserializeAws_querySetQueueAttributesCommand
173
+ */
174
+ export declare const de_SetQueueAttributesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SetQueueAttributesCommandOutput>;
175
+ /**
176
+ * deserializeAws_queryTagQueueCommand
177
+ */
178
+ export declare const de_TagQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagQueueCommandOutput>;
179
+ /**
180
+ * deserializeAws_queryUntagQueueCommand
181
+ */
182
+ export declare const de_UntagQueueCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagQueueCommandOutput>;
@@ -83,163 +83,163 @@ import {
83
83
  UntagQueueCommandInput,
84
84
  UntagQueueCommandOutput,
85
85
  } from "../commands/UntagQueueCommand";
86
- export declare const serializeAws_queryAddPermissionCommand: (
86
+ export declare const se_AddPermissionCommand: (
87
87
  input: AddPermissionCommandInput,
88
88
  context: __SerdeContext
89
89
  ) => Promise<__HttpRequest>;
90
- export declare const serializeAws_queryChangeMessageVisibilityCommand: (
90
+ export declare const se_ChangeMessageVisibilityCommand: (
91
91
  input: ChangeMessageVisibilityCommandInput,
92
92
  context: __SerdeContext
93
93
  ) => Promise<__HttpRequest>;
94
- export declare const serializeAws_queryChangeMessageVisibilityBatchCommand: (
94
+ export declare const se_ChangeMessageVisibilityBatchCommand: (
95
95
  input: ChangeMessageVisibilityBatchCommandInput,
96
96
  context: __SerdeContext
97
97
  ) => Promise<__HttpRequest>;
98
- export declare const serializeAws_queryCreateQueueCommand: (
98
+ export declare const se_CreateQueueCommand: (
99
99
  input: CreateQueueCommandInput,
100
100
  context: __SerdeContext
101
101
  ) => Promise<__HttpRequest>;
102
- export declare const serializeAws_queryDeleteMessageCommand: (
102
+ export declare const se_DeleteMessageCommand: (
103
103
  input: DeleteMessageCommandInput,
104
104
  context: __SerdeContext
105
105
  ) => Promise<__HttpRequest>;
106
- export declare const serializeAws_queryDeleteMessageBatchCommand: (
106
+ export declare const se_DeleteMessageBatchCommand: (
107
107
  input: DeleteMessageBatchCommandInput,
108
108
  context: __SerdeContext
109
109
  ) => Promise<__HttpRequest>;
110
- export declare const serializeAws_queryDeleteQueueCommand: (
110
+ export declare const se_DeleteQueueCommand: (
111
111
  input: DeleteQueueCommandInput,
112
112
  context: __SerdeContext
113
113
  ) => Promise<__HttpRequest>;
114
- export declare const serializeAws_queryGetQueueAttributesCommand: (
114
+ export declare const se_GetQueueAttributesCommand: (
115
115
  input: GetQueueAttributesCommandInput,
116
116
  context: __SerdeContext
117
117
  ) => Promise<__HttpRequest>;
118
- export declare const serializeAws_queryGetQueueUrlCommand: (
118
+ export declare const se_GetQueueUrlCommand: (
119
119
  input: GetQueueUrlCommandInput,
120
120
  context: __SerdeContext
121
121
  ) => Promise<__HttpRequest>;
122
- export declare const serializeAws_queryListDeadLetterSourceQueuesCommand: (
122
+ export declare const se_ListDeadLetterSourceQueuesCommand: (
123
123
  input: ListDeadLetterSourceQueuesCommandInput,
124
124
  context: __SerdeContext
125
125
  ) => Promise<__HttpRequest>;
126
- export declare const serializeAws_queryListQueuesCommand: (
126
+ export declare const se_ListQueuesCommand: (
127
127
  input: ListQueuesCommandInput,
128
128
  context: __SerdeContext
129
129
  ) => Promise<__HttpRequest>;
130
- export declare const serializeAws_queryListQueueTagsCommand: (
130
+ export declare const se_ListQueueTagsCommand: (
131
131
  input: ListQueueTagsCommandInput,
132
132
  context: __SerdeContext
133
133
  ) => Promise<__HttpRequest>;
134
- export declare const serializeAws_queryPurgeQueueCommand: (
134
+ export declare const se_PurgeQueueCommand: (
135
135
  input: PurgeQueueCommandInput,
136
136
  context: __SerdeContext
137
137
  ) => Promise<__HttpRequest>;
138
- export declare const serializeAws_queryReceiveMessageCommand: (
138
+ export declare const se_ReceiveMessageCommand: (
139
139
  input: ReceiveMessageCommandInput,
140
140
  context: __SerdeContext
141
141
  ) => Promise<__HttpRequest>;
142
- export declare const serializeAws_queryRemovePermissionCommand: (
142
+ export declare const se_RemovePermissionCommand: (
143
143
  input: RemovePermissionCommandInput,
144
144
  context: __SerdeContext
145
145
  ) => Promise<__HttpRequest>;
146
- export declare const serializeAws_querySendMessageCommand: (
146
+ export declare const se_SendMessageCommand: (
147
147
  input: SendMessageCommandInput,
148
148
  context: __SerdeContext
149
149
  ) => Promise<__HttpRequest>;
150
- export declare const serializeAws_querySendMessageBatchCommand: (
150
+ export declare const se_SendMessageBatchCommand: (
151
151
  input: SendMessageBatchCommandInput,
152
152
  context: __SerdeContext
153
153
  ) => Promise<__HttpRequest>;
154
- export declare const serializeAws_querySetQueueAttributesCommand: (
154
+ export declare const se_SetQueueAttributesCommand: (
155
155
  input: SetQueueAttributesCommandInput,
156
156
  context: __SerdeContext
157
157
  ) => Promise<__HttpRequest>;
158
- export declare const serializeAws_queryTagQueueCommand: (
158
+ export declare const se_TagQueueCommand: (
159
159
  input: TagQueueCommandInput,
160
160
  context: __SerdeContext
161
161
  ) => Promise<__HttpRequest>;
162
- export declare const serializeAws_queryUntagQueueCommand: (
162
+ export declare const se_UntagQueueCommand: (
163
163
  input: UntagQueueCommandInput,
164
164
  context: __SerdeContext
165
165
  ) => Promise<__HttpRequest>;
166
- export declare const deserializeAws_queryAddPermissionCommand: (
166
+ export declare const de_AddPermissionCommand: (
167
167
  output: __HttpResponse,
168
168
  context: __SerdeContext
169
169
  ) => Promise<AddPermissionCommandOutput>;
170
- export declare const deserializeAws_queryChangeMessageVisibilityCommand: (
170
+ export declare const de_ChangeMessageVisibilityCommand: (
171
171
  output: __HttpResponse,
172
172
  context: __SerdeContext
173
173
  ) => Promise<ChangeMessageVisibilityCommandOutput>;
174
- export declare const deserializeAws_queryChangeMessageVisibilityBatchCommand: (
174
+ export declare const de_ChangeMessageVisibilityBatchCommand: (
175
175
  output: __HttpResponse,
176
176
  context: __SerdeContext
177
177
  ) => Promise<ChangeMessageVisibilityBatchCommandOutput>;
178
- export declare const deserializeAws_queryCreateQueueCommand: (
178
+ export declare const de_CreateQueueCommand: (
179
179
  output: __HttpResponse,
180
180
  context: __SerdeContext
181
181
  ) => Promise<CreateQueueCommandOutput>;
182
- export declare const deserializeAws_queryDeleteMessageCommand: (
182
+ export declare const de_DeleteMessageCommand: (
183
183
  output: __HttpResponse,
184
184
  context: __SerdeContext
185
185
  ) => Promise<DeleteMessageCommandOutput>;
186
- export declare const deserializeAws_queryDeleteMessageBatchCommand: (
186
+ export declare const de_DeleteMessageBatchCommand: (
187
187
  output: __HttpResponse,
188
188
  context: __SerdeContext
189
189
  ) => Promise<DeleteMessageBatchCommandOutput>;
190
- export declare const deserializeAws_queryDeleteQueueCommand: (
190
+ export declare const de_DeleteQueueCommand: (
191
191
  output: __HttpResponse,
192
192
  context: __SerdeContext
193
193
  ) => Promise<DeleteQueueCommandOutput>;
194
- export declare const deserializeAws_queryGetQueueAttributesCommand: (
194
+ export declare const de_GetQueueAttributesCommand: (
195
195
  output: __HttpResponse,
196
196
  context: __SerdeContext
197
197
  ) => Promise<GetQueueAttributesCommandOutput>;
198
- export declare const deserializeAws_queryGetQueueUrlCommand: (
198
+ export declare const de_GetQueueUrlCommand: (
199
199
  output: __HttpResponse,
200
200
  context: __SerdeContext
201
201
  ) => Promise<GetQueueUrlCommandOutput>;
202
- export declare const deserializeAws_queryListDeadLetterSourceQueuesCommand: (
202
+ export declare const de_ListDeadLetterSourceQueuesCommand: (
203
203
  output: __HttpResponse,
204
204
  context: __SerdeContext
205
205
  ) => Promise<ListDeadLetterSourceQueuesCommandOutput>;
206
- export declare const deserializeAws_queryListQueuesCommand: (
206
+ export declare const de_ListQueuesCommand: (
207
207
  output: __HttpResponse,
208
208
  context: __SerdeContext
209
209
  ) => Promise<ListQueuesCommandOutput>;
210
- export declare const deserializeAws_queryListQueueTagsCommand: (
210
+ export declare const de_ListQueueTagsCommand: (
211
211
  output: __HttpResponse,
212
212
  context: __SerdeContext
213
213
  ) => Promise<ListQueueTagsCommandOutput>;
214
- export declare const deserializeAws_queryPurgeQueueCommand: (
214
+ export declare const de_PurgeQueueCommand: (
215
215
  output: __HttpResponse,
216
216
  context: __SerdeContext
217
217
  ) => Promise<PurgeQueueCommandOutput>;
218
- export declare const deserializeAws_queryReceiveMessageCommand: (
218
+ export declare const de_ReceiveMessageCommand: (
219
219
  output: __HttpResponse,
220
220
  context: __SerdeContext
221
221
  ) => Promise<ReceiveMessageCommandOutput>;
222
- export declare const deserializeAws_queryRemovePermissionCommand: (
222
+ export declare const de_RemovePermissionCommand: (
223
223
  output: __HttpResponse,
224
224
  context: __SerdeContext
225
225
  ) => Promise<RemovePermissionCommandOutput>;
226
- export declare const deserializeAws_querySendMessageCommand: (
226
+ export declare const de_SendMessageCommand: (
227
227
  output: __HttpResponse,
228
228
  context: __SerdeContext
229
229
  ) => Promise<SendMessageCommandOutput>;
230
- export declare const deserializeAws_querySendMessageBatchCommand: (
230
+ export declare const de_SendMessageBatchCommand: (
231
231
  output: __HttpResponse,
232
232
  context: __SerdeContext
233
233
  ) => Promise<SendMessageBatchCommandOutput>;
234
- export declare const deserializeAws_querySetQueueAttributesCommand: (
234
+ export declare const de_SetQueueAttributesCommand: (
235
235
  output: __HttpResponse,
236
236
  context: __SerdeContext
237
237
  ) => Promise<SetQueueAttributesCommandOutput>;
238
- export declare const deserializeAws_queryTagQueueCommand: (
238
+ export declare const de_TagQueueCommand: (
239
239
  output: __HttpResponse,
240
240
  context: __SerdeContext
241
241
  ) => Promise<TagQueueCommandOutput>;
242
- export declare const deserializeAws_queryUntagQueueCommand: (
242
+ export declare const de_UntagQueueCommand: (
243
243
  output: __HttpResponse,
244
244
  context: __SerdeContext
245
245
  ) => Promise<UntagQueueCommandOutput>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sqs",
3
3
  "description": "AWS SDK for JavaScript Sqs Client for Node.js, Browser and React Native",
4
- "version": "3.303.0",
4
+ "version": "3.309.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,39 +21,39 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.303.0",
25
- "@aws-sdk/config-resolver": "3.303.0",
26
- "@aws-sdk/credential-provider-node": "3.303.0",
27
- "@aws-sdk/fetch-http-handler": "3.303.0",
28
- "@aws-sdk/hash-node": "3.303.0",
29
- "@aws-sdk/invalid-dependency": "3.303.0",
30
- "@aws-sdk/md5-js": "3.303.0",
31
- "@aws-sdk/middleware-content-length": "3.303.0",
32
- "@aws-sdk/middleware-endpoint": "3.303.0",
33
- "@aws-sdk/middleware-host-header": "3.303.0",
34
- "@aws-sdk/middleware-logger": "3.303.0",
35
- "@aws-sdk/middleware-recursion-detection": "3.303.0",
36
- "@aws-sdk/middleware-retry": "3.303.0",
37
- "@aws-sdk/middleware-sdk-sqs": "3.303.0",
38
- "@aws-sdk/middleware-serde": "3.303.0",
39
- "@aws-sdk/middleware-signing": "3.303.0",
40
- "@aws-sdk/middleware-stack": "3.303.0",
41
- "@aws-sdk/middleware-user-agent": "3.303.0",
42
- "@aws-sdk/node-config-provider": "3.303.0",
43
- "@aws-sdk/node-http-handler": "3.303.0",
44
- "@aws-sdk/protocol-http": "3.303.0",
45
- "@aws-sdk/smithy-client": "3.303.0",
46
- "@aws-sdk/types": "3.303.0",
47
- "@aws-sdk/url-parser": "3.303.0",
24
+ "@aws-sdk/client-sts": "3.309.0",
25
+ "@aws-sdk/config-resolver": "3.306.0",
26
+ "@aws-sdk/credential-provider-node": "3.309.0",
27
+ "@aws-sdk/fetch-http-handler": "3.306.0",
28
+ "@aws-sdk/hash-node": "3.306.0",
29
+ "@aws-sdk/invalid-dependency": "3.306.0",
30
+ "@aws-sdk/md5-js": "3.306.0",
31
+ "@aws-sdk/middleware-content-length": "3.306.0",
32
+ "@aws-sdk/middleware-endpoint": "3.306.0",
33
+ "@aws-sdk/middleware-host-header": "3.306.0",
34
+ "@aws-sdk/middleware-logger": "3.306.0",
35
+ "@aws-sdk/middleware-recursion-detection": "3.306.0",
36
+ "@aws-sdk/middleware-retry": "3.306.0",
37
+ "@aws-sdk/middleware-sdk-sqs": "3.306.0",
38
+ "@aws-sdk/middleware-serde": "3.306.0",
39
+ "@aws-sdk/middleware-signing": "3.306.0",
40
+ "@aws-sdk/middleware-stack": "3.306.0",
41
+ "@aws-sdk/middleware-user-agent": "3.306.0",
42
+ "@aws-sdk/node-config-provider": "3.306.0",
43
+ "@aws-sdk/node-http-handler": "3.306.0",
44
+ "@aws-sdk/protocol-http": "3.306.0",
45
+ "@aws-sdk/smithy-client": "3.309.0",
46
+ "@aws-sdk/types": "3.306.0",
47
+ "@aws-sdk/url-parser": "3.306.0",
48
48
  "@aws-sdk/util-base64": "3.303.0",
49
49
  "@aws-sdk/util-body-length-browser": "3.303.0",
50
50
  "@aws-sdk/util-body-length-node": "3.303.0",
51
- "@aws-sdk/util-defaults-mode-browser": "3.303.0",
52
- "@aws-sdk/util-defaults-mode-node": "3.303.0",
53
- "@aws-sdk/util-endpoints": "3.303.0",
54
- "@aws-sdk/util-retry": "3.303.0",
55
- "@aws-sdk/util-user-agent-browser": "3.303.0",
56
- "@aws-sdk/util-user-agent-node": "3.303.0",
51
+ "@aws-sdk/util-defaults-mode-browser": "3.309.0",
52
+ "@aws-sdk/util-defaults-mode-node": "3.309.0",
53
+ "@aws-sdk/util-endpoints": "3.306.0",
54
+ "@aws-sdk/util-retry": "3.306.0",
55
+ "@aws-sdk/util-user-agent-browser": "3.306.0",
56
+ "@aws-sdk/util-user-agent-node": "3.306.0",
57
57
  "@aws-sdk/util-utf8": "3.303.0",
58
58
  "fast-xml-parser": "4.1.2",
59
59
  "tslib": "^2.5.0"