@techdocs/cli 1.9.3-next.3 → 1.9.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,6 +131,233 @@
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
+ },
134
361
  {
135
362
  "path": "../core-components/config.d.ts",
136
363
  "value": {
@@ -178,69 +405,13 @@
178
405
  "packageName": "@backstage/core-components"
179
406
  },
180
407
  {
181
- "path": "../../plugins/techdocs/config.d.ts",
408
+ "path": "../integration/config.d.ts",
182
409
  "value": {
183
410
  "type": "object",
184
411
  "properties": {
185
- "techdocs": {
186
- "description": "Configuration options for the techdocs plugin",
187
- "type": "object",
188
- "properties": {
189
- "builder": {
190
- "description": "Documentation building process depends on the builder attr",
191
- "visibility": "frontend",
192
- "enum": [
193
- "external",
194
- "local"
195
- ],
196
- "type": "string"
197
- },
198
- "legacyUseCaseSensitiveTripletPaths": {
199
- "description": "Allows fallback to case-sensitive triplets in case of migration issues.",
200
- "visibility": "frontend",
201
- "type": "boolean"
202
- },
203
- "sanitizer": {
204
- "type": "object",
205
- "properties": {
206
- "allowedIframeHosts": {
207
- "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",
208
- "visibility": "frontend",
209
- "type": "array",
210
- "items": {
211
- "type": "string"
212
- }
213
- },
214
- "allowedCustomElementTagNameRegExp": {
215
- "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.",
216
- "visibility": "frontend",
217
- "type": "string"
218
- },
219
- "allowedCustomElementAttributeNameRegExp": {
220
- "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/>",
221
- "visibility": "frontend",
222
- "type": "string"
223
- }
224
- }
225
- }
226
- }
227
- }
228
- },
229
- "required": [
230
- "techdocs"
231
- ],
232
- "$schema": "http://json-schema.org/draft-07/schema#"
233
- },
234
- "packageName": "@backstage/plugin-techdocs"
235
- },
236
- {
237
- "path": "../integration/config.d.ts",
238
- "value": {
239
- "type": "object",
240
- "properties": {
241
- "integrations": {
242
- "description": "Configuration for integrations towards various external repository provider systems",
243
- "visibility": "frontend",
412
+ "integrations": {
413
+ "description": "Configuration for integrations towards various external repository provider systems",
414
+ "visibility": "frontend",
244
415
  "type": "object",
245
416
  "properties": {
246
417
  "azure": {
@@ -872,309 +1043,138 @@
872
1043
  "packageName": "@backstage/plugin-catalog"
873
1044
  },
874
1045
  {
875
- "path": "../core-app-api/config.d.ts",
1046
+ "path": "../../plugins/techdocs/config.d.ts",
876
1047
  "value": {
877
1048
  "type": "object",
878
1049
  "properties": {
879
- "app": {
880
- "description": "Generic frontend configuration.",
1050
+ "techdocs": {
1051
+ "description": "Configuration options for the techdocs plugin",
881
1052
  "type": "object",
882
1053
  "properties": {
883
- "baseUrl": {
884
- "description": "The public absolute root URL that the frontend.",
1054
+ "builder": {
1055
+ "description": "Documentation building process depends on the builder attr",
885
1056
  "visibility": "frontend",
1057
+ "enum": [
1058
+ "external",
1059
+ "local"
1060
+ ],
886
1061
  "type": "string"
887
1062
  },
888
- "title": {
889
- "description": "The title of the app, as shown in the Backstage web interface.",
1063
+ "legacyUseCaseSensitiveTripletPaths": {
1064
+ "description": "Allows fallback to case-sensitive triplets in case of migration issues.",
890
1065
  "visibility": "frontend",
891
- "type": "string"
1066
+ "type": "boolean"
892
1067
  },
893
- "support": {
894
- "description": "Information about support of this Backstage instance and how to contact the integrator team.",
1068
+ "sanitizer": {
895
1069
  "type": "object",
896
1070
  "properties": {
897
- "url": {
898
- "description": "The primary support url.",
1071
+ "allowedIframeHosts": {
1072
+ "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",
899
1073
  "visibility": "frontend",
900
- "type": "string"
901
- },
902
- "items": {
903
- "description": "A list of categorized support item groupings.",
904
1074
  "type": "array",
905
1075
  "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
- ]
1076
+ "type": "string"
968
1077
  }
1078
+ },
1079
+ "allowedCustomElementTagNameRegExp": {
1080
+ "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.",
1081
+ "visibility": "frontend",
1082
+ "type": "string"
1083
+ },
1084
+ "allowedCustomElementAttributeNameRegExp": {
1085
+ "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/>",
1086
+ "visibility": "frontend",
1087
+ "type": "string"
969
1088
  }
970
1089
  }
971
1090
  }
972
- },
973
- "required": [
974
- "baseUrl"
975
- ]
976
- },
977
- "backend": {
978
- "description": "Generic backend configuration.",
1091
+ }
1092
+ }
1093
+ },
1094
+ "required": [
1095
+ "techdocs"
1096
+ ],
1097
+ "$schema": "http://json-schema.org/draft-07/schema#"
1098
+ },
1099
+ "packageName": "@backstage/plugin-techdocs"
1100
+ },
1101
+ {
1102
+ "path": "../../node_modules/@backstage-community/plugin-stackstorm/config.d.ts",
1103
+ "value": {
1104
+ "type": "object",
1105
+ "properties": {
1106
+ "stackstorm": {
979
1107
  "type": "object",
980
1108
  "properties": {
981
- "baseUrl": {
982
- "description": "The public absolute root URL that the backend is reachable at, from the browser's perspective.",
1109
+ "webUrl": {
1110
+ "description": "StackStorm Web UI url\nUsed in links to StackStorm web UI",
983
1111
  "visibility": "frontend",
984
1112
  "type": "string"
985
1113
  }
986
1114
  },
987
1115
  "required": [
988
- "baseUrl"
1116
+ "webUrl"
989
1117
  ]
990
- },
991
- "organization": {
992
- "description": "Configuration that provides information about the organization that the app is for.",
1118
+ }
1119
+ },
1120
+ "$schema": "http://json-schema.org/draft-07/schema#"
1121
+ },
1122
+ "packageName": "@backstage-community/plugin-stackstorm"
1123
+ },
1124
+ {
1125
+ "path": "../../node_modules/@oriflame/backstage-plugin-score-card/config.d.ts",
1126
+ "value": {
1127
+ "type": "object",
1128
+ "properties": {
1129
+ "scorecards": {
1130
+ "description": "Extra configuration for score card plugin",
993
1131
  "type": "object",
994
1132
  "properties": {
995
- "name": {
996
- "description": "The name of the organization that the app belongs to.",
1133
+ "jsonDataUrl": {
1134
+ "description": "The public absolute root URL with json file defining the score card entries.",
997
1135
  "visibility": "frontend",
998
1136
  "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
- }
1137
+ },
1138
+ "display": {
1139
+ "type": "object",
1140
+ "properties": {
1141
+ "reviewer": {
1142
+ "description": "Whether to display the reviewer column in the score card table.",
1143
+ "visibility": "frontend",
1144
+ "type": "string"
1020
1145
  },
1021
- "required": [
1022
- "label",
1023
- "timezone"
1024
- ]
1146
+ "reviewDate": {
1147
+ "description": "Whether to display the review date column in the score card table.",
1148
+ "visibility": "frontend",
1149
+ "type": "string"
1150
+ }
1025
1151
  }
1152
+ },
1153
+ "wikiLinkTemplate": {
1154
+ "description": "The template for the link to the wiki, e.g. \"https://TBD/XXX/_wiki/wikis/XXX.wiki/{id}\"",
1155
+ "visibility": "frontend",
1156
+ "type": "string"
1026
1157
  }
1027
1158
  }
1028
- },
1029
- "auth": {
1030
- "description": "Configuration that provides information on available configured authentication providers.",
1159
+ }
1160
+ },
1161
+ "required": [
1162
+ "scorecards"
1163
+ ],
1164
+ "$schema": "http://json-schema.org/draft-07/schema#"
1165
+ },
1166
+ "packageName": "@oriflame/backstage-plugin-score-card"
1167
+ },
1168
+ {
1169
+ "path": "../backend-plugin-api/config.d.ts",
1170
+ "value": {
1171
+ "type": "object",
1172
+ "properties": {
1173
+ "backend": {
1031
1174
  "type": "object",
1032
1175
  "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
- }
1082
- }
1083
- },
1084
- "required": [
1085
- "plugins",
1086
- "target"
1087
- ]
1088
- }
1089
- }
1090
- }
1091
- }
1092
- },
1093
- "required": [
1094
- "app",
1095
- "backend"
1096
- ],
1097
- "$schema": "http://json-schema.org/draft-07/schema#"
1098
- },
1099
- "packageName": "@backstage/core-app-api"
1100
- },
1101
- {
1102
- "path": "../../node_modules/@backstage-community/plugin-stackstorm/config.d.ts",
1103
- "value": {
1104
- "type": "object",
1105
- "properties": {
1106
- "stackstorm": {
1107
- "type": "object",
1108
- "properties": {
1109
- "webUrl": {
1110
- "description": "StackStorm Web UI url\nUsed in links to StackStorm web UI",
1111
- "visibility": "frontend",
1112
- "type": "string"
1113
- }
1114
- },
1115
- "required": [
1116
- "webUrl"
1117
- ]
1118
- }
1119
- },
1120
- "$schema": "http://json-schema.org/draft-07/schema#"
1121
- },
1122
- "packageName": "@backstage-community/plugin-stackstorm"
1123
- },
1124
- {
1125
- "path": "../../node_modules/@oriflame/backstage-plugin-score-card/config.d.ts",
1126
- "value": {
1127
- "type": "object",
1128
- "properties": {
1129
- "scorecards": {
1130
- "description": "Extra configuration for score card plugin",
1131
- "type": "object",
1132
- "properties": {
1133
- "jsonDataUrl": {
1134
- "description": "The public absolute root URL with json file defining the score card entries.",
1135
- "visibility": "frontend",
1136
- "type": "string"
1137
- },
1138
- "display": {
1139
- "type": "object",
1140
- "properties": {
1141
- "reviewer": {
1142
- "description": "Whether to display the reviewer column in the score card table.",
1143
- "visibility": "frontend",
1144
- "type": "string"
1145
- },
1146
- "reviewDate": {
1147
- "description": "Whether to display the review date column in the score card table.",
1148
- "visibility": "frontend",
1149
- "type": "string"
1150
- }
1151
- }
1152
- },
1153
- "wikiLinkTemplate": {
1154
- "description": "The template for the link to the wiki, e.g. \"https://TBD/XXX/_wiki/wikis/XXX.wiki/{id}\"",
1155
- "visibility": "frontend",
1156
- "type": "string"
1157
- }
1158
- }
1159
- }
1160
- },
1161
- "required": [
1162
- "scorecards"
1163
- ],
1164
- "$schema": "http://json-schema.org/draft-07/schema#"
1165
- },
1166
- "packageName": "@oriflame/backstage-plugin-score-card"
1167
- },
1168
- {
1169
- "path": "../backend-plugin-api/config.d.ts",
1170
- "value": {
1171
- "type": "object",
1172
- "properties": {
1173
- "backend": {
1174
- "type": "object",
1175
- "properties": {
1176
- "workingDirectory": {
1177
- "description": "An absolute path to a directory that can be used as a working dir, for\nexample as scratch space for large operations.",
1176
+ "workingDirectory": {
1177
+ "description": "An absolute path to a directory that can be used as a working dir, for\nexample as scratch space for large operations.",
1178
1178
  "type": "string"
1179
1179
  }
1180
1180
  }
@@ -1350,857 +1350,104 @@
1350
1350
  "dangerouslyAllowOutsideDevelopment": {
1351
1351
  "description": "Allow users to sign in with the guest provider outside of their development environments.",
1352
1352
  "type": "boolean"
1353
- }
1354
- }
1355
- }
1356
- }
1357
- }
1358
- },
1359
- "required": [
1360
- "providers"
1361
- ]
1362
- }
1363
- },
1364
- "$schema": "http://json-schema.org/draft-07/schema#"
1365
- },
1366
- "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1367
- },
1368
- {
1369
- "path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/core-components/config.d.ts",
1370
- "value": {
1371
- "type": "object",
1372
- "properties": {
1373
- "auth": {
1374
- "type": "object",
1375
- "properties": {
1376
- "autologout": {
1377
- "description": "Autologout feature configuration",
1378
- "type": "object",
1379
- "properties": {
1380
- "enabled": {
1381
- "description": "Enable or disable the autologout feature",
1382
- "visibility": "frontend",
1383
- "type": "boolean"
1384
- },
1385
- "idleTimeoutMinutes": {
1386
- "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
1387
- "visibility": "frontend",
1388
- "type": "number"
1389
- },
1390
- "promptBeforeIdleSeconds": {
1391
- "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.",
1392
- "visibility": "frontend",
1393
- "type": "number"
1394
- },
1395
- "useWorkerTimers": {
1396
- "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.",
1397
- "visibility": "frontend",
1398
- "type": "boolean"
1399
- },
1400
- "logoutIfDisconnected": {
1401
- "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
1402
- "visibility": "frontend",
1403
- "type": "boolean"
1404
- }
1405
- }
1406
- }
1407
- }
1408
- }
1409
- },
1410
- "$schema": "http://json-schema.org/draft-07/schema#"
1411
- },
1412
- "packageName": "@backstage/core-components"
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
- },
1641
- {
1642
- "path": "../../node_modules/@backstage-community/plugin-stackstorm/node_modules/@backstage/core-components/config.d.ts",
1643
- "value": {
1644
- "type": "object",
1645
- "properties": {
1646
- "auth": {
1647
- "type": "object",
1648
- "properties": {
1649
- "autologout": {
1650
- "description": "Autologout feature configuration",
1651
- "type": "object",
1652
- "properties": {
1653
- "enabled": {
1654
- "description": "Enable or disable the autologout feature",
1655
- "visibility": "frontend",
1656
- "type": "boolean"
1657
- },
1658
- "idleTimeoutMinutes": {
1659
- "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
1660
- "visibility": "frontend",
1661
- "type": "number"
1662
- },
1663
- "promptBeforeIdleSeconds": {
1664
- "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.",
1665
- "visibility": "frontend",
1666
- "type": "number"
1667
- },
1668
- "useWorkerTimers": {
1669
- "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.",
1670
- "visibility": "frontend",
1671
- "type": "boolean"
1672
- },
1673
- "logoutIfDisconnected": {
1674
- "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
1675
- "visibility": "frontend",
1676
- "type": "boolean"
1677
- }
1678
- }
1679
- }
1680
- }
1681
- }
1682
- },
1683
- "$schema": "http://json-schema.org/draft-07/schema#"
1684
- },
1685
- "packageName": "@backstage/core-components"
1686
- },
1687
- {
1688
- "path": "../../node_modules/@oriflame/backstage-plugin-score-card/node_modules/@backstage/core-components/config.d.ts",
1689
- "value": {
1690
- "type": "object",
1691
- "properties": {
1692
- "auth": {
1693
- "type": "object",
1694
- "properties": {
1695
- "autologout": {
1696
- "description": "Autologout feature configuration",
1697
- "type": "object",
1698
- "properties": {
1699
- "enabled": {
1700
- "description": "Enable or disable the autologout feature",
1701
- "visibility": "frontend",
1702
- "type": "boolean"
1703
- },
1704
- "idleTimeoutMinutes": {
1705
- "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
1706
- "visibility": "frontend",
1707
- "type": "number"
1708
- },
1709
- "promptBeforeIdleSeconds": {
1710
- "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.",
1711
- "visibility": "frontend",
1712
- "type": "number"
1713
- },
1714
- "useWorkerTimers": {
1715
- "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.",
1716
- "visibility": "frontend",
1717
- "type": "boolean"
1718
- },
1719
- "logoutIfDisconnected": {
1720
- "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
1721
- "visibility": "frontend",
1722
- "type": "boolean"
1723
- }
1724
- }
1725
- }
1726
- }
1727
- }
1728
- },
1729
- "$schema": "http://json-schema.org/draft-07/schema#"
1730
- },
1731
- "packageName": "@backstage/core-components"
1732
- },
1733
- {
1734
- "path": "../../node_modules/@oriflame/backstage-plugin-score-card/node_modules/@backstage/integration/config.d.ts",
1735
- "value": {
1736
- "type": "object",
1737
- "properties": {
1738
- "integrations": {
1739
- "description": "Configuration for integrations towards various external repository provider systems",
1740
- "visibility": "frontend",
1741
- "type": "object",
1742
- "properties": {
1743
- "azure": {
1744
- "description": "Integration configuration for Azure",
1745
- "type": "array",
1746
- "items": {
1747
- "type": "object",
1748
- "properties": {
1749
- "host": {
1750
- "description": "The hostname of the given Azure instance",
1751
- "visibility": "frontend",
1752
- "type": "string"
1753
- },
1754
- "token": {
1755
- "description": "Token used to authenticate requests.",
1756
- "visibility": "secret",
1757
- "deprecated": "Use `credentials` instead.",
1758
- "type": "string"
1759
- },
1760
- "credential": {
1761
- "description": "The credential to use for requests.\n\nIf no credential is specified anonymous access is used.",
1762
- "deepVisibility": "secret",
1763
- "deprecated": "Use `credentials` instead.",
1764
- "type": "object",
1765
- "properties": {
1766
- "clientId": {
1767
- "type": "string"
1768
- },
1769
- "clientSecret": {
1770
- "type": "string"
1771
- },
1772
- "tenantId": {
1773
- "type": "string"
1774
- },
1775
- "personalAccessToken": {
1776
- "type": "string"
1777
- }
1778
- }
1779
- },
1780
- "credentials": {
1781
- "description": "The credentials to use for requests. If multiple credentials are specified the first one that matches the organization is used.\nIf not organization matches the first credential without an organization is used.\n\nIf no credentials are specified at all, either a default credential (for Azure DevOps) or anonymous access (for Azure DevOps Server) is used.",
1782
- "deepVisibility": "secret",
1783
- "type": "array",
1784
- "items": {
1785
- "type": "object",
1786
- "properties": {
1787
- "clientId": {
1788
- "type": "string"
1789
- },
1790
- "clientSecret": {
1791
- "type": "string"
1792
- },
1793
- "tenantId": {
1794
- "type": "string"
1795
- },
1796
- "personalAccessToken": {
1797
- "type": "string"
1798
- }
1799
- }
1800
- }
1801
- },
1802
- "commitSigningKey": {
1803
- "description": "PGP signing key for signing commits.",
1804
- "visibility": "secret",
1805
- "type": "string"
1806
- }
1807
- },
1808
- "required": [
1809
- "host"
1810
- ]
1811
- }
1812
- },
1813
- "bitbucket": {
1814
- "description": "Integration configuration for Bitbucket",
1815
- "deprecated": "replaced by bitbucketCloud and bitbucketServer",
1816
- "type": "array",
1817
- "items": {
1818
- "type": "object",
1819
- "properties": {
1820
- "host": {
1821
- "description": "The hostname of the given Bitbucket instance",
1822
- "visibility": "frontend",
1823
- "type": "string"
1824
- },
1825
- "token": {
1826
- "description": "Token used to authenticate requests.",
1827
- "visibility": "secret",
1828
- "type": "string"
1829
- },
1830
- "apiBaseUrl": {
1831
- "description": "The base url for the Bitbucket API, for example https://api.bitbucket.org/2.0",
1832
- "visibility": "frontend",
1833
- "type": "string"
1834
- },
1835
- "username": {
1836
- "description": "The username to use for authenticated requests.",
1837
- "visibility": "secret",
1838
- "type": "string"
1839
- },
1840
- "appPassword": {
1841
- "description": "Bitbucket app password used to authenticate requests.",
1842
- "visibility": "secret",
1843
- "type": "string"
1844
- },
1845
- "commitSigningKey": {
1846
- "description": "PGP signing key for signing commits.",
1847
- "visibility": "secret",
1848
- "type": "string"
1849
- }
1850
- },
1851
- "required": [
1852
- "host"
1853
- ]
1854
- }
1855
- },
1856
- "bitbucketCloud": {
1857
- "description": "Integration configuration for Bitbucket Cloud",
1858
- "type": "array",
1859
- "items": {
1860
- "type": "object",
1861
- "properties": {
1862
- "username": {
1863
- "description": "The username to use for authenticated requests.",
1864
- "visibility": "secret",
1865
- "type": "string"
1866
- },
1867
- "appPassword": {
1868
- "description": "Bitbucket Cloud app password used to authenticate requests.",
1869
- "visibility": "secret",
1870
- "type": "string"
1871
- },
1872
- "commitSigningKey": {
1873
- "description": "PGP signing key for signing commits.",
1874
- "visibility": "secret",
1875
- "type": "string"
1876
- }
1877
- },
1878
- "required": [
1879
- "appPassword",
1880
- "username"
1881
- ]
1882
- }
1883
- },
1884
- "bitbucketServer": {
1885
- "description": "Integration configuration for Bitbucket Server",
1886
- "type": "array",
1887
- "items": {
1888
- "type": "object",
1889
- "properties": {
1890
- "host": {
1891
- "description": "The hostname of the given Bitbucket Server instance",
1892
- "visibility": "frontend",
1893
- "type": "string"
1894
- },
1895
- "token": {
1896
- "description": "Token used to authenticate requests.",
1897
- "visibility": "secret",
1898
- "type": "string"
1899
- },
1900
- "username": {
1901
- "description": "Username used to authenticate requests with Basic Auth.",
1902
- "visibility": "secret",
1903
- "type": "string"
1904
- },
1905
- "password": {
1906
- "description": "Password (or token as password) used to authenticate requests with Basic Auth.",
1907
- "visibility": "secret",
1908
- "type": "string"
1909
- },
1910
- "apiBaseUrl": {
1911
- "description": "The base url for the Bitbucket Server API, for example https://<host>/rest/api/1.0",
1912
- "visibility": "frontend",
1913
- "type": "string"
1914
- },
1915
- "commitSigningKey": {
1916
- "description": "PGP signing key for signing commits.",
1917
- "visibility": "secret",
1918
- "type": "string"
1919
- }
1920
- },
1921
- "required": [
1922
- "host"
1923
- ]
1924
- }
1925
- },
1926
- "gerrit": {
1927
- "description": "Integration configuration for Gerrit",
1928
- "type": "array",
1929
- "items": {
1930
- "type": "object",
1931
- "properties": {
1932
- "host": {
1933
- "description": "The hostname of the given Gerrit instance",
1934
- "visibility": "frontend",
1935
- "type": "string"
1936
- },
1937
- "baseUrl": {
1938
- "description": "The base url for the Gerrit instance.",
1939
- "visibility": "frontend",
1940
- "type": "string"
1941
- },
1942
- "gitilesBaseUrl": {
1943
- "description": "The gitiles base url.",
1944
- "visibility": "frontend",
1945
- "type": "string"
1946
- },
1947
- "cloneUrl": {
1948
- "description": "The base url for cloning repos.",
1949
- "visibility": "frontend",
1950
- "type": "string"
1951
- },
1952
- "username": {
1953
- "description": "The username to use for authenticated requests.",
1954
- "visibility": "secret",
1955
- "type": "string"
1956
- },
1957
- "password": {
1958
- "description": "Gerrit password used to authenticate requests. This can be either a password\nor a generated access token.",
1959
- "visibility": "secret",
1960
- "type": "string"
1961
- },
1962
- "commitSigningKey": {
1963
- "description": "PGP signing key for signing commits.",
1964
- "visibility": "secret",
1965
- "type": "string"
1966
- }
1967
- },
1968
- "required": [
1969
- "gitilesBaseUrl",
1970
- "host"
1971
- ]
1972
- }
1973
- },
1974
- "github": {
1975
- "description": "Integration configuration for GitHub",
1976
- "type": "array",
1977
- "items": {
1978
- "type": "object",
1979
- "properties": {
1980
- "host": {
1981
- "description": "The hostname of the given GitHub instance",
1982
- "visibility": "frontend",
1983
- "type": "string"
1984
- },
1985
- "token": {
1986
- "description": "Token used to authenticate requests.",
1987
- "visibility": "secret",
1988
- "type": "string"
1989
- },
1990
- "apiBaseUrl": {
1991
- "description": "The base url for the GitHub API, for example https://api.github.com",
1992
- "visibility": "frontend",
1993
- "type": "string"
1994
- },
1995
- "rawBaseUrl": {
1996
- "description": "The base url for GitHub raw resources, for example https://raw.githubusercontent.com",
1997
- "visibility": "frontend",
1998
- "type": "string"
1999
- },
2000
- "apps": {
2001
- "description": "GitHub Apps configuration",
2002
- "type": "array",
2003
- "items": {
2004
- "type": "object",
2005
- "properties": {
2006
- "appId": {
2007
- "description": "The numeric GitHub App ID, string for environment variables",
2008
- "type": [
2009
- "string",
2010
- "number"
2011
- ]
2012
- },
2013
- "privateKey": {
2014
- "description": "The private key to use for auth against the app",
2015
- "visibility": "secret",
2016
- "type": "string"
2017
- },
2018
- "webhookSecret": {
2019
- "description": "The secret used for webhooks",
2020
- "visibility": "secret",
2021
- "type": "string"
2022
- },
2023
- "clientId": {
2024
- "description": "The client ID to use",
2025
- "type": "string"
2026
- },
2027
- "clientSecret": {
2028
- "description": "The client secret to use",
2029
- "visibility": "secret",
2030
- "type": "string"
2031
- },
2032
- "allowedInstallationOwners": {
2033
- "description": "List of installation owners allowed to be used by this GitHub app. The GitHub UI does not provide a way to list the installations.\nHowever you can list the installations with the GitHub API. You can find the list of installations here:\nhttps://api.github.com/app/installations\nThe relevant documentation for this is here.\nhttps://docs.github.com/en/rest/reference/apps#list-installations-for-the-authenticated-app--code-samples",
2034
- "type": "array",
2035
- "items": {
2036
- "type": "string"
2037
- }
2038
- }
2039
- },
2040
- "required": [
2041
- "appId",
2042
- "clientId",
2043
- "clientSecret",
2044
- "privateKey"
2045
- ]
2046
- }
2047
- }
2048
- },
2049
- "required": [
2050
- "host"
2051
- ]
2052
- }
2053
- },
2054
- "gitlab": {
2055
- "description": "Integration configuration for GitLab",
2056
- "type": "array",
2057
- "items": {
2058
- "type": "object",
2059
- "properties": {
2060
- "host": {
2061
- "description": "The host of the target that this matches on, e.g. \"gitlab.com\".",
2062
- "visibility": "frontend",
2063
- "type": "string"
2064
- },
2065
- "apiBaseUrl": {
2066
- "description": "The base URL of the API of this provider, e.g.\n\"https://gitlab.com/api/v4\", with no trailing slash.\n\nMay be omitted specifically for public GitLab; then it will be deduced.",
2067
- "visibility": "frontend",
2068
- "type": "string"
2069
- },
2070
- "token": {
2071
- "description": "The authorization token to use for requests to this provider.\n\nIf no token is specified, anonymous access is used.",
2072
- "visibility": "secret",
2073
- "type": "string"
2074
- },
2075
- "baseUrl": {
2076
- "description": "The baseUrl of this provider, e.g. \"https://gitlab.com\", which is\npassed into the GitLab client.\n\nIf no baseUrl is provided, it will default to https://${host}.",
2077
- "visibility": "frontend",
2078
- "type": "string"
2079
- },
2080
- "commitSigningKey": {
2081
- "description": "PGP signing key for signing commits.",
2082
- "visibility": "secret",
2083
- "type": "string"
2084
- }
2085
- },
2086
- "required": [
2087
- "host"
2088
- ]
2089
- }
2090
- },
2091
- "googleGcs": {
2092
- "description": "Integration configuration for Google Cloud Storage",
2093
- "type": "object",
2094
- "properties": {
2095
- "clientEmail": {
2096
- "description": "Service account email used to authenticate requests.",
2097
- "type": "string"
2098
- },
2099
- "privateKey": {
2100
- "description": "Service account private key used to authenticate requests.",
2101
- "visibility": "secret",
2102
- "type": "string"
2103
- }
2104
- }
2105
- },
2106
- "awsS3": {
2107
- "description": "Integration configuration for AWS S3 Service",
2108
- "type": "array",
2109
- "items": {
2110
- "type": "object",
2111
- "properties": {
2112
- "endpoint": {
2113
- "description": "AWS Endpoint.\nThe endpoint URI to send requests to. The default endpoint is built from the configured region.",
2114
- "visibility": "frontend",
2115
- "type": "string"
2116
- },
2117
- "s3ForcePathStyle": {
2118
- "description": "Whether to use path style URLs when communicating with S3.\nDefaults to false.\nThis allows providers like LocalStack, Minio and Wasabi (and possibly others) to be used.",
2119
- "visibility": "frontend",
2120
- "type": "boolean"
2121
- },
2122
- "accessKeyId": {
2123
- "description": "Account access key used to authenticate requests.",
2124
- "type": "string"
2125
- },
2126
- "secretAccessKey": {
2127
- "description": "Account secret key used to authenticate requests.",
2128
- "visibility": "secret",
2129
- "type": "string"
2130
- },
2131
- "roleArn": {
2132
- "description": "ARN of the role to be assumed",
2133
- "type": "string"
2134
- },
2135
- "externalId": {
2136
- "description": "External ID to use when assuming role",
2137
- "type": "string"
2138
- }
2139
- }
2140
- }
2141
- },
2142
- "gitea": {
2143
- "description": "Integration configuration for Gitea",
2144
- "type": "array",
2145
- "items": {
2146
- "type": "object",
2147
- "properties": {
2148
- "host": {
2149
- "description": "The hostname of the given Gitea instance",
2150
- "visibility": "frontend",
2151
- "type": "string"
2152
- },
2153
- "baseUrl": {
2154
- "description": "The base url for the Gitea instance.",
2155
- "visibility": "frontend",
2156
- "type": "string"
2157
- },
2158
- "username": {
2159
- "description": "The username to use for authenticated requests.",
2160
- "visibility": "secret",
2161
- "type": "string"
2162
- },
2163
- "password": {
2164
- "description": "Gitea password used to authenticate requests. This can be either a password\nor a generated access token.",
2165
- "visibility": "secret",
2166
- "type": "string"
2167
- },
2168
- "commitSigningKey": {
2169
- "description": "PGP signing key for signing commits.",
2170
- "visibility": "secret",
2171
- "type": "string"
1353
+ }
2172
1354
  }
1355
+ }
1356
+ }
1357
+ }
1358
+ },
1359
+ "required": [
1360
+ "providers"
1361
+ ]
1362
+ }
1363
+ },
1364
+ "$schema": "http://json-schema.org/draft-07/schema#"
1365
+ },
1366
+ "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1367
+ },
1368
+ {
1369
+ "path": "../../node_modules/@backstage-community/plugin-stackstorm/node_modules/@backstage/core-components/config.d.ts",
1370
+ "value": {
1371
+ "type": "object",
1372
+ "properties": {
1373
+ "auth": {
1374
+ "type": "object",
1375
+ "properties": {
1376
+ "autologout": {
1377
+ "description": "Autologout feature configuration",
1378
+ "type": "object",
1379
+ "properties": {
1380
+ "enabled": {
1381
+ "description": "Enable or disable the autologout feature",
1382
+ "visibility": "frontend",
1383
+ "type": "boolean"
2173
1384
  },
2174
- "required": [
2175
- "host"
2176
- ]
1385
+ "idleTimeoutMinutes": {
1386
+ "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
1387
+ "visibility": "frontend",
1388
+ "type": "number"
1389
+ },
1390
+ "promptBeforeIdleSeconds": {
1391
+ "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.",
1392
+ "visibility": "frontend",
1393
+ "type": "number"
1394
+ },
1395
+ "useWorkerTimers": {
1396
+ "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.",
1397
+ "visibility": "frontend",
1398
+ "type": "boolean"
1399
+ },
1400
+ "logoutIfDisconnected": {
1401
+ "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
1402
+ "visibility": "frontend",
1403
+ "type": "boolean"
1404
+ }
2177
1405
  }
2178
- },
2179
- "harness": {
2180
- "description": "Integration configuration for Harness Code",
2181
- "type": "array",
2182
- "items": {
2183
- "type": "object",
2184
- "properties": {
2185
- "host": {
2186
- "description": "The hostname of the given Harness Code instance",
2187
- "visibility": "frontend",
2188
- "type": "string"
2189
- },
2190
- "apiKey": {
2191
- "description": "The apikey to use for authenticated requests.",
2192
- "visibility": "secret",
2193
- "type": "string"
2194
- },
2195
- "token": {
2196
- "description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
2197
- "visibility": "secret",
2198
- "type": "string"
2199
- }
1406
+ }
1407
+ }
1408
+ }
1409
+ },
1410
+ "$schema": "http://json-schema.org/draft-07/schema#"
1411
+ },
1412
+ "packageName": "@backstage/core-components"
1413
+ },
1414
+ {
1415
+ "path": "../../node_modules/@oriflame/backstage-plugin-score-card/node_modules/@backstage/core-components/config.d.ts",
1416
+ "value": {
1417
+ "type": "object",
1418
+ "properties": {
1419
+ "auth": {
1420
+ "type": "object",
1421
+ "properties": {
1422
+ "autologout": {
1423
+ "description": "Autologout feature configuration",
1424
+ "type": "object",
1425
+ "properties": {
1426
+ "enabled": {
1427
+ "description": "Enable or disable the autologout feature",
1428
+ "visibility": "frontend",
1429
+ "type": "boolean"
2200
1430
  },
2201
- "required": [
2202
- "host"
2203
- ]
1431
+ "idleTimeoutMinutes": {
1432
+ "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
1433
+ "visibility": "frontend",
1434
+ "type": "number"
1435
+ },
1436
+ "promptBeforeIdleSeconds": {
1437
+ "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.",
1438
+ "visibility": "frontend",
1439
+ "type": "number"
1440
+ },
1441
+ "useWorkerTimers": {
1442
+ "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.",
1443
+ "visibility": "frontend",
1444
+ "type": "boolean"
1445
+ },
1446
+ "logoutIfDisconnected": {
1447
+ "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
1448
+ "visibility": "frontend",
1449
+ "type": "boolean"
1450
+ }
2204
1451
  }
2205
1452
  }
2206
1453
  }
@@ -2208,7 +1455,7 @@
2208
1455
  },
2209
1456
  "$schema": "http://json-schema.org/draft-07/schema#"
2210
1457
  },
2211
- "packageName": "@backstage/integration"
1458
+ "packageName": "@backstage/core-components"
2212
1459
  },
2213
1460
  {
2214
1461
  "path": "../backend-app-api/config.d.ts",
@@ -3594,27 +2841,6 @@
3594
2841
  },
3595
2842
  "packageName": "@backstage/plugin-auth-backend-module-google-provider"
3596
2843
  },
3597
- {
3598
- "path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/plugin-permission-common/config.d.ts",
3599
- "value": {
3600
- "type": "object",
3601
- "properties": {
3602
- "permission": {
3603
- "description": "Configuration options for Backstage permissions and authorization",
3604
- "type": "object",
3605
- "properties": {
3606
- "enabled": {
3607
- "description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
3608
- "visibility": "frontend",
3609
- "type": "boolean"
3610
- }
3611
- }
3612
- }
3613
- },
3614
- "$schema": "http://json-schema.org/draft-07/schema#"
3615
- },
3616
- "packageName": "@backstage/plugin-permission-common"
3617
- },
3618
2844
  {
3619
2845
  "path": "../integration-aws-node/config.d.ts",
3620
2846
  "value": {
@@ -3724,119 +2950,6 @@
3724
2950
  "$schema": "http://json-schema.org/draft-07/schema#"
3725
2951
  },
3726
2952
  "packageName": "@backstage/integration-aws-node"
3727
- },
3728
- {
3729
- "path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/frontend-app-api/config.d.ts",
3730
- "value": {
3731
- "type": "object",
3732
- "properties": {
3733
- "app": {
3734
- "type": "object",
3735
- "properties": {
3736
- "experimental": {
3737
- "type": "object",
3738
- "properties": {
3739
- "packages": {
3740
- "visibility": "frontend",
3741
- "deepVisibility": "frontend",
3742
- "anyOf": [
3743
- {
3744
- "type": "object",
3745
- "properties": {
3746
- "include": {
3747
- "type": "array",
3748
- "items": {
3749
- "type": "string"
3750
- }
3751
- },
3752
- "exclude": {
3753
- "type": "array",
3754
- "items": {
3755
- "type": "string"
3756
- }
3757
- }
3758
- }
3759
- },
3760
- {
3761
- "const": "all",
3762
- "type": "string"
3763
- }
3764
- ]
3765
- }
3766
- }
3767
- },
3768
- "routes": {
3769
- "type": "object",
3770
- "properties": {
3771
- "bindings": {
3772
- "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.",
3773
- "deepVisibility": "frontend",
3774
- "type": "object",
3775
- "additionalProperties": {
3776
- "anyOf": [
3777
- {
3778
- "const": false,
3779
- "type": "boolean"
3780
- },
3781
- {
3782
- "type": "string"
3783
- }
3784
- ]
3785
- }
3786
- }
3787
- }
3788
- },
3789
- "extensions": {
3790
- "deepVisibility": "frontend",
3791
- "type": "array",
3792
- "items": {
3793
- "anyOf": [
3794
- {
3795
- "type": "object",
3796
- "additionalProperties": {
3797
- "anyOf": [
3798
- {
3799
- "type": "object",
3800
- "properties": {
3801
- "attachTo": {
3802
- "type": "object",
3803
- "properties": {
3804
- "id": {
3805
- "type": "string"
3806
- },
3807
- "input": {
3808
- "type": "string"
3809
- }
3810
- },
3811
- "required": [
3812
- "id",
3813
- "input"
3814
- ]
3815
- },
3816
- "disabled": {
3817
- "type": "boolean"
3818
- },
3819
- "config": {}
3820
- }
3821
- },
3822
- {
3823
- "type": "boolean"
3824
- }
3825
- ]
3826
- }
3827
- },
3828
- {
3829
- "type": "string"
3830
- }
3831
- ]
3832
- }
3833
- }
3834
- }
3835
- }
3836
- },
3837
- "$schema": "http://json-schema.org/draft-07/schema#"
3838
- },
3839
- "packageName": "@backstage/frontend-app-api"
3840
2953
  }
3841
2954
  ],
3842
2955
  "backstageConfigSchemaVersion": 1