@techdocs/cli 1.9.3 → 1.9.4-next.0
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 +8 -0
- package/dist/embedded-app/.config-schema.json +315 -126
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/index.html.tmpl +1 -1
- package/dist/embedded-app/static/{4036.cb0ee33e.chunk.js → 4036.0e3a284b.chunk.js} +2 -2
- package/dist/embedded-app/static/{4036.cb0ee33e.chunk.js.map → 4036.0e3a284b.chunk.js.map} +1 -1
- package/dist/embedded-app/static/{5470.1de8dd3a.chunk.js → 5470.cbffc774.chunk.js} +2 -2
- package/dist/embedded-app/static/{5470.1de8dd3a.chunk.js.map → 5470.cbffc774.chunk.js.map} +1 -1
- package/dist/embedded-app/static/5724.36b35018.chunk.js +4 -0
- package/dist/embedded-app/static/5724.36b35018.chunk.js.map +1 -0
- package/dist/embedded-app/static/8803.ea659624.chunk.js +11 -0
- package/dist/embedded-app/static/8803.ea659624.chunk.js.map +1 -0
- package/dist/embedded-app/static/main.3edb5b83.js +553 -0
- package/dist/embedded-app/static/main.3edb5b83.js.map +1 -0
- package/dist/embedded-app/static/module-zod.67a27cd9.js +3 -0
- package/dist/embedded-app/static/module-zod.67a27cd9.js.map +1 -0
- package/dist/embedded-app/static/{runtime.259c9a10.js → runtime.3edb5b83.js} +2 -2
- package/dist/embedded-app/static/{runtime.259c9a10.js.map → runtime.3edb5b83.js.map} +1 -1
- package/dist/embedded-app/static/{vendor.259c9a10.js → vendor.3edb5b83.js} +1 -1
- package/dist/embedded-app/static/{vendor.259c9a10.js.map → vendor.3edb5b83.js.map} +1 -1
- package/dist/package.json.cjs.js +1 -1
- package/package.json +7 -7
- package/dist/embedded-app/static/5724.80feefdb.chunk.js +0 -4
- package/dist/embedded-app/static/5724.80feefdb.chunk.js.map +0 -1
- package/dist/embedded-app/static/8803.3c629e8f.chunk.js +0 -11
- package/dist/embedded-app/static/8803.3c629e8f.chunk.js.map +0 -1
- package/dist/embedded-app/static/main.259c9a10.js +0 -553
- package/dist/embedded-app/static/main.259c9a10.js.map +0 -1
- package/dist/embedded-app/static/module-zod.4f2eeb8c.js +0 -3
- package/dist/embedded-app/static/module-zod.4f2eeb8c.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -404,6 +404,62 @@
|
|
|
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
|
+
}
|
|
452
|
+
}
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
"required": [
|
|
457
|
+
"techdocs"
|
|
458
|
+
],
|
|
459
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
460
|
+
},
|
|
461
|
+
"packageName": "@backstage/plugin-techdocs"
|
|
462
|
+
},
|
|
407
463
|
{
|
|
408
464
|
"path": "../integration/config.d.ts",
|
|
409
465
|
"value": {
|
|
@@ -1003,6 +1059,69 @@
|
|
|
1003
1059
|
}
|
|
1004
1060
|
]
|
|
1005
1061
|
}
|
|
1062
|
+
},
|
|
1063
|
+
"pluginOverrides": {
|
|
1064
|
+
"description": "This section enables you to override certain properties of specific or\ngroups of plugins.",
|
|
1065
|
+
"deepVisibility": "frontend",
|
|
1066
|
+
"type": "array",
|
|
1067
|
+
"items": {
|
|
1068
|
+
"type": "object",
|
|
1069
|
+
"properties": {
|
|
1070
|
+
"match": {
|
|
1071
|
+
"description": "The criteria for matching plugins to override.",
|
|
1072
|
+
"type": "object",
|
|
1073
|
+
"properties": {
|
|
1074
|
+
"pluginId": {
|
|
1075
|
+
"description": "A pattern that is matched against the plugin ID.",
|
|
1076
|
+
"type": "string"
|
|
1077
|
+
},
|
|
1078
|
+
"packageName": {
|
|
1079
|
+
"description": "A pattern that is matched against the package name.",
|
|
1080
|
+
"type": "string"
|
|
1081
|
+
}
|
|
1082
|
+
}
|
|
1083
|
+
},
|
|
1084
|
+
"info": {
|
|
1085
|
+
"description": "Overrides individual top-level fields of the plugin info.",
|
|
1086
|
+
"type": "object",
|
|
1087
|
+
"properties": {
|
|
1088
|
+
"description": {
|
|
1089
|
+
"description": "Override the description of the plugin.",
|
|
1090
|
+
"type": "string"
|
|
1091
|
+
},
|
|
1092
|
+
"ownerEntityRefs": {
|
|
1093
|
+
"description": "Override the owner entity references of the plugin.",
|
|
1094
|
+
"type": "array",
|
|
1095
|
+
"items": {
|
|
1096
|
+
"type": "string"
|
|
1097
|
+
}
|
|
1098
|
+
},
|
|
1099
|
+
"links": {
|
|
1100
|
+
"description": "Override the links of the plugin.",
|
|
1101
|
+
"type": "array",
|
|
1102
|
+
"items": {
|
|
1103
|
+
"type": "object",
|
|
1104
|
+
"properties": {
|
|
1105
|
+
"title": {
|
|
1106
|
+
"type": "string"
|
|
1107
|
+
},
|
|
1108
|
+
"url": {
|
|
1109
|
+
"type": "string"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
"required": [
|
|
1113
|
+
"title",
|
|
1114
|
+
"url"
|
|
1115
|
+
]
|
|
1116
|
+
}
|
|
1117
|
+
}
|
|
1118
|
+
}
|
|
1119
|
+
}
|
|
1120
|
+
},
|
|
1121
|
+
"required": [
|
|
1122
|
+
"info"
|
|
1123
|
+
]
|
|
1124
|
+
}
|
|
1006
1125
|
}
|
|
1007
1126
|
}
|
|
1008
1127
|
}
|
|
@@ -1042,62 +1161,6 @@
|
|
|
1042
1161
|
},
|
|
1043
1162
|
"packageName": "@backstage/plugin-catalog"
|
|
1044
1163
|
},
|
|
1045
|
-
{
|
|
1046
|
-
"path": "../../plugins/techdocs/config.d.ts",
|
|
1047
|
-
"value": {
|
|
1048
|
-
"type": "object",
|
|
1049
|
-
"properties": {
|
|
1050
|
-
"techdocs": {
|
|
1051
|
-
"description": "Configuration options for the techdocs plugin",
|
|
1052
|
-
"type": "object",
|
|
1053
|
-
"properties": {
|
|
1054
|
-
"builder": {
|
|
1055
|
-
"description": "Documentation building process depends on the builder attr",
|
|
1056
|
-
"visibility": "frontend",
|
|
1057
|
-
"enum": [
|
|
1058
|
-
"external",
|
|
1059
|
-
"local"
|
|
1060
|
-
],
|
|
1061
|
-
"type": "string"
|
|
1062
|
-
},
|
|
1063
|
-
"legacyUseCaseSensitiveTripletPaths": {
|
|
1064
|
-
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
1065
|
-
"visibility": "frontend",
|
|
1066
|
-
"type": "boolean"
|
|
1067
|
-
},
|
|
1068
|
-
"sanitizer": {
|
|
1069
|
-
"type": "object",
|
|
1070
|
-
"properties": {
|
|
1071
|
-
"allowedIframeHosts": {
|
|
1072
|
-
"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",
|
|
1073
|
-
"visibility": "frontend",
|
|
1074
|
-
"type": "array",
|
|
1075
|
-
"items": {
|
|
1076
|
-
"type": "string"
|
|
1077
|
-
}
|
|
1078
|
-
},
|
|
1079
|
-
"allowedCustomElementTagNameRegExp": {
|
|
1080
|
-
"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.",
|
|
1081
|
-
"visibility": "frontend",
|
|
1082
|
-
"type": "string"
|
|
1083
|
-
},
|
|
1084
|
-
"allowedCustomElementAttributeNameRegExp": {
|
|
1085
|
-
"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/>",
|
|
1086
|
-
"visibility": "frontend",
|
|
1087
|
-
"type": "string"
|
|
1088
|
-
}
|
|
1089
|
-
}
|
|
1090
|
-
}
|
|
1091
|
-
}
|
|
1092
|
-
}
|
|
1093
|
-
},
|
|
1094
|
-
"required": [
|
|
1095
|
-
"techdocs"
|
|
1096
|
-
],
|
|
1097
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1098
|
-
},
|
|
1099
|
-
"packageName": "@backstage/plugin-techdocs"
|
|
1100
|
-
},
|
|
1101
1164
|
{
|
|
1102
1165
|
"path": "../../node_modules/@backstage-community/plugin-stackstorm/config.d.ts",
|
|
1103
1166
|
"value": {
|
|
@@ -1184,6 +1247,52 @@
|
|
|
1184
1247
|
},
|
|
1185
1248
|
"packageName": "@backstage/backend-plugin-api"
|
|
1186
1249
|
},
|
|
1250
|
+
{
|
|
1251
|
+
"path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
|
|
1252
|
+
"value": {
|
|
1253
|
+
"type": "object",
|
|
1254
|
+
"properties": {
|
|
1255
|
+
"auth": {
|
|
1256
|
+
"description": "Configuration options for the auth plugin",
|
|
1257
|
+
"type": "object",
|
|
1258
|
+
"properties": {
|
|
1259
|
+
"providers": {
|
|
1260
|
+
"type": "object",
|
|
1261
|
+
"properties": {
|
|
1262
|
+
"guest": {
|
|
1263
|
+
"type": "object",
|
|
1264
|
+
"properties": {
|
|
1265
|
+
"userEntityRef": {
|
|
1266
|
+
"description": "The entity reference to use for the guest user.",
|
|
1267
|
+
"default": "user:development/guest",
|
|
1268
|
+
"type": "string"
|
|
1269
|
+
},
|
|
1270
|
+
"ownershipEntityRefs": {
|
|
1271
|
+
"description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
|
|
1272
|
+
"default": "[userEntityRef]",
|
|
1273
|
+
"type": "array",
|
|
1274
|
+
"items": {
|
|
1275
|
+
"type": "string"
|
|
1276
|
+
}
|
|
1277
|
+
},
|
|
1278
|
+
"dangerouslyAllowOutsideDevelopment": {
|
|
1279
|
+
"description": "Allow users to sign in with the guest provider outside of their development environments.",
|
|
1280
|
+
"type": "boolean"
|
|
1281
|
+
}
|
|
1282
|
+
}
|
|
1283
|
+
}
|
|
1284
|
+
}
|
|
1285
|
+
}
|
|
1286
|
+
},
|
|
1287
|
+
"required": [
|
|
1288
|
+
"providers"
|
|
1289
|
+
]
|
|
1290
|
+
}
|
|
1291
|
+
},
|
|
1292
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1293
|
+
},
|
|
1294
|
+
"packageName": "@backstage/plugin-auth-backend-module-guest-provider"
|
|
1295
|
+
},
|
|
1187
1296
|
{
|
|
1188
1297
|
"path": "../../plugins/auth-backend/config.d.ts",
|
|
1189
1298
|
"value": {
|
|
@@ -1319,52 +1428,6 @@
|
|
|
1319
1428
|
},
|
|
1320
1429
|
"packageName": "@backstage/plugin-auth-backend"
|
|
1321
1430
|
},
|
|
1322
|
-
{
|
|
1323
|
-
"path": "../../plugins/auth-backend-module-guest-provider/config.d.ts",
|
|
1324
|
-
"value": {
|
|
1325
|
-
"type": "object",
|
|
1326
|
-
"properties": {
|
|
1327
|
-
"auth": {
|
|
1328
|
-
"description": "Configuration options for the auth plugin",
|
|
1329
|
-
"type": "object",
|
|
1330
|
-
"properties": {
|
|
1331
|
-
"providers": {
|
|
1332
|
-
"type": "object",
|
|
1333
|
-
"properties": {
|
|
1334
|
-
"guest": {
|
|
1335
|
-
"type": "object",
|
|
1336
|
-
"properties": {
|
|
1337
|
-
"userEntityRef": {
|
|
1338
|
-
"description": "The entity reference to use for the guest user.",
|
|
1339
|
-
"default": "user:development/guest",
|
|
1340
|
-
"type": "string"
|
|
1341
|
-
},
|
|
1342
|
-
"ownershipEntityRefs": {
|
|
1343
|
-
"description": "A list of entity references to user for ownership of the guest user if the user\n is not found in the catalog.",
|
|
1344
|
-
"default": "[userEntityRef]",
|
|
1345
|
-
"type": "array",
|
|
1346
|
-
"items": {
|
|
1347
|
-
"type": "string"
|
|
1348
|
-
}
|
|
1349
|
-
},
|
|
1350
|
-
"dangerouslyAllowOutsideDevelopment": {
|
|
1351
|
-
"description": "Allow users to sign in with the guest provider outside of their development environments.",
|
|
1352
|
-
"type": "boolean"
|
|
1353
|
-
}
|
|
1354
|
-
}
|
|
1355
|
-
}
|
|
1356
|
-
}
|
|
1357
|
-
}
|
|
1358
|
-
},
|
|
1359
|
-
"required": [
|
|
1360
|
-
"providers"
|
|
1361
|
-
]
|
|
1362
|
-
}
|
|
1363
|
-
},
|
|
1364
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1365
|
-
},
|
|
1366
|
-
"packageName": "@backstage/plugin-auth-backend-module-guest-provider"
|
|
1367
|
-
},
|
|
1368
1431
|
{
|
|
1369
1432
|
"path": "../../node_modules/@backstage-community/plugin-stackstorm/node_modules/@backstage/core-components/config.d.ts",
|
|
1370
1433
|
"value": {
|
|
@@ -1556,6 +1619,30 @@
|
|
|
1556
1619
|
},
|
|
1557
1620
|
"packageName": "@backstage/backend-app-api"
|
|
1558
1621
|
},
|
|
1622
|
+
{
|
|
1623
|
+
"path": "../../plugins/events-node/config.d.ts",
|
|
1624
|
+
"value": {
|
|
1625
|
+
"type": "object",
|
|
1626
|
+
"properties": {
|
|
1627
|
+
"events": {
|
|
1628
|
+
"type": "object",
|
|
1629
|
+
"properties": {
|
|
1630
|
+
"useEventBus": {
|
|
1631
|
+
"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.",
|
|
1632
|
+
"enum": [
|
|
1633
|
+
"always",
|
|
1634
|
+
"auto",
|
|
1635
|
+
"never"
|
|
1636
|
+
],
|
|
1637
|
+
"type": "string"
|
|
1638
|
+
}
|
|
1639
|
+
}
|
|
1640
|
+
}
|
|
1641
|
+
},
|
|
1642
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
1643
|
+
},
|
|
1644
|
+
"packageName": "@backstage/plugin-events-node"
|
|
1645
|
+
},
|
|
1559
1646
|
{
|
|
1560
1647
|
"path": "../backend-defaults/config.d.ts",
|
|
1561
1648
|
"value": {
|
|
@@ -1713,6 +1800,19 @@
|
|
|
1713
1800
|
}
|
|
1714
1801
|
}
|
|
1715
1802
|
},
|
|
1803
|
+
"actions": {
|
|
1804
|
+
"description": "Options used by the default actions service.",
|
|
1805
|
+
"type": "object",
|
|
1806
|
+
"properties": {
|
|
1807
|
+
"pluginSources": {
|
|
1808
|
+
"description": "List of plugin sources to load actions from.",
|
|
1809
|
+
"type": "array",
|
|
1810
|
+
"items": {
|
|
1811
|
+
"type": "string"
|
|
1812
|
+
}
|
|
1813
|
+
}
|
|
1814
|
+
}
|
|
1815
|
+
},
|
|
1716
1816
|
"auth": {
|
|
1717
1817
|
"description": "Options used by the default auth, httpAuth and userInfo services.",
|
|
1718
1818
|
"type": "object",
|
|
@@ -2693,30 +2793,6 @@
|
|
|
2693
2793
|
},
|
|
2694
2794
|
"packageName": "@backstage/backend-defaults"
|
|
2695
2795
|
},
|
|
2696
|
-
{
|
|
2697
|
-
"path": "../../plugins/events-node/config.d.ts",
|
|
2698
|
-
"value": {
|
|
2699
|
-
"type": "object",
|
|
2700
|
-
"properties": {
|
|
2701
|
-
"events": {
|
|
2702
|
-
"type": "object",
|
|
2703
|
-
"properties": {
|
|
2704
|
-
"useEventBus": {
|
|
2705
|
-
"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.",
|
|
2706
|
-
"enum": [
|
|
2707
|
-
"always",
|
|
2708
|
-
"auto",
|
|
2709
|
-
"never"
|
|
2710
|
-
],
|
|
2711
|
-
"type": "string"
|
|
2712
|
-
}
|
|
2713
|
-
}
|
|
2714
|
-
}
|
|
2715
|
-
},
|
|
2716
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2717
|
-
},
|
|
2718
|
-
"packageName": "@backstage/plugin-events-node"
|
|
2719
|
-
},
|
|
2720
2796
|
{
|
|
2721
2797
|
"path": "../../plugins/auth-backend-module-google-provider/config.d.ts",
|
|
2722
2798
|
"value": {
|
|
@@ -2950,6 +3026,119 @@
|
|
|
2950
3026
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2951
3027
|
},
|
|
2952
3028
|
"packageName": "@backstage/integration-aws-node"
|
|
3029
|
+
},
|
|
3030
|
+
{
|
|
3031
|
+
"path": "../../node_modules/@backstage-community/plugin-puppetdb/node_modules/@backstage/frontend-app-api/config.d.ts",
|
|
3032
|
+
"value": {
|
|
3033
|
+
"type": "object",
|
|
3034
|
+
"properties": {
|
|
3035
|
+
"app": {
|
|
3036
|
+
"type": "object",
|
|
3037
|
+
"properties": {
|
|
3038
|
+
"experimental": {
|
|
3039
|
+
"type": "object",
|
|
3040
|
+
"properties": {
|
|
3041
|
+
"packages": {
|
|
3042
|
+
"visibility": "frontend",
|
|
3043
|
+
"deepVisibility": "frontend",
|
|
3044
|
+
"anyOf": [
|
|
3045
|
+
{
|
|
3046
|
+
"type": "object",
|
|
3047
|
+
"properties": {
|
|
3048
|
+
"include": {
|
|
3049
|
+
"type": "array",
|
|
3050
|
+
"items": {
|
|
3051
|
+
"type": "string"
|
|
3052
|
+
}
|
|
3053
|
+
},
|
|
3054
|
+
"exclude": {
|
|
3055
|
+
"type": "array",
|
|
3056
|
+
"items": {
|
|
3057
|
+
"type": "string"
|
|
3058
|
+
}
|
|
3059
|
+
}
|
|
3060
|
+
}
|
|
3061
|
+
},
|
|
3062
|
+
{
|
|
3063
|
+
"const": "all",
|
|
3064
|
+
"type": "string"
|
|
3065
|
+
}
|
|
3066
|
+
]
|
|
3067
|
+
}
|
|
3068
|
+
}
|
|
3069
|
+
},
|
|
3070
|
+
"routes": {
|
|
3071
|
+
"type": "object",
|
|
3072
|
+
"properties": {
|
|
3073
|
+
"bindings": {
|
|
3074
|
+
"description": "Maps external route references to regular route references. Both the\nkey and the value is expected to be on the form `<pluginId>.<routeId>`.\nIf the value is `false`, the route will be disabled even if it has a\ndefault mapping.",
|
|
3075
|
+
"deepVisibility": "frontend",
|
|
3076
|
+
"type": "object",
|
|
3077
|
+
"additionalProperties": {
|
|
3078
|
+
"anyOf": [
|
|
3079
|
+
{
|
|
3080
|
+
"const": false,
|
|
3081
|
+
"type": "boolean"
|
|
3082
|
+
},
|
|
3083
|
+
{
|
|
3084
|
+
"type": "string"
|
|
3085
|
+
}
|
|
3086
|
+
]
|
|
3087
|
+
}
|
|
3088
|
+
}
|
|
3089
|
+
}
|
|
3090
|
+
},
|
|
3091
|
+
"extensions": {
|
|
3092
|
+
"deepVisibility": "frontend",
|
|
3093
|
+
"type": "array",
|
|
3094
|
+
"items": {
|
|
3095
|
+
"anyOf": [
|
|
3096
|
+
{
|
|
3097
|
+
"type": "object",
|
|
3098
|
+
"additionalProperties": {
|
|
3099
|
+
"anyOf": [
|
|
3100
|
+
{
|
|
3101
|
+
"type": "object",
|
|
3102
|
+
"properties": {
|
|
3103
|
+
"attachTo": {
|
|
3104
|
+
"type": "object",
|
|
3105
|
+
"properties": {
|
|
3106
|
+
"id": {
|
|
3107
|
+
"type": "string"
|
|
3108
|
+
},
|
|
3109
|
+
"input": {
|
|
3110
|
+
"type": "string"
|
|
3111
|
+
}
|
|
3112
|
+
},
|
|
3113
|
+
"required": [
|
|
3114
|
+
"id",
|
|
3115
|
+
"input"
|
|
3116
|
+
]
|
|
3117
|
+
},
|
|
3118
|
+
"disabled": {
|
|
3119
|
+
"type": "boolean"
|
|
3120
|
+
},
|
|
3121
|
+
"config": {}
|
|
3122
|
+
}
|
|
3123
|
+
},
|
|
3124
|
+
{
|
|
3125
|
+
"type": "boolean"
|
|
3126
|
+
}
|
|
3127
|
+
]
|
|
3128
|
+
}
|
|
3129
|
+
},
|
|
3130
|
+
{
|
|
3131
|
+
"type": "string"
|
|
3132
|
+
}
|
|
3133
|
+
]
|
|
3134
|
+
}
|
|
3135
|
+
}
|
|
3136
|
+
}
|
|
3137
|
+
}
|
|
3138
|
+
},
|
|
3139
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
3140
|
+
},
|
|
3141
|
+
"packageName": "@backstage/frontend-app-api"
|
|
2953
3142
|
}
|
|
2954
3143
|
],
|
|
2955
3144
|
"backstageConfigSchemaVersion": 1
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="theme-color" content="#000000"/><meta name="description" content="Backstage is an open source framework for building developer portals"/><link rel="manifest" href="/manifest.json" crossorigin="use-credentials"/><link rel="icon" href="/favicon.ico"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"/><link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"/><link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"/><link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"/><title>Techdocs Preview App</title><meta name="backstage-app-mode" content="public"><script defer="defer" src="/static/runtime.3edb5b83.js"></script><script defer="defer" src="/static/module-material-ui.557c1930.js"></script><script defer="defer" src="/static/module-lodash.05581125.js"></script><script defer="defer" src="/static/module-date-fns.c633d602.js"></script><script defer="defer" src="/static/module-mui.f702282a.js"></script><script defer="defer" src="/static/module-material-table.00de7997.js"></script><script defer="defer" src="/static/module-react-dom.42a304d3.js"></script><script defer="defer" src="/static/module-zod.67a27cd9.js"></script><script defer="defer" src="/static/module-i18next.f50c1612.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.e9f14677.js"></script><script defer="defer" src="/static/module-remix-run.ae6d33c5.js"></script><script defer="defer" src="/static/vendor.3edb5b83.js"></script><script defer="defer" src="/static/main.3edb5b83.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
color="#5bbad5"
|
|
43
43
|
/>
|
|
44
44
|
<title><%= config.getString('app.title') %></title>
|
|
45
|
-
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.
|
|
45
|
+
<meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.3edb5b83.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.557c1930.js"></script><script defer src="<%= publicPath %>/static/module-lodash.05581125.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.c633d602.js"></script><script defer src="<%= publicPath %>/static/module-mui.f702282a.js"></script><script defer src="<%= publicPath %>/static/module-material-table.00de7997.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.42a304d3.js"></script><script defer src="<%= publicPath %>/static/module-zod.67a27cd9.js"></script><script defer src="<%= publicPath %>/static/module-i18next.f50c1612.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.e9f14677.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.ae6d33c5.js"></script><script defer src="<%= publicPath %>/static/vendor.3edb5b83.js"></script><script defer src="<%= publicPath %>/static/main.3edb5b83.js"></script></head>
|
|
46
46
|
<body>
|
|
47
47
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
48
48
|
<div id="root"></div>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
"use strict";(()=>{(self.webpackChunktechdocs_cli_embedded_app=self.webpackChunktechdocs_cli_embedded_app||[]).push([[4036],{70048:(I,m,e)=>{e.d(m,{K:()=>s});var t=e(18690);function s(P){return(0,t.g)()}},93160:(I,m,e)=>{e.d(m,{b:()=>Z,W:()=>X});var t=e(31085),s=e(14041),P=e(18690),x=e(24504),C=e(72020),D=e(
|
|
1
|
+
"use strict";(()=>{(self.webpackChunktechdocs_cli_embedded_app=self.webpackChunktechdocs_cli_embedded_app||[]).push([[4036],{70048:(I,m,e)=>{e.d(m,{K:()=>s});var t=e(18690);function s(P){return(0,t.g)()}},93160:(I,m,e)=>{e.d(m,{b:()=>Z,W:()=>X});var t=e(31085),s=e(14041),P=e(18690),x=e(24504),C=e(72020),D=e(88572),S=e(29729),B=e(45061),L=e(39299),K=e(82779),U=e(70048),v=e(19402),W=e(22020),F=e(82266),A=e(64947),M=e(72427),O=e(70795),T=e(57405),H=e(16261);function Y(g,c){const[E,f]=(0,s.useState)({status:"not-executed",error:void 0,result:c}),a=(0,s.useRef)(),n=(0,s.useRef)(),l=(0,H.J)({execute(...d){n.current=d;const i=g(...d);return a.current=i,f(r=>({...r,status:"loading"})),i.then(r=>{i===a.current&&f(o=>({...o,status:"success",error:void 0,result:r}))},r=>{i===a.current&&f(o=>({...o,status:"error",error:r}))}),i},reset(){f({status:"not-executed",error:void 0,result:c}),a.current=void 0,n.current=void 0}});return[E,(0,s.useMemo)(()=>({reset(){l.current.reset()},execute:(...d)=>l.current.execute(...d)}),[]),{promise:a.current,lastArgs:n.current}]}var $=e(76842),N=e(70835);const p="/.backstage/auth/v1/cookie",y=365*24*36e5;function R(g){const{pluginId:c}=g??{},E=(0,M.gf)(O.a),f=(0,M.gf)(T.I),a=(0,s.useMemo)(()=>"BroadcastChannel"in window?new BroadcastChannel(`${c}-auth-cookie-expires-at`):null,[c]),[n,l]=Y(async()=>{const o=`${await f.getBaseUrl(c)}${p}`,u=await E.fetch(`${o}`,{credentials:"include"});if(!u.ok){if(u.status===404)return{expiresAt:new Date(Date.now()+y)};throw await N.o.fromResponse(u)}const h=await u.json();if(!h.expiresAt)throw new Error("No expiration date found in response");return h});(0,$.u)(l.execute);const d=(0,s.useCallback)(()=>{l.execute()},[l]),i=(0,s.useCallback)(r=>{const o=(1+3*Math.random())*6e4,u=Date.parse(r.expiresAt)-Date.now()-o,h=setTimeout(d,u);return()=>clearTimeout(h)},[d]);return(0,s.useEffect)(()=>{if(n.status!=="success"||!n.result)return()=>{};a?.postMessage({action:"COOKIE_REFRESH_SUCCESS",payload:n.result});let r=i(n.result);const o=u=>{const{action:h,payload:b}=u.data;h==="COOKIE_REFRESH_SUCCESS"&&(r(),r=i(b))};return a?.addEventListener("message",o),()=>{r(),a?.removeEventListener("message",o)}},[n,i,a]),n.status==="not-executed"?{status:"loading"}:n.status==="loading"&&!n.result?{status:"loading"}:n.status==="loading"&&n.error?{status:"loading"}:n.status==="error"&&n.error?{status:"error",error:n.error,retry:d}:{status:"success",data:n.result}}function j(g){const{children:c,...E}=g,f=(0,F.n)(),{Progress:a}=f.getComponents(),n=R(E);return n.status==="loading"?(0,t.jsx)(a,{}):n.status==="error"?(0,t.jsx)(W.b,{error:n.error,children:(0,t.jsx)(A.A,{variant:"outlined",onClick:n.retry,children:"Retry"})}):(0,t.jsx)(t.Fragment,{children:c})}var z=e(58502),J=e(54917),G=e(98392),V=e(50868);const Z=g=>{const{withSearch:c,withHeader:E=!0}=g;return(0,t.jsxs)(x.Y,{themeId:"documentation",children:[E&&(0,t.jsx)(B.T,{}),(0,t.jsx)(L.Z,{}),(0,t.jsx)(S.p,{withSearch:c})]})},Q=(0,z.A)(x.Y)({height:"inherit",overflowY:"visible"}),X=g=>{const c=(0,J.A)(),E=(0,G.A)({...c,...g.overrideThemeOptions||{}}),{kind:f,name:a,namespace:n}=(0,U.K)(K.Oc),{children:l,entityRef:d={kind:f,name:a,namespace:n}}=g,i=(0,P.P1)();if(!l){const u=(i?s.Children.toArray(i.props.children):[]).flatMap(h=>h?.props?.children??[]).find(h=>!(0,v.E)(h,C.AF)&&!(0,v.E)(h,C.Wm));return(0,t.jsx)(V.A,{theme:E,children:(0,t.jsx)(j,{pluginId:"techdocs",children:(0,t.jsx)(D.R,{entityRef:d,children:u||(0,t.jsx)(Z,{})})})})}return(0,t.jsx)(V.A,{theme:E,children:(0,t.jsx)(j,{pluginId:"techdocs",children:(0,t.jsx)(D.R,{entityRef:d,children:({metadata:r,entityMetadata:o,onReady:u})=>(0,t.jsx)(Q,{themeId:"documentation",className:"techdocs-reader-page",children:l instanceof Function?l({entityRef:d,techdocsMetadataValue:r.value,entityMetadataValue:o.value,onReady:u}):l})})})})}},84036:(I,m,e)=>{e.r(m),e.d(m,{TechDocsReaderLayout:()=>t.b,TechDocsReaderPage:()=>t.W});var t=e(93160)},39299:(I,m,e)=>{e.d(m,{Z:()=>F});var t=e(31085),s=e(14041),P=e(58837),x=e(29365),C=e(75173),D=e(71677),S=e(37757),B=e(10394),L=e(9684),K=e(88572),U=e(72020),v=e(99730);const W=(0,P.A)(A=>({root:{gridArea:"pageSubheader",flexDirection:"column",minHeight:"auto",padding:A.spacing(3,3,0),"@media print":{display:"none"}}})),F=A=>{const M=W(),[O,T]=(0,s.useState)(null),H=(0,s.useCallback)(j=>{T(j.currentTarget)},[]),Y=(0,s.useCallback)(()=>{T(null)},[]),{entityMetadata:{value:$,loading:N}}=(0,K.V)(),p=(0,U.YR)(),y=p.renderComponentsByLocation(v.e.Subheader),R=p.renderComponentsByLocation(v.e.Settings);return!y&&!R||N===!1&&!$?null:(0,t.jsx)(C.A,{classes:M,...A.toolbarProps,children:(0,t.jsxs)(B.A,{display:"flex",justifyContent:"flex-end",width:"100%",flexWrap:"wrap",children:[y,R?(0,t.jsxs)(t.Fragment,{children:[(0,t.jsx)(D.Ay,{title:"Settings",children:(0,t.jsx)(x.A,{"aria-controls":"tech-docs-reader-page-settings","aria-haspopup":"true",onClick:H,children:(0,t.jsx)(L.A,{})})}),(0,t.jsx)(S.A,{id:"tech-docs-reader-page-settings",getContentAnchorEl:null,anchorEl:O,anchorOrigin:{vertical:"bottom",horizontal:"right"},open:!!O,onClose:Y,keepMounted:!0,children:(0,t.jsx)("div",{children:R})})]}):null]})})}}}]);})();
|
|
2
2
|
|
|
3
|
-
//# sourceMappingURL=4036.
|
|
3
|
+
//# sourceMappingURL=4036.0e3a284b.chunk.js.map
|