@techdocs/cli 0.0.0-nightly-20240208020940 → 0.0.0-nightly-20240210020848
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 +4 -4
- package/dist/embedded-app/.config-schema.json +93 -93
- package/dist/embedded-app/index.html +1 -1
- package/dist/embedded-app/static/main.d17ae597.js +495 -0
- package/dist/embedded-app/static/main.d17ae597.js.map +1 -0
- package/dist/embedded-app/static/{runtime.340a8a90.js → runtime.d17ae597.js} +1 -1
- package/dist/embedded-app/static/{runtime.340a8a90.js.map → runtime.d17ae597.js.map} +1 -1
- package/dist/embedded-app/static/{vendor.340a8a90.js → vendor.d17ae597.js} +38 -38
- package/dist/embedded-app/static/vendor.d17ae597.js.map +1 -0
- package/package.json +5 -5
- package/dist/embedded-app/static/main.340a8a90.js +0 -495
- package/dist/embedded-app/static/main.340a8a90.js.map +0 -1
- package/dist/embedded-app/static/vendor.340a8a90.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240210020848
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- d8d243c: fix: mkdocs parameter casing
|
|
8
8
|
- Updated dependencies
|
|
9
|
-
- @backstage/backend-common@0.0.0-nightly-
|
|
10
|
-
- @backstage/catalog-model@0.0.0-nightly-
|
|
11
|
-
- @backstage/plugin-techdocs-node@0.0.0-nightly-
|
|
9
|
+
- @backstage/backend-common@0.0.0-nightly-20240210020848
|
|
10
|
+
- @backstage/catalog-model@0.0.0-nightly-20240210020848
|
|
11
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20240210020848
|
|
12
12
|
- @backstage/cli-common@0.1.13
|
|
13
13
|
- @backstage/config@1.1.1
|
|
14
14
|
|
|
@@ -115,6 +115,99 @@
|
|
|
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
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"path": "../../plugins/techdocs/config.d.ts",
|
|
165
|
+
"value": {
|
|
166
|
+
"type": "object",
|
|
167
|
+
"properties": {
|
|
168
|
+
"techdocs": {
|
|
169
|
+
"description": "Configuration options for the techdocs plugin",
|
|
170
|
+
"type": "object",
|
|
171
|
+
"properties": {
|
|
172
|
+
"builder": {
|
|
173
|
+
"description": "Documentation building process depends on the builder attr",
|
|
174
|
+
"visibility": "frontend",
|
|
175
|
+
"enum": [
|
|
176
|
+
"external",
|
|
177
|
+
"local"
|
|
178
|
+
],
|
|
179
|
+
"type": "string"
|
|
180
|
+
},
|
|
181
|
+
"legacyUseCaseSensitiveTripletPaths": {
|
|
182
|
+
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
183
|
+
"visibility": "frontend",
|
|
184
|
+
"type": "boolean"
|
|
185
|
+
},
|
|
186
|
+
"sanitizer": {
|
|
187
|
+
"type": "object",
|
|
188
|
+
"properties": {
|
|
189
|
+
"allowedIframeHosts": {
|
|
190
|
+
"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",
|
|
191
|
+
"visibility": "frontend",
|
|
192
|
+
"type": "array",
|
|
193
|
+
"items": {
|
|
194
|
+
"type": "string"
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"required": [
|
|
201
|
+
"builder"
|
|
202
|
+
]
|
|
203
|
+
}
|
|
204
|
+
},
|
|
205
|
+
"required": [
|
|
206
|
+
"techdocs"
|
|
207
|
+
],
|
|
208
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
209
|
+
}
|
|
210
|
+
},
|
|
118
211
|
{
|
|
119
212
|
"path": "../core-app-api/config.d.ts",
|
|
120
213
|
"value": {
|
|
@@ -323,99 +416,6 @@
|
|
|
323
416
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
324
417
|
}
|
|
325
418
|
},
|
|
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
|
-
{
|
|
372
|
-
"path": "../../plugins/techdocs/config.d.ts",
|
|
373
|
-
"value": {
|
|
374
|
-
"type": "object",
|
|
375
|
-
"properties": {
|
|
376
|
-
"techdocs": {
|
|
377
|
-
"description": "Configuration options for the techdocs plugin",
|
|
378
|
-
"type": "object",
|
|
379
|
-
"properties": {
|
|
380
|
-
"builder": {
|
|
381
|
-
"description": "Documentation building process depends on the builder attr",
|
|
382
|
-
"visibility": "frontend",
|
|
383
|
-
"enum": [
|
|
384
|
-
"external",
|
|
385
|
-
"local"
|
|
386
|
-
],
|
|
387
|
-
"type": "string"
|
|
388
|
-
},
|
|
389
|
-
"legacyUseCaseSensitiveTripletPaths": {
|
|
390
|
-
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
391
|
-
"visibility": "frontend",
|
|
392
|
-
"type": "boolean"
|
|
393
|
-
},
|
|
394
|
-
"sanitizer": {
|
|
395
|
-
"type": "object",
|
|
396
|
-
"properties": {
|
|
397
|
-
"allowedIframeHosts": {
|
|
398
|
-
"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",
|
|
399
|
-
"visibility": "frontend",
|
|
400
|
-
"type": "array",
|
|
401
|
-
"items": {
|
|
402
|
-
"type": "string"
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
|
-
}
|
|
406
|
-
}
|
|
407
|
-
},
|
|
408
|
-
"required": [
|
|
409
|
-
"builder"
|
|
410
|
-
]
|
|
411
|
-
}
|
|
412
|
-
},
|
|
413
|
-
"required": [
|
|
414
|
-
"techdocs"
|
|
415
|
-
],
|
|
416
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
417
|
-
}
|
|
418
|
-
},
|
|
419
419
|
{
|
|
420
420
|
"path": "../integration/config.d.ts",
|
|
421
421
|
"value": {
|
|
@@ -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.d17ae597.js"></script><script defer="defer" src="/static/module-material-ui.fdf5a982.js"></script><script defer="defer" src="/static/module-lodash.75bd02eb.js"></script><script defer="defer" src="/static/module-material-table.a4131970.js"></script><script defer="defer" src="/static/module-react-dom.4b091165.js"></script><script defer="defer" src="/static/module-react-router.07bc98eb.js"></script><script defer="defer" src="/static/module-react-router-dom.dd995f7e.js"></script><script defer="defer" src="/static/module-react-beautiful-dnd.ee8b49bf.js"></script><script defer="defer" src="/static/module-zod.8c2375e9.js"></script><script defer="defer" src="/static/module-i18next.0b23130f.js"></script><script defer="defer" src="/static/vendor.d17ae597.js"></script><script defer="defer" src="/static/main.d17ae597.js"></script></head><body><noscript>You need to enable JavaScript to run this app.</noscript><div id="root"></div></body></html>
|