@backstage/plugin-events-backend-module-aws-sqs 0.0.0-nightly-20230727021638 → 0.0.0-nightly-20230729021935
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/CHANGELOG.md +7 -5
- package/alpha/package.json +1 -1
- package/config.d.ts +4 -5
- package/package.json +15 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-events-backend-module-aws-sqs
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20230729021935
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- 12a8c94eda8d: Add package repository and homepage metadata
|
|
8
|
+
- 4b82382ed8c2: Fixed invalid configuration schema. The configuration schema may be more strict as a result.
|
|
7
9
|
- Updated dependencies
|
|
8
|
-
- @backstage/
|
|
9
|
-
- @backstage/backend-
|
|
10
|
-
- @backstage/backend-
|
|
10
|
+
- @backstage/plugin-events-node@0.0.0-nightly-20230729021935
|
|
11
|
+
- @backstage/backend-common@0.0.0-nightly-20230729021935
|
|
12
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20230729021935
|
|
13
|
+
- @backstage/backend-tasks@0.0.0-nightly-20230729021935
|
|
11
14
|
- @backstage/config@1.0.8
|
|
12
15
|
- @backstage/types@1.1.0
|
|
13
|
-
- @backstage/plugin-events-node@0.0.0-nightly-20230727021638
|
|
14
16
|
|
|
15
17
|
## 0.2.3-next.0
|
|
16
18
|
|
package/alpha/package.json
CHANGED
package/config.d.ts
CHANGED
|
@@ -31,9 +31,8 @@ export interface Config {
|
|
|
31
31
|
* Contains a record per topic for which an AWS SQS queue
|
|
32
32
|
* should be used as source of events.
|
|
33
33
|
*/
|
|
34
|
-
topics:
|
|
35
|
-
string
|
|
36
|
-
{
|
|
34
|
+
topics: {
|
|
35
|
+
[name: string]: {
|
|
37
36
|
/**
|
|
38
37
|
* (Required) Queue-related configuration.
|
|
39
38
|
*/
|
|
@@ -69,8 +68,8 @@ export interface Config {
|
|
|
69
68
|
* Default: 1 minute.
|
|
70
69
|
*/
|
|
71
70
|
waitTimeAfterEmptyReceive: HumanDuration;
|
|
72
|
-
}
|
|
73
|
-
|
|
71
|
+
};
|
|
72
|
+
};
|
|
74
73
|
};
|
|
75
74
|
};
|
|
76
75
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-backend-module-aws-sqs",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20230729021935",
|
|
4
4
|
"main": "./dist/index.cjs.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -23,6 +23,12 @@
|
|
|
23
23
|
"backstage": {
|
|
24
24
|
"role": "backend-plugin-module"
|
|
25
25
|
},
|
|
26
|
+
"homepage": "https://backstage.io",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/backstage/backstage",
|
|
30
|
+
"directory": "plugins/events-backend-module-aws-sqs"
|
|
31
|
+
},
|
|
26
32
|
"scripts": {
|
|
27
33
|
"start": "backstage-cli package start",
|
|
28
34
|
"build": "backstage-cli package build",
|
|
@@ -34,21 +40,21 @@
|
|
|
34
40
|
},
|
|
35
41
|
"dependencies": {
|
|
36
42
|
"@aws-sdk/client-sqs": "^3.350.0",
|
|
37
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
38
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
39
|
-
"@backstage/backend-tasks": "^0.0.0-nightly-
|
|
43
|
+
"@backstage/backend-common": "^0.0.0-nightly-20230729021935",
|
|
44
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20230729021935",
|
|
45
|
+
"@backstage/backend-tasks": "^0.0.0-nightly-20230729021935",
|
|
40
46
|
"@backstage/config": "^1.0.8",
|
|
41
|
-
"@backstage/plugin-events-node": "^0.0.0-nightly-
|
|
47
|
+
"@backstage/plugin-events-node": "^0.0.0-nightly-20230729021935",
|
|
42
48
|
"@backstage/types": "^1.1.0",
|
|
43
49
|
"luxon": "^3.0.0",
|
|
44
50
|
"winston": "^3.2.1"
|
|
45
51
|
},
|
|
46
52
|
"devDependencies": {
|
|
47
53
|
"@aws-sdk/types": "^3.347.0",
|
|
48
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
49
|
-
"@backstage/backend-test-utils": "^0.0.0-nightly-
|
|
50
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
51
|
-
"@backstage/plugin-events-backend-test-utils": "^0.0.0-nightly-
|
|
54
|
+
"@backstage/backend-common": "^0.0.0-nightly-20230729021935",
|
|
55
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20230729021935",
|
|
56
|
+
"@backstage/cli": "^0.0.0-nightly-20230729021935",
|
|
57
|
+
"@backstage/plugin-events-backend-test-utils": "^0.0.0-nightly-20230729021935",
|
|
52
58
|
"aws-sdk-client-mock": "^2.0.0"
|
|
53
59
|
},
|
|
54
60
|
"files": [
|