@lafken/queue 0.8.0 → 0.8.1
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/lib/resolver/queue/queue.d.ts +1 -0
- package/package.json +11 -11
|
@@ -5,6 +5,7 @@ declare const Queue_base: (new (...args: any[]) => {
|
|
|
5
5
|
isGlobal(module: import("@lafken/common").ModuleGlobalReferenceNames | (string & {}), id: string): void;
|
|
6
6
|
isDependent(resolveDependency: () => void): void;
|
|
7
7
|
readonly node: import("constructs").Node;
|
|
8
|
+
with(...mixins: import("constructs").IMixin[]): import("constructs").IConstruct;
|
|
8
9
|
toString(): string;
|
|
9
10
|
}) & typeof SqsQueue;
|
|
10
11
|
export declare class Queue extends Queue_base {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lafken/queue",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Define SQS queues and consumers using TypeScript decorators - automatic infrastructure generation with Lafken",
|
|
6
6
|
"keywords": [
|
|
@@ -52,23 +52,23 @@
|
|
|
52
52
|
"lib"
|
|
53
53
|
],
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@aws-sdk/client-sqs": "^3.
|
|
55
|
+
"@aws-sdk/client-sqs": "^3.1008.0",
|
|
56
56
|
"aws-lambda": "^1.0.7",
|
|
57
57
|
"reflect-metadata": "^0.2.2",
|
|
58
|
-
"@lafken/resolver": "0.8.
|
|
58
|
+
"@lafken/resolver": "0.8.1"
|
|
59
59
|
},
|
|
60
60
|
"devDependencies": {
|
|
61
|
-
"@cdktn/provider-aws": "^23.
|
|
62
|
-
"@swc/core": "^1.15.
|
|
63
|
-
"@swc/helpers": "^0.5.
|
|
64
|
-
"@types/aws-lambda": "^8.10.
|
|
65
|
-
"@vitest/runner": "^4.0
|
|
61
|
+
"@cdktn/provider-aws": "^23.3.0",
|
|
62
|
+
"@swc/core": "^1.15.18",
|
|
63
|
+
"@swc/helpers": "^0.5.19",
|
|
64
|
+
"@types/aws-lambda": "^8.10.161",
|
|
65
|
+
"@vitest/runner": "^4.1.0",
|
|
66
66
|
"cdktn": "^0.22.0",
|
|
67
67
|
"cdktn-vitest": "^1.0.0",
|
|
68
|
-
"constructs": "^10.
|
|
68
|
+
"constructs": "^10.5.1",
|
|
69
69
|
"unplugin-swc": "^1.5.9",
|
|
70
|
-
"vitest": "^4.0
|
|
71
|
-
"@lafken/common": "0.8.
|
|
70
|
+
"vitest": "^4.1.0",
|
|
71
|
+
"@lafken/common": "0.8.1"
|
|
72
72
|
},
|
|
73
73
|
"peerDependencies": {
|
|
74
74
|
"@cdktn/provider-aws": "^23.0.0",
|