@backstage/plugin-catalog-backend-module-puppetdb 0.1.1-next.1 → 0.1.1-next.2
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 +14 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +5 -5
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-puppetdb
|
|
2
2
|
|
|
3
|
+
## 0.1.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.18.4-next.2
|
|
9
|
+
- @backstage/backend-plugin-api@0.5.1-next.2
|
|
10
|
+
- @backstage/backend-tasks@0.5.1-next.2
|
|
11
|
+
- @backstage/catalog-model@1.2.1
|
|
12
|
+
- @backstage/config@1.0.7
|
|
13
|
+
- @backstage/errors@1.1.5
|
|
14
|
+
- @backstage/types@1.0.2
|
|
15
|
+
- @backstage/plugin-catalog-node@1.3.5-next.2
|
|
16
|
+
|
|
3
17
|
## 0.1.1-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ declare const ANNOTATION_PUPPET_CERTNAME = "puppet.com/certname";
|
|
|
17
17
|
*
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
|
-
|
|
20
|
+
type PuppetDbEntityProviderConfig = {
|
|
21
21
|
/**
|
|
22
22
|
* ID of the provider.
|
|
23
23
|
*/
|
|
@@ -46,13 +46,13 @@ declare type PuppetDbEntityProviderConfig = {
|
|
|
46
46
|
*
|
|
47
47
|
* @public
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
type ResourceTransformer = (node: PuppetNode, config: PuppetDbEntityProviderConfig) => Promise<ResourceEntity | undefined>;
|
|
50
50
|
/**
|
|
51
51
|
* A node in PuppetDB.
|
|
52
52
|
*
|
|
53
53
|
* @public
|
|
54
54
|
*/
|
|
55
|
-
|
|
55
|
+
type PuppetNode = {
|
|
56
56
|
/**
|
|
57
57
|
* The most recent time of fact submission from the associated certname.
|
|
58
58
|
*/
|
|
@@ -87,7 +87,7 @@ declare type PuppetNode = {
|
|
|
87
87
|
*
|
|
88
88
|
* @public
|
|
89
89
|
*/
|
|
90
|
-
|
|
90
|
+
type PuppetFactSet = {
|
|
91
91
|
/**
|
|
92
92
|
* The array of facts.
|
|
93
93
|
*/
|
|
@@ -102,7 +102,7 @@ declare type PuppetFactSet = {
|
|
|
102
102
|
*
|
|
103
103
|
* @public
|
|
104
104
|
*/
|
|
105
|
-
|
|
105
|
+
type PuppetFact = {
|
|
106
106
|
/**
|
|
107
107
|
* The name of the fact.
|
|
108
108
|
*/
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-puppetdb",
|
|
3
3
|
"description": "A Backstage catalog backend module that helps integrate towards PuppetDB",
|
|
4
|
-
"version": "0.1.1-next.
|
|
4
|
+
"version": "0.1.1-next.2",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -45,13 +45,13 @@
|
|
|
45
45
|
"postpack": "backstage-cli package postpack"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@backstage/backend-common": "^0.18.4-next.
|
|
49
|
-
"@backstage/backend-plugin-api": "^0.5.1-next.
|
|
50
|
-
"@backstage/backend-tasks": "^0.5.1-next.
|
|
48
|
+
"@backstage/backend-common": "^0.18.4-next.2",
|
|
49
|
+
"@backstage/backend-plugin-api": "^0.5.1-next.2",
|
|
50
|
+
"@backstage/backend-tasks": "^0.5.1-next.2",
|
|
51
51
|
"@backstage/catalog-model": "^1.2.1",
|
|
52
52
|
"@backstage/config": "^1.0.7",
|
|
53
53
|
"@backstage/errors": "^1.1.5",
|
|
54
|
-
"@backstage/plugin-catalog-node": "^1.3.5-next.
|
|
54
|
+
"@backstage/plugin-catalog-node": "^1.3.5-next.2",
|
|
55
55
|
"@backstage/types": "^1.0.2",
|
|
56
56
|
"lodash": "^4.17.21",
|
|
57
57
|
"luxon": "^3.0.0",
|
|
@@ -60,8 +60,8 @@
|
|
|
60
60
|
"winston": "^3.2.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@backstage/backend-test-utils": "^0.1.36-next.
|
|
64
|
-
"@backstage/cli": "^0.22.6-next.
|
|
63
|
+
"@backstage/backend-test-utils": "^0.1.36-next.2",
|
|
64
|
+
"@backstage/cli": "^0.22.6-next.2",
|
|
65
65
|
"@types/lodash": "^4.14.151",
|
|
66
66
|
"msw": "^0.49.0"
|
|
67
67
|
},
|