@techdocs/cli 0.0.0-nightly-20240222020948 → 0.0.0-nightly-20240224020839
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 +5 -5
- package/dist/embedded-app/.config-schema.json +59 -45
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/static/{main.c5ce453e.js → main.93c488cb.js} +2 -2
- package/dist/embedded-app/static/main.93c488cb.js.map +1 -0
- package/dist/embedded-app/static/{runtime.c5ce453e.js → runtime.93c488cb.js} +1 -1
- package/dist/embedded-app/static/{runtime.c5ce453e.js.map → runtime.93c488cb.js.map} +1 -1
- package/dist/embedded-app/static/{vendor.c5ce453e.js → vendor.93c488cb.js} +2 -2
- package/dist/embedded-app/static/vendor.93c488cb.js.map +1 -0
- package/package.json +6 -6
- package/dist/embedded-app/static/main.c5ce453e.js.map +0 -1
- package/dist/embedded-app/static/vendor.c5ce453e.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240224020839
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- Updated dependencies
|
|
8
|
-
- @backstage/backend-common@0.0.0-nightly-
|
|
9
|
-
- @backstage/plugin-techdocs-node@0.0.0-nightly-
|
|
10
|
-
- @backstage/catalog-model@
|
|
8
|
+
- @backstage/backend-common@0.0.0-nightly-20240224020839
|
|
9
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20240224020839
|
|
10
|
+
- @backstage/catalog-model@0.0.0-nightly-20240224020839
|
|
11
|
+
- @backstage/config@0.0.0-nightly-20240224020839
|
|
11
12
|
- @backstage/cli-common@0.1.13
|
|
12
|
-
- @backstage/config@1.1.1
|
|
13
13
|
|
|
14
14
|
## 1.8.2
|
|
15
15
|
|
|
@@ -115,6 +115,51 @@
|
|
|
115
115
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
116
116
|
}
|
|
117
117
|
},
|
|
118
|
+
{
|
|
119
|
+
"path": "../core-components/config.d.ts",
|
|
120
|
+
"value": {
|
|
121
|
+
"type": "object",
|
|
122
|
+
"properties": {
|
|
123
|
+
"auth": {
|
|
124
|
+
"type": "object",
|
|
125
|
+
"properties": {
|
|
126
|
+
"autologout": {
|
|
127
|
+
"description": "Autologout feature configuration",
|
|
128
|
+
"type": "object",
|
|
129
|
+
"properties": {
|
|
130
|
+
"enabled": {
|
|
131
|
+
"description": "Enable or disable the autologout feature",
|
|
132
|
+
"visibility": "frontend",
|
|
133
|
+
"type": "boolean"
|
|
134
|
+
},
|
|
135
|
+
"idleTimeoutMinutes": {
|
|
136
|
+
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
137
|
+
"visibility": "frontend",
|
|
138
|
+
"type": "number"
|
|
139
|
+
},
|
|
140
|
+
"promptBeforeIdleSeconds": {
|
|
141
|
+
"description": "Number of seconds before the idle timeout where the user will be asked if it's still active.\nA dialog will be shown.\nDefault is 10 seconds.\nSet to 0 seconds to disable the prompt.",
|
|
142
|
+
"visibility": "frontend",
|
|
143
|
+
"type": "number"
|
|
144
|
+
},
|
|
145
|
+
"useWorkerTimers": {
|
|
146
|
+
"description": "Enable/disable the usage of worker thread timers instead of main thread timers.\nDefault is true.\nIf you experience some browser incompatibility, you may try to set this to false.",
|
|
147
|
+
"visibility": "frontend",
|
|
148
|
+
"type": "boolean"
|
|
149
|
+
},
|
|
150
|
+
"logoutIfDisconnected": {
|
|
151
|
+
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
152
|
+
"visibility": "frontend",
|
|
153
|
+
"type": "boolean"
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
118
163
|
{
|
|
119
164
|
"path": "../core-app-api/config.d.ts",
|
|
120
165
|
"value": {
|
|
@@ -323,51 +368,6 @@
|
|
|
323
368
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
324
369
|
}
|
|
325
370
|
},
|
|
326
|
-
{
|
|
327
|
-
"path": "../core-components/config.d.ts",
|
|
328
|
-
"value": {
|
|
329
|
-
"type": "object",
|
|
330
|
-
"properties": {
|
|
331
|
-
"auth": {
|
|
332
|
-
"type": "object",
|
|
333
|
-
"properties": {
|
|
334
|
-
"autologout": {
|
|
335
|
-
"description": "Autologout feature configuration",
|
|
336
|
-
"type": "object",
|
|
337
|
-
"properties": {
|
|
338
|
-
"enabled": {
|
|
339
|
-
"description": "Enable or disable the autologout feature",
|
|
340
|
-
"visibility": "frontend",
|
|
341
|
-
"type": "boolean"
|
|
342
|
-
},
|
|
343
|
-
"idleTimeoutMinutes": {
|
|
344
|
-
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
345
|
-
"visibility": "frontend",
|
|
346
|
-
"type": "number"
|
|
347
|
-
},
|
|
348
|
-
"promptBeforeIdleSeconds": {
|
|
349
|
-
"description": "Number of seconds before the idle timeout where the user will be asked if it's still active.\nA dialog will be shown.\nDefault is 10 seconds.\nSet to 0 seconds to disable the prompt.",
|
|
350
|
-
"visibility": "frontend",
|
|
351
|
-
"type": "number"
|
|
352
|
-
},
|
|
353
|
-
"useWorkerTimers": {
|
|
354
|
-
"description": "Enable/disable the usage of worker thread timers instead of main thread timers.\nDefault is true.\nIf you experience some browser incompatibility, you may try to set this to false.",
|
|
355
|
-
"visibility": "frontend",
|
|
356
|
-
"type": "boolean"
|
|
357
|
-
},
|
|
358
|
-
"logoutIfDisconnected": {
|
|
359
|
-
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
360
|
-
"visibility": "frontend",
|
|
361
|
-
"type": "boolean"
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
}
|
|
367
|
-
},
|
|
368
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
369
|
-
}
|
|
370
|
-
},
|
|
371
371
|
{
|
|
372
372
|
"path": "../../plugins/techdocs/config.d.ts",
|
|
373
373
|
"value": {
|
|
@@ -1475,6 +1475,20 @@
|
|
|
1475
1475
|
"value": {
|
|
1476
1476
|
"type": "object",
|
|
1477
1477
|
"properties": {
|
|
1478
|
+
"backend": {
|
|
1479
|
+
"type": "object",
|
|
1480
|
+
"properties": {
|
|
1481
|
+
"auth": {
|
|
1482
|
+
"type": "object",
|
|
1483
|
+
"properties": {
|
|
1484
|
+
"dangerouslyDisableDefaultAuthPolicy": {
|
|
1485
|
+
"description": "This disables the otherwise default auth policy, which requires all\nrequests to be authenticated with either user or service credentials.\n\nDisabling this check means that the backend will no longer block\nunauthenticated requests, but instead allow them to pass through to\nplugins.\n\nIf permissions are enabled, unauthenticated requests will be treated\nexactly as such, leaving it to the permission policy to determine what\npermissions should be allowed for an unauthenticated identity. Note\nthat this will also apply to service-to-service calls between plugins\nunless you configure credentials for service calls.",
|
|
1486
|
+
"type": "boolean"
|
|
1487
|
+
}
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
}
|
|
1491
|
+
},
|
|
1478
1492
|
"discovery": {
|
|
1479
1493
|
"description": "Discovery options.",
|
|
1480
1494
|
"type": "object",
|
|
@@ -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 platform 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><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 platform 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><script defer="defer" src="/static/runtime.93c488cb.js"></script><script defer="defer" src="/static/module-material-ui.8c838e72.js"></script><script defer="defer" src="/static/module-lodash.a94db66d.js"></script><script defer="defer" src="/static/module-material-table.7d74b785.js"></script><script defer="defer" src="/static/module-react-dom.266912b1.js"></script><script defer="defer" src="/static/module-react-router.296c491a.js"></script><script defer="defer" src="/static/module-react-router-dom.3fde9fd7.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.d141b9e2.js"></script><script defer="defer" src="/static/module-zod.e526c254.js"></script><script defer="defer" src="/static/module-i18next.b1663d5a.js"></script><script defer="defer" src="/static/vendor.93c488cb.js"></script><script defer="defer" src="/static/main.93c488cb.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|