@techdocs/cli 0.0.0-nightly-20251127024454 → 0.0.0-nightly-20251128024112

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-20251127024454
3
+ ## 0.0.0-nightly-20251128024112
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-defaults@0.0.0-nightly-20251127024454
9
- - @backstage/cli-common@0.0.0-nightly-20251127024454
10
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20251127024454
8
+ - @backstage/backend-defaults@0.0.0-nightly-20251128024112
9
+ - @backstage/cli-common@0.0.0-nightly-20251128024112
10
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20251128024112
11
11
  - @backstage/config@1.3.6
12
12
  - @backstage/catalog-model@1.7.6
13
13
 
@@ -1277,52 +1277,6 @@
1277
1277
  },
1278
1278
  "packageName": "@backstage/backend-plugin-api"
1279
1279
  },
1280
- {
1281
- "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
1282
- "value": {
1283
- "type": "object",
1284
- "properties": {
1285
- "auth": {
1286
- "description": "Configuration options for the auth plugin",
1287
- "type": "object",
1288
- "properties": {
1289
- "providers": {
1290
- "type": "object",
1291
- "properties": {
1292
- "guest": {
1293
- "type": "object",
1294
- "properties": {
1295
- "userEntityRef": {
1296
- "description": "The entity reference to use for the guest user.",
1297
- "default": "user:development/guest",
1298
- "type": "string"
1299
- },
1300
- "ownershipEntityRefs": {
1301
- "description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
1302
- "default": "[userEntityRef]",
1303
- "type": "array",
1304
- "items": {
1305
- "type": "string"
1306
- }
1307
- },
1308
- "dangerouslyAllowOutsideDevelopment": {
1309
- "description": "Allow users to sign in with the guest provider outside of their development environments.",
1310
- "type": "boolean"
1311
- }
1312
- }
1313
- }
1314
- }
1315
- }
1316
- },
1317
- "required": [
1318
- "providers"
1319
- ]
1320
- }
1321
- },
1322
- "$schema": "http://json-schema.org/draft-07/schema#"
1323
- },
1324
- "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1325
- },
1326
1280
  {
1327
1281
  "path": "../../plugins/auth-backend/config.d.ts",
1328
1282
  "value": {
@@ -1478,6 +1432,52 @@
1478
1432
  },
1479
1433
  "packageName": "@backstage/plugin-auth-backend"
1480
1434
  },
1435
+ {
1436
+ "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
1437
+ "value": {
1438
+ "type": "object",
1439
+ "properties": {
1440
+ "auth": {
1441
+ "description": "Configuration options for the auth plugin",
1442
+ "type": "object",
1443
+ "properties": {
1444
+ "providers": {
1445
+ "type": "object",
1446
+ "properties": {
1447
+ "guest": {
1448
+ "type": "object",
1449
+ "properties": {
1450
+ "userEntityRef": {
1451
+ "description": "The entity reference to use for the guest user.",
1452
+ "default": "user:development/guest",
1453
+ "type": "string"
1454
+ },
1455
+ "ownershipEntityRefs": {
1456
+ "description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
1457
+ "default": "[userEntityRef]",
1458
+ "type": "array",
1459
+ "items": {
1460
+ "type": "string"
1461
+ }
1462
+ },
1463
+ "dangerouslyAllowOutsideDevelopment": {
1464
+ "description": "Allow users to sign in with the guest provider outside of their development environments.",
1465
+ "type": "boolean"
1466
+ }
1467
+ }
1468
+ }
1469
+ }
1470
+ }
1471
+ },
1472
+ "required": [
1473
+ "providers"
1474
+ ]
1475
+ }
1476
+ },
1477
+ "$schema": "http://json-schema.org/draft-07/schema#"
1478
+ },
1479
+ "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1480
+ },
1481
1481
  {
1482
1482
  "path": "../backend-app-api/config.d.ts",
1483
1483
  "value": {
@@ -1577,6 +1577,30 @@
1577
1577
  },
1578
1578
  "packageName": "@backstage/backend-app-api"
1579
1579
  },
1580
+ {
1581
+ "path": "../../plugins/events-node/config.d.ts",
1582
+ "value": {
1583
+ "type": "object",
1584
+ "properties": {
1585
+ "events": {
1586
+ "type": "object",
1587
+ "properties": {
1588
+ "useEventBus": {
1589
+ "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.",
1590
+ "enum": [
1591
+ "always",
1592
+ "auto",
1593
+ "never"
1594
+ ],
1595
+ "type": "string"
1596
+ }
1597
+ }
1598
+ }
1599
+ },
1600
+ "$schema": "http://json-schema.org/draft-07/schema#"
1601
+ },
1602
+ "packageName": "@backstage/plugin-events-node"
1603
+ },
1580
1604
  {
1581
1605
  "path": "../backend-defaults/config.d.ts",
1582
1606
  "value": {
@@ -3149,30 +3173,6 @@
3149
3173
  },
3150
3174
  "packageName": "@backstage/backend-defaults"
3151
3175
  },
3152
- {
3153
- "path": "../../plugins/events-node/config.d.ts",
3154
- "value": {
3155
- "type": "object",
3156
- "properties": {
3157
- "events": {
3158
- "type": "object",
3159
- "properties": {
3160
- "useEventBus": {
3161
- "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.",
3162
- "enum": [
3163
- "always",
3164
- "auto",
3165
- "never"
3166
- ],
3167
- "type": "string"
3168
- }
3169
- }
3170
- }
3171
- },
3172
- "$schema": "http://json-schema.org/draft-07/schema#"
3173
- },
3174
- "packageName": "@backstage/plugin-events-node"
3175
- },
3176
3176
  {
3177
3177
  "path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
3178
3178
  "value": {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.0.0-nightly-20251127024454";
3
+ var version = "0.0.0-nightly-20251128024112";
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-20251127024454",
3
+ "version": "0.0.0-nightly-20251128024112",
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-20251127024454",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20251128024112",
48
48
  "@backstage/catalog-model": "1.7.6",
49
- "@backstage/cli-common": "0.0.0-nightly-20251127024454",
49
+ "@backstage/cli-common": "0.0.0-nightly-20251128024112",
50
50
  "@backstage/config": "1.3.6",
51
- "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251127024454",
51
+ "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251128024112",
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-20251127024454",
61
+ "@backstage/cli": "0.0.0-nightly-20251128024112",
62
62
  "@types/commander": "^2.12.2",
63
63
  "@types/fs-extra": "^11.0.0",
64
64
  "@types/http-proxy": "^1.17.4",