@techdocs/cli 0.0.0-nightly-20240323021043 → 0.0.0-nightly-20240325021142

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,12 +1,12 @@
1
1
  # @techdocs/cli
2
2
 
3
- ## 0.0.0-nightly-20240323021043
3
+ ## 0.0.0-nightly-20240325021142
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-common@0.0.0-nightly-20240323021043
9
- - @backstage/plugin-techdocs-node@0.0.0-nightly-20240323021043
8
+ - @backstage/backend-common@0.0.0-nightly-20240325021142
9
+ - @backstage/plugin-techdocs-node@0.0.0-nightly-20240325021142
10
10
  - @backstage/catalog-model@1.4.5
11
11
  - @backstage/cli-common@0.1.13
12
12
  - @backstage/config@1.2.0
@@ -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": {
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-20240323021043",
4
+ "version": "0.0.0-nightly-20240325021142",
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-20240323021043",
38
+ "@backstage/cli": "^0.0.0-nightly-20240325021142",
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-20240323021043",
59
+ "@backstage/backend-common": "^0.0.0-nightly-20240325021142",
60
60
  "@backstage/catalog-model": "^1.4.5",
61
61
  "@backstage/cli-common": "^0.1.13",
62
62
  "@backstage/config": "^1.2.0",
63
- "@backstage/plugin-techdocs-node": "^0.0.0-nightly-20240323021043",
63
+ "@backstage/plugin-techdocs-node": "^0.0.0-nightly-20240325021142",
64
64
  "@types/dockerode": "^3.3.0",
65
65
  "commander": "^12.0.0",
66
66
  "dockerode": "^4.0.0",