@techdocs/cli 0.0.0-nightly-20251106024432 → 0.0.0-nightly-20251107024121

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-20251106024432
3
+ ## 0.0.0-nightly-20251107024121
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - c2a2017: Fix for missing styles due to move to BUI.
8
8
  - Updated dependencies
9
- - @backstage/backend-defaults@0.0.0-nightly-20251106024432
10
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20251106024432
11
- - @backstage/config@0.0.0-nightly-20251106024432
12
- - @backstage/catalog-model@0.0.0-nightly-20251106024432
9
+ - @backstage/backend-defaults@0.0.0-nightly-20251107024121
10
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20251107024121
11
+ - @backstage/config@0.0.0-nightly-20251107024121
12
+ - @backstage/catalog-model@0.0.0-nightly-20251107024121
13
13
  - @backstage/cli-common@0.1.15
14
14
 
15
15
  ## 1.10.1-next.0
@@ -106,6 +106,31 @@
106
106
  },
107
107
  "path": "../cli/package.json"
108
108
  },
109
+ {
110
+ "path": "../../plugins/permission-common/config.d.ts",
111
+ "value": {
112
+ "type": "object",
113
+ "properties": {
114
+ "permission": {
115
+ "description": "Configuration options for Backstage permissions and authorization",
116
+ "type": "object",
117
+ "properties": {
118
+ "enabled": {
119
+ "description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
120
+ "visibility": "frontend",
121
+ "type": "boolean"
122
+ },
123
+ "EXPERIMENTAL_enableBatchedRequests": {
124
+ "visibility": "frontend",
125
+ "type": "boolean"
126
+ }
127
+ }
128
+ }
129
+ },
130
+ "$schema": "http://json-schema.org/draft-07/schema#"
131
+ },
132
+ "packageName": "@backstage/plugin-permission-common"
133
+ },
109
134
  {
110
135
  "path": "../core-app-api/config.d.ts",
111
136
  "value": {
@@ -333,31 +358,6 @@
333
358
  },
334
359
  "packageName": "@backstage/core-app-api"
335
360
  },
336
- {
337
- "path": "../../plugins/permission-common/config.d.ts",
338
- "value": {
339
- "type": "object",
340
- "properties": {
341
- "permission": {
342
- "description": "Configuration options for Backstage permissions and authorization",
343
- "type": "object",
344
- "properties": {
345
- "enabled": {
346
- "description": "Whether authorization is enabled in Backstage. Defaults to false, which means authorization\nrequests will be automatically allowed without invoking the authorization policy.",
347
- "visibility": "frontend",
348
- "type": "boolean"
349
- },
350
- "EXPERIMENTAL_enableBatchedRequests": {
351
- "visibility": "frontend",
352
- "type": "boolean"
353
- }
354
- }
355
- }
356
- },
357
- "$schema": "http://json-schema.org/draft-07/schema#"
358
- },
359
- "packageName": "@backstage/plugin-permission-common"
360
- },
361
361
  {
362
362
  "path": "../core-components/config.d.ts",
363
363
  "value": {
@@ -404,67 +404,6 @@
404
404
  },
405
405
  "packageName": "@backstage/core-components"
406
406
  },
407
- {
408
- "path": "../../plugins/techdocs/config.d.ts",
409
- "value": {
410
- "type": "object",
411
- "properties": {
412
- "techdocs": {
413
- "description": "Configuration options for the techdocs plugin",
414
- "type": "object",
415
- "properties": {
416
- "builder": {
417
- "description": "Documentation building process depends on the builder attr",
418
- "visibility": "frontend",
419
- "enum": [
420
- "external",
421
- "local"
422
- ],
423
- "type": "string"
424
- },
425
- "legacyUseCaseSensitiveTripletPaths": {
426
- "description": "Allows fallback to case-sensitive triplets in case of migration issues.",
427
- "visibility": "frontend",
428
- "type": "boolean"
429
- },
430
- "sanitizer": {
431
- "type": "object",
432
- "properties": {
433
- "allowedIframeHosts": {
434
- "description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
435
- "visibility": "frontend",
436
- "type": "array",
437
- "items": {
438
- "type": "string"
439
- }
440
- },
441
- "allowedCustomElementTagNameRegExp": {
442
- "description": "Allows listed custom element tag name regex\nExample:\n allowedCustomElementTagNameRegExp: '^backstage-'\n this will allow all custom elements with tag name matching `^backstage-` like <backstage-custom-element /> etc.",
443
- "visibility": "frontend",
444
- "type": "string"
445
- },
446
- "allowedCustomElementAttributeNameRegExp": {
447
- "description": "Allows listed custom element attribute name regex\nExample:\n allowedCustomElementAttributeNameRegExp: 'attribute1|attribute2'\n this will allow all custom element attributes matching `attribute1` or `attribute2` like <backstage-custom-element attribute1=\"yes\" attribute2/>",
448
- "visibility": "frontend",
449
- "type": "string"
450
- },
451
- "additionalAllowedURIProtocols": {
452
- "description": "Allows listed protocols in attributes with URI values\nExample:\n additionalAllowedURIProtocols: ['vscode']\n this will allow all attributes with URI values to have `vscode` protocol like `vscode://some/path` in addition to the default protocols\n matched by DOMPurify's IS_ALLOWED_URI RegExp:",
453
- "visibility": "frontend",
454
- "type": "string"
455
- }
456
- }
457
- }
458
- }
459
- }
460
- },
461
- "required": [
462
- "techdocs"
463
- ],
464
- "$schema": "http://json-schema.org/draft-07/schema#"
465
- },
466
- "packageName": "@backstage/plugin-techdocs"
467
- },
468
407
  {
469
408
  "path": "../integration/config.d.ts",
470
409
  "value": {
@@ -1256,6 +1195,67 @@
1256
1195
  },
1257
1196
  "packageName": "@backstage/plugin-catalog"
1258
1197
  },
1198
+ {
1199
+ "path": "../../plugins/techdocs/config.d.ts",
1200
+ "value": {
1201
+ "type": "object",
1202
+ "properties": {
1203
+ "techdocs": {
1204
+ "description": "Configuration options for the techdocs plugin",
1205
+ "type": "object",
1206
+ "properties": {
1207
+ "builder": {
1208
+ "description": "Documentation building process depends on the builder attr",
1209
+ "visibility": "frontend",
1210
+ "enum": [
1211
+ "external",
1212
+ "local"
1213
+ ],
1214
+ "type": "string"
1215
+ },
1216
+ "legacyUseCaseSensitiveTripletPaths": {
1217
+ "description": "Allows fallback to case-sensitive triplets in case of migration issues.",
1218
+ "visibility": "frontend",
1219
+ "type": "boolean"
1220
+ },
1221
+ "sanitizer": {
1222
+ "type": "object",
1223
+ "properties": {
1224
+ "allowedIframeHosts": {
1225
+ "description": "Allows iframe tag only for listed hosts\nExample:\n allowedIframeHosts: [\"example.com\"]\n this will allow all iframes with the host `example.com` in the src attribute",
1226
+ "visibility": "frontend",
1227
+ "type": "array",
1228
+ "items": {
1229
+ "type": "string"
1230
+ }
1231
+ },
1232
+ "allowedCustomElementTagNameRegExp": {
1233
+ "description": "Allows listed custom element tag name regex\nExample:\n allowedCustomElementTagNameRegExp: '^backstage-'\n this will allow all custom elements with tag name matching `^backstage-` like <backstage-custom-element /> etc.",
1234
+ "visibility": "frontend",
1235
+ "type": "string"
1236
+ },
1237
+ "allowedCustomElementAttributeNameRegExp": {
1238
+ "description": "Allows listed custom element attribute name regex\nExample:\n allowedCustomElementAttributeNameRegExp: 'attribute1|attribute2'\n this will allow all custom element attributes matching `attribute1` or `attribute2` like <backstage-custom-element attribute1=\"yes\" attribute2/>",
1239
+ "visibility": "frontend",
1240
+ "type": "string"
1241
+ },
1242
+ "additionalAllowedURIProtocols": {
1243
+ "description": "Allows listed protocols in attributes with URI values\nExample:\n additionalAllowedURIProtocols: ['vscode']\n this will allow all attributes with URI values to have `vscode` protocol like `vscode://some/path` in addition to the default protocols\n matched by DOMPurify's IS_ALLOWED_URI RegExp:",
1244
+ "visibility": "frontend",
1245
+ "type": "string"
1246
+ }
1247
+ }
1248
+ }
1249
+ }
1250
+ }
1251
+ },
1252
+ "required": [
1253
+ "techdocs"
1254
+ ],
1255
+ "$schema": "http://json-schema.org/draft-07/schema#"
1256
+ },
1257
+ "packageName": "@backstage/plugin-techdocs"
1258
+ },
1259
1259
  {
1260
1260
  "path": "../backend-plugin-api/config.d.ts",
1261
1261
  "value": {
@@ -1275,6 +1275,52 @@
1275
1275
  },
1276
1276
  "packageName": "@backstage/backend-plugin-api"
1277
1277
  },
1278
+ {
1279
+ "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
1280
+ "value": {
1281
+ "type": "object",
1282
+ "properties": {
1283
+ "auth": {
1284
+ "description": "Configuration options for the auth plugin",
1285
+ "type": "object",
1286
+ "properties": {
1287
+ "providers": {
1288
+ "type": "object",
1289
+ "properties": {
1290
+ "guest": {
1291
+ "type": "object",
1292
+ "properties": {
1293
+ "userEntityRef": {
1294
+ "description": "The entity reference to use for the guest user.",
1295
+ "default": "user:development/guest",
1296
+ "type": "string"
1297
+ },
1298
+ "ownershipEntityRefs": {
1299
+ "description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
1300
+ "default": "[userEntityRef]",
1301
+ "type": "array",
1302
+ "items": {
1303
+ "type": "string"
1304
+ }
1305
+ },
1306
+ "dangerouslyAllowOutsideDevelopment": {
1307
+ "description": "Allow users to sign in with the guest provider outside of their development environments.",
1308
+ "type": "boolean"
1309
+ }
1310
+ }
1311
+ }
1312
+ }
1313
+ }
1314
+ },
1315
+ "required": [
1316
+ "providers"
1317
+ ]
1318
+ }
1319
+ },
1320
+ "$schema": "http://json-schema.org/draft-07/schema#"
1321
+ },
1322
+ "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1323
+ },
1278
1324
  {
1279
1325
  "path": "../../plugins/auth-backend/config.d.ts",
1280
1326
  "value": {
@@ -1430,52 +1476,6 @@
1430
1476
  },
1431
1477
  "packageName": "@backstage/plugin-auth-backend"
1432
1478
  },
1433
- {
1434
- "path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
1435
- "value": {
1436
- "type": "object",
1437
- "properties": {
1438
- "auth": {
1439
- "description": "Configuration options for the auth plugin",
1440
- "type": "object",
1441
- "properties": {
1442
- "providers": {
1443
- "type": "object",
1444
- "properties": {
1445
- "guest": {
1446
- "type": "object",
1447
- "properties": {
1448
- "userEntityRef": {
1449
- "description": "The entity reference to use for the guest user.",
1450
- "default": "user:development/guest",
1451
- "type": "string"
1452
- },
1453
- "ownershipEntityRefs": {
1454
- "description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
1455
- "default": "[userEntityRef]",
1456
- "type": "array",
1457
- "items": {
1458
- "type": "string"
1459
- }
1460
- },
1461
- "dangerouslyAllowOutsideDevelopment": {
1462
- "description": "Allow users to sign in with the guest provider outside of their development environments.",
1463
- "type": "boolean"
1464
- }
1465
- }
1466
- }
1467
- }
1468
- }
1469
- },
1470
- "required": [
1471
- "providers"
1472
- ]
1473
- }
1474
- },
1475
- "$schema": "http://json-schema.org/draft-07/schema#"
1476
- },
1477
- "packageName": "@backstage/plugin-auth-backend-module-guest-provider"
1478
- },
1479
1479
  {
1480
1480
  "path": "../backend-app-api/config.d.ts",
1481
1481
  "value": {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var version = "0.0.0-nightly-20251106024432";
3
+ var version = "0.0.0-nightly-20251107024121";
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-20251106024432",
3
+ "version": "0.0.0-nightly-20251107024121",
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-20251106024432",
48
- "@backstage/catalog-model": "0.0.0-nightly-20251106024432",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20251107024121",
48
+ "@backstage/catalog-model": "0.0.0-nightly-20251107024121",
49
49
  "@backstage/cli-common": "0.1.15",
50
- "@backstage/config": "0.0.0-nightly-20251106024432",
51
- "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251106024432",
50
+ "@backstage/config": "0.0.0-nightly-20251107024121",
51
+ "@backstage/plugin-techdocs-node": "0.0.0-nightly-20251107024121",
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-20251106024432",
61
+ "@backstage/cli": "0.0.0-nightly-20251107024121",
62
62
  "@types/commander": "^2.12.2",
63
63
  "@types/fs-extra": "^11.0.0",
64
64
  "@types/http-proxy": "^1.17.4",