@techdocs/cli 1.8.24 → 1.8.25-next.0

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.
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "schemas": [
3
3
  {
4
+ "packageName": "@backstage/cli",
4
5
  "value": {
5
6
  "$schema": "https://backstage.io/schema/config-v1",
6
7
  "title": "@backstage/cli",
@@ -123,7 +124,8 @@
123
124
  }
124
125
  },
125
126
  "$schema": "http://json-schema.org/draft-07/schema#"
126
- }
127
+ },
128
+ "packageName": "@backstage/plugin-permission-common"
127
129
  },
128
130
  {
129
131
  "path": "../core-app-api/config.d.ts",
@@ -352,7 +354,8 @@
352
354
  "backend"
353
355
  ],
354
356
  "$schema": "http://json-schema.org/draft-07/schema#"
355
- }
357
+ },
358
+ "packageName": "@backstage/core-app-api"
356
359
  },
357
360
  {
358
361
  "path": "../core-components/config.d.ts",
@@ -397,7 +400,64 @@
397
400
  }
398
401
  },
399
402
  "$schema": "http://json-schema.org/draft-07/schema#"
400
- }
403
+ },
404
+ "packageName": "@backstage/core-components"
405
+ },
406
+ {
407
+ "path": "../../plugins/techdocs/config.d.ts",
408
+ "value": {
409
+ "type": "object",
410
+ "properties": {
411
+ "techdocs": {
412
+ "description": "Configuration options for the techdocs plugin",
413
+ "type": "object",
414
+ "properties": {
415
+ "builder": {
416
+ "description": "Documentation building process depends on the builder attr",
417
+ "visibility": "frontend",
418
+ "enum": [
419
+ "external",
420
+ "local"
421
+ ],
422
+ "type": "string"
423
+ },
424
+ "legacyUseCaseSensitiveTripletPaths": {
425
+ "description": "Allows fallback to case-sensitive triplets in case of migration issues.",
426
+ "visibility": "frontend",
427
+ "type": "boolean"
428
+ },
429
+ "sanitizer": {
430
+ "type": "object",
431
+ "properties": {
432
+ "allowedIframeHosts": {
433
+ "description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
434
+ "visibility": "frontend",
435
+ "type": "array",
436
+ "items": {
437
+ "type": "string"
438
+ }
439
+ },
440
+ "allowedCustomElementTagNameRegExp": {
441
+ "description": "Allows listed custom element tag name regex\nExample:\n allowedCustomElementTagNameRegExp: '^backstage-'\n this will allow all custom elements with tag name matching `^backstage-` like <backstage-custom-element /> etc.",
442
+ "visibility": "frontend",
443
+ "type": "string"
444
+ },
445
+ "allowedCustomElementAttributeNameRegExp": {
446
+ "description": "Allows listed custom element attribute name regex\nExample:\n allowedCustomElementAttributeNameRegExp: 'attribute1|attribute2'\n this will allow all custom element attributes matching `attribute1` or `attribute2` like <backstage-custom-element attribute1=\"yes\" attribute2/>",
447
+ "visibility": "frontend",
448
+ "type": "string"
449
+ }
450
+ }
451
+ }
452
+ }
453
+ }
454
+ },
455
+ "required": [
456
+ "techdocs"
457
+ ],
458
+ "$schema": "http://json-schema.org/draft-07/schema#"
459
+ },
460
+ "packageName": "@backstage/plugin-techdocs"
401
461
  },
402
462
  {
403
463
  "path": "../integration/config.d.ts",
@@ -842,7 +902,8 @@
842
902
  }
843
903
  },
844
904
  "$schema": "http://json-schema.org/draft-07/schema#"
845
- }
905
+ },
906
+ "packageName": "@backstage/integration"
846
907
  },
847
908
  {
848
909
  "path": "../frontend-app-api/config.d.ts",
@@ -954,62 +1015,8 @@
954
1015
  }
955
1016
  },
956
1017
  "$schema": "http://json-schema.org/draft-07/schema#"
957
- }
958
- },
959
- {
960
- "path": "../../plugins/techdocs/config.d.ts",
961
- "value": {
962
- "type": "object",
963
- "properties": {
964
- "techdocs": {
965
- "description": "Configuration options for the techdocs plugin",
966
- "type": "object",
967
- "properties": {
968
- "builder": {
969
- "description": "Documentation building process depends on the builder attr",
970
- "visibility": "frontend",
971
- "enum": [
972
- "external",
973
- "local"
974
- ],
975
- "type": "string"
976
- },
977
- "legacyUseCaseSensitiveTripletPaths": {
978
- "description": "Allows fallback to case-sensitive triplets in case of migration issues.",
979
- "visibility": "frontend",
980
- "type": "boolean"
981
- },
982
- "sanitizer": {
983
- "type": "object",
984
- "properties": {
985
- "allowedIframeHosts": {
986
- "description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
987
- "visibility": "frontend",
988
- "type": "array",
989
- "items": {
990
- "type": "string"
991
- }
992
- },
993
- "allowedCustomElementTagNameRegExp": {
994
- "description": "Allows listed custom element tag name regex\nExample:\n allowedCustomElementTagNameRegExp: '^backstage-'\n this will allow all custom elements with tag name matching `^backstage-` like <backstage-custom-element /> etc.",
995
- "visibility": "frontend",
996
- "type": "string"
997
- },
998
- "allowedCustomElementAttributeNameRegExp": {
999
- "description": "Allows listed custom element attribute name regex\nExample:\n allowedCustomElementAttributeNameRegExp: 'attribute1|attribute2'\n this will allow all custom element attributes matching `attribute1` or `attribute2` like <backstage-custom-element attribute1=\"yes\" attribute2/>",
1000
- "visibility": "frontend",
1001
- "type": "string"
1002
- }
1003
- }
1004
- }
1005
- }
1006
- }
1007
- },
1008
- "required": [
1009
- "techdocs"
1010
- ],
1011
- "$schema": "http://json-schema.org/draft-07/schema#"
1012
- }
1018
+ },
1019
+ "packageName": "@backstage/frontend-app-api"
1013
1020
  },
1014
1021
  {
1015
1022
  "path": "../../plugins/catalog/config.d.ts",
@@ -1039,7 +1046,8 @@
1039
1046
  }
1040
1047
  },
1041
1048
  "$schema": "http://json-schema.org/draft-07/schema#"
1042
- }
1049
+ },
1050
+ "packageName": "@backstage/plugin-catalog"
1043
1051
  },
1044
1052
  {
1045
1053
  "path": "../../node_modules/@backstage-community/plugin-stackstorm/config.d.ts",
@@ -1061,7 +1069,8 @@
1061
1069
  }
1062
1070
  },
1063
1071
  "$schema": "http://json-schema.org/draft-07/schema#"
1064
- }
1072
+ },
1073
+ "packageName": "@backstage-community/plugin-stackstorm"
1065
1074
  },
1066
1075
  {
1067
1076
  "path": "../../node_modules/@oriflame/backstage-plugin-score-card/config.d.ts",
@@ -1104,7 +1113,8 @@
1104
1113
  "scorecards"
1105
1114
  ],
1106
1115
  "$schema": "http://json-schema.org/draft-07/schema#"
1107
- }
1116
+ },
1117
+ "packageName": "@oriflame/backstage-plugin-score-card"
1108
1118
  },
1109
1119
  {
1110
1120
  "path": "../backend-plugin-api/config.d.ts",
@@ -1122,7 +1132,8 @@
1122
1132
  }
1123
1133
  },
1124
1134
  "$schema": "http://json-schema.org/draft-07/schema#"
1125
- }
1135
+ },
1136
+ "packageName": "@backstage/backend-plugin-api"
1126
1137
  },
1127
1138
  {
1128
1139
  "path": "../../plugins/auth-backend/config.d.ts",
@@ -1379,7 +1390,8 @@
1379
1390
  }
1380
1391
  },
1381
1392
  "$schema": "http://json-schema.org/draft-07/schema#"
1382
- }
1393
+ },
1394
+ "packageName": "@backstage/plugin-auth-backend"
1383
1395
  },
1384
1396
  {
1385
1397
  "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
@@ -1424,7 +1436,8 @@
1424
1436
  }
1425
1437
  },
1426
1438
  "$schema": "http://json-schema.org/draft-07/schema#"
1427
- }
1439
+ },
1440
+ "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1428
1441
  },
1429
1442
  {
1430
1443
  "path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/core-components/config.d.ts",
@@ -1469,7 +1482,8 @@
1469
1482
  }
1470
1483
  },
1471
1484
  "$schema": "http://json-schema.org/draft-07/schema#"
1472
- }
1485
+ },
1486
+ "packageName": "@backstage/core-components"
1473
1487
  },
1474
1488
  {
1475
1489
  "path": "../../node_modules/@oriflame/backstage-plugin-score-card/node_modules/@backstage/core-components/config.d.ts",
@@ -1514,7 +1528,8 @@
1514
1528
  }
1515
1529
  },
1516
1530
  "$schema": "http://json-schema.org/draft-07/schema#"
1517
- }
1531
+ },
1532
+ "packageName": "@backstage/core-components"
1518
1533
  },
1519
1534
  {
1520
1535
  "path": "../backend-app-api/config.d.ts",
@@ -1554,7 +1569,8 @@
1554
1569
  }
1555
1570
  },
1556
1571
  "$schema": "http://json-schema.org/draft-07/schema#"
1557
- }
1572
+ },
1573
+ "packageName": "@backstage/backend-app-api"
1558
1574
  },
1559
1575
  {
1560
1576
  "path": "../backend-defaults/config.d.ts",
@@ -1651,6 +1667,24 @@
1651
1667
  "description": "Options used by the default auth, httpAuth and userInfo services.",
1652
1668
  "type": "object",
1653
1669
  "properties": {
1670
+ "keys": {
1671
+ "description": "Keys shared by all backends for signing and validating backend tokens.",
1672
+ "deprecated": "this will be removed when the backwards compatibility is no longer needed with backend-common",
1673
+ "type": "array",
1674
+ "items": {
1675
+ "type": "object",
1676
+ "properties": {
1677
+ "secret": {
1678
+ "description": "Secret for generating tokens. Should be a base64 string, recommended\nlength is 24 bytes.",
1679
+ "visibility": "secret",
1680
+ "type": "string"
1681
+ }
1682
+ },
1683
+ "required": [
1684
+ "secret"
1685
+ ]
1686
+ }
1687
+ },
1654
1688
  "dangerouslyDisableDefaultAuthPolicy": {
1655
1689
  "description": "This disables the otherwise default auth policy, which requires all\nrequests to be authenticated with either user or service credentials.\n\nDisabling this check means that the backend will no longer block\nunauthenticated requests, but instead allow them to pass through to\nplugins.\n\nIf permissions are enabled, unauthenticated requests will be treated\nexactly as such, leaving it to the permission policy to determine what\npermissions should be allowed for an unauthenticated identity. Note\nthat this will also apply to service-to-service calls between plugins\nunless you configure credentials for service calls.",
1656
1690
  "type": "boolean"
@@ -2442,7 +2476,8 @@
2442
2476
  "app"
2443
2477
  ],
2444
2478
  "$schema": "http://json-schema.org/draft-07/schema#"
2445
- }
2479
+ },
2480
+ "packageName": "@backstage/backend-defaults"
2446
2481
  },
2447
2482
  {
2448
2483
  "path": "../../plugins/events-node/config.d.ts",
@@ -2465,536 +2500,113 @@
2465
2500
  }
2466
2501
  },
2467
2502
  "$schema": "http://json-schema.org/draft-07/schema#"
2468
- }
2503
+ },
2504
+ "packageName": "@backstage/plugin-events-node"
2469
2505
  },
2470
2506
  {
2471
- "path": "../../node_modules/@backstage/backend-common/config.d.ts",
2507
+ "path": "../../plugins/auth-backend-module-atlassian-provider/config.d.ts",
2472
2508
  "value": {
2473
2509
  "type": "object",
2474
2510
  "properties": {
2475
- "app": {
2476
- "type": "object",
2477
- "properties": {
2478
- "baseUrl": {
2479
- "type": "string"
2480
- }
2481
- },
2482
- "required": [
2483
- "baseUrl"
2484
- ]
2485
- },
2486
- "backend": {
2511
+ "auth": {
2487
2512
  "type": "object",
2488
2513
  "properties": {
2489
- "auth": {
2490
- "description": "Backend configuration for when request authentication is enabled",
2514
+ "providers": {
2491
2515
  "type": "object",
2492
2516
  "properties": {
2493
- "keys": {
2494
- "description": "Keys shared by all backends for signing and validating backend tokens.",
2495
- "type": "array",
2496
- "items": {
2517
+ "atlassian": {
2518
+ "visibility": "frontend",
2519
+ "type": "object",
2520
+ "additionalProperties": {
2497
2521
  "type": "object",
2498
2522
  "properties": {
2499
- "secret": {
2500
- "description": "Secret for generating tokens. Should be a base64 string, recommended\nlength is 24 bytes.",
2523
+ "clientId": {
2524
+ "type": "string"
2525
+ },
2526
+ "clientSecret": {
2501
2527
  "visibility": "secret",
2502
2528
  "type": "string"
2529
+ },
2530
+ "audience": {
2531
+ "type": "string"
2532
+ },
2533
+ "callbackUrl": {
2534
+ "type": "string"
2535
+ },
2536
+ "additionalScopes": {
2537
+ "anyOf": [
2538
+ {
2539
+ "type": "array",
2540
+ "items": {
2541
+ "type": "string"
2542
+ }
2543
+ },
2544
+ {
2545
+ "type": "string"
2546
+ }
2547
+ ]
2548
+ },
2549
+ "signIn": {
2550
+ "type": "object",
2551
+ "properties": {
2552
+ "resolvers": {
2553
+ "type": "array",
2554
+ "items": {
2555
+ "anyOf": [
2556
+ {
2557
+ "type": "object",
2558
+ "properties": {
2559
+ "resolver": {
2560
+ "type": "string",
2561
+ "const": "usernameMatchingUserEntityName"
2562
+ }
2563
+ },
2564
+ "required": [
2565
+ "resolver"
2566
+ ]
2567
+ },
2568
+ {
2569
+ "type": "object",
2570
+ "properties": {
2571
+ "resolver": {
2572
+ "type": "string",
2573
+ "const": "emailLocalPartMatchingUserEntityName"
2574
+ },
2575
+ "allowedDomains": {
2576
+ "type": "array",
2577
+ "items": {
2578
+ "type": "string"
2579
+ }
2580
+ }
2581
+ },
2582
+ "required": [
2583
+ "resolver"
2584
+ ]
2585
+ },
2586
+ {
2587
+ "type": "object",
2588
+ "properties": {
2589
+ "resolver": {
2590
+ "type": "string",
2591
+ "const": "emailMatchingUserEntityProfileEmail"
2592
+ }
2593
+ },
2594
+ "required": [
2595
+ "resolver"
2596
+ ]
2597
+ }
2598
+ ]
2599
+ }
2600
+ }
2601
+ },
2602
+ "required": [
2603
+ "resolvers"
2604
+ ]
2503
2605
  }
2504
2606
  },
2505
2607
  "required": [
2506
- "secret"
2507
- ]
2508
- }
2509
- }
2510
- }
2511
- },
2512
- "baseUrl": {
2513
- "type": "string"
2514
- },
2515
- "listen": {
2516
- "description": "Address that the backend should listen to.",
2517
- "anyOf": [
2518
- {
2519
- "type": "object",
2520
- "properties": {
2521
- "host": {
2522
- "description": "Address of the interface that the backend should bind to.",
2523
- "type": "string"
2524
- },
2525
- "port": {
2526
- "description": "Port that the backend should listen to.",
2527
- "type": [
2528
- "string",
2529
- "number"
2530
- ]
2531
- }
2532
- }
2533
- },
2534
- {
2535
- "type": "string"
2536
- }
2537
- ]
2538
- },
2539
- "https": {
2540
- "description": "HTTPS configuration for the backend. If omitted the backend will serve HTTP.\n\nSetting this to `true` will cause self-signed certificates to be generated, which\ncan be useful for local development or other non-production scenarios.",
2541
- "anyOf": [
2542
- {
2543
- "type": "object",
2544
- "properties": {
2545
- "certificate": {
2546
- "description": "Certificate configuration",
2547
- "type": "object",
2548
- "properties": {
2549
- "cert": {
2550
- "description": "PEM encoded certificate. Use $file to load in a file",
2551
- "type": "string"
2552
- },
2553
- "key": {
2554
- "description": "PEM encoded certificate key. Use $file to load in a file.",
2555
- "visibility": "secret",
2556
- "type": "string"
2557
- }
2558
- },
2559
- "required": [
2560
- "cert",
2561
- "key"
2562
- ]
2563
- }
2564
- }
2565
- },
2566
- {
2567
- "const": true,
2568
- "type": "boolean"
2569
- }
2570
- ]
2571
- },
2572
- "workingDirectory": {
2573
- "description": "An absolute path to a directory that can be used as a working dir, for\nexample as scratch space for large operations.",
2574
- "type": "string"
2575
- },
2576
- "database": {
2577
- "description": "Database connection configuration, select base database type using the `client` field",
2578
- "type": "object",
2579
- "properties": {
2580
- "client": {
2581
- "description": "Default database client to use",
2582
- "enum": [
2583
- "better-sqlite3",
2584
- "pg",
2585
- "sqlite3"
2586
- ],
2587
- "type": "string"
2588
- },
2589
- "connection": {
2590
- "description": "Base database connection string, or object with individual connection properties",
2591
- "visibility": "secret",
2592
- "anyOf": [
2593
- {
2594
- "type": "object",
2595
- "additionalProperties": {},
2596
- "properties": {
2597
- "password": {
2598
- "description": "Password that belongs to the client User",
2599
- "visibility": "secret",
2600
- "type": "string"
2601
- }
2602
- }
2603
- },
2604
- {
2605
- "type": "string"
2606
- }
2607
- ]
2608
- },
2609
- "prefix": {
2610
- "description": "Database name prefix override",
2611
- "type": "string"
2612
- },
2613
- "ensureExists": {
2614
- "description": "Whether to ensure the given database exists by creating it if it does not.\nDefaults to true if unspecified.",
2615
- "type": "boolean"
2616
- },
2617
- "ensureSchemaExists": {
2618
- "description": "Whether to ensure the given database schema exists by creating it if it does not.\nDefaults to false if unspecified.\n\nNOTE: Currently only supported by the `pg` client when pluginDivisionMode: schema",
2619
- "type": "boolean"
2620
- },
2621
- "pluginDivisionMode": {
2622
- "description": "How plugins databases are managed/divided in the provided database instance.\n\n`database` -> Plugins are each given their own database to manage their schemas/tables.\n\n`schema` -> Plugins will be given their own schema (in the specified/default database)\n to manage their tables.\n\nNOTE: Currently only supported by the `pg` client.",
2623
- "default": "database",
2624
- "enum": [
2625
- "database",
2626
- "schema"
2627
- ],
2628
- "type": "string"
2629
- },
2630
- "role": {
2631
- "description": "Configures the ownership of newly created schemas in pg databases.",
2632
- "type": "string"
2633
- },
2634
- "knexConfig": {
2635
- "description": "Arbitrary config object to pass to knex when initializing\n(https://knexjs.org/#Installation-client). Most notable is the debug\nand asyncStackTraces booleans",
2636
- "type": "object",
2637
- "properties": {},
2638
- "additionalProperties": true
2639
- },
2640
- "plugin": {
2641
- "description": "Plugin specific database configuration and client override",
2642
- "type": "object",
2643
- "additionalProperties": {
2644
- "type": "object",
2645
- "properties": {
2646
- "client": {
2647
- "description": "Database client override",
2648
- "enum": [
2649
- "better-sqlite3",
2650
- "pg",
2651
- "sqlite3"
2652
- ],
2653
- "type": "string"
2654
- },
2655
- "connection": {
2656
- "description": "Database connection string or Knex object override",
2657
- "visibility": "secret",
2658
- "anyOf": [
2659
- {
2660
- "type": "object",
2661
- "properties": {},
2662
- "additionalProperties": true
2663
- },
2664
- {
2665
- "type": "string"
2666
- }
2667
- ]
2668
- },
2669
- "ensureExists": {
2670
- "description": "Whether to ensure the given database exists by creating it if it does not.\nDefaults to base config if unspecified.",
2671
- "type": "boolean"
2672
- },
2673
- "ensureSchemaExists": {
2674
- "description": "Whether to ensure the given database schema exists by creating it if it does not.\nDefaults to false if unspecified.\n\nNOTE: Currently only supported by the `pg` client when pluginDivisionMode: schema",
2675
- "type": "boolean"
2676
- },
2677
- "knexConfig": {
2678
- "description": "Arbitrary config object to pass to knex when initializing\n(https://knexjs.org/#Installation-client). Most notable is the\ndebug and asyncStackTraces booleans.\n\nThis is merged recursively into the base knexConfig",
2679
- "type": "object",
2680
- "properties": {},
2681
- "additionalProperties": true
2682
- },
2683
- "role": {
2684
- "description": "Configures the ownership of newly created schemas in pg databases.",
2685
- "type": "string"
2686
- }
2687
- }
2688
- }
2689
- }
2690
- },
2691
- "required": [
2692
- "client",
2693
- "connection"
2694
- ]
2695
- },
2696
- "cache": {
2697
- "description": "Cache connection configuration, select cache type using the `store` field",
2698
- "anyOf": [
2699
- {
2700
- "type": "object",
2701
- "properties": {
2702
- "store": {
2703
- "type": "string",
2704
- "const": "memory"
2705
- },
2706
- "defaultTtl": {
2707
- "description": "An optional default TTL (in milliseconds)."
2708
- }
2709
- },
2710
- "required": [
2711
- "store"
2712
- ]
2713
- },
2714
- {
2715
- "type": "object",
2716
- "properties": {
2717
- "store": {
2718
- "type": "string",
2719
- "const": "redis"
2720
- },
2721
- "connection": {
2722
- "description": "A redis connection string in the form `redis://user:pass@host:port`.",
2723
- "visibility": "secret",
2724
- "type": "string"
2725
- },
2726
- "defaultTtl": {
2727
- "description": "An optional default TTL (in milliseconds)."
2728
- },
2729
- "useRedisSets": {
2730
- "description": "Whether or not [useRedisSets](https://github.com/jaredwray/keyv/tree/main/packages/redis#useredissets) should be configured to this redis cache.\nDefaults to true if unspecified.",
2731
- "type": "boolean"
2732
- }
2733
- },
2734
- "required": [
2735
- "connection",
2736
- "store"
2737
- ]
2738
- },
2739
- {
2740
- "type": "object",
2741
- "properties": {
2742
- "store": {
2743
- "type": "string",
2744
- "const": "memcache"
2745
- },
2746
- "connection": {
2747
- "description": "A memcache connection string in the form `user:pass@host:port`.",
2748
- "visibility": "secret",
2749
- "type": "string"
2750
- },
2751
- "defaultTtl": {
2752
- "description": "An optional default TTL (in milliseconds)."
2753
- }
2754
- },
2755
- "required": [
2756
- "connection",
2757
- "store"
2758
- ]
2759
- }
2760
- ]
2761
- },
2762
- "cors": {
2763
- "description": "Properties returned upon CORS requests to the backend, including the app-backend.",
2764
- "type": "object",
2765
- "properties": {
2766
- "origin": {
2767
- "anyOf": [
2768
- {
2769
- "type": "array",
2770
- "items": {
2771
- "type": "string"
2772
- }
2773
- },
2774
- {
2775
- "type": "string"
2776
- }
2777
- ]
2778
- },
2779
- "methods": {
2780
- "anyOf": [
2781
- {
2782
- "type": "array",
2783
- "items": {
2784
- "type": "string"
2785
- }
2786
- },
2787
- {
2788
- "type": "string"
2789
- }
2790
- ]
2791
- },
2792
- "allowedHeaders": {
2793
- "anyOf": [
2794
- {
2795
- "type": "array",
2796
- "items": {
2797
- "type": "string"
2798
- }
2799
- },
2800
- {
2801
- "type": "string"
2802
- }
2803
- ]
2804
- },
2805
- "exposedHeaders": {
2806
- "anyOf": [
2807
- {
2808
- "type": "array",
2809
- "items": {
2810
- "type": "string"
2811
- }
2812
- },
2813
- {
2814
- "type": "string"
2815
- }
2816
- ]
2817
- },
2818
- "credentials": {
2819
- "type": "boolean"
2820
- },
2821
- "maxAge": {
2822
- "type": "number"
2823
- },
2824
- "preflightContinue": {
2825
- "type": "boolean"
2826
- },
2827
- "optionsSuccessStatus": {
2828
- "type": "number"
2829
- }
2830
- }
2831
- },
2832
- "csp": {
2833
- "description": "Content Security Policy options.\n\nThe keys are the plain policy ID, e.g. \"upgrade-insecure-requests\". The\nvalues are on the format that the helmet library expects them, as an\narray of strings. There is also the special value false, which means to\nremove the default value that Backstage puts in place for that policy.",
2834
- "type": "object",
2835
- "additionalProperties": {
2836
- "anyOf": [
2837
- {
2838
- "type": "array",
2839
- "items": {
2840
- "type": "string"
2841
- }
2842
- },
2843
- {
2844
- "const": false,
2845
- "type": "boolean"
2846
- }
2847
- ]
2848
- }
2849
- },
2850
- "reading": {
2851
- "description": "Configuration related to URL reading, used for example for reading catalog info\nfiles, scaffolder templates, and techdocs content.",
2852
- "type": "object",
2853
- "properties": {
2854
- "allow": {
2855
- "description": "A list of targets to allow outgoing requests to. Users will be able to make\nrequests on behalf of the backend to the targets that are allowed by this list.",
2856
- "type": "array",
2857
- "items": {
2858
- "type": "object",
2859
- "properties": {
2860
- "host": {
2861
- "description": "A host to allow outgoing requests to, being either a full host or\na subdomain wildcard pattern with a leading `*`. For example `example.com`\nand `*.example.com` are valid values, `prod.*.example.com` is not.\nThe host may also contain a port, for example `example.com:8080`.",
2862
- "type": "string"
2863
- },
2864
- "paths": {
2865
- "description": "An optional list of paths. In case they are present only targets matching\nany of them will are allowed. You can use trailing slashes to make sure only\nsubdirectories are allowed, for example `/mydir/` will allow targets with\npaths like `/mydir/a` but will block paths like `/mydir2`.",
2866
- "type": "array",
2867
- "items": {
2868
- "type": "string"
2869
- }
2870
- }
2871
- },
2872
- "required": [
2873
- "host"
2874
- ]
2875
- }
2876
- }
2877
- }
2878
- }
2879
- },
2880
- "required": [
2881
- "baseUrl",
2882
- "database",
2883
- "listen"
2884
- ]
2885
- }
2886
- },
2887
- "required": [
2888
- "app",
2889
- "backend"
2890
- ],
2891
- "$schema": "http://json-schema.org/draft-07/schema#"
2892
- }
2893
- },
2894
- {
2895
- "path": "../../plugins/auth-backend-module-atlassian-provider/config.d.ts",
2896
- "value": {
2897
- "type": "object",
2898
- "properties": {
2899
- "auth": {
2900
- "type": "object",
2901
- "properties": {
2902
- "providers": {
2903
- "type": "object",
2904
- "properties": {
2905
- "atlassian": {
2906
- "visibility": "frontend",
2907
- "type": "object",
2908
- "additionalProperties": {
2909
- "type": "object",
2910
- "properties": {
2911
- "clientId": {
2912
- "type": "string"
2913
- },
2914
- "clientSecret": {
2915
- "visibility": "secret",
2916
- "type": "string"
2917
- },
2918
- "audience": {
2919
- "type": "string"
2920
- },
2921
- "callbackUrl": {
2922
- "type": "string"
2923
- },
2924
- "additionalScopes": {
2925
- "anyOf": [
2926
- {
2927
- "type": "array",
2928
- "items": {
2929
- "type": "string"
2930
- }
2931
- },
2932
- {
2933
- "type": "string"
2934
- }
2935
- ]
2936
- },
2937
- "signIn": {
2938
- "type": "object",
2939
- "properties": {
2940
- "resolvers": {
2941
- "type": "array",
2942
- "items": {
2943
- "anyOf": [
2944
- {
2945
- "type": "object",
2946
- "properties": {
2947
- "resolver": {
2948
- "type": "string",
2949
- "const": "usernameMatchingUserEntityName"
2950
- }
2951
- },
2952
- "required": [
2953
- "resolver"
2954
- ]
2955
- },
2956
- {
2957
- "type": "object",
2958
- "properties": {
2959
- "resolver": {
2960
- "type": "string",
2961
- "const": "emailLocalPartMatchingUserEntityName"
2962
- },
2963
- "allowedDomains": {
2964
- "type": "array",
2965
- "items": {
2966
- "type": "string"
2967
- }
2968
- }
2969
- },
2970
- "required": [
2971
- "resolver"
2972
- ]
2973
- },
2974
- {
2975
- "type": "object",
2976
- "properties": {
2977
- "resolver": {
2978
- "type": "string",
2979
- "const": "emailMatchingUserEntityProfileEmail"
2980
- }
2981
- },
2982
- "required": [
2983
- "resolver"
2984
- ]
2985
- }
2986
- ]
2987
- }
2988
- }
2989
- },
2990
- "required": [
2991
- "resolvers"
2992
- ]
2993
- }
2994
- },
2995
- "required": [
2996
- "clientId",
2997
- "clientSecret"
2608
+ "clientId",
2609
+ "clientSecret"
2998
2610
  ]
2999
2611
  }
3000
2612
  }
@@ -3004,7 +2616,8 @@
3004
2616
  }
3005
2617
  },
3006
2618
  "$schema": "http://json-schema.org/draft-07/schema#"
3007
- }
2619
+ },
2620
+ "packageName": "@backstage/plugin-auth-backend-module-atlassian-provider"
3008
2621
  },
3009
2622
  {
3010
2623
  "path": "../../plugins/auth-backend-module-auth0-provider/config.d.ts",
@@ -3059,7 +2672,8 @@
3059
2672
  }
3060
2673
  },
3061
2674
  "$schema": "http://json-schema.org/draft-07/schema#"
3062
- }
2675
+ },
2676
+ "packageName": "@backstage/plugin-auth-backend-module-auth0-provider"
3063
2677
  },
3064
2678
  {
3065
2679
  "path": "../../plugins/auth-backend-module-bitbucket-provider/config.d.ts",
@@ -3168,7 +2782,8 @@
3168
2782
  }
3169
2783
  },
3170
2784
  "$schema": "http://json-schema.org/draft-07/schema#"
3171
- }
2785
+ },
2786
+ "packageName": "@backstage/plugin-auth-backend-module-bitbucket-provider"
3172
2787
  },
3173
2788
  {
3174
2789
  "path": "../../plugins/auth-backend-module-bitbucket-server-provider/config.d.ts",
@@ -3214,10 +2829,11 @@
3214
2829
  }
3215
2830
  },
3216
2831
  "$schema": "http://json-schema.org/draft-07/schema#"
3217
- }
2832
+ },
2833
+ "packageName": "@backstage/plugin-auth-backend-module-bitbucket-server-provider"
3218
2834
  },
3219
2835
  {
3220
- "path": "../../plugins/auth-backend-module-cloudflare-access-provider/config.d.ts",
2836
+ "path": "../../plugins/auth-backend-module-gcp-iap-provider/config.d.ts",
3221
2837
  "value": {
3222
2838
  "type": "object",
3223
2839
  "properties": {
@@ -3227,36 +2843,16 @@
3227
2843
  "providers": {
3228
2844
  "type": "object",
3229
2845
  "properties": {
3230
- "cfaccess": {
3231
- "visibility": "frontend",
2846
+ "gcpIap": {
2847
+ "description": "Configuration for the Google Cloud Platform Identity-Aware Proxy (IAP) auth provider.",
3232
2848
  "type": "object",
3233
2849
  "properties": {
3234
- "teamName": {
3235
- "type": "string"
3236
- },
3237
- "serviceTokens": {
3238
- "deepVisibility": "secret",
3239
- "type": "array",
3240
- "items": {
3241
- "type": "object",
3242
- "properties": {
3243
- "token": {
3244
- "type": "string"
3245
- },
3246
- "subject": {
3247
- "type": "string"
3248
- }
3249
- },
3250
- "required": [
3251
- "subject",
3252
- "token"
3253
- ]
3254
- }
3255
- },
3256
- "jwtHeaderName": {
2850
+ "audience": {
2851
+ "description": "The audience to use when validating incoming JWT tokens.\nSee https://backstage.io/docs/auth/google/gcp-iap-auth",
3257
2852
  "type": "string"
3258
2853
  },
3259
- "authorizationCookieName": {
2854
+ "jwtHeader": {
2855
+ "description": "The name of the header to read the JWT token from, defaults to `'x-goog-iap-jwt-assertion'`.",
3260
2856
  "type": "string"
3261
2857
  },
3262
2858
  "signIn": {
@@ -3266,6 +2862,30 @@
3266
2862
  "type": "array",
3267
2863
  "items": {
3268
2864
  "anyOf": [
2865
+ {
2866
+ "type": "object",
2867
+ "properties": {
2868
+ "resolver": {
2869
+ "type": "string",
2870
+ "const": "emailMatchingUserEntityAnnotation"
2871
+ }
2872
+ },
2873
+ "required": [
2874
+ "resolver"
2875
+ ]
2876
+ },
2877
+ {
2878
+ "type": "object",
2879
+ "properties": {
2880
+ "resolver": {
2881
+ "type": "string",
2882
+ "const": "idMatchingUserEntityAnnotation"
2883
+ }
2884
+ },
2885
+ "required": [
2886
+ "resolver"
2887
+ ]
2888
+ },
3269
2889
  {
3270
2890
  "type": "object",
3271
2891
  "properties": {
@@ -3306,11 +2926,8 @@
3306
2926
  }
3307
2927
  },
3308
2928
  "required": [
3309
- "teamName"
2929
+ "audience"
3310
2930
  ]
3311
- },
3312
- "backstageTokenExpiration": {
3313
- "description": "The backstage token expiration."
3314
2931
  }
3315
2932
  }
3316
2933
  }
@@ -3318,10 +2935,11 @@
3318
2935
  }
3319
2936
  },
3320
2937
  "$schema": "http://json-schema.org/draft-07/schema#"
3321
- }
2938
+ },
2939
+ "packageName": "@backstage/plugin-auth-backend-module-gcp-iap-provider"
3322
2940
  },
3323
2941
  {
3324
- "path": "../../plugins/auth-backend-module-gcp-iap-provider/config.d.ts",
2942
+ "path": "../../plugins/auth-backend-module-cloudflare-access-provider/config.d.ts",
3325
2943
  "value": {
3326
2944
  "type": "object",
3327
2945
  "properties": {
@@ -3331,16 +2949,36 @@
3331
2949
  "providers": {
3332
2950
  "type": "object",
3333
2951
  "properties": {
3334
- "gcpIap": {
3335
- "description": "Configuration for the Google Cloud Platform Identity-Aware Proxy (IAP) auth provider.",
2952
+ "cfaccess": {
2953
+ "visibility": "frontend",
3336
2954
  "type": "object",
3337
2955
  "properties": {
3338
- "audience": {
3339
- "description": "The audience to use when validating incoming JWT tokens.\nSee https://backstage.io/docs/auth/google/gcp-iap-auth",
2956
+ "teamName": {
3340
2957
  "type": "string"
3341
2958
  },
3342
- "jwtHeader": {
3343
- "description": "The name of the header to read the JWT token from, defaults to `'x-goog-iap-jwt-assertion'`.",
2959
+ "serviceTokens": {
2960
+ "deepVisibility": "secret",
2961
+ "type": "array",
2962
+ "items": {
2963
+ "type": "object",
2964
+ "properties": {
2965
+ "token": {
2966
+ "type": "string"
2967
+ },
2968
+ "subject": {
2969
+ "type": "string"
2970
+ }
2971
+ },
2972
+ "required": [
2973
+ "subject",
2974
+ "token"
2975
+ ]
2976
+ }
2977
+ },
2978
+ "jwtHeaderName": {
2979
+ "type": "string"
2980
+ },
2981
+ "authorizationCookieName": {
3344
2982
  "type": "string"
3345
2983
  },
3346
2984
  "signIn": {
@@ -3350,30 +2988,6 @@
3350
2988
  "type": "array",
3351
2989
  "items": {
3352
2990
  "anyOf": [
3353
- {
3354
- "type": "object",
3355
- "properties": {
3356
- "resolver": {
3357
- "type": "string",
3358
- "const": "emailMatchingUserEntityAnnotation"
3359
- }
3360
- },
3361
- "required": [
3362
- "resolver"
3363
- ]
3364
- },
3365
- {
3366
- "type": "object",
3367
- "properties": {
3368
- "resolver": {
3369
- "type": "string",
3370
- "const": "idMatchingUserEntityAnnotation"
3371
- }
3372
- },
3373
- "required": [
3374
- "resolver"
3375
- ]
3376
- },
3377
2991
  {
3378
2992
  "type": "object",
3379
2993
  "properties": {
@@ -3414,8 +3028,11 @@
3414
3028
  }
3415
3029
  },
3416
3030
  "required": [
3417
- "audience"
3031
+ "teamName"
3418
3032
  ]
3033
+ },
3034
+ "backstageTokenExpiration": {
3035
+ "description": "The backstage token expiration."
3419
3036
  }
3420
3037
  }
3421
3038
  }
@@ -3423,7 +3040,8 @@
3423
3040
  }
3424
3041
  },
3425
3042
  "$schema": "http://json-schema.org/draft-07/schema#"
3426
- }
3043
+ },
3044
+ "packageName": "@backstage/plugin-auth-backend-module-cloudflare-access-provider"
3427
3045
  },
3428
3046
  {
3429
3047
  "path": "../../plugins/auth-backend-module-github-provider/config.d.ts",
@@ -3538,20 +3156,22 @@
3538
3156
  }
3539
3157
  },
3540
3158
  "$schema": "http://json-schema.org/draft-07/schema#"
3541
- }
3159
+ },
3160
+ "packageName": "@backstage/plugin-auth-backend-module-github-provider"
3542
3161
  },
3543
3162
  {
3544
- "path": "../../plugins/auth-backend-module-gitlab-provider/config.d.ts",
3163
+ "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
3545
3164
  "value": {
3546
3165
  "type": "object",
3547
3166
  "properties": {
3548
3167
  "auth": {
3168
+ "description": "Configuration options for the auth plugin",
3549
3169
  "type": "object",
3550
3170
  "properties": {
3551
3171
  "providers": {
3552
3172
  "type": "object",
3553
3173
  "properties": {
3554
- "gitlab": {
3174
+ "google": {
3555
3175
  "visibility": "frontend",
3556
3176
  "type": "object",
3557
3177
  "additionalProperties": {
@@ -3564,9 +3184,6 @@
3564
3184
  "visibility": "secret",
3565
3185
  "type": "string"
3566
3186
  },
3567
- "audience": {
3568
- "type": "string"
3569
- },
3570
3187
  "callbackUrl": {
3571
3188
  "type": "string"
3572
3189
  },
@@ -3595,7 +3212,7 @@
3595
3212
  "properties": {
3596
3213
  "resolver": {
3597
3214
  "type": "string",
3598
- "const": "usernameMatchingUserEntityName"
3215
+ "const": "emailMatchingUserEntityAnnotation"
3599
3216
  }
3600
3217
  },
3601
3218
  "required": [
@@ -3653,21 +3270,21 @@
3653
3270
  }
3654
3271
  },
3655
3272
  "$schema": "http://json-schema.org/draft-07/schema#"
3656
- }
3273
+ },
3274
+ "packageName": "@backstage/plugin-auth-backend-module-google-provider"
3657
3275
  },
3658
3276
  {
3659
- "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
3277
+ "path": "../../plugins/auth-backend-module-microsoft-provider/config.d.ts",
3660
3278
  "value": {
3661
3279
  "type": "object",
3662
3280
  "properties": {
3663
3281
  "auth": {
3664
- "description": "Configuration options for the auth plugin",
3665
3282
  "type": "object",
3666
3283
  "properties": {
3667
3284
  "providers": {
3668
3285
  "type": "object",
3669
3286
  "properties": {
3670
- "google": {
3287
+ "microsoft": {
3671
3288
  "visibility": "frontend",
3672
3289
  "type": "object",
3673
3290
  "additionalProperties": {
@@ -3676,10 +3293,16 @@
3676
3293
  "clientId": {
3677
3294
  "type": "string"
3678
3295
  },
3296
+ "tenantId": {
3297
+ "type": "string"
3298
+ },
3679
3299
  "clientSecret": {
3680
3300
  "visibility": "secret",
3681
3301
  "type": "string"
3682
3302
  },
3303
+ "domainHint": {
3304
+ "type": "string"
3305
+ },
3683
3306
  "callbackUrl": {
3684
3307
  "type": "string"
3685
3308
  },
@@ -3696,6 +3319,9 @@
3696
3319
  }
3697
3320
  ]
3698
3321
  },
3322
+ "skipUserProfile": {
3323
+ "type": "boolean"
3324
+ },
3699
3325
  "signIn": {
3700
3326
  "type": "object",
3701
3327
  "properties": {
@@ -3756,7 +3382,8 @@
3756
3382
  },
3757
3383
  "required": [
3758
3384
  "clientId",
3759
- "clientSecret"
3385
+ "clientSecret",
3386
+ "tenantId"
3760
3387
  ]
3761
3388
  }
3762
3389
  }
@@ -3766,10 +3393,11 @@
3766
3393
  }
3767
3394
  },
3768
3395
  "$schema": "http://json-schema.org/draft-07/schema#"
3769
- }
3396
+ },
3397
+ "packageName": "@backstage/plugin-auth-backend-module-microsoft-provider"
3770
3398
  },
3771
3399
  {
3772
- "path": "../../plugins/auth-backend-module-microsoft-provider/config.d.ts",
3400
+ "path": "../../plugins/auth-backend-module-oauth2-provider/config.d.ts",
3773
3401
  "value": {
3774
3402
  "type": "object",
3775
3403
  "properties": {
@@ -3779,7 +3407,7 @@
3779
3407
  "providers": {
3780
3408
  "type": "object",
3781
3409
  "properties": {
3782
- "microsoft": {
3410
+ "oauth2": {
3783
3411
  "visibility": "frontend",
3784
3412
  "type": "object",
3785
3413
  "additionalProperties": {
@@ -3788,17 +3416,18 @@
3788
3416
  "clientId": {
3789
3417
  "type": "string"
3790
3418
  },
3791
- "tenantId": {
3792
- "type": "string"
3793
- },
3794
3419
  "clientSecret": {
3795
3420
  "visibility": "secret",
3796
3421
  "type": "string"
3797
3422
  },
3798
- "domainHint": {
3423
+ "authorizationUrl": {
3799
3424
  "type": "string"
3800
3425
  },
3801
- "callbackUrl": {
3426
+ "tokenUrl": {
3427
+ "type": "string"
3428
+ },
3429
+ "scope": {
3430
+ "deprecated": "use `additionalScopes` instead",
3802
3431
  "type": "string"
3803
3432
  },
3804
3433
  "additionalScopes": {
@@ -3814,7 +3443,10 @@
3814
3443
  }
3815
3444
  ]
3816
3445
  },
3817
- "skipUserProfile": {
3446
+ "disableRefresh": {
3447
+ "type": "boolean"
3448
+ },
3449
+ "includeBasicAuth": {
3818
3450
  "type": "boolean"
3819
3451
  },
3820
3452
  "signIn": {
@@ -3829,7 +3461,7 @@
3829
3461
  "properties": {
3830
3462
  "resolver": {
3831
3463
  "type": "string",
3832
- "const": "emailMatchingUserEntityAnnotation"
3464
+ "const": "usernameMatchingUserEntityName"
3833
3465
  }
3834
3466
  },
3835
3467
  "required": [
@@ -3876,9 +3508,10 @@
3876
3508
  }
3877
3509
  },
3878
3510
  "required": [
3511
+ "authorizationUrl",
3879
3512
  "clientId",
3880
3513
  "clientSecret",
3881
- "tenantId"
3514
+ "tokenUrl"
3882
3515
  ]
3883
3516
  }
3884
3517
  }
@@ -3888,10 +3521,11 @@
3888
3521
  }
3889
3522
  },
3890
3523
  "$schema": "http://json-schema.org/draft-07/schema#"
3891
- }
3524
+ },
3525
+ "packageName": "@backstage/plugin-auth-backend-module-oauth2-provider"
3892
3526
  },
3893
3527
  {
3894
- "path": "../../plugins/auth-backend-module-oauth2-provider/config.d.ts",
3528
+ "path": "../../plugins/auth-backend-module-okta-provider/config.d.ts",
3895
3529
  "value": {
3896
3530
  "type": "object",
3897
3531
  "properties": {
@@ -3901,7 +3535,7 @@
3901
3535
  "providers": {
3902
3536
  "type": "object",
3903
3537
  "properties": {
3904
- "oauth2": {
3538
+ "okta": {
3905
3539
  "visibility": "frontend",
3906
3540
  "type": "object",
3907
3541
  "additionalProperties": {
@@ -3914,14 +3548,16 @@
3914
3548
  "visibility": "secret",
3915
3549
  "type": "string"
3916
3550
  },
3917
- "authorizationUrl": {
3551
+ "audience": {
3918
3552
  "type": "string"
3919
3553
  },
3920
- "tokenUrl": {
3554
+ "authServerId": {
3921
3555
  "type": "string"
3922
3556
  },
3923
- "scope": {
3924
- "deprecated": "use `additionalScopes` instead",
3557
+ "idp": {
3558
+ "type": "string"
3559
+ },
3560
+ "callbackUrl": {
3925
3561
  "type": "string"
3926
3562
  },
3927
3563
  "additionalScopes": {
@@ -3937,12 +3573,6 @@
3937
3573
  }
3938
3574
  ]
3939
3575
  },
3940
- "disableRefresh": {
3941
- "type": "boolean"
3942
- },
3943
- "includeBasicAuth": {
3944
- "type": "boolean"
3945
- },
3946
3576
  "signIn": {
3947
3577
  "type": "object",
3948
3578
  "properties": {
@@ -3955,7 +3585,7 @@
3955
3585
  "properties": {
3956
3586
  "resolver": {
3957
3587
  "type": "string",
3958
- "const": "usernameMatchingUserEntityName"
3588
+ "const": "emailMatchingUserEntityAnnotation"
3959
3589
  }
3960
3590
  },
3961
3591
  "required": [
@@ -4002,10 +3632,8 @@
4002
3632
  }
4003
3633
  },
4004
3634
  "required": [
4005
- "authorizationUrl",
4006
3635
  "clientId",
4007
- "clientSecret",
4008
- "tokenUrl"
3636
+ "clientSecret"
4009
3637
  ]
4010
3638
  }
4011
3639
  }
@@ -4015,10 +3643,11 @@
4015
3643
  }
4016
3644
  },
4017
3645
  "$schema": "http://json-schema.org/draft-07/schema#"
4018
- }
3646
+ },
3647
+ "packageName": "@backstage/plugin-auth-backend-module-okta-provider"
4019
3648
  },
4020
3649
  {
4021
- "path": "../../plugins/auth-backend-module-okta-provider/config.d.ts",
3650
+ "path": "../../plugins/auth-backend-module-oidc-provider/config.d.ts",
4022
3651
  "value": {
4023
3652
  "type": "object",
4024
3653
  "properties": {
@@ -4028,7 +3657,7 @@
4028
3657
  "providers": {
4029
3658
  "type": "object",
4030
3659
  "properties": {
4031
- "okta": {
3660
+ "oidc": {
4032
3661
  "visibility": "frontend",
4033
3662
  "type": "object",
4034
3663
  "additionalProperties": {
@@ -4041,16 +3670,16 @@
4041
3670
  "visibility": "secret",
4042
3671
  "type": "string"
4043
3672
  },
4044
- "audience": {
3673
+ "metadataUrl": {
4045
3674
  "type": "string"
4046
3675
  },
4047
- "authServerId": {
3676
+ "callbackUrl": {
4048
3677
  "type": "string"
4049
3678
  },
4050
- "idp": {
3679
+ "tokenEndpointAuthMethod": {
4051
3680
  "type": "string"
4052
3681
  },
4053
- "callbackUrl": {
3682
+ "tokenSignedResponseAlg": {
4054
3683
  "type": "string"
4055
3684
  },
4056
3685
  "additionalScopes": {
@@ -4066,6 +3695,9 @@
4066
3695
  }
4067
3696
  ]
4068
3697
  },
3698
+ "prompt": {
3699
+ "type": "string"
3700
+ },
4069
3701
  "signIn": {
4070
3702
  "type": "object",
4071
3703
  "properties": {
@@ -4073,18 +3705,6 @@
4073
3705
  "type": "array",
4074
3706
  "items": {
4075
3707
  "anyOf": [
4076
- {
4077
- "type": "object",
4078
- "properties": {
4079
- "resolver": {
4080
- "type": "string",
4081
- "const": "emailMatchingUserEntityAnnotation"
4082
- }
4083
- },
4084
- "required": [
4085
- "resolver"
4086
- ]
4087
- },
4088
3708
  {
4089
3709
  "type": "object",
4090
3710
  "properties": {
@@ -4126,7 +3746,8 @@
4126
3746
  },
4127
3747
  "required": [
4128
3748
  "clientId",
4129
- "clientSecret"
3749
+ "clientSecret",
3750
+ "metadataUrl"
4130
3751
  ]
4131
3752
  }
4132
3753
  }
@@ -4136,10 +3757,11 @@
4136
3757
  }
4137
3758
  },
4138
3759
  "$schema": "http://json-schema.org/draft-07/schema#"
4139
- }
3760
+ },
3761
+ "packageName": "@backstage/plugin-auth-backend-module-oidc-provider"
4140
3762
  },
4141
3763
  {
4142
- "path": "../../plugins/auth-backend-module-oidc-provider/config.d.ts",
3764
+ "path": "../../plugins/auth-backend-module-gitlab-provider/config.d.ts",
4143
3765
  "value": {
4144
3766
  "type": "object",
4145
3767
  "properties": {
@@ -4149,7 +3771,7 @@
4149
3771
  "providers": {
4150
3772
  "type": "object",
4151
3773
  "properties": {
4152
- "oidc": {
3774
+ "gitlab": {
4153
3775
  "visibility": "frontend",
4154
3776
  "type": "object",
4155
3777
  "additionalProperties": {
@@ -4162,18 +3784,12 @@
4162
3784
  "visibility": "secret",
4163
3785
  "type": "string"
4164
3786
  },
4165
- "metadataUrl": {
3787
+ "audience": {
4166
3788
  "type": "string"
4167
3789
  },
4168
3790
  "callbackUrl": {
4169
3791
  "type": "string"
4170
3792
  },
4171
- "tokenEndpointAuthMethod": {
4172
- "type": "string"
4173
- },
4174
- "tokenSignedResponseAlg": {
4175
- "type": "string"
4176
- },
4177
3793
  "additionalScopes": {
4178
3794
  "anyOf": [
4179
3795
  {
@@ -4187,9 +3803,6 @@
4187
3803
  }
4188
3804
  ]
4189
3805
  },
4190
- "prompt": {
4191
- "type": "string"
4192
- },
4193
3806
  "signIn": {
4194
3807
  "type": "object",
4195
3808
  "properties": {
@@ -4197,6 +3810,18 @@
4197
3810
  "type": "array",
4198
3811
  "items": {
4199
3812
  "anyOf": [
3813
+ {
3814
+ "type": "object",
3815
+ "properties": {
3816
+ "resolver": {
3817
+ "type": "string",
3818
+ "const": "usernameMatchingUserEntityName"
3819
+ }
3820
+ },
3821
+ "required": [
3822
+ "resolver"
3823
+ ]
3824
+ },
4200
3825
  {
4201
3826
  "type": "object",
4202
3827
  "properties": {
@@ -4238,8 +3863,7 @@
4238
3863
  },
4239
3864
  "required": [
4240
3865
  "clientId",
4241
- "clientSecret",
4242
- "metadataUrl"
3866
+ "clientSecret"
4243
3867
  ]
4244
3868
  }
4245
3869
  }
@@ -4249,7 +3873,8 @@
4249
3873
  }
4250
3874
  },
4251
3875
  "$schema": "http://json-schema.org/draft-07/schema#"
4252
- }
3876
+ },
3877
+ "packageName": "@backstage/plugin-auth-backend-module-gitlab-provider"
4253
3878
  },
4254
3879
  {
4255
3880
  "path": "../../plugins/auth-backend-module-onelogin-provider/config.d.ts",
@@ -4352,7 +3977,8 @@
4352
3977
  }
4353
3978
  },
4354
3979
  "$schema": "http://json-schema.org/draft-07/schema#"
4355
- }
3980
+ },
3981
+ "packageName": "@backstage/plugin-auth-backend-module-onelogin-provider"
4356
3982
  },
4357
3983
  {
4358
3984
  "path": "../integration-aws-node/config.d.ts",
@@ -4461,7 +4087,27 @@
4461
4087
  }
4462
4088
  },
4463
4089
  "$schema": "http://json-schema.org/draft-07/schema#"
4464
- }
4090
+ },
4091
+ "packageName": "@backstage/integration-aws-node"
4092
+ },
4093
+ {
4094
+ "path": "../../node_modules/@backstage/backend-common/node_modules/@backstage/backend-plugin-api/config.d.ts",
4095
+ "value": {
4096
+ "type": "object",
4097
+ "properties": {
4098
+ "backend": {
4099
+ "type": "object",
4100
+ "properties": {
4101
+ "workingDirectory": {
4102
+ "description": "An absolute path to a directory that can be used as a working dir, for\nexample as scratch space for large operations.",
4103
+ "type": "string"
4104
+ }
4105
+ }
4106
+ }
4107
+ },
4108
+ "$schema": "http://json-schema.org/draft-07/schema#"
4109
+ },
4110
+ "packageName": "@backstage/backend-plugin-api"
4465
4111
  }
4466
4112
  ],
4467
4113
  "backstageConfigSchemaVersion": 1