@backstage/plugin-catalog-backend-module-msgraph 0.6.5 → 0.6.6-next.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/CHANGELOG.md +17 -0
- package/config.d.ts +34 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-msgraph
|
|
2
2
|
|
|
3
|
+
## 0.6.6-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 29a4aa8: fix(config): add missing parameters in config schema
|
|
8
|
+
|
|
9
|
+
## 0.6.6-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/backend-plugin-api@1.1.1-next.0
|
|
15
|
+
- @backstage/catalog-model@1.7.2
|
|
16
|
+
- @backstage/config@1.3.1
|
|
17
|
+
- @backstage/plugin-catalog-common@1.1.2
|
|
18
|
+
- @backstage/plugin-catalog-node@1.15.1-next.0
|
|
19
|
+
|
|
3
20
|
## 0.6.5
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -165,6 +165,12 @@ export interface Config {
|
|
|
165
165
|
* This can be useful for huge organizations.
|
|
166
166
|
*/
|
|
167
167
|
loadPhotos?: boolean;
|
|
168
|
+
/**
|
|
169
|
+
* The fields to be fetched on query.
|
|
170
|
+
*
|
|
171
|
+
* E.g. ["id", "displayName", "description"]
|
|
172
|
+
*/
|
|
173
|
+
select?: string[];
|
|
168
174
|
};
|
|
169
175
|
|
|
170
176
|
group?: {
|
|
@@ -257,15 +263,38 @@ export interface Config {
|
|
|
257
263
|
*/
|
|
258
264
|
queryMode?: string;
|
|
259
265
|
user?: {
|
|
266
|
+
/**
|
|
267
|
+
* The "expand" argument to apply to users.
|
|
268
|
+
*
|
|
269
|
+
* E.g. "manager".
|
|
270
|
+
*/
|
|
271
|
+
expand?: string;
|
|
260
272
|
/**
|
|
261
273
|
* The filter to apply to extract users.
|
|
262
274
|
*
|
|
263
275
|
* E.g. "accountEnabled eq true and userType eq 'member'"
|
|
264
276
|
*/
|
|
265
277
|
filter?: string;
|
|
278
|
+
/**
|
|
279
|
+
* Set to false to not load user photos.
|
|
280
|
+
* This can be useful for huge organizations.
|
|
281
|
+
*/
|
|
282
|
+
loadPhotos?: boolean;
|
|
283
|
+
/**
|
|
284
|
+
* The fields to be fetched on query.
|
|
285
|
+
*
|
|
286
|
+
* E.g. ["id", "displayName", "description"]
|
|
287
|
+
*/
|
|
288
|
+
select?: string[];
|
|
266
289
|
};
|
|
267
290
|
|
|
268
291
|
group?: {
|
|
292
|
+
/**
|
|
293
|
+
* The "expand" argument to apply to groups.
|
|
294
|
+
*
|
|
295
|
+
* E.g. "member".
|
|
296
|
+
*/
|
|
297
|
+
expand?: string;
|
|
269
298
|
/**
|
|
270
299
|
* The filter to apply to extract groups.
|
|
271
300
|
*
|
|
@@ -284,6 +313,11 @@ export interface Config {
|
|
|
284
313
|
* E.g. ["id", "displayName", "description"]
|
|
285
314
|
*/
|
|
286
315
|
select?: string[];
|
|
316
|
+
/**
|
|
317
|
+
* Whether to ingest groups that are members of the found/filtered/searched groups.
|
|
318
|
+
* Default value is `false`.
|
|
319
|
+
*/
|
|
320
|
+
includeSubGroups?: boolean;
|
|
287
321
|
};
|
|
288
322
|
|
|
289
323
|
userGroupMember?: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-msgraph",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.6-next.1",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards Microsoft Graph",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -62,11 +62,11 @@
|
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@azure/identity": "^4.0.0",
|
|
65
|
-
"@backstage/backend-plugin-api": "
|
|
66
|
-
"@backstage/catalog-model": "
|
|
67
|
-
"@backstage/config": "
|
|
68
|
-
"@backstage/plugin-catalog-common": "
|
|
69
|
-
"@backstage/plugin-catalog-node": "
|
|
65
|
+
"@backstage/backend-plugin-api": "1.1.1-next.0",
|
|
66
|
+
"@backstage/catalog-model": "1.7.2",
|
|
67
|
+
"@backstage/config": "1.3.1",
|
|
68
|
+
"@backstage/plugin-catalog-common": "1.1.2",
|
|
69
|
+
"@backstage/plugin-catalog-node": "1.15.1-next.0",
|
|
70
70
|
"@microsoft/microsoft-graph-types": "^2.6.0",
|
|
71
71
|
"lodash": "^4.17.21",
|
|
72
72
|
"p-limit": "^3.0.2",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"uuid": "^11.0.0"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@backstage/backend-test-utils": "
|
|
78
|
-
"@backstage/cli": "
|
|
77
|
+
"@backstage/backend-test-utils": "1.2.1-next.0",
|
|
78
|
+
"@backstage/cli": "0.29.5-next.0",
|
|
79
79
|
"@types/lodash": "^4.14.151",
|
|
80
80
|
"luxon": "^3.0.0",
|
|
81
81
|
"msw": "^1.0.0"
|