@techdocs/cli 0.0.0-nightly-20251109024152 → 0.0.0-nightly-20251111024437

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-20251109024152
3
+ ## 0.0.0-nightly-20251111024437
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - c2a2017: Fix for missing styles due to move to BUI.
8
8
  - Updated dependencies
9
- - @backstage/backend-defaults@0.0.0-nightly-20251109024152
10
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20251109024152
11
- - @backstage/config@0.0.0-nightly-20251109024152
12
- - @backstage/catalog-model@0.0.0-nightly-20251109024152
9
+ - @backstage/backend-defaults@0.0.0-nightly-20251111024437
10
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20251111024437
11
+ - @backstage/config@0.0.0-nightly-20251111024437
12
+ - @backstage/catalog-model@0.0.0-nightly-20251111024437
13
13
  - @backstage/cli-common@0.1.15
14
14
 
15
15
  ## 1.10.1-next.0
@@ -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": {
@@ -420,50 +466,240 @@
420
466
  "packageName": "@backstage/plugin-techdocs"
421
467
  },
422
468
  {
423
- "path": "../core-components/config.d.ts",
469
+ "path": "../frontend-app-api/config.d.ts",
424
470
  "value": {
425
471
  "type": "object",
426
472
  "properties": {
427
- "auth": {
473
+ "app": {
428
474
  "type": "object",
429
475
  "properties": {
430
- "autologout": {
431
- "description": "Autologout feature configuration",
476
+ "experimental": {
432
477
  "type": "object",
433
478
  "properties": {
434
- "enabled": {
435
- "description": "Enable or disable the autologout feature",
436
- "visibility": "frontend",
437
- "type": "boolean"
438
- },
439
- "idleTimeoutMinutes": {
440
- "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
479
+ "packages": {
441
480
  "visibility": "frontend",
442
- "type": "number"
481
+ "deepVisibility": "frontend",
482
+ "deprecated": "This is no longer experimental; use `app.packages` instead.",
483
+ "anyOf": [
484
+ {
485
+ "type": "object",
486
+ "properties": {
487
+ "include": {
488
+ "type": "array",
489
+ "items": {
490
+ "type": "string"
491
+ }
492
+ },
493
+ "exclude": {
494
+ "type": "array",
495
+ "items": {
496
+ "type": "string"
497
+ }
498
+ }
499
+ }
500
+ },
501
+ {
502
+ "const": "all",
503
+ "type": "string"
504
+ }
505
+ ]
506
+ }
507
+ }
508
+ },
509
+ "packages": {
510
+ "description": "Controls what packages are loaded by the new frontend system.",
511
+ "visibility": "frontend",
512
+ "deepVisibility": "frontend",
513
+ "anyOf": [
514
+ {
515
+ "type": "object",
516
+ "properties": {
517
+ "include": {
518
+ "type": "array",
519
+ "items": {
520
+ "type": "string"
521
+ }
522
+ },
523
+ "exclude": {
524
+ "type": "array",
525
+ "items": {
526
+ "type": "string"
527
+ }
528
+ }
529
+ }
443
530
  },
444
- "promptBeforeIdleSeconds": {
445
- "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.",
446
- "visibility": "frontend",
447
- "type": "number"
531
+ {
532
+ "const": "all",
533
+ "type": "string"
534
+ }
535
+ ]
536
+ },
537
+ "routes": {
538
+ "type": "object",
539
+ "properties": {
540
+ "bindings": {
541
+ "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.",
542
+ "deepVisibility": "frontend",
543
+ "type": "object",
544
+ "additionalProperties": {
545
+ "anyOf": [
546
+ {
547
+ "const": false,
548
+ "type": "boolean"
549
+ },
550
+ {
551
+ "type": "string"
552
+ }
553
+ ]
554
+ }
555
+ }
556
+ }
557
+ },
558
+ "extensions": {
559
+ "deepVisibility": "frontend",
560
+ "type": "array",
561
+ "items": {
562
+ "anyOf": [
563
+ {
564
+ "type": "object",
565
+ "additionalProperties": {
566
+ "anyOf": [
567
+ {
568
+ "type": "object",
569
+ "properties": {
570
+ "attachTo": {
571
+ "type": "object",
572
+ "properties": {
573
+ "id": {
574
+ "type": "string"
575
+ },
576
+ "input": {
577
+ "type": "string"
578
+ }
579
+ },
580
+ "required": [
581
+ "id",
582
+ "input"
583
+ ]
584
+ },
585
+ "disabled": {
586
+ "type": "boolean"
587
+ },
588
+ "config": {}
589
+ }
590
+ },
591
+ {
592
+ "type": "boolean"
593
+ }
594
+ ]
595
+ }
596
+ },
597
+ {
598
+ "type": "string"
599
+ }
600
+ ]
601
+ }
602
+ },
603
+ "pluginOverrides": {
604
+ "description": "This section enables you to override certain properties of specific or\ngroups of plugins.",
605
+ "deepVisibility": "frontend",
606
+ "type": "array",
607
+ "items": {
608
+ "type": "object",
609
+ "properties": {
610
+ "match": {
611
+ "description": "The criteria for matching plugins to override.",
612
+ "type": "object",
613
+ "properties": {
614
+ "pluginId": {
615
+ "description": "A pattern that is matched against the plugin ID.",
616
+ "type": "string"
617
+ },
618
+ "packageName": {
619
+ "description": "A pattern that is matched against the package name.",
620
+ "type": "string"
621
+ }
622
+ }
623
+ },
624
+ "info": {
625
+ "description": "Overrides individual top-level fields of the plugin info.",
626
+ "type": "object",
627
+ "properties": {
628
+ "description": {
629
+ "description": "Override the description of the plugin.",
630
+ "type": "string"
631
+ },
632
+ "ownerEntityRefs": {
633
+ "description": "Override the owner entity references of the plugin.",
634
+ "type": "array",
635
+ "items": {
636
+ "type": "string"
637
+ }
638
+ },
639
+ "links": {
640
+ "description": "Override the links of the plugin.",
641
+ "type": "array",
642
+ "items": {
643
+ "type": "object",
644
+ "properties": {
645
+ "title": {
646
+ "type": "string"
647
+ },
648
+ "url": {
649
+ "type": "string"
650
+ }
651
+ },
652
+ "required": [
653
+ "title",
654
+ "url"
655
+ ]
656
+ }
657
+ }
658
+ }
659
+ }
448
660
  },
449
- "useWorkerTimers": {
450
- "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.",
451
- "visibility": "frontend",
452
- "type": "boolean"
661
+ "required": [
662
+ "info"
663
+ ]
664
+ }
665
+ }
666
+ }
667
+ }
668
+ },
669
+ "$schema": "http://json-schema.org/draft-07/schema#"
670
+ },
671
+ "packageName": "@backstage/frontend-app-api"
672
+ },
673
+ {
674
+ "path": "../../plugins/catalog/config.d.ts",
675
+ "value": {
676
+ "type": "object",
677
+ "properties": {
678
+ "catalog": {
679
+ "type": "object",
680
+ "properties": {
681
+ "experimentalPagination": {
682
+ "deepVisibility": "frontend",
683
+ "anyOf": [
684
+ {
685
+ "type": "object",
686
+ "properties": {
687
+ "limit": {
688
+ "type": "number"
689
+ }
690
+ }
453
691
  },
454
- "logoutIfDisconnected": {
455
- "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
456
- "visibility": "frontend",
692
+ {
457
693
  "type": "boolean"
458
694
  }
459
- }
695
+ ]
460
696
  }
461
697
  }
462
698
  }
463
699
  },
464
700
  "$schema": "http://json-schema.org/draft-07/schema#"
465
701
  },
466
- "packageName": "@backstage/core-components"
702
+ "packageName": "@backstage/plugin-catalog"
467
703
  },
468
704
  {
469
705
  "path": "../integration/config.d.ts",
@@ -982,270 +1218,34 @@
982
1218
  }
983
1219
  },
984
1220
  "required": [
985
- "host"
986
- ]
987
- }
988
- },
989
- "harness": {
990
- "description": "Integration configuration for Harness Code",
991
- "type": "array",
992
- "items": {
993
- "type": "object",
994
- "properties": {
995
- "host": {
996
- "description": "The hostname of the given Harness Code instance",
997
- "visibility": "frontend",
998
- "type": "string"
999
- },
1000
- "apiKey": {
1001
- "description": "The apikey to use for authenticated requests.",
1002
- "visibility": "secret",
1003
- "type": "string"
1004
- },
1005
- "token": {
1006
- "description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
1007
- "visibility": "secret",
1008
- "type": "string"
1009
- }
1010
- },
1011
- "required": [
1012
- "host"
1013
- ]
1014
- }
1015
- }
1016
- }
1017
- }
1018
- },
1019
- "$schema": "http://json-schema.org/draft-07/schema#"
1020
- },
1021
- "packageName": "@backstage/integration"
1022
- },
1023
- {
1024
- "path": "../../plugins/catalog/config.d.ts",
1025
- "value": {
1026
- "type": "object",
1027
- "properties": {
1028
- "catalog": {
1029
- "type": "object",
1030
- "properties": {
1031
- "experimentalPagination": {
1032
- "deepVisibility": "frontend",
1033
- "anyOf": [
1034
- {
1035
- "type": "object",
1036
- "properties": {
1037
- "limit": {
1038
- "type": "number"
1039
- }
1040
- }
1041
- },
1042
- {
1043
- "type": "boolean"
1044
- }
1045
- ]
1046
- }
1047
- }
1048
- }
1049
- },
1050
- "$schema": "http://json-schema.org/draft-07/schema#"
1051
- },
1052
- "packageName": "@backstage/plugin-catalog"
1053
- },
1054
- {
1055
- "path": "../frontend-app-api/config.d.ts",
1056
- "value": {
1057
- "type": "object",
1058
- "properties": {
1059
- "app": {
1060
- "type": "object",
1061
- "properties": {
1062
- "experimental": {
1063
- "type": "object",
1064
- "properties": {
1065
- "packages": {
1066
- "visibility": "frontend",
1067
- "deepVisibility": "frontend",
1068
- "deprecated": "This is no longer experimental; use `app.packages` instead.",
1069
- "anyOf": [
1070
- {
1071
- "type": "object",
1072
- "properties": {
1073
- "include": {
1074
- "type": "array",
1075
- "items": {
1076
- "type": "string"
1077
- }
1078
- },
1079
- "exclude": {
1080
- "type": "array",
1081
- "items": {
1082
- "type": "string"
1083
- }
1084
- }
1085
- }
1086
- },
1087
- {
1088
- "const": "all",
1089
- "type": "string"
1090
- }
1091
- ]
1092
- }
1093
- }
1094
- },
1095
- "packages": {
1096
- "description": "Controls what packages are loaded by the new frontend system.",
1097
- "visibility": "frontend",
1098
- "deepVisibility": "frontend",
1099
- "anyOf": [
1100
- {
1101
- "type": "object",
1102
- "properties": {
1103
- "include": {
1104
- "type": "array",
1105
- "items": {
1106
- "type": "string"
1107
- }
1108
- },
1109
- "exclude": {
1110
- "type": "array",
1111
- "items": {
1112
- "type": "string"
1113
- }
1114
- }
1115
- }
1116
- },
1117
- {
1118
- "const": "all",
1119
- "type": "string"
1120
- }
1121
- ]
1122
- },
1123
- "routes": {
1124
- "type": "object",
1125
- "properties": {
1126
- "bindings": {
1127
- "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.",
1128
- "deepVisibility": "frontend",
1129
- "type": "object",
1130
- "additionalProperties": {
1131
- "anyOf": [
1132
- {
1133
- "const": false,
1134
- "type": "boolean"
1135
- },
1136
- {
1137
- "type": "string"
1138
- }
1139
- ]
1140
- }
1141
- }
1142
- }
1143
- },
1144
- "extensions": {
1145
- "deepVisibility": "frontend",
1146
- "type": "array",
1147
- "items": {
1148
- "anyOf": [
1149
- {
1150
- "type": "object",
1151
- "additionalProperties": {
1152
- "anyOf": [
1153
- {
1154
- "type": "object",
1155
- "properties": {
1156
- "attachTo": {
1157
- "type": "object",
1158
- "properties": {
1159
- "id": {
1160
- "type": "string"
1161
- },
1162
- "input": {
1163
- "type": "string"
1164
- }
1165
- },
1166
- "required": [
1167
- "id",
1168
- "input"
1169
- ]
1170
- },
1171
- "disabled": {
1172
- "type": "boolean"
1173
- },
1174
- "config": {}
1175
- }
1176
- },
1177
- {
1178
- "type": "boolean"
1179
- }
1180
- ]
1181
- }
1182
- },
1183
- {
1184
- "type": "string"
1185
- }
1186
- ]
1187
- }
1188
- },
1189
- "pluginOverrides": {
1190
- "description": "This section enables you to override certain properties of specific or\ngroups of plugins.",
1191
- "deepVisibility": "frontend",
1192
- "type": "array",
1193
- "items": {
1194
- "type": "object",
1195
- "properties": {
1196
- "match": {
1197
- "description": "The criteria for matching plugins to override.",
1198
- "type": "object",
1199
- "properties": {
1200
- "pluginId": {
1201
- "description": "A pattern that is matched against the plugin ID.",
1202
- "type": "string"
1203
- },
1204
- "packageName": {
1205
- "description": "A pattern that is matched against the package name.",
1206
- "type": "string"
1207
- }
1208
- }
1221
+ "host"
1222
+ ]
1223
+ }
1224
+ },
1225
+ "harness": {
1226
+ "description": "Integration configuration for Harness Code",
1227
+ "type": "array",
1228
+ "items": {
1229
+ "type": "object",
1230
+ "properties": {
1231
+ "host": {
1232
+ "description": "The hostname of the given Harness Code instance",
1233
+ "visibility": "frontend",
1234
+ "type": "string"
1209
1235
  },
1210
- "info": {
1211
- "description": "Overrides individual top-level fields of the plugin info.",
1212
- "type": "object",
1213
- "properties": {
1214
- "description": {
1215
- "description": "Override the description of the plugin.",
1216
- "type": "string"
1217
- },
1218
- "ownerEntityRefs": {
1219
- "description": "Override the owner entity references of the plugin.",
1220
- "type": "array",
1221
- "items": {
1222
- "type": "string"
1223
- }
1224
- },
1225
- "links": {
1226
- "description": "Override the links of the plugin.",
1227
- "type": "array",
1228
- "items": {
1229
- "type": "object",
1230
- "properties": {
1231
- "title": {
1232
- "type": "string"
1233
- },
1234
- "url": {
1235
- "type": "string"
1236
- }
1237
- },
1238
- "required": [
1239
- "title",
1240
- "url"
1241
- ]
1242
- }
1243
- }
1244
- }
1236
+ "apiKey": {
1237
+ "description": "The apikey to use for authenticated requests.",
1238
+ "visibility": "secret",
1239
+ "type": "string"
1240
+ },
1241
+ "token": {
1242
+ "description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
1243
+ "visibility": "secret",
1244
+ "type": "string"
1245
1245
  }
1246
1246
  },
1247
1247
  "required": [
1248
- "info"
1248
+ "host"
1249
1249
  ]
1250
1250
  }
1251
1251
  }
@@ -1254,7 +1254,7 @@
1254
1254
  },
1255
1255
  "$schema": "http://json-schema.org/draft-07/schema#"
1256
1256
  },
1257
- "packageName": "@backstage/frontend-app-api"
1257
+ "packageName": "@backstage/integration"
1258
1258
  },
1259
1259
  {
1260
1260
  "path": "../backend-plugin-api/config.d.ts",
@@ -1477,28 +1477,103 @@
1477
1477
  "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1478
1478
  },
1479
1479
  {
1480
- "path": "../../plugins/events-node/config.d.ts",
1480
+ "path": "../backend-app-api/config.d.ts",
1481
1481
  "value": {
1482
1482
  "type": "object",
1483
1483
  "properties": {
1484
- "events": {
1484
+ "backend": {
1485
1485
  "type": "object",
1486
1486
  "properties": {
1487
- "useEventBus": {
1488
- "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.",
1489
- "enum": [
1490
- "always",
1491
- "auto",
1492
- "never"
1493
- ],
1494
- "type": "string"
1487
+ "packages": {
1488
+ "description": "Used by the feature discovery service",
1489
+ "anyOf": [
1490
+ {
1491
+ "type": "object",
1492
+ "properties": {
1493
+ "include": {
1494
+ "type": "array",
1495
+ "items": {
1496
+ "type": "string"
1497
+ }
1498
+ },
1499
+ "exclude": {
1500
+ "type": "array",
1501
+ "items": {
1502
+ "type": "string"
1503
+ }
1504
+ }
1505
+ }
1506
+ },
1507
+ {
1508
+ "const": "all",
1509
+ "type": "string"
1510
+ }
1511
+ ]
1512
+ },
1513
+ "startup": {
1514
+ "type": "object",
1515
+ "properties": {
1516
+ "default": {
1517
+ "type": "object",
1518
+ "properties": {
1519
+ "onPluginBootFailure": {
1520
+ "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.",
1521
+ "enum": [
1522
+ "abort",
1523
+ "continue"
1524
+ ],
1525
+ "type": "string"
1526
+ },
1527
+ "onPluginModuleBootFailure": {
1528
+ "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.",
1529
+ "enum": [
1530
+ "abort",
1531
+ "continue"
1532
+ ],
1533
+ "type": "string"
1534
+ }
1535
+ }
1536
+ },
1537
+ "plugins": {
1538
+ "type": "object",
1539
+ "additionalProperties": {
1540
+ "type": "object",
1541
+ "properties": {
1542
+ "onPluginBootFailure": {
1543
+ "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).",
1544
+ "enum": [
1545
+ "abort",
1546
+ "continue"
1547
+ ],
1548
+ "type": "string"
1549
+ },
1550
+ "modules": {
1551
+ "type": "object",
1552
+ "additionalProperties": {
1553
+ "type": "object",
1554
+ "properties": {
1555
+ "onPluginModuleBootFailure": {
1556
+ "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).",
1557
+ "enum": [
1558
+ "abort",
1559
+ "continue"
1560
+ ],
1561
+ "type": "string"
1562
+ }
1563
+ }
1564
+ }
1565
+ }
1566
+ }
1567
+ }
1568
+ }
1569
+ }
1495
1570
  }
1496
1571
  }
1497
1572
  }
1498
1573
  },
1499
1574
  "$schema": "http://json-schema.org/draft-07/schema#"
1500
1575
  },
1501
- "packageName": "@backstage/plugin-events-node"
1576
+ "packageName": "@backstage/backend-app-api"
1502
1577
  },
1503
1578
  {
1504
1579
  "path": "../backend-defaults/config.d.ts",
@@ -3073,103 +3148,28 @@
3073
3148
  "packageName": "@backstage/backend-defaults"
3074
3149
  },
3075
3150
  {
3076
- "path": "../backend-app-api/config.d.ts",
3151
+ "path": "../../plugins/events-node/config.d.ts",
3077
3152
  "value": {
3078
3153
  "type": "object",
3079
3154
  "properties": {
3080
- "backend": {
3155
+ "events": {
3081
3156
  "type": "object",
3082
3157
  "properties": {
3083
- "packages": {
3084
- "description": "Used by the feature discovery service",
3085
- "anyOf": [
3086
- {
3087
- "type": "object",
3088
- "properties": {
3089
- "include": {
3090
- "type": "array",
3091
- "items": {
3092
- "type": "string"
3093
- }
3094
- },
3095
- "exclude": {
3096
- "type": "array",
3097
- "items": {
3098
- "type": "string"
3099
- }
3100
- }
3101
- }
3102
- },
3103
- {
3104
- "const": "all",
3105
- "type": "string"
3106
- }
3107
- ]
3108
- },
3109
- "startup": {
3110
- "type": "object",
3111
- "properties": {
3112
- "default": {
3113
- "type": "object",
3114
- "properties": {
3115
- "onPluginBootFailure": {
3116
- "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.",
3117
- "enum": [
3118
- "abort",
3119
- "continue"
3120
- ],
3121
- "type": "string"
3122
- },
3123
- "onPluginModuleBootFailure": {
3124
- "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.",
3125
- "enum": [
3126
- "abort",
3127
- "continue"
3128
- ],
3129
- "type": "string"
3130
- }
3131
- }
3132
- },
3133
- "plugins": {
3134
- "type": "object",
3135
- "additionalProperties": {
3136
- "type": "object",
3137
- "properties": {
3138
- "onPluginBootFailure": {
3139
- "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).",
3140
- "enum": [
3141
- "abort",
3142
- "continue"
3143
- ],
3144
- "type": "string"
3145
- },
3146
- "modules": {
3147
- "type": "object",
3148
- "additionalProperties": {
3149
- "type": "object",
3150
- "properties": {
3151
- "onPluginModuleBootFailure": {
3152
- "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).",
3153
- "enum": [
3154
- "abort",
3155
- "continue"
3156
- ],
3157
- "type": "string"
3158
- }
3159
- }
3160
- }
3161
- }
3162
- }
3163
- }
3164
- }
3165
- }
3158
+ "useEventBus": {
3159
+ "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.",
3160
+ "enum": [
3161
+ "always",
3162
+ "auto",
3163
+ "never"
3164
+ ],
3165
+ "type": "string"
3166
3166
  }
3167
3167
  }
3168
3168
  }
3169
3169
  },
3170
3170
  "$schema": "http://json-schema.org/draft-07/schema#"
3171
3171
  },
3172
- "packageName": "@backstage/backend-app-api"
3172
+ "packageName": "@backstage/plugin-events-node"
3173
3173
  },
3174
3174
  {
3175
3175
  "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.0.0-nightly-20251109024152";
3
+ var version = "0.0.0-nightly-20251111024437";
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-20251109024152",
3
+ "version": "0.0.0-nightly-20251111024437",
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-20251109024152",
48
- "@backstage/catalog-model": "0.0.0-nightly-20251109024152",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20251111024437",
48
+ "@backstage/catalog-model": "0.0.0-nightly-20251111024437",
49
49
  "@backstage/cli-common": "0.1.15",
50
- "@backstage/config": "0.0.0-nightly-20251109024152",
51
- "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251109024152",
50
+ "@backstage/config": "0.0.0-nightly-20251111024437",
51
+ "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251111024437",
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-20251109024152",
61
+ "@backstage/cli": "0.0.0-nightly-20251111024437",
62
62
  "@types/commander": "^2.12.2",
63
63
  "@types/fs-extra": "^11.0.0",
64
64
  "@types/http-proxy": "^1.17.4",