@techdocs/cli 1.9.0-next.2 → 1.9.0-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 +11 -0
- package/dist/embedded-app/.config-schema.json +249 -249
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/index.html.tmpl +1 -1
- package/dist/embedded-app/static/{2177.3d831c3a.chunk.js → 2177.8ae9ec12.chunk.js} +2 -2
- package/dist/embedded-app/static/2177.8ae9ec12.chunk.js.map +1 -0
- package/dist/embedded-app/static/{main.3351f180.js → main.c951dbc1.js} +1 -1
- package/dist/embedded-app/static/{main.3351f180.js.map → main.c951dbc1.js.map} +1 -1
- package/dist/embedded-app/static/{runtime.3351f180.js → runtime.c951dbc1.js} +2 -2
- package/dist/embedded-app/static/{runtime.3351f180.js.map → runtime.c951dbc1.js.map} +1 -1
- package/dist/embedded-app/static/{vendor.3351f180.js → vendor.c951dbc1.js} +3 -3
- package/dist/embedded-app/static/vendor.c951dbc1.js.map +1 -0
- package/dist/package.json.cjs.js +1 -1
- package/package.json +4 -4
- package/dist/embedded-app/static/2177.3d831c3a.chunk.js.map +0 -1
- package/dist/embedded-app/static/vendor.3351f180.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
+
## 1.9.0-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-defaults@0.8.0-next.3
|
|
9
|
+
- @backstage/plugin-techdocs-node@1.13.0-next.2
|
|
10
|
+
- @backstage/catalog-model@1.7.3
|
|
11
|
+
- @backstage/cli-common@0.1.15
|
|
12
|
+
- @backstage/config@1.3.2
|
|
13
|
+
|
|
3
14
|
## 1.9.0-next.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
|
@@ -357,6 +357,52 @@
|
|
|
357
357
|
},
|
|
358
358
|
"packageName": "@backstage/core-app-api"
|
|
359
359
|
},
|
|
360
|
+
{
|
|
361
|
+
"path": "../core-components/config.d.ts",
|
|
362
|
+
"value": {
|
|
363
|
+
"type": "object",
|
|
364
|
+
"properties": {
|
|
365
|
+
"auth": {
|
|
366
|
+
"type": "object",
|
|
367
|
+
"properties": {
|
|
368
|
+
"autologout": {
|
|
369
|
+
"description": "Autologout feature configuration",
|
|
370
|
+
"type": "object",
|
|
371
|
+
"properties": {
|
|
372
|
+
"enabled": {
|
|
373
|
+
"description": "Enable or disable the autologout feature",
|
|
374
|
+
"visibility": "frontend",
|
|
375
|
+
"type": "boolean"
|
|
376
|
+
},
|
|
377
|
+
"idleTimeoutMinutes": {
|
|
378
|
+
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
379
|
+
"visibility": "frontend",
|
|
380
|
+
"type": "number"
|
|
381
|
+
},
|
|
382
|
+
"promptBeforeIdleSeconds": {
|
|
383
|
+
"description": "Number of seconds before the idle timeout where the user will be asked if it's still active.\nA dialog will be shown.\nDefault is 10 seconds.\nSet to 0 seconds to disable the prompt.",
|
|
384
|
+
"visibility": "frontend",
|
|
385
|
+
"type": "number"
|
|
386
|
+
},
|
|
387
|
+
"useWorkerTimers": {
|
|
388
|
+
"description": "Enable/disable the usage of worker thread timers instead of main thread timers.\nDefault is true.\nIf you experience some browser incompatibility, you may try to set this to false.",
|
|
389
|
+
"visibility": "frontend",
|
|
390
|
+
"type": "boolean"
|
|
391
|
+
},
|
|
392
|
+
"logoutIfDisconnected": {
|
|
393
|
+
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
394
|
+
"visibility": "frontend",
|
|
395
|
+
"type": "boolean"
|
|
396
|
+
}
|
|
397
|
+
}
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
},
|
|
402
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
403
|
+
},
|
|
404
|
+
"packageName": "@backstage/core-components"
|
|
405
|
+
},
|
|
360
406
|
{
|
|
361
407
|
"path": "../../plugins/techdocs/config.d.ts",
|
|
362
408
|
"value": {
|
|
@@ -414,50 +460,148 @@
|
|
|
414
460
|
"packageName": "@backstage/plugin-techdocs"
|
|
415
461
|
},
|
|
416
462
|
{
|
|
417
|
-
"path": "../
|
|
463
|
+
"path": "../frontend-app-api/config.d.ts",
|
|
418
464
|
"value": {
|
|
419
465
|
"type": "object",
|
|
420
466
|
"properties": {
|
|
421
|
-
"
|
|
467
|
+
"app": {
|
|
422
468
|
"type": "object",
|
|
423
469
|
"properties": {
|
|
424
|
-
"
|
|
425
|
-
"description": "Autologout feature configuration",
|
|
470
|
+
"experimental": {
|
|
426
471
|
"type": "object",
|
|
427
472
|
"properties": {
|
|
428
|
-
"
|
|
429
|
-
"description": "Enable or disable the autologout feature",
|
|
430
|
-
"visibility": "frontend",
|
|
431
|
-
"type": "boolean"
|
|
432
|
-
},
|
|
433
|
-
"idleTimeoutMinutes": {
|
|
434
|
-
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
435
|
-
"visibility": "frontend",
|
|
436
|
-
"type": "number"
|
|
437
|
-
},
|
|
438
|
-
"promptBeforeIdleSeconds": {
|
|
439
|
-
"description": "Number of seconds before the idle timeout where the user will be asked if it's still active.\nA dialog will be shown.\nDefault is 10 seconds.\nSet to 0 seconds to disable the prompt.",
|
|
440
|
-
"visibility": "frontend",
|
|
441
|
-
"type": "number"
|
|
442
|
-
},
|
|
443
|
-
"useWorkerTimers": {
|
|
444
|
-
"description": "Enable/disable the usage of worker thread timers instead of main thread timers.\nDefault is true.\nIf you experience some browser incompatibility, you may try to set this to false.",
|
|
473
|
+
"packages": {
|
|
445
474
|
"visibility": "frontend",
|
|
446
|
-
"
|
|
475
|
+
"deepVisibility": "frontend",
|
|
476
|
+
"anyOf": [
|
|
477
|
+
{
|
|
478
|
+
"type": "object",
|
|
479
|
+
"properties": {
|
|
480
|
+
"include": {
|
|
481
|
+
"type": "array",
|
|
482
|
+
"items": {
|
|
483
|
+
"type": "string"
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"exclude": {
|
|
487
|
+
"type": "array",
|
|
488
|
+
"items": {
|
|
489
|
+
"type": "string"
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
}
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"const": "all",
|
|
496
|
+
"type": "string"
|
|
497
|
+
}
|
|
498
|
+
]
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
"routes": {
|
|
503
|
+
"type": "object",
|
|
504
|
+
"properties": {
|
|
505
|
+
"bindings": {
|
|
506
|
+
"description": "Maps external route references to regular route references. Both the\nkey and the value is expected to be on the form `<pluginId>.<routeId>`.\nIf the value is `false`, the route will be disabled even if it has a\ndefault mapping.",
|
|
507
|
+
"deepVisibility": "frontend",
|
|
508
|
+
"type": "object",
|
|
509
|
+
"additionalProperties": {
|
|
510
|
+
"anyOf": [
|
|
511
|
+
{
|
|
512
|
+
"const": false,
|
|
513
|
+
"type": "boolean"
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"type": "string"
|
|
517
|
+
}
|
|
518
|
+
]
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
"extensions": {
|
|
524
|
+
"deepVisibility": "frontend",
|
|
525
|
+
"type": "array",
|
|
526
|
+
"items": {
|
|
527
|
+
"anyOf": [
|
|
528
|
+
{
|
|
529
|
+
"type": "object",
|
|
530
|
+
"additionalProperties": {
|
|
531
|
+
"anyOf": [
|
|
532
|
+
{
|
|
533
|
+
"type": "object",
|
|
534
|
+
"properties": {
|
|
535
|
+
"attachTo": {
|
|
536
|
+
"type": "object",
|
|
537
|
+
"properties": {
|
|
538
|
+
"id": {
|
|
539
|
+
"type": "string"
|
|
540
|
+
},
|
|
541
|
+
"input": {
|
|
542
|
+
"type": "string"
|
|
543
|
+
}
|
|
544
|
+
},
|
|
545
|
+
"required": [
|
|
546
|
+
"id",
|
|
547
|
+
"input"
|
|
548
|
+
]
|
|
549
|
+
},
|
|
550
|
+
"disabled": {
|
|
551
|
+
"type": "boolean"
|
|
552
|
+
},
|
|
553
|
+
"config": {}
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"type": "boolean"
|
|
558
|
+
}
|
|
559
|
+
]
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
"type": "string"
|
|
564
|
+
}
|
|
565
|
+
]
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
572
|
+
},
|
|
573
|
+
"packageName": "@backstage/frontend-app-api"
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
"path": "../../plugins/catalog/config.d.ts",
|
|
577
|
+
"value": {
|
|
578
|
+
"type": "object",
|
|
579
|
+
"properties": {
|
|
580
|
+
"catalog": {
|
|
581
|
+
"type": "object",
|
|
582
|
+
"properties": {
|
|
583
|
+
"experimentalPagination": {
|
|
584
|
+
"deepVisibility": "frontend",
|
|
585
|
+
"anyOf": [
|
|
586
|
+
{
|
|
587
|
+
"type": "object",
|
|
588
|
+
"properties": {
|
|
589
|
+
"limit": {
|
|
590
|
+
"type": "number"
|
|
591
|
+
}
|
|
592
|
+
}
|
|
447
593
|
},
|
|
448
|
-
|
|
449
|
-
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
450
|
-
"visibility": "frontend",
|
|
594
|
+
{
|
|
451
595
|
"type": "boolean"
|
|
452
596
|
}
|
|
453
|
-
|
|
597
|
+
]
|
|
454
598
|
}
|
|
455
599
|
}
|
|
456
600
|
}
|
|
457
601
|
},
|
|
458
602
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
459
603
|
},
|
|
460
|
-
"packageName": "@backstage/
|
|
604
|
+
"packageName": "@backstage/plugin-catalog"
|
|
461
605
|
},
|
|
462
606
|
{
|
|
463
607
|
"path": "../integration/config.d.ts",
|
|
@@ -905,150 +1049,6 @@
|
|
|
905
1049
|
},
|
|
906
1050
|
"packageName": "@backstage/integration"
|
|
907
1051
|
},
|
|
908
|
-
{
|
|
909
|
-
"path": "../frontend-app-api/config.d.ts",
|
|
910
|
-
"value": {
|
|
911
|
-
"type": "object",
|
|
912
|
-
"properties": {
|
|
913
|
-
"app": {
|
|
914
|
-
"type": "object",
|
|
915
|
-
"properties": {
|
|
916
|
-
"experimental": {
|
|
917
|
-
"type": "object",
|
|
918
|
-
"properties": {
|
|
919
|
-
"packages": {
|
|
920
|
-
"visibility": "frontend",
|
|
921
|
-
"deepVisibility": "frontend",
|
|
922
|
-
"anyOf": [
|
|
923
|
-
{
|
|
924
|
-
"type": "object",
|
|
925
|
-
"properties": {
|
|
926
|
-
"include": {
|
|
927
|
-
"type": "array",
|
|
928
|
-
"items": {
|
|
929
|
-
"type": "string"
|
|
930
|
-
}
|
|
931
|
-
},
|
|
932
|
-
"exclude": {
|
|
933
|
-
"type": "array",
|
|
934
|
-
"items": {
|
|
935
|
-
"type": "string"
|
|
936
|
-
}
|
|
937
|
-
}
|
|
938
|
-
}
|
|
939
|
-
},
|
|
940
|
-
{
|
|
941
|
-
"const": "all",
|
|
942
|
-
"type": "string"
|
|
943
|
-
}
|
|
944
|
-
]
|
|
945
|
-
}
|
|
946
|
-
}
|
|
947
|
-
},
|
|
948
|
-
"routes": {
|
|
949
|
-
"type": "object",
|
|
950
|
-
"properties": {
|
|
951
|
-
"bindings": {
|
|
952
|
-
"description": "Maps external route references to regular route references. Both the\nkey and the value is expected to be on the form `<pluginId>.<routeId>`.\nIf the value is `false`, the route will be disabled even if it has a\ndefault mapping.",
|
|
953
|
-
"deepVisibility": "frontend",
|
|
954
|
-
"type": "object",
|
|
955
|
-
"additionalProperties": {
|
|
956
|
-
"anyOf": [
|
|
957
|
-
{
|
|
958
|
-
"const": false,
|
|
959
|
-
"type": "boolean"
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
"type": "string"
|
|
963
|
-
}
|
|
964
|
-
]
|
|
965
|
-
}
|
|
966
|
-
}
|
|
967
|
-
}
|
|
968
|
-
},
|
|
969
|
-
"extensions": {
|
|
970
|
-
"deepVisibility": "frontend",
|
|
971
|
-
"type": "array",
|
|
972
|
-
"items": {
|
|
973
|
-
"anyOf": [
|
|
974
|
-
{
|
|
975
|
-
"type": "object",
|
|
976
|
-
"additionalProperties": {
|
|
977
|
-
"anyOf": [
|
|
978
|
-
{
|
|
979
|
-
"type": "object",
|
|
980
|
-
"properties": {
|
|
981
|
-
"attachTo": {
|
|
982
|
-
"type": "object",
|
|
983
|
-
"properties": {
|
|
984
|
-
"id": {
|
|
985
|
-
"type": "string"
|
|
986
|
-
},
|
|
987
|
-
"input": {
|
|
988
|
-
"type": "string"
|
|
989
|
-
}
|
|
990
|
-
},
|
|
991
|
-
"required": [
|
|
992
|
-
"id",
|
|
993
|
-
"input"
|
|
994
|
-
]
|
|
995
|
-
},
|
|
996
|
-
"disabled": {
|
|
997
|
-
"type": "boolean"
|
|
998
|
-
},
|
|
999
|
-
"config": {}
|
|
1000
|
-
}
|
|
1001
|
-
},
|
|
1002
|
-
{
|
|
1003
|
-
"type": "boolean"
|
|
1004
|
-
}
|
|
1005
|
-
]
|
|
1006
|
-
}
|
|
1007
|
-
},
|
|
1008
|
-
{
|
|
1009
|
-
"type": "string"
|
|
1010
|
-
}
|
|
1011
|
-
]
|
|
1012
|
-
}
|
|
1013
|
-
}
|
|
1014
|
-
}
|
|
1015
|
-
}
|
|
1016
|
-
},
|
|
1017
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1018
|
-
},
|
|
1019
|
-
"packageName": "@backstage/frontend-app-api"
|
|
1020
|
-
},
|
|
1021
|
-
{
|
|
1022
|
-
"path": "../../plugins/catalog/config.d.ts",
|
|
1023
|
-
"value": {
|
|
1024
|
-
"type": "object",
|
|
1025
|
-
"properties": {
|
|
1026
|
-
"catalog": {
|
|
1027
|
-
"type": "object",
|
|
1028
|
-
"properties": {
|
|
1029
|
-
"experimentalPagination": {
|
|
1030
|
-
"deepVisibility": "frontend",
|
|
1031
|
-
"anyOf": [
|
|
1032
|
-
{
|
|
1033
|
-
"type": "object",
|
|
1034
|
-
"properties": {
|
|
1035
|
-
"limit": {
|
|
1036
|
-
"type": "number"
|
|
1037
|
-
}
|
|
1038
|
-
}
|
|
1039
|
-
},
|
|
1040
|
-
{
|
|
1041
|
-
"type": "boolean"
|
|
1042
|
-
}
|
|
1043
|
-
]
|
|
1044
|
-
}
|
|
1045
|
-
}
|
|
1046
|
-
}
|
|
1047
|
-
},
|
|
1048
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1049
|
-
},
|
|
1050
|
-
"packageName": "@backstage/plugin-catalog"
|
|
1051
|
-
},
|
|
1052
1052
|
{
|
|
1053
1053
|
"path": "../../node_modules/@backstage-community/plugin-stackstorm/config.d.ts",
|
|
1054
1054
|
"value": {
|
|
@@ -1135,6 +1135,52 @@
|
|
|
1135
1135
|
},
|
|
1136
1136
|
"packageName": "@backstage/backend-plugin-api"
|
|
1137
1137
|
},
|
|
1138
|
+
{
|
|
1139
|
+
"path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
|
|
1140
|
+
"value": {
|
|
1141
|
+
"type": "object",
|
|
1142
|
+
"properties": {
|
|
1143
|
+
"auth": {
|
|
1144
|
+
"description": "Configuration options for the auth plugin",
|
|
1145
|
+
"type": "object",
|
|
1146
|
+
"properties": {
|
|
1147
|
+
"providers": {
|
|
1148
|
+
"type": "object",
|
|
1149
|
+
"properties": {
|
|
1150
|
+
"guest": {
|
|
1151
|
+
"type": "object",
|
|
1152
|
+
"properties": {
|
|
1153
|
+
"userEntityRef": {
|
|
1154
|
+
"description": "The entity reference to use for the guest user.",
|
|
1155
|
+
"default": "user:development/guest",
|
|
1156
|
+
"type": "string"
|
|
1157
|
+
},
|
|
1158
|
+
"ownershipEntityRefs": {
|
|
1159
|
+
"description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
|
|
1160
|
+
"default": "[userEntityRef]",
|
|
1161
|
+
"type": "array",
|
|
1162
|
+
"items": {
|
|
1163
|
+
"type": "string"
|
|
1164
|
+
}
|
|
1165
|
+
},
|
|
1166
|
+
"dangerouslyAllowOutsideDevelopment": {
|
|
1167
|
+
"description": "Allow users to sign in with the guest provider outside of their development environments.",
|
|
1168
|
+
"type": "boolean"
|
|
1169
|
+
}
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
}
|
|
1173
|
+
}
|
|
1174
|
+
},
|
|
1175
|
+
"required": [
|
|
1176
|
+
"providers"
|
|
1177
|
+
]
|
|
1178
|
+
}
|
|
1179
|
+
},
|
|
1180
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1181
|
+
},
|
|
1182
|
+
"packageName": "@backstage/plugin-auth-backend-module-guest-provider"
|
|
1183
|
+
},
|
|
1138
1184
|
{
|
|
1139
1185
|
"path": "../../plugins/auth-backend/config.d.ts",
|
|
1140
1186
|
"value": {
|
|
@@ -1393,52 +1439,6 @@
|
|
|
1393
1439
|
},
|
|
1394
1440
|
"packageName": "@backstage/plugin-auth-backend"
|
|
1395
1441
|
},
|
|
1396
|
-
{
|
|
1397
|
-
"path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
|
|
1398
|
-
"value": {
|
|
1399
|
-
"type": "object",
|
|
1400
|
-
"properties": {
|
|
1401
|
-
"auth": {
|
|
1402
|
-
"description": "Configuration options for the auth plugin",
|
|
1403
|
-
"type": "object",
|
|
1404
|
-
"properties": {
|
|
1405
|
-
"providers": {
|
|
1406
|
-
"type": "object",
|
|
1407
|
-
"properties": {
|
|
1408
|
-
"guest": {
|
|
1409
|
-
"type": "object",
|
|
1410
|
-
"properties": {
|
|
1411
|
-
"userEntityRef": {
|
|
1412
|
-
"description": "The entity reference to use for the guest user.",
|
|
1413
|
-
"default": "user:development/guest",
|
|
1414
|
-
"type": "string"
|
|
1415
|
-
},
|
|
1416
|
-
"ownershipEntityRefs": {
|
|
1417
|
-
"description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
|
|
1418
|
-
"default": "[userEntityRef]",
|
|
1419
|
-
"type": "array",
|
|
1420
|
-
"items": {
|
|
1421
|
-
"type": "string"
|
|
1422
|
-
}
|
|
1423
|
-
},
|
|
1424
|
-
"dangerouslyAllowOutsideDevelopment": {
|
|
1425
|
-
"description": "Allow users to sign in with the guest provider outside of their development environments.",
|
|
1426
|
-
"type": "boolean"
|
|
1427
|
-
}
|
|
1428
|
-
}
|
|
1429
|
-
}
|
|
1430
|
-
}
|
|
1431
|
-
}
|
|
1432
|
-
},
|
|
1433
|
-
"required": [
|
|
1434
|
-
"providers"
|
|
1435
|
-
]
|
|
1436
|
-
}
|
|
1437
|
-
},
|
|
1438
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1439
|
-
},
|
|
1440
|
-
"packageName": "@backstage/plugin-auth-backend-module-guest-provider"
|
|
1441
|
-
},
|
|
1442
1442
|
{
|
|
1443
1443
|
"path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/core-components/config.d.ts",
|
|
1444
1444
|
"value": {
|
|
@@ -3891,7 +3891,7 @@
|
|
|
3891
3891
|
"packageName": "@backstage/plugin-auth-backend-module-oauth2-provider"
|
|
3892
3892
|
},
|
|
3893
3893
|
{
|
|
3894
|
-
"path": "../../plugins/auth-backend-module-
|
|
3894
|
+
"path": "../../plugins/auth-backend-module-okta-provider/config.d.ts",
|
|
3895
3895
|
"value": {
|
|
3896
3896
|
"type": "object",
|
|
3897
3897
|
"properties": {
|
|
@@ -3901,7 +3901,7 @@
|
|
|
3901
3901
|
"providers": {
|
|
3902
3902
|
"type": "object",
|
|
3903
3903
|
"properties": {
|
|
3904
|
-
"
|
|
3904
|
+
"okta": {
|
|
3905
3905
|
"visibility": "frontend",
|
|
3906
3906
|
"type": "object",
|
|
3907
3907
|
"additionalProperties": {
|
|
@@ -3914,16 +3914,16 @@
|
|
|
3914
3914
|
"visibility": "secret",
|
|
3915
3915
|
"type": "string"
|
|
3916
3916
|
},
|
|
3917
|
-
"
|
|
3917
|
+
"audience": {
|
|
3918
3918
|
"type": "string"
|
|
3919
3919
|
},
|
|
3920
|
-
"
|
|
3920
|
+
"authServerId": {
|
|
3921
3921
|
"type": "string"
|
|
3922
3922
|
},
|
|
3923
|
-
"
|
|
3923
|
+
"idp": {
|
|
3924
3924
|
"type": "string"
|
|
3925
3925
|
},
|
|
3926
|
-
"
|
|
3926
|
+
"callbackUrl": {
|
|
3927
3927
|
"type": "string"
|
|
3928
3928
|
},
|
|
3929
3929
|
"additionalScopes": {
|
|
@@ -3939,9 +3939,6 @@
|
|
|
3939
3939
|
}
|
|
3940
3940
|
]
|
|
3941
3941
|
},
|
|
3942
|
-
"prompt": {
|
|
3943
|
-
"type": "string"
|
|
3944
|
-
},
|
|
3945
3942
|
"signIn": {
|
|
3946
3943
|
"type": "object",
|
|
3947
3944
|
"properties": {
|
|
@@ -3949,6 +3946,18 @@
|
|
|
3949
3946
|
"type": "array",
|
|
3950
3947
|
"items": {
|
|
3951
3948
|
"anyOf": [
|
|
3949
|
+
{
|
|
3950
|
+
"type": "object",
|
|
3951
|
+
"properties": {
|
|
3952
|
+
"resolver": {
|
|
3953
|
+
"type": "string",
|
|
3954
|
+
"const": "emailMatchingUserEntityAnnotation"
|
|
3955
|
+
}
|
|
3956
|
+
},
|
|
3957
|
+
"required": [
|
|
3958
|
+
"resolver"
|
|
3959
|
+
]
|
|
3960
|
+
},
|
|
3952
3961
|
{
|
|
3953
3962
|
"type": "object",
|
|
3954
3963
|
"properties": {
|
|
@@ -3991,8 +4000,7 @@
|
|
|
3991
4000
|
},
|
|
3992
4001
|
"required": [
|
|
3993
4002
|
"clientId",
|
|
3994
|
-
"clientSecret"
|
|
3995
|
-
"metadataUrl"
|
|
4003
|
+
"clientSecret"
|
|
3996
4004
|
]
|
|
3997
4005
|
}
|
|
3998
4006
|
}
|
|
@@ -4003,10 +4011,10 @@
|
|
|
4003
4011
|
},
|
|
4004
4012
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
4005
4013
|
},
|
|
4006
|
-
"packageName": "@backstage/plugin-auth-backend-module-
|
|
4014
|
+
"packageName": "@backstage/plugin-auth-backend-module-okta-provider"
|
|
4007
4015
|
},
|
|
4008
4016
|
{
|
|
4009
|
-
"path": "../../plugins/auth-backend-module-
|
|
4017
|
+
"path": "../../plugins/auth-backend-module-oidc-provider/config.d.ts",
|
|
4010
4018
|
"value": {
|
|
4011
4019
|
"type": "object",
|
|
4012
4020
|
"properties": {
|
|
@@ -4016,7 +4024,7 @@
|
|
|
4016
4024
|
"providers": {
|
|
4017
4025
|
"type": "object",
|
|
4018
4026
|
"properties": {
|
|
4019
|
-
"
|
|
4027
|
+
"oidc": {
|
|
4020
4028
|
"visibility": "frontend",
|
|
4021
4029
|
"type": "object",
|
|
4022
4030
|
"additionalProperties": {
|
|
@@ -4029,16 +4037,16 @@
|
|
|
4029
4037
|
"visibility": "secret",
|
|
4030
4038
|
"type": "string"
|
|
4031
4039
|
},
|
|
4032
|
-
"
|
|
4040
|
+
"metadataUrl": {
|
|
4033
4041
|
"type": "string"
|
|
4034
4042
|
},
|
|
4035
|
-
"
|
|
4043
|
+
"callbackUrl": {
|
|
4036
4044
|
"type": "string"
|
|
4037
4045
|
},
|
|
4038
|
-
"
|
|
4046
|
+
"tokenEndpointAuthMethod": {
|
|
4039
4047
|
"type": "string"
|
|
4040
4048
|
},
|
|
4041
|
-
"
|
|
4049
|
+
"tokenSignedResponseAlg": {
|
|
4042
4050
|
"type": "string"
|
|
4043
4051
|
},
|
|
4044
4052
|
"additionalScopes": {
|
|
@@ -4054,6 +4062,9 @@
|
|
|
4054
4062
|
}
|
|
4055
4063
|
]
|
|
4056
4064
|
},
|
|
4065
|
+
"prompt": {
|
|
4066
|
+
"type": "string"
|
|
4067
|
+
},
|
|
4057
4068
|
"signIn": {
|
|
4058
4069
|
"type": "object",
|
|
4059
4070
|
"properties": {
|
|
@@ -4061,18 +4072,6 @@
|
|
|
4061
4072
|
"type": "array",
|
|
4062
4073
|
"items": {
|
|
4063
4074
|
"anyOf": [
|
|
4064
|
-
{
|
|
4065
|
-
"type": "object",
|
|
4066
|
-
"properties": {
|
|
4067
|
-
"resolver": {
|
|
4068
|
-
"type": "string",
|
|
4069
|
-
"const": "emailMatchingUserEntityAnnotation"
|
|
4070
|
-
}
|
|
4071
|
-
},
|
|
4072
|
-
"required": [
|
|
4073
|
-
"resolver"
|
|
4074
|
-
]
|
|
4075
|
-
},
|
|
4076
4075
|
{
|
|
4077
4076
|
"type": "object",
|
|
4078
4077
|
"properties": {
|
|
@@ -4115,7 +4114,8 @@
|
|
|
4115
4114
|
},
|
|
4116
4115
|
"required": [
|
|
4117
4116
|
"clientId",
|
|
4118
|
-
"clientSecret"
|
|
4117
|
+
"clientSecret",
|
|
4118
|
+
"metadataUrl"
|
|
4119
4119
|
]
|
|
4120
4120
|
}
|
|
4121
4121
|
}
|
|
@@ -4126,7 +4126,7 @@
|
|
|
4126
4126
|
},
|
|
4127
4127
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
4128
4128
|
},
|
|
4129
|
-
"packageName": "@backstage/plugin-auth-backend-module-
|
|
4129
|
+
"packageName": "@backstage/plugin-auth-backend-module-oidc-provider"
|
|
4130
4130
|
},
|
|
4131
4131
|
{
|
|
4132
4132
|
"path": "../../plugins/auth-backend-module-onelogin-provider/config.d.ts",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.c951dbc1.js"></script><script defer="defer" src="/static/module-material-ui.b24ef3a3.js"></script><script defer="defer" src="/static/module-lodash.aa647045.js"></script><script defer="defer" src="/static/module-date-fns.c633d602.js"></script><script defer="defer" src="/static/module-mui.f702282a.js"></script><script defer="defer" src="/static/module-material-table.d6e8d890.js"></script><script defer="defer" src="/static/module-react-dom.42a304d3.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.b474cfe9.js"></script><script defer="defer" src="/static/module-zod.4f2eeb8c.js"></script><script defer="defer" src="/static/module-i18next.f50c1612.js"></script><script defer="defer" src="/static/module-remix-run.ae6d33c5.js"></script><script defer="defer" src="/static/vendor.c951dbc1.js"></script><script defer="defer" src="/static/main.c951dbc1.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|