@techdocs/cli 1.9.3-next.1 → 1.9.3-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.
@@ -131,233 +131,6 @@
131
131
  },
132
132
  "packageName": "@backstage/plugin-permission-common"
133
133
  },
134
- {
135
- "path": "../core-app-api/config.d.ts",
136
- "value": {
137
- "type": "object",
138
- "properties": {
139
- "app": {
140
- "description": "Generic frontend configuration.",
141
- "type": "object",
142
- "properties": {
143
- "baseUrl": {
144
- "description": "The public absolute root URL that the frontend.",
145
- "visibility": "frontend",
146
- "type": "string"
147
- },
148
- "title": {
149
- "description": "The title of the app, as shown in the Backstage web interface.",
150
- "visibility": "frontend",
151
- "type": "string"
152
- },
153
- "support": {
154
- "description": "Information about support of this Backstage instance and how to contact the integrator team.",
155
- "type": "object",
156
- "properties": {
157
- "url": {
158
- "description": "The primary support url.",
159
- "visibility": "frontend",
160
- "type": "string"
161
- },
162
- "items": {
163
- "description": "A list of categorized support item groupings.",
164
- "type": "array",
165
- "items": {
166
- "type": "object",
167
- "properties": {
168
- "title": {
169
- "description": "The title of the support item grouping.",
170
- "visibility": "frontend",
171
- "type": "string"
172
- },
173
- "icon": {
174
- "description": "An optional icon for the support item grouping.",
175
- "visibility": "frontend",
176
- "type": "string"
177
- },
178
- "links": {
179
- "description": "A list of support links for the Backstage instance inside this grouping.",
180
- "type": "array",
181
- "items": {
182
- "type": "object",
183
- "properties": {
184
- "url": {
185
- "visibility": "frontend",
186
- "type": "string"
187
- },
188
- "title": {
189
- "visibility": "frontend",
190
- "type": "string"
191
- }
192
- },
193
- "required": [
194
- "url"
195
- ]
196
- }
197
- }
198
- },
199
- "required": [
200
- "links",
201
- "title"
202
- ]
203
- }
204
- }
205
- },
206
- "required": [
207
- "items",
208
- "url"
209
- ]
210
- },
211
- "routes": {
212
- "type": "object",
213
- "properties": {
214
- "bindings": {
215
- "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.",
216
- "deepVisibility": "frontend",
217
- "type": "object",
218
- "additionalProperties": {
219
- "anyOf": [
220
- {
221
- "const": false,
222
- "type": "boolean"
223
- },
224
- {
225
- "type": "string"
226
- }
227
- ]
228
- }
229
- }
230
- }
231
- }
232
- },
233
- "required": [
234
- "baseUrl"
235
- ]
236
- },
237
- "backend": {
238
- "description": "Generic backend configuration.",
239
- "type": "object",
240
- "properties": {
241
- "baseUrl": {
242
- "description": "The public absolute root URL that the backend is reachable at, from the browser's perspective.",
243
- "visibility": "frontend",
244
- "type": "string"
245
- }
246
- },
247
- "required": [
248
- "baseUrl"
249
- ]
250
- },
251
- "organization": {
252
- "description": "Configuration that provides information about the organization that the app is for.",
253
- "type": "object",
254
- "properties": {
255
- "name": {
256
- "description": "The name of the organization that the app belongs to.",
257
- "visibility": "frontend",
258
- "type": "string"
259
- }
260
- }
261
- },
262
- "homepage": {
263
- "description": "This config was used by the HomepageTimer but has been replaced by the HeaderWorldClock in the home plugin",
264
- "deprecated": "in favor of the HeaderWorldClock which is found in the home plugin",
265
- "type": "object",
266
- "properties": {
267
- "clocks": {
268
- "type": "array",
269
- "items": {
270
- "type": "object",
271
- "properties": {
272
- "label": {
273
- "visibility": "frontend",
274
- "type": "string"
275
- },
276
- "timezone": {
277
- "visibility": "frontend",
278
- "type": "string"
279
- }
280
- },
281
- "required": [
282
- "label",
283
- "timezone"
284
- ]
285
- }
286
- }
287
- }
288
- },
289
- "auth": {
290
- "description": "Configuration that provides information on available configured authentication providers.",
291
- "type": "object",
292
- "properties": {
293
- "environment": {
294
- "description": "The 'environment' attribute added as an optional parameter to have configurable environment value for `auth.providers`.\ndefault value: 'development'\noptional values: 'development' | 'production'",
295
- "visibility": "frontend",
296
- "type": "string"
297
- }
298
- }
299
- },
300
- "enableExperimentalRedirectFlow": {
301
- "description": "Enable redirect authentication flow type, instead of a popup for authentication.",
302
- "visibility": "frontend",
303
- "type": "boolean"
304
- },
305
- "discovery": {
306
- "description": "Discovery options.",
307
- "visibility": "frontend",
308
- "type": "object",
309
- "properties": {
310
- "endpoints": {
311
- "description": "Endpoints\n\nA list of target baseUrls and the associated plugins.",
312
- "visibility": "frontend",
313
- "type": "array",
314
- "items": {
315
- "type": "object",
316
- "properties": {
317
- "target": {
318
- "description": "The target baseUrl to use for the plugin\n\nCan be either a string or an object with internal and external keys. (Internal is used for the backend, external for the frontend)\nTargets with `{{pluginId}}` or `{{ pluginId }} in the url will be replaced with the pluginId.",
319
- "visibility": "frontend",
320
- "anyOf": [
321
- {
322
- "type": "object",
323
- "properties": {
324
- "external": {
325
- "visibility": "frontend",
326
- "type": "string"
327
- }
328
- }
329
- },
330
- {
331
- "type": "string"
332
- }
333
- ]
334
- },
335
- "plugins": {
336
- "description": "Array of plugins which use the target baseUrl.",
337
- "visibility": "frontend",
338
- "type": "array",
339
- "items": {
340
- "type": "string"
341
- }
342
- }
343
- },
344
- "required": [
345
- "plugins",
346
- "target"
347
- ]
348
- }
349
- }
350
- }
351
- }
352
- },
353
- "required": [
354
- "app",
355
- "backend"
356
- ],
357
- "$schema": "http://json-schema.org/draft-07/schema#"
358
- },
359
- "packageName": "@backstage/core-app-api"
360
- },
361
134
  {
362
135
  "path": "../core-components/config.d.ts",
363
136
  "value": {
@@ -461,157 +234,13 @@
461
234
  "packageName": "@backstage/plugin-techdocs"
462
235
  },
463
236
  {
464
- "path": "../frontend-app-api/config.d.ts",
237
+ "path": "../integration/config.d.ts",
465
238
  "value": {
466
239
  "type": "object",
467
240
  "properties": {
468
- "app": {
469
- "type": "object",
470
- "properties": {
471
- "experimental": {
472
- "type": "object",
473
- "properties": {
474
- "packages": {
475
- "visibility": "frontend",
476
- "deepVisibility": "frontend",
477
- "anyOf": [
478
- {
479
- "type": "object",
480
- "properties": {
481
- "include": {
482
- "type": "array",
483
- "items": {
484
- "type": "string"
485
- }
486
- },
487
- "exclude": {
488
- "type": "array",
489
- "items": {
490
- "type": "string"
491
- }
492
- }
493
- }
494
- },
495
- {
496
- "const": "all",
497
- "type": "string"
498
- }
499
- ]
500
- }
501
- }
502
- },
503
- "routes": {
504
- "type": "object",
505
- "properties": {
506
- "bindings": {
507
- "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.",
508
- "deepVisibility": "frontend",
509
- "type": "object",
510
- "additionalProperties": {
511
- "anyOf": [
512
- {
513
- "const": false,
514
- "type": "boolean"
515
- },
516
- {
517
- "type": "string"
518
- }
519
- ]
520
- }
521
- }
522
- }
523
- },
524
- "extensions": {
525
- "deepVisibility": "frontend",
526
- "type": "array",
527
- "items": {
528
- "anyOf": [
529
- {
530
- "type": "object",
531
- "additionalProperties": {
532
- "anyOf": [
533
- {
534
- "type": "object",
535
- "properties": {
536
- "attachTo": {
537
- "type": "object",
538
- "properties": {
539
- "id": {
540
- "type": "string"
541
- },
542
- "input": {
543
- "type": "string"
544
- }
545
- },
546
- "required": [
547
- "id",
548
- "input"
549
- ]
550
- },
551
- "disabled": {
552
- "type": "boolean"
553
- },
554
- "config": {}
555
- }
556
- },
557
- {
558
- "type": "boolean"
559
- }
560
- ]
561
- }
562
- },
563
- {
564
- "type": "string"
565
- }
566
- ]
567
- }
568
- }
569
- }
570
- }
571
- },
572
- "$schema": "http://json-schema.org/draft-07/schema#"
573
- },
574
- "packageName": "@backstage/frontend-app-api"
575
- },
576
- {
577
- "path": "../../plugins/catalog/config.d.ts",
578
- "value": {
579
- "type": "object",
580
- "properties": {
581
- "catalog": {
582
- "type": "object",
583
- "properties": {
584
- "experimentalPagination": {
585
- "deepVisibility": "frontend",
586
- "anyOf": [
587
- {
588
- "type": "object",
589
- "properties": {
590
- "limit": {
591
- "type": "number"
592
- }
593
- }
594
- },
595
- {
596
- "type": "boolean"
597
- }
598
- ]
599
- }
600
- }
601
- }
602
- },
603
- "$schema": "http://json-schema.org/draft-07/schema#"
604
- },
605
- "packageName": "@backstage/plugin-catalog"
606
- },
607
- {
608
- "path": "../integration/config.d.ts",
609
- "value": {
610
- "type": "object",
611
- "properties": {
612
- "integrations": {
613
- "description": "Configuration for integrations towards various external repository provider systems",
614
- "visibility": "frontend",
241
+ "integrations": {
242
+ "description": "Configuration for integrations towards various external repository provider systems",
243
+ "visibility": "frontend",
615
244
  "type": "object",
616
245
  "properties": {
617
246
  "azure": {
@@ -675,6 +304,9 @@
675
304
  },
676
305
  "personalAccessToken": {
677
306
  "type": "string"
307
+ },
308
+ "managedIdentityClientId": {
309
+ "type": "string"
678
310
  }
679
311
  }
680
312
  }
@@ -829,6 +461,11 @@
829
461
  "visibility": "frontend",
830
462
  "type": "string"
831
463
  },
464
+ "disableEditUrl": {
465
+ "description": "Disable the edit url feature.",
466
+ "visibility": "frontend",
467
+ "type": "boolean"
468
+ },
832
469
  "username": {
833
470
  "description": "The username to use for authenticated requests.",
834
471
  "visibility": "secret",
@@ -1072,23 +709,394 @@
1072
709
  "visibility": "secret",
1073
710
  "type": "string"
1074
711
  },
1075
- "token": {
1076
- "description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
1077
- "visibility": "secret",
1078
- "type": "string"
712
+ "token": {
713
+ "description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
714
+ "visibility": "secret",
715
+ "type": "string"
716
+ }
717
+ },
718
+ "required": [
719
+ "host"
720
+ ]
721
+ }
722
+ }
723
+ }
724
+ }
725
+ },
726
+ "$schema": "http://json-schema.org/draft-07/schema#"
727
+ },
728
+ "packageName": "@backstage/integration"
729
+ },
730
+ {
731
+ "path": "../frontend-app-api/config.d.ts",
732
+ "value": {
733
+ "type": "object",
734
+ "properties": {
735
+ "app": {
736
+ "type": "object",
737
+ "properties": {
738
+ "experimental": {
739
+ "type": "object",
740
+ "properties": {
741
+ "packages": {
742
+ "visibility": "frontend",
743
+ "deepVisibility": "frontend",
744
+ "anyOf": [
745
+ {
746
+ "type": "object",
747
+ "properties": {
748
+ "include": {
749
+ "type": "array",
750
+ "items": {
751
+ "type": "string"
752
+ }
753
+ },
754
+ "exclude": {
755
+ "type": "array",
756
+ "items": {
757
+ "type": "string"
758
+ }
759
+ }
760
+ }
761
+ },
762
+ {
763
+ "const": "all",
764
+ "type": "string"
765
+ }
766
+ ]
767
+ }
768
+ }
769
+ },
770
+ "routes": {
771
+ "type": "object",
772
+ "properties": {
773
+ "bindings": {
774
+ "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.",
775
+ "deepVisibility": "frontend",
776
+ "type": "object",
777
+ "additionalProperties": {
778
+ "anyOf": [
779
+ {
780
+ "const": false,
781
+ "type": "boolean"
782
+ },
783
+ {
784
+ "type": "string"
785
+ }
786
+ ]
787
+ }
788
+ }
789
+ }
790
+ },
791
+ "extensions": {
792
+ "deepVisibility": "frontend",
793
+ "type": "array",
794
+ "items": {
795
+ "anyOf": [
796
+ {
797
+ "type": "object",
798
+ "additionalProperties": {
799
+ "anyOf": [
800
+ {
801
+ "type": "object",
802
+ "properties": {
803
+ "attachTo": {
804
+ "type": "object",
805
+ "properties": {
806
+ "id": {
807
+ "type": "string"
808
+ },
809
+ "input": {
810
+ "type": "string"
811
+ }
812
+ },
813
+ "required": [
814
+ "id",
815
+ "input"
816
+ ]
817
+ },
818
+ "disabled": {
819
+ "type": "boolean"
820
+ },
821
+ "config": {}
822
+ }
823
+ },
824
+ {
825
+ "type": "boolean"
826
+ }
827
+ ]
828
+ }
829
+ },
830
+ {
831
+ "type": "string"
832
+ }
833
+ ]
834
+ }
835
+ }
836
+ }
837
+ }
838
+ },
839
+ "$schema": "http://json-schema.org/draft-07/schema#"
840
+ },
841
+ "packageName": "@backstage/frontend-app-api"
842
+ },
843
+ {
844
+ "path": "../../plugins/catalog/config.d.ts",
845
+ "value": {
846
+ "type": "object",
847
+ "properties": {
848
+ "catalog": {
849
+ "type": "object",
850
+ "properties": {
851
+ "experimentalPagination": {
852
+ "deepVisibility": "frontend",
853
+ "anyOf": [
854
+ {
855
+ "type": "object",
856
+ "properties": {
857
+ "limit": {
858
+ "type": "number"
859
+ }
860
+ }
861
+ },
862
+ {
863
+ "type": "boolean"
864
+ }
865
+ ]
866
+ }
867
+ }
868
+ }
869
+ },
870
+ "$schema": "http://json-schema.org/draft-07/schema#"
871
+ },
872
+ "packageName": "@backstage/plugin-catalog"
873
+ },
874
+ {
875
+ "path": "../core-app-api/config.d.ts",
876
+ "value": {
877
+ "type": "object",
878
+ "properties": {
879
+ "app": {
880
+ "description": "Generic frontend configuration.",
881
+ "type": "object",
882
+ "properties": {
883
+ "baseUrl": {
884
+ "description": "The public absolute root URL that the frontend.",
885
+ "visibility": "frontend",
886
+ "type": "string"
887
+ },
888
+ "title": {
889
+ "description": "The title of the app, as shown in the Backstage web interface.",
890
+ "visibility": "frontend",
891
+ "type": "string"
892
+ },
893
+ "support": {
894
+ "description": "Information about support of this Backstage instance and how to contact the integrator team.",
895
+ "type": "object",
896
+ "properties": {
897
+ "url": {
898
+ "description": "The primary support url.",
899
+ "visibility": "frontend",
900
+ "type": "string"
901
+ },
902
+ "items": {
903
+ "description": "A list of categorized support item groupings.",
904
+ "type": "array",
905
+ "items": {
906
+ "type": "object",
907
+ "properties": {
908
+ "title": {
909
+ "description": "The title of the support item grouping.",
910
+ "visibility": "frontend",
911
+ "type": "string"
912
+ },
913
+ "icon": {
914
+ "description": "An optional icon for the support item grouping.",
915
+ "visibility": "frontend",
916
+ "type": "string"
917
+ },
918
+ "links": {
919
+ "description": "A list of support links for the Backstage instance inside this grouping.",
920
+ "type": "array",
921
+ "items": {
922
+ "type": "object",
923
+ "properties": {
924
+ "url": {
925
+ "visibility": "frontend",
926
+ "type": "string"
927
+ },
928
+ "title": {
929
+ "visibility": "frontend",
930
+ "type": "string"
931
+ }
932
+ },
933
+ "required": [
934
+ "url"
935
+ ]
936
+ }
937
+ }
938
+ },
939
+ "required": [
940
+ "links",
941
+ "title"
942
+ ]
943
+ }
944
+ }
945
+ },
946
+ "required": [
947
+ "items",
948
+ "url"
949
+ ]
950
+ },
951
+ "routes": {
952
+ "type": "object",
953
+ "properties": {
954
+ "bindings": {
955
+ "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.",
956
+ "deepVisibility": "frontend",
957
+ "type": "object",
958
+ "additionalProperties": {
959
+ "anyOf": [
960
+ {
961
+ "const": false,
962
+ "type": "boolean"
963
+ },
964
+ {
965
+ "type": "string"
966
+ }
967
+ ]
968
+ }
969
+ }
970
+ }
971
+ }
972
+ },
973
+ "required": [
974
+ "baseUrl"
975
+ ]
976
+ },
977
+ "backend": {
978
+ "description": "Generic backend configuration.",
979
+ "type": "object",
980
+ "properties": {
981
+ "baseUrl": {
982
+ "description": "The public absolute root URL that the backend is reachable at, from the browser's perspective.",
983
+ "visibility": "frontend",
984
+ "type": "string"
985
+ }
986
+ },
987
+ "required": [
988
+ "baseUrl"
989
+ ]
990
+ },
991
+ "organization": {
992
+ "description": "Configuration that provides information about the organization that the app is for.",
993
+ "type": "object",
994
+ "properties": {
995
+ "name": {
996
+ "description": "The name of the organization that the app belongs to.",
997
+ "visibility": "frontend",
998
+ "type": "string"
999
+ }
1000
+ }
1001
+ },
1002
+ "homepage": {
1003
+ "description": "This config was used by the HomepageTimer but has been replaced by the HeaderWorldClock in the home plugin",
1004
+ "deprecated": "in favor of the HeaderWorldClock which is found in the home plugin",
1005
+ "type": "object",
1006
+ "properties": {
1007
+ "clocks": {
1008
+ "type": "array",
1009
+ "items": {
1010
+ "type": "object",
1011
+ "properties": {
1012
+ "label": {
1013
+ "visibility": "frontend",
1014
+ "type": "string"
1015
+ },
1016
+ "timezone": {
1017
+ "visibility": "frontend",
1018
+ "type": "string"
1019
+ }
1020
+ },
1021
+ "required": [
1022
+ "label",
1023
+ "timezone"
1024
+ ]
1025
+ }
1026
+ }
1027
+ }
1028
+ },
1029
+ "auth": {
1030
+ "description": "Configuration that provides information on available configured authentication providers.",
1031
+ "type": "object",
1032
+ "properties": {
1033
+ "environment": {
1034
+ "description": "The 'environment' attribute added as an optional parameter to have configurable environment value for `auth.providers`.\ndefault value: 'development'\noptional values: 'development' | 'production'",
1035
+ "visibility": "frontend",
1036
+ "type": "string"
1037
+ }
1038
+ }
1039
+ },
1040
+ "enableExperimentalRedirectFlow": {
1041
+ "description": "Enable redirect authentication flow type, instead of a popup for authentication.",
1042
+ "visibility": "frontend",
1043
+ "type": "boolean"
1044
+ },
1045
+ "discovery": {
1046
+ "description": "Discovery options.",
1047
+ "visibility": "frontend",
1048
+ "type": "object",
1049
+ "properties": {
1050
+ "endpoints": {
1051
+ "description": "Endpoints\n\nA list of target baseUrls and the associated plugins.",
1052
+ "visibility": "frontend",
1053
+ "type": "array",
1054
+ "items": {
1055
+ "type": "object",
1056
+ "properties": {
1057
+ "target": {
1058
+ "description": "The target baseUrl to use for the plugin\n\nCan be either a string or an object with internal and external keys. (Internal is used for the backend, external for the frontend)\nTargets with `{{pluginId}}` or `{{ pluginId }} in the url will be replaced with the pluginId.",
1059
+ "visibility": "frontend",
1060
+ "anyOf": [
1061
+ {
1062
+ "type": "object",
1063
+ "properties": {
1064
+ "external": {
1065
+ "visibility": "frontend",
1066
+ "type": "string"
1067
+ }
1068
+ }
1069
+ },
1070
+ {
1071
+ "type": "string"
1072
+ }
1073
+ ]
1074
+ },
1075
+ "plugins": {
1076
+ "description": "Array of plugins which use the target baseUrl.",
1077
+ "visibility": "frontend",
1078
+ "type": "array",
1079
+ "items": {
1080
+ "type": "string"
1081
+ }
1079
1082
  }
1080
1083
  },
1081
1084
  "required": [
1082
- "host"
1085
+ "plugins",
1086
+ "target"
1083
1087
  ]
1084
1088
  }
1085
1089
  }
1086
1090
  }
1087
1091
  }
1088
1092
  },
1093
+ "required": [
1094
+ "app",
1095
+ "backend"
1096
+ ],
1089
1097
  "$schema": "http://json-schema.org/draft-07/schema#"
1090
1098
  },
1091
- "packageName": "@backstage/integration"
1099
+ "packageName": "@backstage/core-app-api"
1092
1100
  },
1093
1101
  {
1094
1102
  "path": "../../node_modules/@backstage-community/plugin-stackstorm/config.d.ts",
@@ -1403,6 +1411,233 @@
1403
1411
  },
1404
1412
  "packageName": "@backstage/core-components"
1405
1413
  },
1414
+ {
1415
+ "path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/core-app-api/config.d.ts",
1416
+ "value": {
1417
+ "type": "object",
1418
+ "properties": {
1419
+ "app": {
1420
+ "description": "Generic frontend configuration.",
1421
+ "type": "object",
1422
+ "properties": {
1423
+ "baseUrl": {
1424
+ "description": "The public absolute root URL that the frontend.",
1425
+ "visibility": "frontend",
1426
+ "type": "string"
1427
+ },
1428
+ "title": {
1429
+ "description": "The title of the app, as shown in the Backstage web interface.",
1430
+ "visibility": "frontend",
1431
+ "type": "string"
1432
+ },
1433
+ "support": {
1434
+ "description": "Information about support of this Backstage instance and how to contact the integrator team.",
1435
+ "type": "object",
1436
+ "properties": {
1437
+ "url": {
1438
+ "description": "The primary support url.",
1439
+ "visibility": "frontend",
1440
+ "type": "string"
1441
+ },
1442
+ "items": {
1443
+ "description": "A list of categorized support item groupings.",
1444
+ "type": "array",
1445
+ "items": {
1446
+ "type": "object",
1447
+ "properties": {
1448
+ "title": {
1449
+ "description": "The title of the support item grouping.",
1450
+ "visibility": "frontend",
1451
+ "type": "string"
1452
+ },
1453
+ "icon": {
1454
+ "description": "An optional icon for the support item grouping.",
1455
+ "visibility": "frontend",
1456
+ "type": "string"
1457
+ },
1458
+ "links": {
1459
+ "description": "A list of support links for the Backstage instance inside this grouping.",
1460
+ "type": "array",
1461
+ "items": {
1462
+ "type": "object",
1463
+ "properties": {
1464
+ "url": {
1465
+ "visibility": "frontend",
1466
+ "type": "string"
1467
+ },
1468
+ "title": {
1469
+ "visibility": "frontend",
1470
+ "type": "string"
1471
+ }
1472
+ },
1473
+ "required": [
1474
+ "url"
1475
+ ]
1476
+ }
1477
+ }
1478
+ },
1479
+ "required": [
1480
+ "links",
1481
+ "title"
1482
+ ]
1483
+ }
1484
+ }
1485
+ },
1486
+ "required": [
1487
+ "items",
1488
+ "url"
1489
+ ]
1490
+ },
1491
+ "routes": {
1492
+ "type": "object",
1493
+ "properties": {
1494
+ "bindings": {
1495
+ "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.",
1496
+ "deepVisibility": "frontend",
1497
+ "type": "object",
1498
+ "additionalProperties": {
1499
+ "anyOf": [
1500
+ {
1501
+ "const": false,
1502
+ "type": "boolean"
1503
+ },
1504
+ {
1505
+ "type": "string"
1506
+ }
1507
+ ]
1508
+ }
1509
+ }
1510
+ }
1511
+ }
1512
+ },
1513
+ "required": [
1514
+ "baseUrl"
1515
+ ]
1516
+ },
1517
+ "backend": {
1518
+ "description": "Generic backend configuration.",
1519
+ "type": "object",
1520
+ "properties": {
1521
+ "baseUrl": {
1522
+ "description": "The public absolute root URL that the backend is reachable at, from the browser's perspective.",
1523
+ "visibility": "frontend",
1524
+ "type": "string"
1525
+ }
1526
+ },
1527
+ "required": [
1528
+ "baseUrl"
1529
+ ]
1530
+ },
1531
+ "organization": {
1532
+ "description": "Configuration that provides information about the organization that the app is for.",
1533
+ "type": "object",
1534
+ "properties": {
1535
+ "name": {
1536
+ "description": "The name of the organization that the app belongs to.",
1537
+ "visibility": "frontend",
1538
+ "type": "string"
1539
+ }
1540
+ }
1541
+ },
1542
+ "homepage": {
1543
+ "description": "This config was used by the HomepageTimer but has been replaced by the HeaderWorldClock in the home plugin",
1544
+ "deprecated": "in favor of the HeaderWorldClock which is found in the home plugin",
1545
+ "type": "object",
1546
+ "properties": {
1547
+ "clocks": {
1548
+ "type": "array",
1549
+ "items": {
1550
+ "type": "object",
1551
+ "properties": {
1552
+ "label": {
1553
+ "visibility": "frontend",
1554
+ "type": "string"
1555
+ },
1556
+ "timezone": {
1557
+ "visibility": "frontend",
1558
+ "type": "string"
1559
+ }
1560
+ },
1561
+ "required": [
1562
+ "label",
1563
+ "timezone"
1564
+ ]
1565
+ }
1566
+ }
1567
+ }
1568
+ },
1569
+ "auth": {
1570
+ "description": "Configuration that provides information on available configured authentication providers.",
1571
+ "type": "object",
1572
+ "properties": {
1573
+ "environment": {
1574
+ "description": "The 'environment' attribute added as an optional parameter to have configurable environment value for `auth.providers`.\ndefault value: 'development'\noptional values: 'development' | 'production'",
1575
+ "visibility": "frontend",
1576
+ "type": "string"
1577
+ }
1578
+ }
1579
+ },
1580
+ "enableExperimentalRedirectFlow": {
1581
+ "description": "Enable redirect authentication flow type, instead of a popup for authentication.",
1582
+ "visibility": "frontend",
1583
+ "type": "boolean"
1584
+ },
1585
+ "discovery": {
1586
+ "description": "Discovery options.",
1587
+ "visibility": "frontend",
1588
+ "type": "object",
1589
+ "properties": {
1590
+ "endpoints": {
1591
+ "description": "Endpoints\n\nA list of target baseUrls and the associated plugins.",
1592
+ "visibility": "frontend",
1593
+ "type": "array",
1594
+ "items": {
1595
+ "type": "object",
1596
+ "properties": {
1597
+ "target": {
1598
+ "description": "The target baseUrl to use for the plugin\n\nCan be either a string or an object with internal and external keys. (Internal is used for the backend, external for the frontend)\nTargets with `{{pluginId}}` or `{{ pluginId }} in the url will be replaced with the pluginId.",
1599
+ "visibility": "frontend",
1600
+ "anyOf": [
1601
+ {
1602
+ "type": "object",
1603
+ "properties": {
1604
+ "external": {
1605
+ "visibility": "frontend",
1606
+ "type": "string"
1607
+ }
1608
+ }
1609
+ },
1610
+ {
1611
+ "type": "string"
1612
+ }
1613
+ ]
1614
+ },
1615
+ "plugins": {
1616
+ "description": "Array of plugins which use the target baseUrl.",
1617
+ "visibility": "frontend",
1618
+ "type": "array",
1619
+ "items": {
1620
+ "type": "string"
1621
+ }
1622
+ }
1623
+ },
1624
+ "required": [
1625
+ "plugins",
1626
+ "target"
1627
+ ]
1628
+ }
1629
+ }
1630
+ }
1631
+ }
1632
+ },
1633
+ "required": [
1634
+ "app",
1635
+ "backend"
1636
+ ],
1637
+ "$schema": "http://json-schema.org/draft-07/schema#"
1638
+ },
1639
+ "packageName": "@backstage/core-app-api"
1640
+ },
1406
1641
  {
1407
1642
  "path": "../../node_modules/@backstage-community/plugin-stackstorm/node_modules/@backstage/core-components/config.d.ts",
1408
1643
  "value": {
@@ -3289,6 +3524,9 @@
3289
3524
  "resolver": {
3290
3525
  "type": "string",
3291
3526
  "const": "emailMatchingUserEntityAnnotation"
3527
+ },
3528
+ "dangerouslyAllowSignInWithoutUserInCatalog": {
3529
+ "type": "boolean"
3292
3530
  }
3293
3531
  },
3294
3532
  "required": [
@@ -3307,6 +3545,9 @@
3307
3545
  "items": {
3308
3546
  "type": "string"
3309
3547
  }
3548
+ },
3549
+ "dangerouslyAllowSignInWithoutUserInCatalog": {
3550
+ "type": "boolean"
3310
3551
  }
3311
3552
  },
3312
3553
  "required": [
@@ -3319,6 +3560,9 @@
3319
3560
  "resolver": {
3320
3561
  "type": "string",
3321
3562
  "const": "emailMatchingUserEntityProfileEmail"
3563
+ },
3564
+ "dangerouslyAllowSignInWithoutUserInCatalog": {
3565
+ "type": "boolean"
3322
3566
  }
3323
3567
  },
3324
3568
  "required": [