@techdocs/cli 0.0.0-nightly-20251001024108 → 0.0.0-nightly-20251003023737

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,13 +1,13 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20251001024108
3
+ ## 0.0.0-nightly-20251003023737
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-defaults@0.0.0-nightly-20251001024108
9
- - @backstage/config@0.0.0-nightly-20251001024108
10
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20251001024108
8
+ - @backstage/backend-defaults@0.0.0-nightly-20251003023737
9
+ - @backstage/config@0.0.0-nightly-20251003023737
10
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20251003023737
11
11
  - @backstage/catalog-model@1.7.5
12
12
  - @backstage/cli-common@0.1.15
13
13
 
@@ -1456,6 +1456,105 @@
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
+ },
1459
1558
  {
1460
1559
  "path": "../backend-defaults/config.d.ts",
1461
1560
  "value": {
@@ -3052,105 +3151,6 @@
3052
3151
  },
3053
3152
  "packageName": "@backstage/plugin-events-node"
3054
3153
  },
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-20251001024108";
3
+ var version = "0.0.0-nightly-20251003023737";
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-20251001024108",
3
+ "version": "0.0.0-nightly-20251003023737",
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-20251001024108",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20251003023737",
48
48
  "@backstage/catalog-model": "1.7.5",
49
49
  "@backstage/cli-common": "0.1.15",
50
- "@backstage/config": "0.0.0-nightly-20251001024108",
51
- "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251001024108",
50
+ "@backstage/config": "0.0.0-nightly-20251003023737",
51
+ "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251003023737",
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-20251001024108",
61
+ "@backstage/cli": "0.0.0-nightly-20251003023737",
62
62
  "@types/commander": "^2.12.2",
63
63
  "@types/fs-extra": "^11.0.0",
64
64
  "@types/http-proxy": "^1.17.4",