@backstage/plugin-catalog-backend-module-msgraph 0.0.0-nightly-20230728021812 → 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 +6 -5
- package/alpha/package.json +1 -1
- package/config.d.ts +4 -5
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-msgraph
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20230729021935
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- 4b82382ed8c2: Fixed invalid configuration schema. The configuration schema may be more strict as a result.
|
|
7
8
|
- Updated dependencies
|
|
8
|
-
- @backstage/
|
|
9
|
-
- @backstage/backend-
|
|
10
|
-
- @backstage/backend-
|
|
9
|
+
- @backstage/plugin-catalog-node@0.0.0-nightly-20230729021935
|
|
10
|
+
- @backstage/backend-common@0.0.0-nightly-20230729021935
|
|
11
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20230729021935
|
|
12
|
+
- @backstage/backend-tasks@0.0.0-nightly-20230729021935
|
|
11
13
|
- @backstage/catalog-model@1.4.1
|
|
12
14
|
- @backstage/config@1.0.8
|
|
13
15
|
- @backstage/plugin-catalog-common@1.0.15
|
|
14
|
-
- @backstage/plugin-catalog-node@0.0.0-nightly-20230728021812
|
|
15
16
|
|
|
16
17
|
## 0.5.7-next.0
|
|
17
18
|
|
package/alpha/package.json
CHANGED
package/config.d.ts
CHANGED
|
@@ -209,9 +209,8 @@ export interface Config {
|
|
|
209
209
|
*/
|
|
210
210
|
schedule?: TaskScheduleDefinitionConfig;
|
|
211
211
|
}
|
|
212
|
-
|
|
|
213
|
-
string
|
|
214
|
-
{
|
|
212
|
+
| {
|
|
213
|
+
[name: string]: {
|
|
215
214
|
/**
|
|
216
215
|
* The prefix of the target that this matches on, e.g.
|
|
217
216
|
* "https://graph.microsoft.com/v1.0", with no trailing slash.
|
|
@@ -296,8 +295,8 @@ export interface Config {
|
|
|
296
295
|
* (Optional) TaskScheduleDefinition for the refresh.
|
|
297
296
|
*/
|
|
298
297
|
schedule?: TaskScheduleDefinitionConfig;
|
|
299
|
-
}
|
|
300
|
-
|
|
298
|
+
};
|
|
299
|
+
};
|
|
301
300
|
};
|
|
302
301
|
};
|
|
303
302
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-msgraph",
|
|
3
3
|
"description": "A Backstage catalog backend module that helps integrate towards Microsoft Graph",
|
|
4
|
-
"version": "0.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-20230729021935",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@azure/identity": "^3.2.1",
|
|
47
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
48
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
49
|
-
"@backstage/backend-tasks": "^0.0.0-nightly-
|
|
47
|
+
"@backstage/backend-common": "^0.0.0-nightly-20230729021935",
|
|
48
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20230729021935",
|
|
49
|
+
"@backstage/backend-tasks": "^0.0.0-nightly-20230729021935",
|
|
50
50
|
"@backstage/catalog-model": "^1.4.1",
|
|
51
51
|
"@backstage/config": "^1.0.8",
|
|
52
52
|
"@backstage/plugin-catalog-common": "^1.0.15",
|
|
53
|
-
"@backstage/plugin-catalog-node": "^0.0.0-nightly-
|
|
53
|
+
"@backstage/plugin-catalog-node": "^0.0.0-nightly-20230729021935",
|
|
54
54
|
"@microsoft/microsoft-graph-types": "^2.6.0",
|
|
55
55
|
"@types/node-fetch": "^2.5.12",
|
|
56
56
|
"lodash": "^4.17.21",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"winston": "^3.2.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
65
|
-
"@backstage/backend-test-utils": "^0.0.0-nightly-
|
|
66
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
64
|
+
"@backstage/backend-common": "^0.0.0-nightly-20230729021935",
|
|
65
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20230729021935",
|
|
66
|
+
"@backstage/cli": "^0.0.0-nightly-20230729021935",
|
|
67
67
|
"@types/lodash": "^4.14.151",
|
|
68
68
|
"luxon": "^3.0.0",
|
|
69
69
|
"msw": "^1.0.0"
|