@techdocs/cli 0.0.0-nightly-20240608021631 → 0.0.0-nightly-20240609021850
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 +90 -90
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# @techdocs/cli
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240609021850
|
|
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/cli-common@0.0.0-nightly-
|
|
8
|
+
- @backstage/backend-common@0.0.0-nightly-20240609021850
|
|
9
|
+
- @backstage/plugin-techdocs-node@0.0.0-nightly-20240609021850
|
|
10
|
+
- @backstage/cli-common@0.0.0-nightly-20240609021850
|
|
11
11
|
- @backstage/catalog-model@1.5.0
|
|
12
12
|
- @backstage/config@1.2.0
|
|
13
13
|
|
|
@@ -125,96 +125,6 @@
|
|
|
125
125
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
|
-
{
|
|
129
|
-
"path": "../core-components/config.d.ts",
|
|
130
|
-
"value": {
|
|
131
|
-
"type": "object",
|
|
132
|
-
"properties": {
|
|
133
|
-
"auth": {
|
|
134
|
-
"type": "object",
|
|
135
|
-
"properties": {
|
|
136
|
-
"autologout": {
|
|
137
|
-
"description": "Autologout feature configuration",
|
|
138
|
-
"type": "object",
|
|
139
|
-
"properties": {
|
|
140
|
-
"enabled": {
|
|
141
|
-
"description": "Enable or disable the autologout feature",
|
|
142
|
-
"visibility": "frontend",
|
|
143
|
-
"type": "boolean"
|
|
144
|
-
},
|
|
145
|
-
"idleTimeoutMinutes": {
|
|
146
|
-
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
147
|
-
"visibility": "frontend",
|
|
148
|
-
"type": "number"
|
|
149
|
-
},
|
|
150
|
-
"promptBeforeIdleSeconds": {
|
|
151
|
-
"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.",
|
|
152
|
-
"visibility": "frontend",
|
|
153
|
-
"type": "number"
|
|
154
|
-
},
|
|
155
|
-
"useWorkerTimers": {
|
|
156
|
-
"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.",
|
|
157
|
-
"visibility": "frontend",
|
|
158
|
-
"type": "boolean"
|
|
159
|
-
},
|
|
160
|
-
"logoutIfDisconnected": {
|
|
161
|
-
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
162
|
-
"visibility": "frontend",
|
|
163
|
-
"type": "boolean"
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
},
|
|
170
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
171
|
-
}
|
|
172
|
-
},
|
|
173
|
-
{
|
|
174
|
-
"path": "../../plugins/techdocs/config.d.ts",
|
|
175
|
-
"value": {
|
|
176
|
-
"type": "object",
|
|
177
|
-
"properties": {
|
|
178
|
-
"techdocs": {
|
|
179
|
-
"description": "Configuration options for the techdocs plugin",
|
|
180
|
-
"type": "object",
|
|
181
|
-
"properties": {
|
|
182
|
-
"builder": {
|
|
183
|
-
"description": "Documentation building process depends on the builder attr",
|
|
184
|
-
"visibility": "frontend",
|
|
185
|
-
"enum": [
|
|
186
|
-
"external",
|
|
187
|
-
"local"
|
|
188
|
-
],
|
|
189
|
-
"type": "string"
|
|
190
|
-
},
|
|
191
|
-
"legacyUseCaseSensitiveTripletPaths": {
|
|
192
|
-
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
193
|
-
"visibility": "frontend",
|
|
194
|
-
"type": "boolean"
|
|
195
|
-
},
|
|
196
|
-
"sanitizer": {
|
|
197
|
-
"type": "object",
|
|
198
|
-
"properties": {
|
|
199
|
-
"allowedIframeHosts": {
|
|
200
|
-
"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",
|
|
201
|
-
"visibility": "frontend",
|
|
202
|
-
"type": "array",
|
|
203
|
-
"items": {
|
|
204
|
-
"type": "string"
|
|
205
|
-
}
|
|
206
|
-
}
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
}
|
|
211
|
-
},
|
|
212
|
-
"required": [
|
|
213
|
-
"techdocs"
|
|
214
|
-
],
|
|
215
|
-
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
128
|
{
|
|
219
129
|
"path": "../core-app-api/config.d.ts",
|
|
220
130
|
"value": {
|
|
@@ -423,6 +333,96 @@
|
|
|
423
333
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
424
334
|
}
|
|
425
335
|
},
|
|
336
|
+
{
|
|
337
|
+
"path": "../core-components/config.d.ts",
|
|
338
|
+
"value": {
|
|
339
|
+
"type": "object",
|
|
340
|
+
"properties": {
|
|
341
|
+
"auth": {
|
|
342
|
+
"type": "object",
|
|
343
|
+
"properties": {
|
|
344
|
+
"autologout": {
|
|
345
|
+
"description": "Autologout feature configuration",
|
|
346
|
+
"type": "object",
|
|
347
|
+
"properties": {
|
|
348
|
+
"enabled": {
|
|
349
|
+
"description": "Enable or disable the autologout feature",
|
|
350
|
+
"visibility": "frontend",
|
|
351
|
+
"type": "boolean"
|
|
352
|
+
},
|
|
353
|
+
"idleTimeoutMinutes": {
|
|
354
|
+
"description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
|
|
355
|
+
"visibility": "frontend",
|
|
356
|
+
"type": "number"
|
|
357
|
+
},
|
|
358
|
+
"promptBeforeIdleSeconds": {
|
|
359
|
+
"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.",
|
|
360
|
+
"visibility": "frontend",
|
|
361
|
+
"type": "number"
|
|
362
|
+
},
|
|
363
|
+
"useWorkerTimers": {
|
|
364
|
+
"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.",
|
|
365
|
+
"visibility": "frontend",
|
|
366
|
+
"type": "boolean"
|
|
367
|
+
},
|
|
368
|
+
"logoutIfDisconnected": {
|
|
369
|
+
"description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
|
|
370
|
+
"visibility": "frontend",
|
|
371
|
+
"type": "boolean"
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"path": "../../plugins/techdocs/config.d.ts",
|
|
383
|
+
"value": {
|
|
384
|
+
"type": "object",
|
|
385
|
+
"properties": {
|
|
386
|
+
"techdocs": {
|
|
387
|
+
"description": "Configuration options for the techdocs plugin",
|
|
388
|
+
"type": "object",
|
|
389
|
+
"properties": {
|
|
390
|
+
"builder": {
|
|
391
|
+
"description": "Documentation building process depends on the builder attr",
|
|
392
|
+
"visibility": "frontend",
|
|
393
|
+
"enum": [
|
|
394
|
+
"external",
|
|
395
|
+
"local"
|
|
396
|
+
],
|
|
397
|
+
"type": "string"
|
|
398
|
+
},
|
|
399
|
+
"legacyUseCaseSensitiveTripletPaths": {
|
|
400
|
+
"description": "Allows fallback to case-sensitive triplets in case of migration issues.",
|
|
401
|
+
"visibility": "frontend",
|
|
402
|
+
"type": "boolean"
|
|
403
|
+
},
|
|
404
|
+
"sanitizer": {
|
|
405
|
+
"type": "object",
|
|
406
|
+
"properties": {
|
|
407
|
+
"allowedIframeHosts": {
|
|
408
|
+
"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",
|
|
409
|
+
"visibility": "frontend",
|
|
410
|
+
"type": "array",
|
|
411
|
+
"items": {
|
|
412
|
+
"type": "string"
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"required": [
|
|
421
|
+
"techdocs"
|
|
422
|
+
],
|
|
423
|
+
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
426
|
{
|
|
427
427
|
"path": "../integration/config.d.ts",
|
|
428
428
|
"value": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@techdocs/cli",
|
|
3
3
|
"description": "Utility CLI for managing TechDocs sites in Backstage.",
|
|
4
|
-
"version": "0.0.0-nightly-
|
|
4
|
+
"version": "0.0.0-nightly-20240609021850",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"techdocs-cli": "bin/techdocs-cli"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
38
|
+
"@backstage/cli": "^0.0.0-nightly-20240609021850",
|
|
39
39
|
"@types/commander": "^2.12.2",
|
|
40
40
|
"@types/fs-extra": "^11.0.0",
|
|
41
41
|
"@types/http-proxy": "^1.17.4",
|
|
@@ -56,11 +56,11 @@
|
|
|
56
56
|
"ext": "ts"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@backstage/backend-common": "^0.0.0-nightly-
|
|
59
|
+
"@backstage/backend-common": "^0.0.0-nightly-20240609021850",
|
|
60
60
|
"@backstage/catalog-model": "^1.5.0",
|
|
61
|
-
"@backstage/cli-common": "^0.0.0-nightly-
|
|
61
|
+
"@backstage/cli-common": "^0.0.0-nightly-20240609021850",
|
|
62
62
|
"@backstage/config": "^1.2.0",
|
|
63
|
-
"@backstage/plugin-techdocs-node": "^0.0.0-nightly-
|
|
63
|
+
"@backstage/plugin-techdocs-node": "^0.0.0-nightly-20240609021850",
|
|
64
64
|
"@types/dockerode": "^3.3.0",
|
|
65
65
|
"commander": "^12.0.0",
|
|
66
66
|
"dockerode": "^4.0.0",
|