@techdocs/cli 0.0.0-nightly-20260102024955 → 0.0.0-nightly-20260104025723

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,15 +1,15 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20260102024955
3
+ ## 0.0.0-nightly-20260104025723
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-defaults@0.0.0-nightly-20260102024955
8
+ - @backstage/backend-defaults@0.0.0-nightly-20260104025723
9
9
  - @backstage/catalog-model@1.7.6
10
10
  - @backstage/cli-common@0.1.16
11
11
  - @backstage/config@1.3.6
12
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20260102024955
12
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20260104025723
13
13
 
14
14
  ## 1.10.4-next.1
15
15
 
@@ -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": {
@@ -1186,60 +959,287 @@
1186
959
  "description": "A pattern that is matched against the plugin ID.",
1187
960
  "type": "string"
1188
961
  },
1189
- "packageName": {
1190
- "description": "A pattern that is matched against the package name.",
962
+ "packageName": {
963
+ "description": "A pattern that is matched against the package name.",
964
+ "type": "string"
965
+ }
966
+ }
967
+ },
968
+ "info": {
969
+ "description": "Overrides individual top-level fields of the plugin info.",
970
+ "type": "object",
971
+ "properties": {
972
+ "description": {
973
+ "description": "Override the description of the plugin.",
974
+ "type": "string"
975
+ },
976
+ "ownerEntityRefs": {
977
+ "description": "Override the owner entity references of the plugin.",
978
+ "type": "array",
979
+ "items": {
980
+ "type": "string"
981
+ }
982
+ },
983
+ "links": {
984
+ "description": "Override the links of the plugin.",
985
+ "type": "array",
986
+ "items": {
987
+ "type": "object",
988
+ "properties": {
989
+ "title": {
990
+ "type": "string"
991
+ },
992
+ "url": {
993
+ "type": "string"
994
+ }
995
+ },
996
+ "required": [
997
+ "title",
998
+ "url"
999
+ ]
1000
+ }
1001
+ }
1002
+ }
1003
+ }
1004
+ },
1005
+ "required": [
1006
+ "info"
1007
+ ]
1008
+ }
1009
+ }
1010
+ }
1011
+ }
1012
+ },
1013
+ "$schema": "http://json-schema.org/draft-07/schema#"
1014
+ },
1015
+ "packageName": "@backstage/frontend-app-api"
1016
+ },
1017
+ {
1018
+ "path": "../core-app-api/config.d.ts",
1019
+ "value": {
1020
+ "type": "object",
1021
+ "properties": {
1022
+ "app": {
1023
+ "description": "Generic frontend configuration.",
1024
+ "type": "object",
1025
+ "properties": {
1026
+ "baseUrl": {
1027
+ "description": "The public absolute root URL that the frontend.",
1028
+ "visibility": "frontend",
1029
+ "type": "string"
1030
+ },
1031
+ "title": {
1032
+ "description": "The title of the app, as shown in the Backstage web interface.",
1033
+ "visibility": "frontend",
1034
+ "type": "string"
1035
+ },
1036
+ "support": {
1037
+ "description": "Information about support of this Backstage instance and how to contact the integrator team.",
1038
+ "type": "object",
1039
+ "properties": {
1040
+ "url": {
1041
+ "description": "The primary support url.",
1042
+ "visibility": "frontend",
1043
+ "type": "string"
1044
+ },
1045
+ "items": {
1046
+ "description": "A list of categorized support item groupings.",
1047
+ "type": "array",
1048
+ "items": {
1049
+ "type": "object",
1050
+ "properties": {
1051
+ "title": {
1052
+ "description": "The title of the support item grouping.",
1053
+ "visibility": "frontend",
1054
+ "type": "string"
1055
+ },
1056
+ "icon": {
1057
+ "description": "An optional icon for the support item grouping.",
1058
+ "visibility": "frontend",
1059
+ "type": "string"
1060
+ },
1061
+ "links": {
1062
+ "description": "A list of support links for the Backstage instance inside this grouping.",
1063
+ "type": "array",
1064
+ "items": {
1065
+ "type": "object",
1066
+ "properties": {
1067
+ "url": {
1068
+ "visibility": "frontend",
1069
+ "type": "string"
1070
+ },
1071
+ "title": {
1072
+ "visibility": "frontend",
1073
+ "type": "string"
1074
+ }
1075
+ },
1076
+ "required": [
1077
+ "url"
1078
+ ]
1079
+ }
1080
+ }
1081
+ },
1082
+ "required": [
1083
+ "links",
1084
+ "title"
1085
+ ]
1086
+ }
1087
+ }
1088
+ },
1089
+ "required": [
1090
+ "items",
1091
+ "url"
1092
+ ]
1093
+ },
1094
+ "routes": {
1095
+ "type": "object",
1096
+ "properties": {
1097
+ "bindings": {
1098
+ "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.",
1099
+ "deepVisibility": "frontend",
1100
+ "type": "object",
1101
+ "additionalProperties": {
1102
+ "anyOf": [
1103
+ {
1104
+ "const": false,
1105
+ "type": "boolean"
1106
+ },
1107
+ {
1108
+ "type": "string"
1109
+ }
1110
+ ]
1111
+ }
1112
+ }
1113
+ }
1114
+ }
1115
+ },
1116
+ "required": [
1117
+ "baseUrl"
1118
+ ]
1119
+ },
1120
+ "backend": {
1121
+ "description": "Generic backend configuration.",
1122
+ "type": "object",
1123
+ "properties": {
1124
+ "baseUrl": {
1125
+ "description": "The public absolute root URL that the backend is reachable at, from the browser's perspective.",
1126
+ "visibility": "frontend",
1127
+ "type": "string"
1128
+ }
1129
+ },
1130
+ "required": [
1131
+ "baseUrl"
1132
+ ]
1133
+ },
1134
+ "organization": {
1135
+ "description": "Configuration that provides information about the organization that the app is for.",
1136
+ "type": "object",
1137
+ "properties": {
1138
+ "name": {
1139
+ "description": "The name of the organization that the app belongs to.",
1140
+ "visibility": "frontend",
1141
+ "type": "string"
1142
+ }
1143
+ }
1144
+ },
1145
+ "homepage": {
1146
+ "description": "This config was used by the HomepageTimer but has been replaced by the HeaderWorldClock in the home plugin",
1147
+ "deprecated": "in favor of the HeaderWorldClock which is found in the home plugin",
1148
+ "type": "object",
1149
+ "properties": {
1150
+ "clocks": {
1151
+ "type": "array",
1152
+ "items": {
1153
+ "type": "object",
1154
+ "properties": {
1155
+ "label": {
1156
+ "visibility": "frontend",
1157
+ "type": "string"
1158
+ },
1159
+ "timezone": {
1160
+ "visibility": "frontend",
1161
+ "type": "string"
1162
+ }
1163
+ },
1164
+ "required": [
1165
+ "label",
1166
+ "timezone"
1167
+ ]
1168
+ }
1169
+ }
1170
+ }
1171
+ },
1172
+ "auth": {
1173
+ "description": "Configuration that provides information on available configured authentication providers.",
1174
+ "type": "object",
1175
+ "properties": {
1176
+ "environment": {
1177
+ "description": "The 'environment' attribute added as an optional parameter to have configurable environment value for `auth.providers`.\ndefault value: 'development'\noptional values: 'development' | 'production'",
1178
+ "visibility": "frontend",
1179
+ "type": "string"
1180
+ }
1181
+ }
1182
+ },
1183
+ "enableExperimentalRedirectFlow": {
1184
+ "description": "Enable redirect authentication flow type, instead of a popup for authentication.",
1185
+ "visibility": "frontend",
1186
+ "type": "boolean"
1187
+ },
1188
+ "discovery": {
1189
+ "description": "Discovery options.",
1190
+ "visibility": "frontend",
1191
+ "type": "object",
1192
+ "properties": {
1193
+ "endpoints": {
1194
+ "description": "Endpoints\n\nA list of target baseUrls and the associated plugins.",
1195
+ "visibility": "frontend",
1196
+ "type": "array",
1197
+ "items": {
1198
+ "type": "object",
1199
+ "properties": {
1200
+ "target": {
1201
+ "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.",
1202
+ "visibility": "frontend",
1203
+ "anyOf": [
1204
+ {
1205
+ "type": "object",
1206
+ "properties": {
1207
+ "external": {
1208
+ "visibility": "frontend",
1209
+ "type": "string"
1210
+ }
1211
+ }
1212
+ },
1213
+ {
1191
1214
  "type": "string"
1192
1215
  }
1193
- }
1216
+ ]
1194
1217
  },
1195
- "info": {
1196
- "description": "Overrides individual top-level fields of the plugin info.",
1197
- "type": "object",
1198
- "properties": {
1199
- "description": {
1200
- "description": "Override the description of the plugin.",
1201
- "type": "string"
1202
- },
1203
- "ownerEntityRefs": {
1204
- "description": "Override the owner entity references of the plugin.",
1205
- "type": "array",
1206
- "items": {
1207
- "type": "string"
1208
- }
1209
- },
1210
- "links": {
1211
- "description": "Override the links of the plugin.",
1212
- "type": "array",
1213
- "items": {
1214
- "type": "object",
1215
- "properties": {
1216
- "title": {
1217
- "type": "string"
1218
- },
1219
- "url": {
1220
- "type": "string"
1221
- }
1222
- },
1223
- "required": [
1224
- "title",
1225
- "url"
1226
- ]
1227
- }
1228
- }
1218
+ "plugins": {
1219
+ "description": "Array of plugins which use the target baseUrl.",
1220
+ "visibility": "frontend",
1221
+ "type": "array",
1222
+ "items": {
1223
+ "type": "string"
1229
1224
  }
1230
1225
  }
1231
1226
  },
1232
1227
  "required": [
1233
- "info"
1228
+ "plugins",
1229
+ "target"
1234
1230
  ]
1235
1231
  }
1236
1232
  }
1237
1233
  }
1238
1234
  }
1239
1235
  },
1236
+ "required": [
1237
+ "app",
1238
+ "backend"
1239
+ ],
1240
1240
  "$schema": "http://json-schema.org/draft-07/schema#"
1241
1241
  },
1242
- "packageName": "@backstage/frontend-app-api"
1242
+ "packageName": "@backstage/core-app-api"
1243
1243
  },
1244
1244
  {
1245
1245
  "path": "../../plugins/catalog/config.d.ts",
@@ -1492,105 +1492,6 @@
1492
1492
  },
1493
1493
  "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1494
1494
  },
1495
- {
1496
- "path": "../backend-app-api/config.d.ts",
1497
- "value": {
1498
- "type": "object",
1499
- "properties": {
1500
- "backend": {
1501
- "type": "object",
1502
- "properties": {
1503
- "packages": {
1504
- "description": "Used by the feature discovery service",
1505
- "anyOf": [
1506
- {
1507
- "type": "object",
1508
- "properties": {
1509
- "include": {
1510
- "type": "array",
1511
- "items": {
1512
- "type": "string"
1513
- }
1514
- },
1515
- "exclude": {
1516
- "type": "array",
1517
- "items": {
1518
- "type": "string"
1519
- }
1520
- }
1521
- }
1522
- },
1523
- {
1524
- "const": "all",
1525
- "type": "string"
1526
- }
1527
- ]
1528
- },
1529
- "startup": {
1530
- "type": "object",
1531
- "properties": {
1532
- "default": {
1533
- "type": "object",
1534
- "properties": {
1535
- "onPluginBootFailure": {
1536
- "description": "The default value for `onPluginBootFailure` if not specified for a particular plugin.\nThis defaults to 'abort', which means `onPluginBootFailure: continue` must be specified\nfor backend startup to continue on plugin boot failure. This can also be set to\n'continue', which flips the logic for individual plugins so that they must be set to\n`onPluginBootFailure: abort` to be required.",
1537
- "enum": [
1538
- "abort",
1539
- "continue"
1540
- ],
1541
- "type": "string"
1542
- },
1543
- "onPluginModuleBootFailure": {
1544
- "description": "The default value for `onPluginModuleBootFailure` if not specified for a particular plugin module.\nThis defaults to 'abort', which means `onPluginModuleBootFailure: continue` must be specified\nfor backend startup to continue on plugin module boot failure. This can also be set to\n'continue', which flips the logic for individual plugin modules so that they must be set to\n`onPluginModuleBootFailure: abort` to be required.",
1545
- "enum": [
1546
- "abort",
1547
- "continue"
1548
- ],
1549
- "type": "string"
1550
- }
1551
- }
1552
- },
1553
- "plugins": {
1554
- "type": "object",
1555
- "additionalProperties": {
1556
- "type": "object",
1557
- "properties": {
1558
- "onPluginBootFailure": {
1559
- "description": "Used to control backend startup behavior when this plugin fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nfails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin failures for plugins\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
1560
- "enum": [
1561
- "abort",
1562
- "continue"
1563
- ],
1564
- "type": "string"
1565
- },
1566
- "modules": {
1567
- "type": "object",
1568
- "additionalProperties": {
1569
- "type": "object",
1570
- "properties": {
1571
- "onPluginModuleBootFailure": {
1572
- "description": "Used to control backend startup behavior when this plugin module fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nmodule fails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin module failures for plugin modules\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
1573
- "enum": [
1574
- "abort",
1575
- "continue"
1576
- ],
1577
- "type": "string"
1578
- }
1579
- }
1580
- }
1581
- }
1582
- }
1583
- }
1584
- }
1585
- }
1586
- }
1587
- }
1588
- }
1589
- },
1590
- "$schema": "http://json-schema.org/draft-07/schema#"
1591
- },
1592
- "packageName": "@backstage/backend-app-api"
1593
- },
1594
1495
  {
1595
1496
  "path": "../backend-defaults/config.d.ts",
1596
1497
  "value": {
@@ -3186,6 +3087,105 @@
3186
3087
  },
3187
3088
  "packageName": "@backstage/plugin-events-node"
3188
3089
  },
3090
+ {
3091
+ "path": "../backend-app-api/config.d.ts",
3092
+ "value": {
3093
+ "type": "object",
3094
+ "properties": {
3095
+ "backend": {
3096
+ "type": "object",
3097
+ "properties": {
3098
+ "packages": {
3099
+ "description": "Used by the feature discovery service",
3100
+ "anyOf": [
3101
+ {
3102
+ "type": "object",
3103
+ "properties": {
3104
+ "include": {
3105
+ "type": "array",
3106
+ "items": {
3107
+ "type": "string"
3108
+ }
3109
+ },
3110
+ "exclude": {
3111
+ "type": "array",
3112
+ "items": {
3113
+ "type": "string"
3114
+ }
3115
+ }
3116
+ }
3117
+ },
3118
+ {
3119
+ "const": "all",
3120
+ "type": "string"
3121
+ }
3122
+ ]
3123
+ },
3124
+ "startup": {
3125
+ "type": "object",
3126
+ "properties": {
3127
+ "default": {
3128
+ "type": "object",
3129
+ "properties": {
3130
+ "onPluginBootFailure": {
3131
+ "description": "The default value for `onPluginBootFailure` if not specified for a particular plugin.\nThis defaults to 'abort', which means `onPluginBootFailure: continue` must be specified\nfor backend startup to continue on plugin boot failure. This can also be set to\n'continue', which flips the logic for individual plugins so that they must be set to\n`onPluginBootFailure: abort` to be required.",
3132
+ "enum": [
3133
+ "abort",
3134
+ "continue"
3135
+ ],
3136
+ "type": "string"
3137
+ },
3138
+ "onPluginModuleBootFailure": {
3139
+ "description": "The default value for `onPluginModuleBootFailure` if not specified for a particular plugin module.\nThis defaults to 'abort', which means `onPluginModuleBootFailure: continue` must be specified\nfor backend startup to continue on plugin module boot failure. This can also be set to\n'continue', which flips the logic for individual plugin modules so that they must be set to\n`onPluginModuleBootFailure: abort` to be required.",
3140
+ "enum": [
3141
+ "abort",
3142
+ "continue"
3143
+ ],
3144
+ "type": "string"
3145
+ }
3146
+ }
3147
+ },
3148
+ "plugins": {
3149
+ "type": "object",
3150
+ "additionalProperties": {
3151
+ "type": "object",
3152
+ "properties": {
3153
+ "onPluginBootFailure": {
3154
+ "description": "Used to control backend startup behavior when this plugin fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nfails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin failures for plugins\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
3155
+ "enum": [
3156
+ "abort",
3157
+ "continue"
3158
+ ],
3159
+ "type": "string"
3160
+ },
3161
+ "modules": {
3162
+ "type": "object",
3163
+ "additionalProperties": {
3164
+ "type": "object",
3165
+ "properties": {
3166
+ "onPluginModuleBootFailure": {
3167
+ "description": "Used to control backend startup behavior when this plugin module fails to boot up. Setting\nthis to `continue` allows the backend to continue starting up, even if this plugin\nmodule fails. This can enable leaving a crashing plugin installed, but still permit backend\nstartup, which may help troubleshoot data-dependent issues. Plugin module failures for plugin modules\nset to `abort` are fatal (this is the default unless overridden by the `default`\nsetting).",
3168
+ "enum": [
3169
+ "abort",
3170
+ "continue"
3171
+ ],
3172
+ "type": "string"
3173
+ }
3174
+ }
3175
+ }
3176
+ }
3177
+ }
3178
+ }
3179
+ }
3180
+ }
3181
+ }
3182
+ }
3183
+ }
3184
+ },
3185
+ "$schema": "http://json-schema.org/draft-07/schema#"
3186
+ },
3187
+ "packageName": "@backstage/backend-app-api"
3188
+ },
3189
3189
  {
3190
3190
  "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
3191
3191
  "value": {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.0.0-nightly-20260102024955";
3
+ var version = "0.0.0-nightly-20260104025723";
4
4
 
5
5
  exports.version = version;
6
6
  //# sourceMappingURL=package.json.cjs.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@techdocs/cli",
3
- "version": "0.0.0-nightly-20260102024955",
3
+ "version": "0.0.0-nightly-20260104025723",
4
4
  "description": "Utility CLI for managing TechDocs sites in Backstage.",
5
5
  "backstage": {
6
6
  "role": "cli"
@@ -44,11 +44,11 @@
44
44
  "watch": "./src"
45
45
  },
46
46
  "dependencies": {
47
- "@backstage/backend-defaults": "0.0.0-nightly-20260102024955",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20260104025723",
48
48
  "@backstage/catalog-model": "1.7.6",
49
49
  "@backstage/cli-common": "0.1.16",
50
50
  "@backstage/config": "1.3.6",
51
- "@backstage/plugin-techdocs-node": "0.0.0-nightly-20260102024955",
51
+ "@backstage/plugin-techdocs-node": "0.0.0-nightly-20260104025723",
52
52
  "commander": "^12.0.0",
53
53
  "fs-extra": "^11.0.0",
54
54
  "global-agent": "^3.0.0",
@@ -58,7 +58,7 @@
58
58
  "winston": "^3.2.1"
59
59
  },
60
60
  "devDependencies": {
61
- "@backstage/cli": "0.0.0-nightly-20260102024955",
61
+ "@backstage/cli": "0.0.0-nightly-20260104025723",
62
62
  "@types/commander": "^2.12.2",
63
63
  "@types/fs-extra": "^11.0.0",
64
64
  "@types/http-proxy": "^1.17.4",