@backstage/plugin-catalog-backend-module-incremental-ingestion 0.3.1-next.1 → 0.3.1-next.3
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 +32 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-incremental-ingestion
|
|
2
2
|
|
|
3
|
+
## 0.3.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-backend@1.9.0-next.3
|
|
9
|
+
- @backstage/catalog-model@1.3.0-next.0
|
|
10
|
+
- @backstage/backend-common@0.18.4-next.2
|
|
11
|
+
- @backstage/backend-plugin-api@0.5.1-next.2
|
|
12
|
+
- @backstage/backend-tasks@0.5.1-next.2
|
|
13
|
+
- @backstage/config@1.0.7
|
|
14
|
+
- @backstage/errors@1.1.5
|
|
15
|
+
- @backstage/plugin-catalog-node@1.3.5-next.3
|
|
16
|
+
- @backstage/plugin-events-node@0.2.5-next.2
|
|
17
|
+
- @backstage/plugin-permission-common@0.7.5-next.0
|
|
18
|
+
|
|
19
|
+
## 0.3.1-next.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies
|
|
24
|
+
- @backstage/plugin-catalog-backend@1.8.1-next.2
|
|
25
|
+
- @backstage/backend-common@0.18.4-next.2
|
|
26
|
+
- @backstage/backend-plugin-api@0.5.1-next.2
|
|
27
|
+
- @backstage/backend-tasks@0.5.1-next.2
|
|
28
|
+
- @backstage/catalog-model@1.2.1
|
|
29
|
+
- @backstage/config@1.0.7
|
|
30
|
+
- @backstage/errors@1.1.5
|
|
31
|
+
- @backstage/plugin-catalog-node@1.3.5-next.2
|
|
32
|
+
- @backstage/plugin-events-node@0.2.5-next.2
|
|
33
|
+
- @backstage/plugin-permission-common@0.7.5-next.0
|
|
34
|
+
|
|
3
35
|
## 0.3.1-next.1
|
|
4
36
|
|
|
5
37
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -84,7 +84,7 @@ interface IncrementalEntityProvider<TCursor, TContext> {
|
|
|
84
84
|
*
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
|
-
|
|
87
|
+
type EntityIteratorResult<T> = {
|
|
88
88
|
done: false;
|
|
89
89
|
entities: DeferredEntity[];
|
|
90
90
|
cursor: T;
|
|
@@ -133,7 +133,7 @@ interface IncrementalEntityProviderOptions {
|
|
|
133
133
|
rejectEmptySourceCollections?: boolean;
|
|
134
134
|
}
|
|
135
135
|
/** @public */
|
|
136
|
-
|
|
136
|
+
type PluginEnvironment = {
|
|
137
137
|
logger: Logger;
|
|
138
138
|
database: PluginDatabaseManager;
|
|
139
139
|
scheduler: PluginTaskScheduler;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-incremental-ingestion",
|
|
3
3
|
"description": "An entity provider for streaming large asset sources into the catalog",
|
|
4
|
-
"version": "0.3.1-next.
|
|
4
|
+
"version": "0.3.1-next.3",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,15 +43,15 @@
|
|
|
43
43
|
"postpack": "backstage-cli package postpack"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.18.4-next.
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.5.1-next.
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.1-next.
|
|
49
|
-
"@backstage/catalog-model": "^1.
|
|
46
|
+
"@backstage/backend-common": "^0.18.4-next.2",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.5.1-next.2",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.1-next.2",
|
|
49
|
+
"@backstage/catalog-model": "^1.3.0-next.0",
|
|
50
50
|
"@backstage/config": "^1.0.7",
|
|
51
51
|
"@backstage/errors": "^1.1.5",
|
|
52
|
-
"@backstage/plugin-catalog-backend": "^1.
|
|
53
|
-
"@backstage/plugin-catalog-node": "^1.3.5-next.
|
|
54
|
-
"@backstage/plugin-events-node": "^0.2.5-next.
|
|
52
|
+
"@backstage/plugin-catalog-backend": "^1.9.0-next.3",
|
|
53
|
+
"@backstage/plugin-catalog-node": "^1.3.5-next.3",
|
|
54
|
+
"@backstage/plugin-events-node": "^0.2.5-next.2",
|
|
55
55
|
"@backstage/plugin-permission-common": "^0.7.5-next.0",
|
|
56
56
|
"@types/express": "^4.17.6",
|
|
57
57
|
"@types/luxon": "^3.0.0",
|
|
@@ -64,10 +64,10 @@
|
|
|
64
64
|
"winston": "^3.2.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@backstage/backend-app-api": "^0.4.2-next.
|
|
68
|
-
"@backstage/backend-defaults": "^0.1.9-next.
|
|
69
|
-
"@backstage/backend-test-utils": "^0.1.36-next.
|
|
70
|
-
"@backstage/cli": "^0.22.6-next.
|
|
67
|
+
"@backstage/backend-app-api": "^0.4.2-next.2",
|
|
68
|
+
"@backstage/backend-defaults": "^0.1.9-next.2",
|
|
69
|
+
"@backstage/backend-test-utils": "^0.1.36-next.2",
|
|
70
|
+
"@backstage/cli": "^0.22.6-next.3"
|
|
71
71
|
},
|
|
72
72
|
"files": [
|
|
73
73
|
"dist",
|