@techdocs/cli 0.0.0-nightly-20251123025211 → 0.0.0-nightly-20251124024600

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,11 +1,11 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20251123025211
3
+ ## 0.0.0-nightly-20251124024600
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-defaults@0.0.0-nightly-20251123025211
8
+ - @backstage/backend-defaults@0.0.0-nightly-20251124024600
9
9
  - @backstage/plugin-techdocs-node@1.13.9
10
10
 
11
11
  ## 1.10.2
@@ -358,6 +358,52 @@
358
358
  },
359
359
  "packageName": "@backstage/core-app-api"
360
360
  },
361
+ {
362
+ "path": "../core-components/config.d.ts",
363
+ "value": {
364
+ "type": "object",
365
+ "properties": {
366
+ "auth": {
367
+ "type": "object",
368
+ "properties": {
369
+ "autologout": {
370
+ "description": "Autologout feature configuration",
371
+ "type": "object",
372
+ "properties": {
373
+ "enabled": {
374
+ "description": "Enable or disable the autologout feature",
375
+ "visibility": "frontend",
376
+ "type": "boolean"
377
+ },
378
+ "idleTimeoutMinutes": {
379
+ "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
380
+ "visibility": "frontend",
381
+ "type": "number"
382
+ },
383
+ "promptBeforeIdleSeconds": {
384
+ "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.",
385
+ "visibility": "frontend",
386
+ "type": "number"
387
+ },
388
+ "useWorkerTimers": {
389
+ "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.",
390
+ "visibility": "frontend",
391
+ "type": "boolean"
392
+ },
393
+ "logoutIfDisconnected": {
394
+ "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
395
+ "visibility": "frontend",
396
+ "type": "boolean"
397
+ }
398
+ }
399
+ }
400
+ }
401
+ }
402
+ },
403
+ "$schema": "http://json-schema.org/draft-07/schema#"
404
+ },
405
+ "packageName": "@backstage/core-components"
406
+ },
361
407
  {
362
408
  "path": "../../plugins/techdocs/config.d.ts",
363
409
  "value": {
@@ -1215,52 +1261,6 @@
1215
1261
  },
1216
1262
  "packageName": "@backstage/plugin-catalog"
1217
1263
  },
1218
- {
1219
- "path": "../core-components/config.d.ts",
1220
- "value": {
1221
- "type": "object",
1222
- "properties": {
1223
- "auth": {
1224
- "type": "object",
1225
- "properties": {
1226
- "autologout": {
1227
- "description": "Autologout feature configuration",
1228
- "type": "object",
1229
- "properties": {
1230
- "enabled": {
1231
- "description": "Enable or disable the autologout feature",
1232
- "visibility": "frontend",
1233
- "type": "boolean"
1234
- },
1235
- "idleTimeoutMinutes": {
1236
- "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
1237
- "visibility": "frontend",
1238
- "type": "number"
1239
- },
1240
- "promptBeforeIdleSeconds": {
1241
- "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.",
1242
- "visibility": "frontend",
1243
- "type": "number"
1244
- },
1245
- "useWorkerTimers": {
1246
- "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.",
1247
- "visibility": "frontend",
1248
- "type": "boolean"
1249
- },
1250
- "logoutIfDisconnected": {
1251
- "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
1252
- "visibility": "frontend",
1253
- "type": "boolean"
1254
- }
1255
- }
1256
- }
1257
- }
1258
- }
1259
- },
1260
- "$schema": "http://json-schema.org/draft-07/schema#"
1261
- },
1262
- "packageName": "@backstage/core-components"
1263
- },
1264
1264
  {
1265
1265
  "path": "../backend-plugin-api/config.d.ts",
1266
1266
  "value": {
@@ -1481,105 +1481,6 @@
1481
1481
  },
1482
1482
  "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1483
1483
  },
1484
- {
1485
- "path": "../backend-app-api/config.d.ts",
1486
- "value": {
1487
- "type": "object",
1488
- "properties": {
1489
- "backend": {
1490
- "type": "object",
1491
- "properties": {
1492
- "packages": {
1493
- "description": "Used by the feature discovery service",
1494
- "anyOf": [
1495
- {
1496
- "type": "object",
1497
- "properties": {
1498
- "include": {
1499
- "type": "array",
1500
- "items": {
1501
- "type": "string"
1502
- }
1503
- },
1504
- "exclude": {
1505
- "type": "array",
1506
- "items": {
1507
- "type": "string"
1508
- }
1509
- }
1510
- }
1511
- },
1512
- {
1513
- "const": "all",
1514
- "type": "string"
1515
- }
1516
- ]
1517
- },
1518
- "startup": {
1519
- "type": "object",
1520
- "properties": {
1521
- "default": {
1522
- "type": "object",
1523
- "properties": {
1524
- "onPluginBootFailure": {
1525
- "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.",
1526
- "enum": [
1527
- "abort",
1528
- "continue"
1529
- ],
1530
- "type": "string"
1531
- },
1532
- "onPluginModuleBootFailure": {
1533
- "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.",
1534
- "enum": [
1535
- "abort",
1536
- "continue"
1537
- ],
1538
- "type": "string"
1539
- }
1540
- }
1541
- },
1542
- "plugins": {
1543
- "type": "object",
1544
- "additionalProperties": {
1545
- "type": "object",
1546
- "properties": {
1547
- "onPluginBootFailure": {
1548
- "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).",
1549
- "enum": [
1550
- "abort",
1551
- "continue"
1552
- ],
1553
- "type": "string"
1554
- },
1555
- "modules": {
1556
- "type": "object",
1557
- "additionalProperties": {
1558
- "type": "object",
1559
- "properties": {
1560
- "onPluginModuleBootFailure": {
1561
- "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).",
1562
- "enum": [
1563
- "abort",
1564
- "continue"
1565
- ],
1566
- "type": "string"
1567
- }
1568
- }
1569
- }
1570
- }
1571
- }
1572
- }
1573
- }
1574
- }
1575
- }
1576
- }
1577
- }
1578
- },
1579
- "$schema": "http://json-schema.org/draft-07/schema#"
1580
- },
1581
- "packageName": "@backstage/backend-app-api"
1582
- },
1583
1484
  {
1584
1485
  "path": "../backend-defaults/config.d.ts",
1585
1486
  "value": {
@@ -3152,30 +3053,6 @@
3152
3053
  },
3153
3054
  "packageName": "@backstage/backend-defaults"
3154
3055
  },
3155
- {
3156
- "path": "../../plugins/events-node/config.d.ts",
3157
- "value": {
3158
- "type": "object",
3159
- "properties": {
3160
- "events": {
3161
- "type": "object",
3162
- "properties": {
3163
- "useEventBus": {
3164
- "description": "Whether to use the event bus API in the events plugin backend to\ndistribute events across multiple instances when publishing and\nsubscribing to events.\n\nThe default is 'auto', which means means that the event bus API will be\nused if it's available, but will be disabled if the events backend\nreturns a 404.\n\nIf set to 'never', the events service will only ever publish events\nlocally to the same instance, while if set to 'always', the event bus API\nwill never be disabled, even if the events backend returns a 404.",
3165
- "enum": [
3166
- "always",
3167
- "auto",
3168
- "never"
3169
- ],
3170
- "type": "string"
3171
- }
3172
- }
3173
- }
3174
- },
3175
- "$schema": "http://json-schema.org/draft-07/schema#"
3176
- },
3177
- "packageName": "@backstage/plugin-events-node"
3178
- },
3179
3056
  {
3180
3057
  "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
3181
3058
  "value": {
@@ -3300,6 +3177,129 @@
3300
3177
  },
3301
3178
  "packageName": "@backstage/plugin-auth-backend-module-google-provider"
3302
3179
  },
3180
+ {
3181
+ "path": "../backend-app-api/config.d.ts",
3182
+ "value": {
3183
+ "type": "object",
3184
+ "properties": {
3185
+ "backend": {
3186
+ "type": "object",
3187
+ "properties": {
3188
+ "packages": {
3189
+ "description": "Used by the feature discovery service",
3190
+ "anyOf": [
3191
+ {
3192
+ "type": "object",
3193
+ "properties": {
3194
+ "include": {
3195
+ "type": "array",
3196
+ "items": {
3197
+ "type": "string"
3198
+ }
3199
+ },
3200
+ "exclude": {
3201
+ "type": "array",
3202
+ "items": {
3203
+ "type": "string"
3204
+ }
3205
+ }
3206
+ }
3207
+ },
3208
+ {
3209
+ "const": "all",
3210
+ "type": "string"
3211
+ }
3212
+ ]
3213
+ },
3214
+ "startup": {
3215
+ "type": "object",
3216
+ "properties": {
3217
+ "default": {
3218
+ "type": "object",
3219
+ "properties": {
3220
+ "onPluginBootFailure": {
3221
+ "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.",
3222
+ "enum": [
3223
+ "abort",
3224
+ "continue"
3225
+ ],
3226
+ "type": "string"
3227
+ },
3228
+ "onPluginModuleBootFailure": {
3229
+ "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.",
3230
+ "enum": [
3231
+ "abort",
3232
+ "continue"
3233
+ ],
3234
+ "type": "string"
3235
+ }
3236
+ }
3237
+ },
3238
+ "plugins": {
3239
+ "type": "object",
3240
+ "additionalProperties": {
3241
+ "type": "object",
3242
+ "properties": {
3243
+ "onPluginBootFailure": {
3244
+ "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).",
3245
+ "enum": [
3246
+ "abort",
3247
+ "continue"
3248
+ ],
3249
+ "type": "string"
3250
+ },
3251
+ "modules": {
3252
+ "type": "object",
3253
+ "additionalProperties": {
3254
+ "type": "object",
3255
+ "properties": {
3256
+ "onPluginModuleBootFailure": {
3257
+ "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).",
3258
+ "enum": [
3259
+ "abort",
3260
+ "continue"
3261
+ ],
3262
+ "type": "string"
3263
+ }
3264
+ }
3265
+ }
3266
+ }
3267
+ }
3268
+ }
3269
+ }
3270
+ }
3271
+ }
3272
+ }
3273
+ }
3274
+ },
3275
+ "$schema": "http://json-schema.org/draft-07/schema#"
3276
+ },
3277
+ "packageName": "@backstage/backend-app-api"
3278
+ },
3279
+ {
3280
+ "path": "../../plugins/events-node/config.d.ts",
3281
+ "value": {
3282
+ "type": "object",
3283
+ "properties": {
3284
+ "events": {
3285
+ "type": "object",
3286
+ "properties": {
3287
+ "useEventBus": {
3288
+ "description": "Whether to use the event bus API in the events plugin backend to\ndistribute events across multiple instances when publishing and\nsubscribing to events.\n\nThe default is 'auto', which means means that the event bus API will be\nused if it's available, but will be disabled if the events backend\nreturns a 404.\n\nIf set to 'never', the events service will only ever publish events\nlocally to the same instance, while if set to 'always', the event bus API\nwill never be disabled, even if the events backend returns a 404.",
3289
+ "enum": [
3290
+ "always",
3291
+ "auto",
3292
+ "never"
3293
+ ],
3294
+ "type": "string"
3295
+ }
3296
+ }
3297
+ }
3298
+ },
3299
+ "$schema": "http://json-schema.org/draft-07/schema#"
3300
+ },
3301
+ "packageName": "@backstage/plugin-events-node"
3302
+ },
3303
3303
  {
3304
3304
  "path": "../integration-aws-node/config.d.ts",
3305
3305
  "value": {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.0.0-nightly-20251123025211";
3
+ var version = "0.0.0-nightly-20251124024600";
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-20251123025211",
3
+ "version": "0.0.0-nightly-20251124024600",
4
4
  "description": "Utility CLI for managing TechDocs sites in Backstage.",
5
5
  "backstage": {
6
6
  "role": "cli"
@@ -44,7 +44,7 @@
44
44
  "watch": "./src"
45
45
  },
46
46
  "dependencies": {
47
- "@backstage/backend-defaults": "0.0.0-nightly-20251123025211",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20251124024600",
48
48
  "@backstage/catalog-model": "1.7.6",
49
49
  "@backstage/cli-common": "0.1.15",
50
50
  "@backstage/config": "1.3.6",