@backstage/plugin-catalog-backend-module-msgraph 0.6.6-next.0 → 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 CHANGED
@@ -1,5 +1,11 @@
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
+
3
9
  ## 0.6.6-next.0
4
10
 
5
11
  ### 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.6-next.0",
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",