@aws-lite/sqs-types 0.2.4 → 0.2.5
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/index.d.ts +4 -4
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -14,25 +14,25 @@ declare interface AwsLiteSQS {
|
|
|
14
14
|
/**
|
|
15
15
|
* @description
|
|
16
16
|
* - AWS docs: {@link https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html SQS: SendMessage}
|
|
17
|
-
* - aws-lite docs: {@link https://github.com/
|
|
17
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/sqs/readme.md#SendMessage SQS: SendMessage}
|
|
18
18
|
*/
|
|
19
19
|
SendMessage: (input: { MessageBody: string, QueueUrl: string, DelaySeconds?: number, MessageAttributes?: Record<string, any>, MessageDeduplicationId?: string, MessageGroupId?: string, MessageSystemAttributes?: Record<string, any> }) => Promise<SendMessageResponse>
|
|
20
20
|
/**
|
|
21
21
|
* @description
|
|
22
22
|
* - AWS docs: {@link https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_GetQueueAttributes.html SQS: GetQueueAttributes}
|
|
23
|
-
* - aws-lite docs: {@link https://github.com/
|
|
23
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/sqs/readme.md#GetQueueAttributes SQS: GetQueueAttributes}
|
|
24
24
|
*/
|
|
25
25
|
GetQueueAttributes: (input: { QueueUrl: string, AttributeNames?: any[] }) => Promise<GetQueueAttributesResponse>
|
|
26
26
|
/**
|
|
27
27
|
* @description
|
|
28
28
|
* - AWS docs: {@link https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_ReceiveMessage.html SQS: ReceiveMessage}
|
|
29
|
-
* - aws-lite docs: {@link https://github.com/
|
|
29
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/sqs/readme.md#ReceiveMessage SQS: ReceiveMessage}
|
|
30
30
|
*/
|
|
31
31
|
ReceiveMessage: (input: { QueueUrl: string, AttributeNames?: any[], MaxNumberOfMessages?: number, MessageAttributeNames?: any[], MessageSystemAttributeNames?: any[], ReceiveRequestAttemptId?: string, VisibilityTimeout?: number, WaitTimeSeconds?: number }) => Promise<ReceiveMessageResponse>
|
|
32
32
|
/**
|
|
33
33
|
* @description
|
|
34
34
|
* - AWS docs: {@link https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_DeleteMessage.html SQS: DeleteMessage}
|
|
35
|
-
* - aws-lite docs: {@link https://github.com/
|
|
35
|
+
* - aws-lite docs: {@link https://github.com/aws-lite/aws-lite/blob/main/plugins/sqs/readme.md#DeleteMessage SQS: DeleteMessage}
|
|
36
36
|
*/
|
|
37
37
|
DeleteMessage: (input: { QueueUrl: string, ReceiptHandle: string }) => Promise<DeleteMessageResponse>
|
|
38
38
|
// $METHODS_END
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-lite/sqs-types",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "Type definitions for the `@aws-lite/sqs` plugin",
|
|
5
5
|
"homepage": "https://aws-lite.org/services/sqs",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
|
-
"url": "git+https://github.com/
|
|
8
|
+
"url": "git+https://github.com/aws-lite/aws-lite.git",
|
|
9
9
|
"directory": "plugins/sqs/types"
|
|
10
10
|
},
|
|
11
|
-
"bugs": "https://github.com/
|
|
11
|
+
"bugs": "https://github.com/aws-lite/aws-lite/issues",
|
|
12
12
|
"main": "",
|
|
13
13
|
"engines": {
|
|
14
14
|
"node": ">=16"
|