@techdocs/cli 0.0.0-nightly-20241202023706 → 0.0.0-nightly-20241204023801
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 +14 -3
- package/dist/embedded-app/.config-schema.json +44 -2
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/index.html.tmpl +1 -1
- package/dist/embedded-app/static/main.9a54a877.js +553 -0
- package/dist/embedded-app/static/main.9a54a877.js.map +1 -0
- package/dist/embedded-app/static/{runtime.b927bdd3.js → runtime.9a54a877.js} +1 -1
- package/dist/embedded-app/static/{runtime.b927bdd3.js.map → runtime.9a54a877.js.map} +1 -1
- package/dist/embedded-app/static/{vendor.b927bdd3.js → vendor.9a54a877.js} +1 -1
- package/dist/embedded-app/static/{vendor.b927bdd3.js.map → vendor.9a54a877.js.map} +1 -1
- package/dist/package.json.cjs.js +1 -1
- package/package.json +4 -4
- package/dist/embedded-app/static/main.b927bdd3.js +0 -553
- package/dist/embedded-app/static/main.b927bdd3.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,27 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20241204023801
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/backend-defaults@0.0.0-nightly-
|
|
9
|
-
- @backstage/plugin-techdocs-node@0.0.0-nightly-
|
|
8
|
+
- @backstage/backend-defaults@0.0.0-nightly-20241204023801
|
|
9
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20241204023801
|
|
10
10
|
- @backstage/catalog-model@1.7.1
|
|
11
11
|
- @backstage/cli-common@0.1.15
|
|
12
12
|
- @backstage/config@1.3.0
|
|
13
13
|
|
|
14
|
+
## 1.8.24-next.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-defaults@0.6.0-next.1
|
|
20
|
+
- @backstage/catalog-model@1.7.1
|
|
21
|
+
- @backstage/cli-common@0.1.15
|
|
22
|
+
- @backstage/config@1.3.0
|
|
23
|
+
- @backstage/plugin-techdocs-node@1.12.15-next.1
|
|
24
|
+
|
|
14
25
|
## 1.8.24-next.0
|
|
15
26
|
|
|
16
27
|
### Patch Changes
|
|
@@ -2238,6 +2238,24 @@
|
|
|
2238
2238
|
"description": "Base database connection string, or object with individual connection properties",
|
|
2239
2239
|
"visibility": "secret",
|
|
2240
2240
|
"anyOf": [
|
|
2241
|
+
{
|
|
2242
|
+
"type": "object",
|
|
2243
|
+
"properties": {
|
|
2244
|
+
"type": {
|
|
2245
|
+
"description": "The specific config for cloudsql connections",
|
|
2246
|
+
"type": "string",
|
|
2247
|
+
"const": "cloudsql"
|
|
2248
|
+
},
|
|
2249
|
+
"instance": {
|
|
2250
|
+
"description": "The instance connection name for the cloudsql instance, e.g. `project:region:instance`",
|
|
2251
|
+
"type": "string"
|
|
2252
|
+
}
|
|
2253
|
+
},
|
|
2254
|
+
"required": [
|
|
2255
|
+
"instance",
|
|
2256
|
+
"type"
|
|
2257
|
+
]
|
|
2258
|
+
},
|
|
2241
2259
|
{
|
|
2242
2260
|
"type": "object",
|
|
2243
2261
|
"additionalProperties": {},
|
|
@@ -2310,8 +2328,32 @@
|
|
|
2310
2328
|
"anyOf": [
|
|
2311
2329
|
{
|
|
2312
2330
|
"type": "object",
|
|
2313
|
-
"properties": {
|
|
2314
|
-
|
|
2331
|
+
"properties": {
|
|
2332
|
+
"type": {
|
|
2333
|
+
"description": "The specific config for cloudsql connections",
|
|
2334
|
+
"type": "string",
|
|
2335
|
+
"const": "cloudsql"
|
|
2336
|
+
},
|
|
2337
|
+
"instance": {
|
|
2338
|
+
"description": "The instance connection name for the cloudsql instance, e.g. `project:region:instance`",
|
|
2339
|
+
"type": "string"
|
|
2340
|
+
}
|
|
2341
|
+
},
|
|
2342
|
+
"required": [
|
|
2343
|
+
"instance",
|
|
2344
|
+
"type"
|
|
2345
|
+
]
|
|
2346
|
+
},
|
|
2347
|
+
{
|
|
2348
|
+
"type": "object",
|
|
2349
|
+
"additionalProperties": {},
|
|
2350
|
+
"properties": {
|
|
2351
|
+
"password": {
|
|
2352
|
+
"description": "Password that belongs to the client User",
|
|
2353
|
+
"visibility": "secret",
|
|
2354
|
+
"type": "string"
|
|
2355
|
+
}
|
|
2356
|
+
}
|
|
2315
2357
|
},
|
|
2316
2358
|
{
|
|
2317
2359
|
"type": "string"
|
|
@@ -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.9a54a877.js"></script><script defer="defer" src="/static/module-material-ui.05c1a36a.js"></script><script defer="defer" src="/static/module-lodash.aa647045.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.84f30b2f.js"></script><script defer="defer" src="/static/module-react-dom.42a304d3.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.b474cfe9.js"></script><script defer="defer" src="/static/module-zod.4f2eeb8c.js"></script><script defer="defer" src="/static/module-i18next.f50c1612.js"></script><script defer="defer" src="/static/module-remix-run.ba6397c2.js"></script><script defer="defer" src="/static/vendor.9a54a877.js"></script><script defer="defer" src="/static/main.9a54a877.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.9a54a877.js"></script><script defer src="<%= publicPath %>/static/module-material-ui.05c1a36a.js"></script><script defer src="<%= publicPath %>/static/module-lodash.aa647045.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.84f30b2f.js"></script><script defer src="<%= publicPath %>/static/module-react-dom.42a304d3.js"></script><script defer src="<%= publicPath %>/static/module-react-beautiful-dnd.b474cfe9.js"></script><script defer src="<%= publicPath %>/static/module-zod.4f2eeb8c.js"></script><script defer src="<%= publicPath %>/static/module-i18next.f50c1612.js"></script><script defer src="<%= publicPath %>/static/module-remix-run.ba6397c2.js"></script><script defer src="<%= publicPath %>/static/vendor.9a54a877.js"></script><script defer src="<%= publicPath %>/static/main.9a54a877.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>
|