@techdocs/cli 0.0.0-nightly-20251213024329 → 0.0.0-nightly-20251222025103

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.
Files changed (24) hide show
  1. package/CHANGELOG.md +15 -6
  2. package/dist/embedded-app/.config-schema.json +222 -228
  3. package/dist/embedded-app/index.html +1 -1
  4. package/dist/embedded-app/index.html.tmpl +1 -1
  5. package/dist/embedded-app/static/{1335.4269f82a.chunk.js → 1335.18ed80ea.chunk.js} +2 -2
  6. package/dist/embedded-app/static/{1335.4269f82a.chunk.js.map → 1335.18ed80ea.chunk.js.map} +1 -1
  7. package/dist/embedded-app/static/{7186.ea520cfe.chunk.js → 7186.0b7e4914.chunk.js} +2 -2
  8. package/dist/embedded-app/static/{7186.ea520cfe.chunk.js.map → 7186.0b7e4914.chunk.js.map} +1 -1
  9. package/dist/embedded-app/static/main.b61055d4.js +550 -0
  10. package/dist/embedded-app/static/main.b61055d4.js.map +1 -0
  11. package/dist/embedded-app/static/module-material-table.5a3a2d93.js +2 -0
  12. package/dist/embedded-app/static/{module-material-table.09813bc2.js.map → module-material-table.5a3a2d93.js.map} +1 -1
  13. package/dist/embedded-app/static/module-material-ui.9517effb.js +2 -0
  14. package/dist/embedded-app/static/{module-material-ui.bc72d455.js.map → module-material-ui.9517effb.js.map} +1 -1
  15. package/dist/embedded-app/static/{runtime.0a0ee1fa.js → runtime.e43f5848.js} +2 -2
  16. package/dist/embedded-app/static/{runtime.0a0ee1fa.js.map → runtime.e43f5848.js.map} +1 -1
  17. package/dist/embedded-app/static/{vendor.2d7d5373.js → vendor.a4b20610.js} +2 -2
  18. package/dist/embedded-app/static/{vendor.2d7d5373.js.map → vendor.a4b20610.js.map} +1 -1
  19. package/dist/package.json.cjs.js +1 -1
  20. package/package.json +5 -5
  21. package/dist/embedded-app/static/main.d92cf3b9.js +0 -550
  22. package/dist/embedded-app/static/main.d92cf3b9.js.map +0 -1
  23. package/dist/embedded-app/static/module-material-table.09813bc2.js +0 -2
  24. package/dist/embedded-app/static/module-material-ui.bc72d455.js +0 -2
package/CHANGELOG.md CHANGED
@@ -1,17 +1,26 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20251213024329
3
+ ## 0.0.0-nightly-20251222025103
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - 43629b1: Updated to use new utilities from `@backstage/cli-common`.
8
- - 2bae83a: Bumped dev dependencies `@types/node`
9
7
  - Updated dependencies
10
- - @backstage/backend-defaults@0.0.0-nightly-20251213024329
11
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20251213024329
12
- - @backstage/cli-common@0.0.0-nightly-20251213024329
8
+ - @backstage/backend-defaults@0.0.0-nightly-20251222025103
13
9
  - @backstage/catalog-model@1.7.6
10
+ - @backstage/cli-common@0.1.16
14
11
  - @backstage/config@1.3.6
12
+ - @backstage/plugin-techdocs-node@1.13.10
13
+
14
+ ## 1.10.3
15
+
16
+ ### Patch Changes
17
+
18
+ - 43629b1: Updated to use new utilities from `@backstage/cli-common`.
19
+ - 2bae83a: Bumped dev dependencies `@types/node`
20
+ - Updated dependencies
21
+ - @backstage/backend-defaults@0.14.0
22
+ - @backstage/plugin-techdocs-node@1.13.10
23
+ - @backstage/cli-common@0.1.16
15
24
 
16
25
  ## 1.10.3-next.2
17
26
 
@@ -451,7 +451,10 @@
451
451
  "additionalAllowedURIProtocols": {
452
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
453
  "visibility": "frontend",
454
- "type": "string"
454
+ "type": "array",
455
+ "items": {
456
+ "type": "string"
457
+ }
455
458
  }
456
459
  }
457
460
  }
@@ -462,6 +465,211 @@
462
465
  },
463
466
  "packageName": "@backstage/plugin-techdocs"
464
467
  },
468
+ {
469
+ "path": "../frontend-app-api/config.d.ts",
470
+ "value": {
471
+ "type": "object",
472
+ "properties": {
473
+ "app": {
474
+ "type": "object",
475
+ "properties": {
476
+ "experimental": {
477
+ "type": "object",
478
+ "properties": {
479
+ "packages": {
480
+ "visibility": "frontend",
481
+ "deepVisibility": "frontend",
482
+ "deprecated": "This is no longer experimental; use `app.packages` instead.",
483
+ "anyOf": [
484
+ {
485
+ "type": "object",
486
+ "properties": {
487
+ "include": {
488
+ "type": "array",
489
+ "items": {
490
+ "type": "string"
491
+ }
492
+ },
493
+ "exclude": {
494
+ "type": "array",
495
+ "items": {
496
+ "type": "string"
497
+ }
498
+ }
499
+ }
500
+ },
501
+ {
502
+ "const": "all",
503
+ "type": "string"
504
+ }
505
+ ]
506
+ }
507
+ }
508
+ },
509
+ "packages": {
510
+ "description": "Controls what packages are loaded by the new frontend system.",
511
+ "visibility": "frontend",
512
+ "deepVisibility": "frontend",
513
+ "anyOf": [
514
+ {
515
+ "type": "object",
516
+ "properties": {
517
+ "include": {
518
+ "type": "array",
519
+ "items": {
520
+ "type": "string"
521
+ }
522
+ },
523
+ "exclude": {
524
+ "type": "array",
525
+ "items": {
526
+ "type": "string"
527
+ }
528
+ }
529
+ }
530
+ },
531
+ {
532
+ "const": "all",
533
+ "type": "string"
534
+ }
535
+ ]
536
+ },
537
+ "routes": {
538
+ "type": "object",
539
+ "properties": {
540
+ "bindings": {
541
+ "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.",
542
+ "deepVisibility": "frontend",
543
+ "type": "object",
544
+ "additionalProperties": {
545
+ "anyOf": [
546
+ {
547
+ "const": false,
548
+ "type": "boolean"
549
+ },
550
+ {
551
+ "type": "string"
552
+ }
553
+ ]
554
+ }
555
+ }
556
+ }
557
+ },
558
+ "extensions": {
559
+ "deepVisibility": "frontend",
560
+ "type": "array",
561
+ "items": {
562
+ "anyOf": [
563
+ {
564
+ "type": "object",
565
+ "additionalProperties": {
566
+ "anyOf": [
567
+ {
568
+ "type": "object",
569
+ "properties": {
570
+ "attachTo": {
571
+ "type": "object",
572
+ "properties": {
573
+ "id": {
574
+ "type": "string"
575
+ },
576
+ "input": {
577
+ "type": "string"
578
+ }
579
+ },
580
+ "required": [
581
+ "id",
582
+ "input"
583
+ ]
584
+ },
585
+ "disabled": {
586
+ "type": "boolean"
587
+ },
588
+ "config": {}
589
+ }
590
+ },
591
+ {
592
+ "type": "boolean"
593
+ }
594
+ ]
595
+ }
596
+ },
597
+ {
598
+ "type": "string"
599
+ }
600
+ ]
601
+ }
602
+ },
603
+ "pluginOverrides": {
604
+ "description": "This section enables you to override certain properties of specific or\ngroups of plugins.",
605
+ "deepVisibility": "frontend",
606
+ "type": "array",
607
+ "items": {
608
+ "type": "object",
609
+ "properties": {
610
+ "match": {
611
+ "description": "The criteria for matching plugins to override.",
612
+ "type": "object",
613
+ "properties": {
614
+ "pluginId": {
615
+ "description": "A pattern that is matched against the plugin ID.",
616
+ "type": "string"
617
+ },
618
+ "packageName": {
619
+ "description": "A pattern that is matched against the package name.",
620
+ "type": "string"
621
+ }
622
+ }
623
+ },
624
+ "info": {
625
+ "description": "Overrides individual top-level fields of the plugin info.",
626
+ "type": "object",
627
+ "properties": {
628
+ "description": {
629
+ "description": "Override the description of the plugin.",
630
+ "type": "string"
631
+ },
632
+ "ownerEntityRefs": {
633
+ "description": "Override the owner entity references of the plugin.",
634
+ "type": "array",
635
+ "items": {
636
+ "type": "string"
637
+ }
638
+ },
639
+ "links": {
640
+ "description": "Override the links of the plugin.",
641
+ "type": "array",
642
+ "items": {
643
+ "type": "object",
644
+ "properties": {
645
+ "title": {
646
+ "type": "string"
647
+ },
648
+ "url": {
649
+ "type": "string"
650
+ }
651
+ },
652
+ "required": [
653
+ "title",
654
+ "url"
655
+ ]
656
+ }
657
+ }
658
+ }
659
+ }
660
+ },
661
+ "required": [
662
+ "info"
663
+ ]
664
+ }
665
+ }
666
+ }
667
+ }
668
+ },
669
+ "$schema": "http://json-schema.org/draft-07/schema#"
670
+ },
671
+ "packageName": "@backstage/frontend-app-api"
672
+ },
465
673
  {
466
674
  "path": "../integration/config.d.ts",
467
675
  "value": {
@@ -677,15 +885,22 @@
677
885
  "deprecated": "Use `token` instead.",
678
886
  "type": "string"
679
887
  },
888
+ "clientId": {
889
+ "description": "OAuth client ID for Bitbucket Cloud.",
890
+ "visibility": "secret",
891
+ "type": "string"
892
+ },
893
+ "clientSecret": {
894
+ "description": "OAuth client secret for Bitbucket Cloud.",
895
+ "visibility": "secret",
896
+ "type": "string"
897
+ },
680
898
  "commitSigningKey": {
681
899
  "description": "PGP signing key for signing commits.",
682
900
  "visibility": "secret",
683
901
  "type": "string"
684
902
  }
685
- },
686
- "required": [
687
- "username"
688
- ]
903
+ }
689
904
  }
690
905
  },
691
906
  "bitbucketServer": {
@@ -1026,211 +1241,6 @@
1026
1241
  },
1027
1242
  "packageName": "@backstage/integration"
1028
1243
  },
1029
- {
1030
- "path": "../frontend-app-api/config.d.ts",
1031
- "value": {
1032
- "type": "object",
1033
- "properties": {
1034
- "app": {
1035
- "type": "object",
1036
- "properties": {
1037
- "experimental": {
1038
- "type": "object",
1039
- "properties": {
1040
- "packages": {
1041
- "visibility": "frontend",
1042
- "deepVisibility": "frontend",
1043
- "deprecated": "This is no longer experimental; use `app.packages` instead.",
1044
- "anyOf": [
1045
- {
1046
- "type": "object",
1047
- "properties": {
1048
- "include": {
1049
- "type": "array",
1050
- "items": {
1051
- "type": "string"
1052
- }
1053
- },
1054
- "exclude": {
1055
- "type": "array",
1056
- "items": {
1057
- "type": "string"
1058
- }
1059
- }
1060
- }
1061
- },
1062
- {
1063
- "const": "all",
1064
- "type": "string"
1065
- }
1066
- ]
1067
- }
1068
- }
1069
- },
1070
- "packages": {
1071
- "description": "Controls what packages are loaded by the new frontend system.",
1072
- "visibility": "frontend",
1073
- "deepVisibility": "frontend",
1074
- "anyOf": [
1075
- {
1076
- "type": "object",
1077
- "properties": {
1078
- "include": {
1079
- "type": "array",
1080
- "items": {
1081
- "type": "string"
1082
- }
1083
- },
1084
- "exclude": {
1085
- "type": "array",
1086
- "items": {
1087
- "type": "string"
1088
- }
1089
- }
1090
- }
1091
- },
1092
- {
1093
- "const": "all",
1094
- "type": "string"
1095
- }
1096
- ]
1097
- },
1098
- "routes": {
1099
- "type": "object",
1100
- "properties": {
1101
- "bindings": {
1102
- "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.",
1103
- "deepVisibility": "frontend",
1104
- "type": "object",
1105
- "additionalProperties": {
1106
- "anyOf": [
1107
- {
1108
- "const": false,
1109
- "type": "boolean"
1110
- },
1111
- {
1112
- "type": "string"
1113
- }
1114
- ]
1115
- }
1116
- }
1117
- }
1118
- },
1119
- "extensions": {
1120
- "deepVisibility": "frontend",
1121
- "type": "array",
1122
- "items": {
1123
- "anyOf": [
1124
- {
1125
- "type": "object",
1126
- "additionalProperties": {
1127
- "anyOf": [
1128
- {
1129
- "type": "object",
1130
- "properties": {
1131
- "attachTo": {
1132
- "type": "object",
1133
- "properties": {
1134
- "id": {
1135
- "type": "string"
1136
- },
1137
- "input": {
1138
- "type": "string"
1139
- }
1140
- },
1141
- "required": [
1142
- "id",
1143
- "input"
1144
- ]
1145
- },
1146
- "disabled": {
1147
- "type": "boolean"
1148
- },
1149
- "config": {}
1150
- }
1151
- },
1152
- {
1153
- "type": "boolean"
1154
- }
1155
- ]
1156
- }
1157
- },
1158
- {
1159
- "type": "string"
1160
- }
1161
- ]
1162
- }
1163
- },
1164
- "pluginOverrides": {
1165
- "description": "This section enables you to override certain properties of specific or\ngroups of plugins.",
1166
- "deepVisibility": "frontend",
1167
- "type": "array",
1168
- "items": {
1169
- "type": "object",
1170
- "properties": {
1171
- "match": {
1172
- "description": "The criteria for matching plugins to override.",
1173
- "type": "object",
1174
- "properties": {
1175
- "pluginId": {
1176
- "description": "A pattern that is matched against the plugin ID.",
1177
- "type": "string"
1178
- },
1179
- "packageName": {
1180
- "description": "A pattern that is matched against the package name.",
1181
- "type": "string"
1182
- }
1183
- }
1184
- },
1185
- "info": {
1186
- "description": "Overrides individual top-level fields of the plugin info.",
1187
- "type": "object",
1188
- "properties": {
1189
- "description": {
1190
- "description": "Override the description of the plugin.",
1191
- "type": "string"
1192
- },
1193
- "ownerEntityRefs": {
1194
- "description": "Override the owner entity references of the plugin.",
1195
- "type": "array",
1196
- "items": {
1197
- "type": "string"
1198
- }
1199
- },
1200
- "links": {
1201
- "description": "Override the links of the plugin.",
1202
- "type": "array",
1203
- "items": {
1204
- "type": "object",
1205
- "properties": {
1206
- "title": {
1207
- "type": "string"
1208
- },
1209
- "url": {
1210
- "type": "string"
1211
- }
1212
- },
1213
- "required": [
1214
- "title",
1215
- "url"
1216
- ]
1217
- }
1218
- }
1219
- }
1220
- }
1221
- },
1222
- "required": [
1223
- "info"
1224
- ]
1225
- }
1226
- }
1227
- }
1228
- }
1229
- },
1230
- "$schema": "http://json-schema.org/draft-07/schema#"
1231
- },
1232
- "packageName": "@backstage/frontend-app-api"
1233
- },
1234
1244
  {
1235
1245
  "path": "../../plugins/catalog/config.d.ts",
1236
1246
  "value": {
@@ -2475,25 +2485,9 @@
2475
2485
  "description": "An optional Valkey client configuration. These options are passed to the `@keyv/valkey` client.",
2476
2486
  "type": "object",
2477
2487
  "properties": {
2478
- "namespace": {
2479
- "description": "Namespace for the current instance.",
2488
+ "keyPrefix": {
2489
+ "description": "Namespace and separator used for prefixing keys.",
2480
2490
  "type": "string"
2481
- },
2482
- "keyPrefixSeparator": {
2483
- "description": "Separator to use between namespace and key.",
2484
- "type": "string"
2485
- },
2486
- "clearBatchSize": {
2487
- "description": "Number of keys to delete in a single batch.",
2488
- "type": "number"
2489
- },
2490
- "useUnlink": {
2491
- "description": "Enable Unlink instead of using Del for clearing keys. This is more performant but may not be supported by all Redis versions.",
2492
- "type": "boolean"
2493
- },
2494
- "noNamespaceAffectsAll": {
2495
- "description": "Whether to allow clearing all keys when no namespace is set.\nIf set to true and no namespace is set, iterate() will return all keys.\nDefaults to `false`.",
2496
- "type": "boolean"
2497
2491
  }
2498
2492
  }
2499
2493
  },
@@ -1,4 +1,4 @@
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="color-scheme" content="light dark"/><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.0a0ee1fa.js"></script><script defer="defer" src="/static/module-material-ui.bc72d455.js"></script><script defer="defer" src="/static/module-lodash.7d4f904e.js"></script><script defer="defer" src="/static/module-date-fns.fe699224.js"></script><script defer="defer" src="/static/module-mui.375d6d62.js"></script><script defer="defer" src="/static/module-material-table.09813bc2.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-zod.4600b494.js"></script><script defer="defer" src="/static/module-react-dom.44002a3f.js"></script><script defer="defer" src="/static/module-i18next.685d0b2d.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer="defer" src="/static/module-remix-run.f9e8eadd.js"></script><script defer="defer" src="/static/vendor.2d7d5373.js"></script><script defer="defer" src="/static/main.d92cf3b9.js"></script><link href="/static/main.5f8bd308.css" rel="stylesheet"><script type="backstage.io/config">[
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="color-scheme" content="light dark"/><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.e43f5848.js"></script><script defer="defer" src="/static/module-material-ui.9517effb.js"></script><script defer="defer" src="/static/module-lodash.7d4f904e.js"></script><script defer="defer" src="/static/module-date-fns.fe699224.js"></script><script defer="defer" src="/static/module-mui.375d6d62.js"></script><script defer="defer" src="/static/module-material-table.5a3a2d93.js"></script><script defer="defer" src="/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer="defer" src="/static/module-zod.4600b494.js"></script><script defer="defer" src="/static/module-react-dom.44002a3f.js"></script><script defer="defer" src="/static/module-i18next.685d0b2d.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer="defer" src="/static/module-remix-run.f9e8eadd.js"></script><script defer="defer" src="/static/vendor.a4b20610.js"></script><script defer="defer" src="/static/main.b61055d4.js"></script><link href="/static/main.5f8bd308.css" rel="stylesheet"><script type="backstage.io/config">[
2
2
  {
3
3
  "context": "app-config.yaml",
4
4
  "data": {
@@ -43,7 +43,7 @@
43
43
  color="#5bbad5"
44
44
  />
45
45
  <title><%= config.getString('app.title') %></title>
46
- <meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.0a0ee1fa.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.bc72d455.js"></script><script defer src="<%= publicPath %>/static/module-lodash.7d4f904e.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.fe699224.js"></script><script defer src="<%= publicPath %>/static/module-mui.375d6d62.js"></script><script defer src="<%= publicPath %>/static/module-material-table.09813bc2.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-zod.4600b494.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.44002a3f.js"></script><script defer src="<%= publicPath %>/static/module-i18next.685d0b2d.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.f9e8eadd.js"></script><script defer src="<%= publicPath %>/static/vendor.2d7d5373.js"></script><script defer src="<%= publicPath %>/static/main.d92cf3b9.js"></script><link href="<%= publicPath %>/static/main.5f8bd308.css" rel="stylesheet"></head>
46
+ <meta name="backstage-app-mode" content="public"><meta name="backstage-public-path" content="<%= publicPath %>/"><script defer src="<%= publicPath %>/static/runtime.e43f5848.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.9517effb.js"></script><script defer src="<%= publicPath %>/static/module-lodash.7d4f904e.js"></script><script defer src="<%= publicPath %>/static/module-date-fns.fe699224.js"></script><script defer src="<%= publicPath %>/static/module-mui.375d6d62.js"></script><script defer src="<%= publicPath %>/static/module-material-table.5a3a2d93.js"></script><script defer src="<%= publicPath %>/static/module-micromark-core-commonmark.909b7d4e.js"></script><script defer src="<%= publicPath %>/static/module-zod.4600b494.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.44002a3f.js"></script><script defer src="<%= publicPath %>/static/module-i18next.685d0b2d.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.29de0c3a.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.f9e8eadd.js"></script><script defer src="<%= publicPath %>/static/vendor.a4b20610.js"></script><script defer src="<%= publicPath %>/static/main.b61055d4.js"></script><link href="<%= publicPath %>/static/main.5f8bd308.css" rel="stylesheet"></head>
47
47
  <body>
48
48
  <noscript>You need to enable JavaScript to run this app.</noscript>
49
49
  <div id="root"></div>
@@ -1,2 +1,2 @@
1
- "use strict";(self.webpackChunktechdocs_cli_embedded_app=self.webpackChunktechdocs_cli_embedded_app||[]).push([["1335"],{50010(e,t,i){i.d(t,{W:()=>n});let n=(0,i(97386).h)({id:"catalog",messages:{indexPage:{title:"{{orgName}} Catalog",createButtonTitle:"Create",supportButtonContent:"All your software catalog entities"},aboutCard:{title:"About",refreshButtonTitle:"Schedule entity refresh",editButtonTitle:"Edit Metadata",createSimilarButtonTitle:"Create something similar",refreshScheduledMessage:"Refresh scheduled",launchTemplate:"Launch Template",viewTechdocs:"View TechDocs",viewSource:"View Source",descriptionField:{label:"Description",value:"No description"},ownerField:{label:"Owner",value:"No Owner"},domainField:{label:"Domain",value:"No Domain"},systemField:{label:"System",value:"No System"},parentComponentField:{label:"Parent Component",value:"No Parent Component"},typeField:{label:"Type"},lifecycleField:{label:"Lifecycle"},tagsField:{label:"Tags",value:"No Tags"},targetsField:{label:"Targets"}},searchResultItem:{lifecycle:"Lifecycle",Owner:"Owner"},catalogTable:{warningPanelTitle:"Could not fetch catalog entities.",viewActionTitle:"View",editActionTitle:"Edit",starActionTitle:"Add to favorites",unStarActionTitle:"Remove from favorites"},dependencyOfComponentsCard:{title:"Dependency of components",emptyMessage:"No component depends on this component"},dependsOnComponentsCard:{title:"Depends on components",emptyMessage:"No component is a dependency of this component"},dependsOnResourcesCard:{title:"Depends on resources",emptyMessage:"No resource is a dependency of this component"},entityContextMenu:{copiedMessage:"Copied!",moreButtonTitle:"More",inspectMenuTitle:"Inspect entity",copyURLMenuTitle:"Copy entity URL",unregisterMenuTitle:"Unregister entity"},entityLabelsCard:{title:"Labels",emptyDescription:"No labels defined for this entity. You can add labels to your entity YAML as shown in the highlighted example below:",readMoreButtonTitle:"Read more"},entityLabels:{warningPanelTitle:"Entity not found",ownerLabel:"Owner",lifecycleLabel:"Lifecycle"},entityLinksCard:{title:"Links",emptyDescription:"No links defined for this entity. You can add links to your entity YAML as shown in the highlighted example below:",readMoreButtonTitle:"Read more"},entityNotFound:{title:"Entity was not found",description:"Want to help us build this? Check out our Getting Started documentation.",docButtonTitle:"DOCS"},deleteEntity:{dialogTitle:"Are you sure you want to delete this entity?",deleteButtonTitle:"Delete",cancelButtonTitle:"Cancel",description:"This entity is not referenced by any location and is therefore not receiving updates. Click here to delete."},entityProcessingErrorsDescription:"The error below originates from",entityRelationWarningDescription:"This entity has relations to other entities, which can't be found in the catalog.\n Entities not found are: ",hasComponentsCard:{title:"Has components",emptyMessage:"No component is part of this system"},hasResourcesCard:{title:"Has resources",emptyMessage:"No resource is part of this system"},hasSubcomponentsCard:{title:"Has subcomponents",emptyMessage:"No subcomponent is part of this component"},hasSubdomainsCard:{title:"Has subdomains",emptyMessage:"No subdomain is part of this domain"},hasSystemsCard:{title:"Has systems",emptyMessage:"No system is part of this domain"},relatedEntitiesCard:{emptyHelpLinkTitle:"Learn how to change this"},systemDiagramCard:{title:"System Diagram",description:"Use pinch & zoom to move around the diagram.",edgeLabels:{partOf:"part of",provides:"provides",dependsOn:"depends on"}}}})},50874(e,t,i){i.d(t,{CatalogSearchResultListItem:()=>y});var n=i(31085),o=i(9720),s=i(94390),a=i(68804),l=i(5951),r=i(72501),d=i(58837),c=i(60603),p=i(7613),m=i(50010),h=i(89595);let u=(0,d.A)({item:{display:"flex"},flexContainer:{flexWrap:"wrap"},itemText:{width:"100%",wordBreak:"break-all",marginBottom:"1rem"}},{name:"CatalogSearchResultListItem"});function y(e){let t=e.result,i=e.highlight,d=u(),{t:y}=(0,h.i)(m.W);return t?(0,n.jsxs)("div",{className:d.item,children:[e.icon&&(0,n.jsx)(a.A,{children:"function"==typeof e.icon?e.icon(t):e.icon}),(0,n.jsxs)("div",{className:d.flexContainer,children:[(0,n.jsx)(l.A,{className:d.itemText,primaryTypographyProps:{variant:"h6"},primary:(0,n.jsx)(c.N_,{noTrack:!0,to:t.location,children:i?.fields.title?(0,n.jsx)(p.e,{text:i.fields.title,preTag:i.preTag,postTag:i.postTag}):t.title}),secondary:(0,n.jsx)(r.A,{component:"span",style:{display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:e.lineClamp,overflow:"hidden"},color:"textSecondary",variant:"body2",children:i?.fields.text?(0,n.jsx)(p.e,{text:i.fields.text,preTag:i.preTag,postTag:i.postTag}):t.text})}),(0,n.jsxs)(o.A,{children:[t.kind&&(0,n.jsx)(s.A,{label:`Kind: ${t.kind}`,size:"small"}),t.type&&(0,n.jsx)(s.A,{label:`Type: ${t.type}`,size:"small"}),t.lifecycle&&(0,n.jsx)(s.A,{label:`${y("searchResultItem.lifecycle")}: ${t.lifecycle}`,size:"small"}),t.owner&&(0,n.jsx)(s.A,{label:`${y("searchResultItem.Owner")}: ${t.owner}`,size:"small"})]})]})]}):null}}}]);
2
- //# sourceMappingURL=1335.4269f82a.chunk.js.map
1
+ "use strict";(self.webpackChunktechdocs_cli_embedded_app=self.webpackChunktechdocs_cli_embedded_app||[]).push([["1335"],{50010(e,t,i){i.d(t,{W:()=>n});let n=(0,i(97386).h)({id:"catalog",messages:{indexPage:{title:"{{orgName}} Catalog",createButtonTitle:"Create",supportButtonContent:"All your software catalog entities"},aboutCard:{title:"About",refreshButtonTitle:"Schedule entity refresh",editButtonTitle:"Edit Metadata",createSimilarButtonTitle:"Create something similar",refreshScheduledMessage:"Refresh scheduled",launchTemplate:"Launch Template",viewTechdocs:"View TechDocs",viewSource:"View Source",descriptionField:{label:"Description",value:"No description"},ownerField:{label:"Owner",value:"No Owner"},domainField:{label:"Domain",value:"No Domain"},systemField:{label:"System",value:"No System"},parentComponentField:{label:"Parent Component",value:"No Parent Component"},typeField:{label:"Type"},lifecycleField:{label:"Lifecycle"},tagsField:{label:"Tags",value:"No Tags"},targetsField:{label:"Targets"}},searchResultItem:{lifecycle:"Lifecycle",Owner:"Owner"},catalogTable:{warningPanelTitle:"Could not fetch catalog entities.",viewActionTitle:"View",editActionTitle:"Edit",starActionTitle:"Add to favorites",unStarActionTitle:"Remove from favorites"},dependencyOfComponentsCard:{title:"Dependency of components",emptyMessage:"No component depends on this component"},dependsOnComponentsCard:{title:"Depends on components",emptyMessage:"No component is a dependency of this component"},dependsOnResourcesCard:{title:"Depends on resources",emptyMessage:"No resource is a dependency of this component"},entityContextMenu:{copiedMessage:"Copied!",moreButtonTitle:"More",inspectMenuTitle:"Inspect entity",copyURLMenuTitle:"Copy entity URL",unregisterMenuTitle:"Unregister entity"},entityLabelsCard:{title:"Labels",emptyDescription:"No labels defined for this entity. You can add labels to your entity YAML as shown in the highlighted example below:",readMoreButtonTitle:"Read more"},entityLabels:{warningPanelTitle:"Entity not found",ownerLabel:"Owner",lifecycleLabel:"Lifecycle"},entityLinksCard:{title:"Links",emptyDescription:"No links defined for this entity. You can add links to your entity YAML as shown in the highlighted example below:",readMoreButtonTitle:"Read more"},entityNotFound:{title:"Entity was not found",description:"Want to help us build this? Check out our Getting Started documentation.",docButtonTitle:"DOCS"},deleteEntity:{dialogTitle:"Are you sure you want to delete this entity?",deleteButtonTitle:"Delete",cancelButtonTitle:"Cancel",description:"This entity is not referenced by any location and is therefore not receiving updates. Click here to delete."},entityProcessingErrorsDescription:"The error below originates from",entityRelationWarningDescription:"This entity has relations to other entities, which can't be found in the catalog.\n Entities not found are: ",hasComponentsCard:{title:"Has components",emptyMessage:"No component is part of this system"},hasResourcesCard:{title:"Has resources",emptyMessage:"No resource is part of this system"},hasSubcomponentsCard:{title:"Has subcomponents",emptyMessage:"No subcomponent is part of this component"},hasSubdomainsCard:{title:"Has subdomains",emptyMessage:"No subdomain is part of this domain"},hasSystemsCard:{title:"Has systems",emptyMessage:"No system is part of this domain"},relatedEntitiesCard:{emptyHelpLinkTitle:"Learn how to change this"},systemDiagramCard:{title:"System Diagram",description:"Use pinch & zoom to move around the diagram.",edgeLabels:{partOf:"part of",provides:"provides",dependsOn:"depends on"}}}})},50874(e,t,i){i.d(t,{CatalogSearchResultListItem:()=>y});var n=i(31085),o=i(9720),s=i(94390),a=i(46423),l=i(5951),r=i(72501),d=i(58837),c=i(60603),p=i(7613),m=i(50010),h=i(89595);let u=(0,d.A)({item:{display:"flex"},flexContainer:{flexWrap:"wrap"},itemText:{width:"100%",wordBreak:"break-all",marginBottom:"1rem"}},{name:"CatalogSearchResultListItem"});function y(e){let t=e.result,i=e.highlight,d=u(),{t:y}=(0,h.i)(m.W);return t?(0,n.jsxs)("div",{className:d.item,children:[e.icon&&(0,n.jsx)(a.A,{children:"function"==typeof e.icon?e.icon(t):e.icon}),(0,n.jsxs)("div",{className:d.flexContainer,children:[(0,n.jsx)(l.A,{className:d.itemText,primaryTypographyProps:{variant:"h6"},primary:(0,n.jsx)(c.N_,{noTrack:!0,to:t.location,children:i?.fields.title?(0,n.jsx)(p.e,{text:i.fields.title,preTag:i.preTag,postTag:i.postTag}):t.title}),secondary:(0,n.jsx)(r.A,{component:"span",style:{display:"-webkit-box",WebkitBoxOrient:"vertical",WebkitLineClamp:e.lineClamp,overflow:"hidden"},color:"textSecondary",variant:"body2",children:i?.fields.text?(0,n.jsx)(p.e,{text:i.fields.text,preTag:i.preTag,postTag:i.postTag}):t.text})}),(0,n.jsxs)(o.A,{children:[t.kind&&(0,n.jsx)(s.A,{label:`Kind: ${t.kind}`,size:"small"}),t.type&&(0,n.jsx)(s.A,{label:`Type: ${t.type}`,size:"small"}),t.lifecycle&&(0,n.jsx)(s.A,{label:`${y("searchResultItem.lifecycle")}: ${t.lifecycle}`,size:"small"}),t.owner&&(0,n.jsx)(s.A,{label:`${y("searchResultItem.Owner")}: ${t.owner}`,size:"small"})]})]})]}):null}}}]);
2
+ //# sourceMappingURL=1335.18ed80ea.chunk.js.map