@techdocs/cli 0.0.0-nightly-20251008023601 → 0.0.0-nightly-20251009023727

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,6 +1,6 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20251008023601
3
+ ## 0.0.0-nightly-20251009023727
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -9,9 +9,9 @@
9
9
  ### Patch Changes
10
10
 
11
11
  - Updated dependencies
12
- - @backstage/backend-defaults@0.0.0-nightly-20251008023601
13
- - @backstage/config@0.0.0-nightly-20251008023601
14
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20251008023601
12
+ - @backstage/backend-defaults@0.0.0-nightly-20251009023727
13
+ - @backstage/config@0.0.0-nightly-20251009023727
14
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20251009023727
15
15
  - @backstage/catalog-model@1.7.5
16
16
  - @backstage/cli-common@0.1.15
17
17
 
@@ -1020,37 +1020,6 @@
1020
1020
  },
1021
1021
  "packageName": "@backstage/integration"
1022
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
1023
  {
1055
1024
  "path": "../frontend-app-api/config.d.ts",
1056
1025
  "value": {
@@ -1256,6 +1225,37 @@
1256
1225
  },
1257
1226
  "packageName": "@backstage/frontend-app-api"
1258
1227
  },
1228
+ {
1229
+ "path": "../../plugins/catalog/config.d.ts",
1230
+ "value": {
1231
+ "type": "object",
1232
+ "properties": {
1233
+ "catalog": {
1234
+ "type": "object",
1235
+ "properties": {
1236
+ "experimentalPagination": {
1237
+ "deepVisibility": "frontend",
1238
+ "anyOf": [
1239
+ {
1240
+ "type": "object",
1241
+ "properties": {
1242
+ "limit": {
1243
+ "type": "number"
1244
+ }
1245
+ }
1246
+ },
1247
+ {
1248
+ "type": "boolean"
1249
+ }
1250
+ ]
1251
+ }
1252
+ }
1253
+ }
1254
+ },
1255
+ "$schema": "http://json-schema.org/draft-07/schema#"
1256
+ },
1257
+ "packageName": "@backstage/plugin-catalog"
1258
+ },
1259
1259
  {
1260
1260
  "path": "../backend-plugin-api/config.d.ts",
1261
1261
  "value": {
@@ -1456,105 +1456,6 @@
1456
1456
  },
1457
1457
  "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1458
1458
  },
1459
- {
1460
- "path": "../backend-app-api/config.d.ts",
1461
- "value": {
1462
- "type": "object",
1463
- "properties": {
1464
- "backend": {
1465
- "type": "object",
1466
- "properties": {
1467
- "packages": {
1468
- "description": "Used by the feature discovery service",
1469
- "anyOf": [
1470
- {
1471
- "type": "object",
1472
- "properties": {
1473
- "include": {
1474
- "type": "array",
1475
- "items": {
1476
- "type": "string"
1477
- }
1478
- },
1479
- "exclude": {
1480
- "type": "array",
1481
- "items": {
1482
- "type": "string"
1483
- }
1484
- }
1485
- }
1486
- },
1487
- {
1488
- "const": "all",
1489
- "type": "string"
1490
- }
1491
- ]
1492
- },
1493
- "startup": {
1494
- "type": "object",
1495
- "properties": {
1496
- "default": {
1497
- "type": "object",
1498
- "properties": {
1499
- "onPluginBootFailure": {
1500
- "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.",
1501
- "enum": [
1502
- "abort",
1503
- "continue"
1504
- ],
1505
- "type": "string"
1506
- },
1507
- "onPluginModuleBootFailure": {
1508
- "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.",
1509
- "enum": [
1510
- "abort",
1511
- "continue"
1512
- ],
1513
- "type": "string"
1514
- }
1515
- }
1516
- },
1517
- "plugins": {
1518
- "type": "object",
1519
- "additionalProperties": {
1520
- "type": "object",
1521
- "properties": {
1522
- "onPluginBootFailure": {
1523
- "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).",
1524
- "enum": [
1525
- "abort",
1526
- "continue"
1527
- ],
1528
- "type": "string"
1529
- },
1530
- "modules": {
1531
- "type": "object",
1532
- "additionalProperties": {
1533
- "type": "object",
1534
- "properties": {
1535
- "onPluginModuleBootFailure": {
1536
- "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).",
1537
- "enum": [
1538
- "abort",
1539
- "continue"
1540
- ],
1541
- "type": "string"
1542
- }
1543
- }
1544
- }
1545
- }
1546
- }
1547
- }
1548
- }
1549
- }
1550
- }
1551
- }
1552
- }
1553
- },
1554
- "$schema": "http://json-schema.org/draft-07/schema#"
1555
- },
1556
- "packageName": "@backstage/backend-app-api"
1557
- },
1558
1459
  {
1559
1460
  "path": "../backend-defaults/config.d.ts",
1560
1461
  "value": {
@@ -3151,6 +3052,105 @@
3151
3052
  },
3152
3053
  "packageName": "@backstage/plugin-events-node"
3153
3054
  },
3055
+ {
3056
+ "path": "../backend-app-api/config.d.ts",
3057
+ "value": {
3058
+ "type": "object",
3059
+ "properties": {
3060
+ "backend": {
3061
+ "type": "object",
3062
+ "properties": {
3063
+ "packages": {
3064
+ "description": "Used by the feature discovery service",
3065
+ "anyOf": [
3066
+ {
3067
+ "type": "object",
3068
+ "properties": {
3069
+ "include": {
3070
+ "type": "array",
3071
+ "items": {
3072
+ "type": "string"
3073
+ }
3074
+ },
3075
+ "exclude": {
3076
+ "type": "array",
3077
+ "items": {
3078
+ "type": "string"
3079
+ }
3080
+ }
3081
+ }
3082
+ },
3083
+ {
3084
+ "const": "all",
3085
+ "type": "string"
3086
+ }
3087
+ ]
3088
+ },
3089
+ "startup": {
3090
+ "type": "object",
3091
+ "properties": {
3092
+ "default": {
3093
+ "type": "object",
3094
+ "properties": {
3095
+ "onPluginBootFailure": {
3096
+ "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.",
3097
+ "enum": [
3098
+ "abort",
3099
+ "continue"
3100
+ ],
3101
+ "type": "string"
3102
+ },
3103
+ "onPluginModuleBootFailure": {
3104
+ "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.",
3105
+ "enum": [
3106
+ "abort",
3107
+ "continue"
3108
+ ],
3109
+ "type": "string"
3110
+ }
3111
+ }
3112
+ },
3113
+ "plugins": {
3114
+ "type": "object",
3115
+ "additionalProperties": {
3116
+ "type": "object",
3117
+ "properties": {
3118
+ "onPluginBootFailure": {
3119
+ "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).",
3120
+ "enum": [
3121
+ "abort",
3122
+ "continue"
3123
+ ],
3124
+ "type": "string"
3125
+ },
3126
+ "modules": {
3127
+ "type": "object",
3128
+ "additionalProperties": {
3129
+ "type": "object",
3130
+ "properties": {
3131
+ "onPluginModuleBootFailure": {
3132
+ "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).",
3133
+ "enum": [
3134
+ "abort",
3135
+ "continue"
3136
+ ],
3137
+ "type": "string"
3138
+ }
3139
+ }
3140
+ }
3141
+ }
3142
+ }
3143
+ }
3144
+ }
3145
+ }
3146
+ }
3147
+ }
3148
+ }
3149
+ },
3150
+ "$schema": "http://json-schema.org/draft-07/schema#"
3151
+ },
3152
+ "packageName": "@backstage/backend-app-api"
3153
+ },
3154
3154
  {
3155
3155
  "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
3156
3156
  "value": {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.0.0-nightly-20251008023601";
3
+ var version = "0.0.0-nightly-20251009023727";
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-20251008023601",
3
+ "version": "0.0.0-nightly-20251009023727",
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-20251008023601",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20251009023727",
48
48
  "@backstage/catalog-model": "1.7.5",
49
49
  "@backstage/cli-common": "0.1.15",
50
- "@backstage/config": "0.0.0-nightly-20251008023601",
51
- "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251008023601",
50
+ "@backstage/config": "0.0.0-nightly-20251009023727",
51
+ "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251009023727",
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-20251008023601",
61
+ "@backstage/cli": "0.0.0-nightly-20251009023727",
62
62
  "@types/commander": "^2.12.2",
63
63
  "@types/fs-extra": "^11.0.0",
64
64
  "@types/http-proxy": "^1.17.4",