@aws-sdk/client-sqs 3.1077.0 → 3.1078.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +41 -243
- package/dist-es/commandBuilder.js +18 -0
- package/dist-es/commands/AddPermissionCommand.js +2 -14
- package/dist-es/commands/CancelMessageMoveTaskCommand.js +2 -14
- package/dist-es/commands/ChangeMessageVisibilityBatchCommand.js +2 -14
- package/dist-es/commands/ChangeMessageVisibilityCommand.js +2 -14
- package/dist-es/commands/CreateQueueCommand.js +2 -14
- package/dist-es/commands/DeleteMessageBatchCommand.js +2 -14
- package/dist-es/commands/DeleteMessageCommand.js +2 -14
- package/dist-es/commands/DeleteQueueCommand.js +2 -14
- package/dist-es/commands/GetQueueAttributesCommand.js +2 -14
- package/dist-es/commands/GetQueueUrlCommand.js +2 -14
- package/dist-es/commands/ListDeadLetterSourceQueuesCommand.js +2 -14
- package/dist-es/commands/ListMessageMoveTasksCommand.js +2 -14
- package/dist-es/commands/ListQueueTagsCommand.js +2 -14
- package/dist-es/commands/ListQueuesCommand.js +2 -14
- package/dist-es/commands/PurgeQueueCommand.js +2 -14
- package/dist-es/commands/ReceiveMessageCommand.js +2 -20
- package/dist-es/commands/RemovePermissionCommand.js +2 -14
- package/dist-es/commands/SendMessageBatchCommand.js +2 -18
- package/dist-es/commands/SendMessageCommand.js +2 -18
- package/dist-es/commands/SetQueueAttributesCommand.js +2 -14
- package/dist-es/commands/StartMessageMoveTaskCommand.js +2 -14
- package/dist-es/commands/TagQueueCommand.js +2 -14
- package/dist-es/commands/UntagQueueCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +30 -0
- package/dist-types/commands/AddPermissionCommand.d.ts +3 -8
- package/dist-types/commands/CancelMessageMoveTaskCommand.d.ts +3 -8
- package/dist-types/commands/ChangeMessageVisibilityBatchCommand.d.ts +3 -8
- package/dist-types/commands/ChangeMessageVisibilityCommand.d.ts +3 -8
- package/dist-types/commands/CreateQueueCommand.d.ts +3 -8
- package/dist-types/commands/DeleteMessageBatchCommand.d.ts +3 -8
- package/dist-types/commands/DeleteMessageCommand.d.ts +3 -8
- package/dist-types/commands/DeleteQueueCommand.d.ts +3 -8
- package/dist-types/commands/GetQueueAttributesCommand.d.ts +3 -8
- package/dist-types/commands/GetQueueUrlCommand.d.ts +3 -8
- package/dist-types/commands/ListDeadLetterSourceQueuesCommand.d.ts +3 -8
- package/dist-types/commands/ListMessageMoveTasksCommand.d.ts +3 -8
- package/dist-types/commands/ListQueueTagsCommand.d.ts +3 -8
- package/dist-types/commands/ListQueuesCommand.d.ts +3 -8
- package/dist-types/commands/PurgeQueueCommand.d.ts +3 -8
- package/dist-types/commands/ReceiveMessageCommand.d.ts +3 -8
- package/dist-types/commands/RemovePermissionCommand.d.ts +3 -8
- package/dist-types/commands/SendMessageBatchCommand.d.ts +3 -8
- package/dist-types/commands/SendMessageCommand.d.ts +3 -8
- package/dist-types/commands/SetQueueAttributesCommand.d.ts +3 -8
- package/dist-types/commands/StartMessageMoveTaskCommand.d.ts +3 -8
- package/dist-types/commands/TagQueueCommand.d.ts +3 -8
- package/dist-types/commands/UntagQueueCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +64 -0
- package/dist-types/ts3.4/commands/AddPermissionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CancelMessageMoveTaskCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityBatchCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ChangeMessageVisibilityCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteMessageBatchCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteMessageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetQueueAttributesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetQueueUrlCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDeadLetterSourceQueuesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListMessageMoveTasksCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListQueueTagsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListQueuesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/PurgeQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ReceiveMessageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RemovePermissionCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SendMessageBatchCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SendMessageCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/SetQueueAttributesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/StartMessageMoveTaskCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagQueueCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +10 -10
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import {
|
|
4
3
|
StartMessageMoveTaskRequest,
|
|
5
4
|
StartMessageMoveTaskResult,
|
|
6
5
|
} from "../models/models_0";
|
|
7
|
-
import {
|
|
8
|
-
ServiceInputTypes,
|
|
9
|
-
ServiceOutputTypes,
|
|
10
|
-
SQSClientResolvedConfig,
|
|
11
|
-
} from "../SQSClient";
|
|
12
6
|
export { __MetadataBearer };
|
|
13
|
-
export { $Command };
|
|
14
7
|
export interface StartMessageMoveTaskCommandInput
|
|
15
8
|
extends StartMessageMoveTaskRequest {}
|
|
16
9
|
export interface StartMessageMoveTaskCommandOutput
|
|
@@ -22,22 +15,20 @@ declare const StartMessageMoveTaskCommand_base: {
|
|
|
22
15
|
): import("@smithy/core/client").CommandImpl<
|
|
23
16
|
StartMessageMoveTaskCommandInput,
|
|
24
17
|
StartMessageMoveTaskCommandOutput,
|
|
25
|
-
SQSClientResolvedConfig,
|
|
26
|
-
ServiceInputTypes,
|
|
27
|
-
ServiceOutputTypes
|
|
18
|
+
import("..").SQSClientResolvedConfig,
|
|
19
|
+
import("..").ServiceInputTypes,
|
|
20
|
+
import("..").ServiceOutputTypes
|
|
28
21
|
>;
|
|
29
22
|
new (
|
|
30
23
|
input: StartMessageMoveTaskCommandInput
|
|
31
24
|
): import("@smithy/core/client").CommandImpl<
|
|
32
25
|
StartMessageMoveTaskCommandInput,
|
|
33
26
|
StartMessageMoveTaskCommandOutput,
|
|
34
|
-
SQSClientResolvedConfig,
|
|
35
|
-
ServiceInputTypes,
|
|
36
|
-
ServiceOutputTypes
|
|
27
|
+
import("..").SQSClientResolvedConfig,
|
|
28
|
+
import("..").ServiceInputTypes,
|
|
29
|
+
import("..").ServiceOutputTypes
|
|
37
30
|
>;
|
|
38
|
-
getEndpointParameterInstructions():
|
|
39
|
-
[x: string]: unknown;
|
|
40
|
-
};
|
|
31
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
41
32
|
};
|
|
42
33
|
export declare class StartMessageMoveTaskCommand extends StartMessageMoveTaskCommand_base {
|
|
43
34
|
protected static __types: {
|
|
@@ -1,33 +1,24 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { TagQueueRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface TagQueueCommandInput extends TagQueueRequest {}
|
|
12
5
|
export interface TagQueueCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const TagQueueCommand_base: {
|
|
14
7
|
new (input: TagQueueCommandInput): import("@smithy/core/client").CommandImpl<
|
|
15
8
|
TagQueueCommandInput,
|
|
16
9
|
TagQueueCommandOutput,
|
|
17
|
-
SQSClientResolvedConfig,
|
|
18
|
-
ServiceInputTypes,
|
|
19
|
-
ServiceOutputTypes
|
|
10
|
+
import("..").SQSClientResolvedConfig,
|
|
11
|
+
import("..").ServiceInputTypes,
|
|
12
|
+
import("..").ServiceOutputTypes
|
|
20
13
|
>;
|
|
21
14
|
new (input: TagQueueCommandInput): import("@smithy/core/client").CommandImpl<
|
|
22
15
|
TagQueueCommandInput,
|
|
23
16
|
TagQueueCommandOutput,
|
|
24
|
-
SQSClientResolvedConfig,
|
|
25
|
-
ServiceInputTypes,
|
|
26
|
-
ServiceOutputTypes
|
|
17
|
+
import("..").SQSClientResolvedConfig,
|
|
18
|
+
import("..").ServiceInputTypes,
|
|
19
|
+
import("..").ServiceOutputTypes
|
|
27
20
|
>;
|
|
28
|
-
getEndpointParameterInstructions():
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
21
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
31
22
|
};
|
|
32
23
|
export declare class TagQueueCommand extends TagQueueCommand_base {
|
|
33
24
|
protected static __types: {
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import { UntagQueueRequest } from "../models/models_0";
|
|
4
|
-
import {
|
|
5
|
-
ServiceInputTypes,
|
|
6
|
-
ServiceOutputTypes,
|
|
7
|
-
SQSClientResolvedConfig,
|
|
8
|
-
} from "../SQSClient";
|
|
9
3
|
export { __MetadataBearer };
|
|
10
|
-
export { $Command };
|
|
11
4
|
export interface UntagQueueCommandInput extends UntagQueueRequest {}
|
|
12
5
|
export interface UntagQueueCommandOutput extends __MetadataBearer {}
|
|
13
6
|
declare const UntagQueueCommand_base: {
|
|
@@ -16,22 +9,20 @@ declare const UntagQueueCommand_base: {
|
|
|
16
9
|
): import("@smithy/core/client").CommandImpl<
|
|
17
10
|
UntagQueueCommandInput,
|
|
18
11
|
UntagQueueCommandOutput,
|
|
19
|
-
SQSClientResolvedConfig,
|
|
20
|
-
ServiceInputTypes,
|
|
21
|
-
ServiceOutputTypes
|
|
12
|
+
import("..").SQSClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
22
15
|
>;
|
|
23
16
|
new (
|
|
24
17
|
input: UntagQueueCommandInput
|
|
25
18
|
): import("@smithy/core/client").CommandImpl<
|
|
26
19
|
UntagQueueCommandInput,
|
|
27
20
|
UntagQueueCommandOutput,
|
|
28
|
-
SQSClientResolvedConfig,
|
|
29
|
-
ServiceInputTypes,
|
|
30
|
-
ServiceOutputTypes
|
|
21
|
+
import("..").SQSClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
31
24
|
>;
|
|
32
|
-
getEndpointParameterInstructions():
|
|
33
|
-
[x: string]: unknown;
|
|
34
|
-
};
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
35
26
|
};
|
|
36
27
|
export declare class UntagQueueCommand extends UntagQueueCommand_base {
|
|
37
28
|
protected static __types: {
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { SQSExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
7
8
|
export * from "./schemas/schemas_0";
|
|
8
9
|
export * from "./pagination";
|
|
9
10
|
export * from "./models/enums";
|
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.
|
|
4
|
+
"version": "3.1078.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"module": "./dist-es/index.js",
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
32
|
-
"@aws-sdk/middleware-sdk-sqs": "^3.972.
|
|
33
|
-
"@aws-sdk/types": "^3.973.
|
|
34
|
-
"@smithy/core": "^3.
|
|
35
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
36
|
-
"@smithy/node-http-handler": "^4.9.
|
|
37
|
-
"@smithy/types": "^4.15.
|
|
30
|
+
"@aws-sdk/core": "^3.974.26",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.61",
|
|
32
|
+
"@aws-sdk/middleware-sdk-sqs": "^3.972.34",
|
|
33
|
+
"@aws-sdk/types": "^3.973.15",
|
|
34
|
+
"@smithy/core": "^3.29.0",
|
|
35
|
+
"@smithy/fetch-http-handler": "^5.6.2",
|
|
36
|
+
"@smithy/node-http-handler": "^4.9.2",
|
|
37
|
+
"@smithy/types": "^4.15.1",
|
|
38
38
|
"tslib": "^2.6.2"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@smithy/snapshot-testing": "^2.2.
|
|
41
|
+
"@smithy/snapshot-testing": "^2.2.5",
|
|
42
42
|
"@tsconfig/node20": "20.1.8",
|
|
43
43
|
"@types/node": "^20.14.8",
|
|
44
44
|
"concurrently": "7.0.0",
|