@techdocs/cli 0.0.0-nightly-20250803025643 → 0.0.0-nightly-20250805025628
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 +3 -3
- package/dist/embedded-app/.config-schema.json +123 -123
- package/dist/package.json.cjs.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20250805025628
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/backend-defaults@0.0.0-nightly-
|
|
8
|
+
- @backstage/backend-defaults@0.0.0-nightly-20250805025628
|
|
9
9
|
- @backstage/catalog-model@1.7.5
|
|
10
10
|
- @backstage/cli-common@0.1.15
|
|
11
11
|
- @backstage/config@1.3.3
|
|
12
|
-
- @backstage/plugin-techdocs-node@0.0.0-nightly-
|
|
12
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20250805025628
|
|
13
13
|
|
|
14
14
|
## 1.9.6-next.0
|
|
15
15
|
|
|
@@ -1366,6 +1366,105 @@
|
|
|
1366
1366
|
},
|
|
1367
1367
|
"packageName": "@backstage/plugin-auth-backend-module-guest-provider"
|
|
1368
1368
|
},
|
|
1369
|
+
{
|
|
1370
|
+
"path": "../backend-app-api/config.d.ts",
|
|
1371
|
+
"value": {
|
|
1372
|
+
"type": "object",
|
|
1373
|
+
"properties": {
|
|
1374
|
+
"backend": {
|
|
1375
|
+
"type": "object",
|
|
1376
|
+
"properties": {
|
|
1377
|
+
"packages": {
|
|
1378
|
+
"description": "Used by the feature discovery service",
|
|
1379
|
+
"anyOf": [
|
|
1380
|
+
{
|
|
1381
|
+
"type": "object",
|
|
1382
|
+
"properties": {
|
|
1383
|
+
"include": {
|
|
1384
|
+
"type": "array",
|
|
1385
|
+
"items": {
|
|
1386
|
+
"type": "string"
|
|
1387
|
+
}
|
|
1388
|
+
},
|
|
1389
|
+
"exclude": {
|
|
1390
|
+
"type": "array",
|
|
1391
|
+
"items": {
|
|
1392
|
+
"type": "string"
|
|
1393
|
+
}
|
|
1394
|
+
}
|
|
1395
|
+
}
|
|
1396
|
+
},
|
|
1397
|
+
{
|
|
1398
|
+
"const": "all",
|
|
1399
|
+
"type": "string"
|
|
1400
|
+
}
|
|
1401
|
+
]
|
|
1402
|
+
},
|
|
1403
|
+
"startup": {
|
|
1404
|
+
"type": "object",
|
|
1405
|
+
"properties": {
|
|
1406
|
+
"default": {
|
|
1407
|
+
"type": "object",
|
|
1408
|
+
"properties": {
|
|
1409
|
+
"onPluginBootFailure": {
|
|
1410
|
+
"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.",
|
|
1411
|
+
"enum": [
|
|
1412
|
+
"abort",
|
|
1413
|
+
"continue"
|
|
1414
|
+
],
|
|
1415
|
+
"type": "string"
|
|
1416
|
+
},
|
|
1417
|
+
"onPluginModuleBootFailure": {
|
|
1418
|
+
"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.",
|
|
1419
|
+
"enum": [
|
|
1420
|
+
"abort",
|
|
1421
|
+
"continue"
|
|
1422
|
+
],
|
|
1423
|
+
"type": "string"
|
|
1424
|
+
}
|
|
1425
|
+
}
|
|
1426
|
+
},
|
|
1427
|
+
"plugins": {
|
|
1428
|
+
"type": "object",
|
|
1429
|
+
"additionalProperties": {
|
|
1430
|
+
"type": "object",
|
|
1431
|
+
"properties": {
|
|
1432
|
+
"onPluginBootFailure": {
|
|
1433
|
+
"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).",
|
|
1434
|
+
"enum": [
|
|
1435
|
+
"abort",
|
|
1436
|
+
"continue"
|
|
1437
|
+
],
|
|
1438
|
+
"type": "string"
|
|
1439
|
+
},
|
|
1440
|
+
"modules": {
|
|
1441
|
+
"type": "object",
|
|
1442
|
+
"additionalProperties": {
|
|
1443
|
+
"type": "object",
|
|
1444
|
+
"properties": {
|
|
1445
|
+
"onPluginModuleBootFailure": {
|
|
1446
|
+
"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).",
|
|
1447
|
+
"enum": [
|
|
1448
|
+
"abort",
|
|
1449
|
+
"continue"
|
|
1450
|
+
],
|
|
1451
|
+
"type": "string"
|
|
1452
|
+
}
|
|
1453
|
+
}
|
|
1454
|
+
}
|
|
1455
|
+
}
|
|
1456
|
+
}
|
|
1457
|
+
}
|
|
1458
|
+
}
|
|
1459
|
+
}
|
|
1460
|
+
}
|
|
1461
|
+
}
|
|
1462
|
+
}
|
|
1463
|
+
},
|
|
1464
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1465
|
+
},
|
|
1466
|
+
"packageName": "@backstage/backend-app-api"
|
|
1467
|
+
},
|
|
1369
1468
|
{
|
|
1370
1469
|
"path": "../backend-defaults/config.d.ts",
|
|
1371
1470
|
"value": {
|
|
@@ -2627,6 +2726,30 @@
|
|
|
2627
2726
|
},
|
|
2628
2727
|
"packageName": "@backstage/backend-defaults"
|
|
2629
2728
|
},
|
|
2729
|
+
{
|
|
2730
|
+
"path": "../../plugins/events-node/config.d.ts",
|
|
2731
|
+
"value": {
|
|
2732
|
+
"type": "object",
|
|
2733
|
+
"properties": {
|
|
2734
|
+
"events": {
|
|
2735
|
+
"type": "object",
|
|
2736
|
+
"properties": {
|
|
2737
|
+
"useEventBus": {
|
|
2738
|
+
"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.",
|
|
2739
|
+
"enum": [
|
|
2740
|
+
"always",
|
|
2741
|
+
"auto",
|
|
2742
|
+
"never"
|
|
2743
|
+
],
|
|
2744
|
+
"type": "string"
|
|
2745
|
+
}
|
|
2746
|
+
}
|
|
2747
|
+
}
|
|
2748
|
+
},
|
|
2749
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2750
|
+
},
|
|
2751
|
+
"packageName": "@backstage/plugin-events-node"
|
|
2752
|
+
},
|
|
2630
2753
|
{
|
|
2631
2754
|
"path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
|
|
2632
2755
|
"value": {
|
|
@@ -2751,129 +2874,6 @@
|
|
|
2751
2874
|
},
|
|
2752
2875
|
"packageName": "@backstage/plugin-auth-backend-module-google-provider"
|
|
2753
2876
|
},
|
|
2754
|
-
{
|
|
2755
|
-
"path": "../backend-app-api/config.d.ts",
|
|
2756
|
-
"value": {
|
|
2757
|
-
"type": "object",
|
|
2758
|
-
"properties": {
|
|
2759
|
-
"backend": {
|
|
2760
|
-
"type": "object",
|
|
2761
|
-
"properties": {
|
|
2762
|
-
"packages": {
|
|
2763
|
-
"description": "Used by the feature discovery service",
|
|
2764
|
-
"anyOf": [
|
|
2765
|
-
{
|
|
2766
|
-
"type": "object",
|
|
2767
|
-
"properties": {
|
|
2768
|
-
"include": {
|
|
2769
|
-
"type": "array",
|
|
2770
|
-
"items": {
|
|
2771
|
-
"type": "string"
|
|
2772
|
-
}
|
|
2773
|
-
},
|
|
2774
|
-
"exclude": {
|
|
2775
|
-
"type": "array",
|
|
2776
|
-
"items": {
|
|
2777
|
-
"type": "string"
|
|
2778
|
-
}
|
|
2779
|
-
}
|
|
2780
|
-
}
|
|
2781
|
-
},
|
|
2782
|
-
{
|
|
2783
|
-
"const": "all",
|
|
2784
|
-
"type": "string"
|
|
2785
|
-
}
|
|
2786
|
-
]
|
|
2787
|
-
},
|
|
2788
|
-
"startup": {
|
|
2789
|
-
"type": "object",
|
|
2790
|
-
"properties": {
|
|
2791
|
-
"default": {
|
|
2792
|
-
"type": "object",
|
|
2793
|
-
"properties": {
|
|
2794
|
-
"onPluginBootFailure": {
|
|
2795
|
-
"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.",
|
|
2796
|
-
"enum": [
|
|
2797
|
-
"abort",
|
|
2798
|
-
"continue"
|
|
2799
|
-
],
|
|
2800
|
-
"type": "string"
|
|
2801
|
-
},
|
|
2802
|
-
"onPluginModuleBootFailure": {
|
|
2803
|
-
"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.",
|
|
2804
|
-
"enum": [
|
|
2805
|
-
"abort",
|
|
2806
|
-
"continue"
|
|
2807
|
-
],
|
|
2808
|
-
"type": "string"
|
|
2809
|
-
}
|
|
2810
|
-
}
|
|
2811
|
-
},
|
|
2812
|
-
"plugins": {
|
|
2813
|
-
"type": "object",
|
|
2814
|
-
"additionalProperties": {
|
|
2815
|
-
"type": "object",
|
|
2816
|
-
"properties": {
|
|
2817
|
-
"onPluginBootFailure": {
|
|
2818
|
-
"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).",
|
|
2819
|
-
"enum": [
|
|
2820
|
-
"abort",
|
|
2821
|
-
"continue"
|
|
2822
|
-
],
|
|
2823
|
-
"type": "string"
|
|
2824
|
-
},
|
|
2825
|
-
"modules": {
|
|
2826
|
-
"type": "object",
|
|
2827
|
-
"additionalProperties": {
|
|
2828
|
-
"type": "object",
|
|
2829
|
-
"properties": {
|
|
2830
|
-
"onPluginModuleBootFailure": {
|
|
2831
|
-
"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).",
|
|
2832
|
-
"enum": [
|
|
2833
|
-
"abort",
|
|
2834
|
-
"continue"
|
|
2835
|
-
],
|
|
2836
|
-
"type": "string"
|
|
2837
|
-
}
|
|
2838
|
-
}
|
|
2839
|
-
}
|
|
2840
|
-
}
|
|
2841
|
-
}
|
|
2842
|
-
}
|
|
2843
|
-
}
|
|
2844
|
-
}
|
|
2845
|
-
}
|
|
2846
|
-
}
|
|
2847
|
-
}
|
|
2848
|
-
},
|
|
2849
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2850
|
-
},
|
|
2851
|
-
"packageName": "@backstage/backend-app-api"
|
|
2852
|
-
},
|
|
2853
|
-
{
|
|
2854
|
-
"path": "../../plugins/events-node/config.d.ts",
|
|
2855
|
-
"value": {
|
|
2856
|
-
"type": "object",
|
|
2857
|
-
"properties": {
|
|
2858
|
-
"events": {
|
|
2859
|
-
"type": "object",
|
|
2860
|
-
"properties": {
|
|
2861
|
-
"useEventBus": {
|
|
2862
|
-
"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.",
|
|
2863
|
-
"enum": [
|
|
2864
|
-
"always",
|
|
2865
|
-
"auto",
|
|
2866
|
-
"never"
|
|
2867
|
-
],
|
|
2868
|
-
"type": "string"
|
|
2869
|
-
}
|
|
2870
|
-
}
|
|
2871
|
-
}
|
|
2872
|
-
},
|
|
2873
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2874
|
-
},
|
|
2875
|
-
"packageName": "@backstage/plugin-events-node"
|
|
2876
|
-
},
|
|
2877
2877
|
{
|
|
2878
2878
|
"path": "../integration-aws-node/config.d.ts",
|
|
2879
2879
|
"value": {
|
package/dist/package.json.cjs.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techdocs/cli",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20250805025628",
|
|
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-
|
|
47
|
+
"@backstage/backend-defaults": "0.0.0-nightly-20250805025628",
|
|
48
48
|
"@backstage/catalog-model": "1.7.5",
|
|
49
49
|
"@backstage/cli-common": "0.1.15",
|
|
50
50
|
"@backstage/config": "1.3.3",
|
|
51
|
-
"@backstage/plugin-techdocs-node": "0.0.0-nightly-
|
|
51
|
+
"@backstage/plugin-techdocs-node": "0.0.0-nightly-20250805025628",
|
|
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-
|
|
61
|
+
"@backstage/cli": "0.0.0-nightly-20250805025628",
|
|
62
62
|
"@types/commander": "^2.12.2",
|
|
63
63
|
"@types/fs-extra": "^11.0.0",
|
|
64
64
|
"@types/http-proxy": "^1.17.4",
|