@techdocs/cli 0.0.0-nightly-20260110024721 → 0.0.0-nightly-20260111025701

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-20260110024721
3
+ ## 0.0.0-nightly-20260111025701
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-defaults@0.0.0-nightly-20260110024721
8
+ - @backstage/backend-defaults@0.0.0-nightly-20260111025701
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-20260110024721
12
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20260111025701
13
13
 
14
14
  ## 1.10.4-next.1
15
15
 
@@ -465,211 +465,6 @@
465
465
  },
466
466
  "packageName": "@backstage/plugin-techdocs"
467
467
  },
468
- {
469
- "path": "../frontend-app-api/config.d.ts",
470
- "value": {
471
- "type": "object",
472
- "properties": {
473
- "app": {
474
- "type": "object",
475
- "properties": {
476
- "experimental": {
477
- "type": "object",
478
- "properties": {
479
- "packages": {
480
- "visibility": "frontend",
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
- }
530
- },
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
- }
660
- },
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
468
  {
674
469
  "path": "../integration/config.d.ts",
675
470
  "value": {
@@ -1223,14 +1018,219 @@
1223
1018
  "visibility": "secret",
1224
1019
  "type": "string"
1225
1020
  },
1226
- "token": {
1227
- "description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
1228
- "visibility": "secret",
1229
- "type": "string"
1021
+ "token": {
1022
+ "description": "Harness Code token used to authenticate requests. This can be either a generated access token.",
1023
+ "visibility": "secret",
1024
+ "type": "string"
1025
+ }
1026
+ },
1027
+ "required": [
1028
+ "host"
1029
+ ]
1030
+ }
1031
+ }
1032
+ }
1033
+ }
1034
+ },
1035
+ "$schema": "http://json-schema.org/draft-07/schema#"
1036
+ },
1037
+ "packageName": "@backstage/integration"
1038
+ },
1039
+ {
1040
+ "path": "../frontend-app-api/config.d.ts",
1041
+ "value": {
1042
+ "type": "object",
1043
+ "properties": {
1044
+ "app": {
1045
+ "type": "object",
1046
+ "properties": {
1047
+ "experimental": {
1048
+ "type": "object",
1049
+ "properties": {
1050
+ "packages": {
1051
+ "visibility": "frontend",
1052
+ "deepVisibility": "frontend",
1053
+ "deprecated": "This is no longer experimental; use `app.packages` instead.",
1054
+ "anyOf": [
1055
+ {
1056
+ "type": "object",
1057
+ "properties": {
1058
+ "include": {
1059
+ "type": "array",
1060
+ "items": {
1061
+ "type": "string"
1062
+ }
1063
+ },
1064
+ "exclude": {
1065
+ "type": "array",
1066
+ "items": {
1067
+ "type": "string"
1068
+ }
1069
+ }
1070
+ }
1071
+ },
1072
+ {
1073
+ "const": "all",
1074
+ "type": "string"
1075
+ }
1076
+ ]
1077
+ }
1078
+ }
1079
+ },
1080
+ "packages": {
1081
+ "description": "Controls what packages are loaded by the new frontend system.",
1082
+ "visibility": "frontend",
1083
+ "deepVisibility": "frontend",
1084
+ "anyOf": [
1085
+ {
1086
+ "type": "object",
1087
+ "properties": {
1088
+ "include": {
1089
+ "type": "array",
1090
+ "items": {
1091
+ "type": "string"
1092
+ }
1093
+ },
1094
+ "exclude": {
1095
+ "type": "array",
1096
+ "items": {
1097
+ "type": "string"
1098
+ }
1099
+ }
1100
+ }
1101
+ },
1102
+ {
1103
+ "const": "all",
1104
+ "type": "string"
1105
+ }
1106
+ ]
1107
+ },
1108
+ "routes": {
1109
+ "type": "object",
1110
+ "properties": {
1111
+ "bindings": {
1112
+ "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.",
1113
+ "deepVisibility": "frontend",
1114
+ "type": "object",
1115
+ "additionalProperties": {
1116
+ "anyOf": [
1117
+ {
1118
+ "const": false,
1119
+ "type": "boolean"
1120
+ },
1121
+ {
1122
+ "type": "string"
1123
+ }
1124
+ ]
1125
+ }
1126
+ }
1127
+ }
1128
+ },
1129
+ "extensions": {
1130
+ "deepVisibility": "frontend",
1131
+ "type": "array",
1132
+ "items": {
1133
+ "anyOf": [
1134
+ {
1135
+ "type": "object",
1136
+ "additionalProperties": {
1137
+ "anyOf": [
1138
+ {
1139
+ "type": "object",
1140
+ "properties": {
1141
+ "attachTo": {
1142
+ "type": "object",
1143
+ "properties": {
1144
+ "id": {
1145
+ "type": "string"
1146
+ },
1147
+ "input": {
1148
+ "type": "string"
1149
+ }
1150
+ },
1151
+ "required": [
1152
+ "id",
1153
+ "input"
1154
+ ]
1155
+ },
1156
+ "disabled": {
1157
+ "type": "boolean"
1158
+ },
1159
+ "config": {}
1160
+ }
1161
+ },
1162
+ {
1163
+ "type": "boolean"
1164
+ }
1165
+ ]
1166
+ }
1167
+ },
1168
+ {
1169
+ "type": "string"
1170
+ }
1171
+ ]
1172
+ }
1173
+ },
1174
+ "pluginOverrides": {
1175
+ "description": "This section enables you to override certain properties of specific or\ngroups of plugins.",
1176
+ "deepVisibility": "frontend",
1177
+ "type": "array",
1178
+ "items": {
1179
+ "type": "object",
1180
+ "properties": {
1181
+ "match": {
1182
+ "description": "The criteria for matching plugins to override.",
1183
+ "type": "object",
1184
+ "properties": {
1185
+ "pluginId": {
1186
+ "description": "A pattern that is matched against the plugin ID.",
1187
+ "type": "string"
1188
+ },
1189
+ "packageName": {
1190
+ "description": "A pattern that is matched against the package name.",
1191
+ "type": "string"
1192
+ }
1193
+ }
1194
+ },
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
+ }
1229
+ }
1230
1230
  }
1231
1231
  },
1232
1232
  "required": [
1233
- "host"
1233
+ "info"
1234
1234
  ]
1235
1235
  }
1236
1236
  }
@@ -1239,7 +1239,7 @@
1239
1239
  },
1240
1240
  "$schema": "http://json-schema.org/draft-07/schema#"
1241
1241
  },
1242
- "packageName": "@backstage/integration"
1242
+ "packageName": "@backstage/frontend-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": {
@@ -3254,6 +3155,105 @@
3254
3155
  },
3255
3156
  "packageName": "@backstage/plugin-events-node"
3256
3157
  },
3158
+ {
3159
+ "path": "../backend-app-api/config.d.ts",
3160
+ "value": {
3161
+ "type": "object",
3162
+ "properties": {
3163
+ "backend": {
3164
+ "type": "object",
3165
+ "properties": {
3166
+ "packages": {
3167
+ "description": "Used by the feature discovery service",
3168
+ "anyOf": [
3169
+ {
3170
+ "type": "object",
3171
+ "properties": {
3172
+ "include": {
3173
+ "type": "array",
3174
+ "items": {
3175
+ "type": "string"
3176
+ }
3177
+ },
3178
+ "exclude": {
3179
+ "type": "array",
3180
+ "items": {
3181
+ "type": "string"
3182
+ }
3183
+ }
3184
+ }
3185
+ },
3186
+ {
3187
+ "const": "all",
3188
+ "type": "string"
3189
+ }
3190
+ ]
3191
+ },
3192
+ "startup": {
3193
+ "type": "object",
3194
+ "properties": {
3195
+ "default": {
3196
+ "type": "object",
3197
+ "properties": {
3198
+ "onPluginBootFailure": {
3199
+ "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.",
3200
+ "enum": [
3201
+ "abort",
3202
+ "continue"
3203
+ ],
3204
+ "type": "string"
3205
+ },
3206
+ "onPluginModuleBootFailure": {
3207
+ "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.",
3208
+ "enum": [
3209
+ "abort",
3210
+ "continue"
3211
+ ],
3212
+ "type": "string"
3213
+ }
3214
+ }
3215
+ },
3216
+ "plugins": {
3217
+ "type": "object",
3218
+ "additionalProperties": {
3219
+ "type": "object",
3220
+ "properties": {
3221
+ "onPluginBootFailure": {
3222
+ "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).",
3223
+ "enum": [
3224
+ "abort",
3225
+ "continue"
3226
+ ],
3227
+ "type": "string"
3228
+ },
3229
+ "modules": {
3230
+ "type": "object",
3231
+ "additionalProperties": {
3232
+ "type": "object",
3233
+ "properties": {
3234
+ "onPluginModuleBootFailure": {
3235
+ "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).",
3236
+ "enum": [
3237
+ "abort",
3238
+ "continue"
3239
+ ],
3240
+ "type": "string"
3241
+ }
3242
+ }
3243
+ }
3244
+ }
3245
+ }
3246
+ }
3247
+ }
3248
+ }
3249
+ }
3250
+ }
3251
+ }
3252
+ },
3253
+ "$schema": "http://json-schema.org/draft-07/schema#"
3254
+ },
3255
+ "packageName": "@backstage/backend-app-api"
3256
+ },
3257
3257
  {
3258
3258
  "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
3259
3259
  "value": {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.0.0-nightly-20260110024721";
3
+ var version = "0.0.0-nightly-20260111025701";
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-20260110024721",
3
+ "version": "0.0.0-nightly-20260111025701",
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-20260110024721",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20260111025701",
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-20260110024721",
51
+ "@backstage/plugin-techdocs-node": "0.0.0-nightly-20260111025701",
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-20260110024721",
61
+ "@backstage/cli": "0.0.0-nightly-20260111025701",
62
62
  "@types/commander": "^2.12.2",
63
63
  "@types/fs-extra": "^11.0.0",
64
64
  "@types/http-proxy": "^1.17.4",