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

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-20260112025641
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-20260112025641
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-20260112025641
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": {
@@ -1241,6 +1036,211 @@
1241
1036
  },
1242
1037
  "packageName": "@backstage/integration"
1243
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
+ }
1231
+ },
1232
+ "required": [
1233
+ "info"
1234
+ ]
1235
+ }
1236
+ }
1237
+ }
1238
+ }
1239
+ },
1240
+ "$schema": "http://json-schema.org/draft-07/schema#"
1241
+ },
1242
+ "packageName": "@backstage/frontend-app-api"
1243
+ },
1244
1244
  {
1245
1245
  "path": "../../plugins/catalog/config.d.ts",
1246
1246
  "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-20260112025641";
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-20260112025641",
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-20260112025641",
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-20260112025641",
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-20260112025641",
62
62
  "@types/commander": "^2.12.2",
63
63
  "@types/fs-extra": "^11.0.0",
64
64
  "@types/http-proxy": "^1.17.4",