@techdocs/cli 0.0.0-nightly-20240201021259 → 0.0.0-nightly-20240203020827

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 CHANGED
@@ -1,14 +1,14 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20240201021259
3
+ ## 0.0.0-nightly-20240203020827
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-20240201021259
10
- - @backstage/catalog-model@0.0.0-nightly-20240201021259
11
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20240201021259
9
+ - @backstage/backend-common@0.0.0-nightly-20240203020827
10
+ - @backstage/catalog-model@0.0.0-nightly-20240203020827
11
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20240203020827
12
12
  - @backstage/cli-common@0.1.13
13
13
  - @backstage/config@1.1.1
14
14
 
@@ -323,6 +323,51 @@
323
323
  "$schema": "http://json-schema.org/draft-07/schema#"
324
324
  }
325
325
  },
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
+ },
326
371
  {
327
372
  "path": "../../plugins/techdocs/config.d.ts",
328
373
  "value": {
@@ -371,51 +416,6 @@
371
416
  "$schema": "http://json-schema.org/draft-07/schema#"
372
417
  }
373
418
  },
374
- {
375
- "path": "../core-components/config.d.ts",
376
- "value": {
377
- "type": "object",
378
- "properties": {
379
- "auth": {
380
- "type": "object",
381
- "properties": {
382
- "autologout": {
383
- "description": "Autologout feature configuration",
384
- "type": "object",
385
- "properties": {
386
- "enabled": {
387
- "description": "Enable or disable the autologout feature",
388
- "visibility": "frontend",
389
- "type": "boolean"
390
- },
391
- "idleTimeoutMinutes": {
392
- "description": "Number of minutes after which the inactive user is logged out automatically.\nDefault is 60 minutes (1 hour)",
393
- "visibility": "frontend",
394
- "type": "number"
395
- },
396
- "promptBeforeIdleSeconds": {
397
- "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.",
398
- "visibility": "frontend",
399
- "type": "number"
400
- },
401
- "useWorkerTimers": {
402
- "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.",
403
- "visibility": "frontend",
404
- "type": "boolean"
405
- },
406
- "logoutIfDisconnected": {
407
- "description": "Enable/disable the automatic logout also on users that are logged in but with no Backstage tabs open.\nDefault is true.",
408
- "visibility": "frontend",
409
- "type": "boolean"
410
- }
411
- }
412
- }
413
- }
414
- }
415
- },
416
- "$schema": "http://json-schema.org/draft-07/schema#"
417
- }
418
- },
419
419
  {
420
420
  "path": "../integration/config.d.ts",
421
421
  "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-20240201021259",
4
+ "version": "0.0.0-nightly-20240203020827",
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-20240201021259",
38
+ "@backstage/cli": "^0.0.0-nightly-20240203020827",
39
39
  "@types/commander": "^2.12.2",
40
40
  "@types/fs-extra": "^9.0.6",
41
41
  "@types/http-proxy": "^1.17.4",
@@ -57,11 +57,11 @@
57
57
  "ext": "ts"
58
58
  },
59
59
  "dependencies": {
60
- "@backstage/backend-common": "^0.0.0-nightly-20240201021259",
61
- "@backstage/catalog-model": "^0.0.0-nightly-20240201021259",
60
+ "@backstage/backend-common": "^0.0.0-nightly-20240203020827",
61
+ "@backstage/catalog-model": "^0.0.0-nightly-20240203020827",
62
62
  "@backstage/cli-common": "^0.1.13",
63
63
  "@backstage/config": "^1.1.1",
64
- "@backstage/plugin-techdocs-node": "^0.0.0-nightly-20240201021259",
64
+ "@backstage/plugin-techdocs-node": "^0.0.0-nightly-20240203020827",
65
65
  "@types/dockerode": "^3.3.0",
66
66
  "commander": "^9.1.0",
67
67
  "dockerode": "^3.3.1",