iobroker.autodoc 0.9.35
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/LICENSE +21 -0
- package/README.md +126 -0
- package/admin/autodoc.png +0 -0
- package/admin/i18n/de.json +244 -0
- package/admin/i18n/en.json +241 -0
- package/admin/i18n/es.json +229 -0
- package/admin/i18n/fr.json +235 -0
- package/admin/i18n/it.json +229 -0
- package/admin/i18n/nl.json +229 -0
- package/admin/i18n/pl.json +229 -0
- package/admin/i18n/pt.json +229 -0
- package/admin/i18n/ru.json +229 -0
- package/admin/i18n/uk.json +229 -0
- package/admin/i18n/zh-cn.json +229 -0
- package/admin/jsonConfig.json +1490 -0
- package/io-package.json +253 -0
- package/lib/adapter-config.d.ts +19 -0
- package/lib/aiEnhancer.js +2114 -0
- package/lib/autoHostTopologyMermaid.js +195 -0
- package/lib/dependencyAnalyzer.js +83 -0
- package/lib/diagnosisSnapshot.js +32 -0
- package/lib/discovery.js +953 -0
- package/lib/docTemplateConfig.js +422 -0
- package/lib/documentModel.js +640 -0
- package/lib/forumCard.js +70 -0
- package/lib/guestHelpContent.js +93 -0
- package/lib/guestScriptPrivacy.js +14 -0
- package/lib/hostDisplay.js +19 -0
- package/lib/htmlRenderer.js +4108 -0
- package/lib/htmlThemePresets.js +79 -0
- package/lib/htmlToPdf.js +99 -0
- package/lib/i18n.js +1309 -0
- package/lib/markdownRenderer.js +2025 -0
- package/lib/mermaidAutodocPalette.js +165 -0
- package/lib/mermaidServerSvg.js +252 -0
- package/lib/notifier.js +124 -0
- package/lib/quickStartGuide.js +180 -0
- package/lib/roleMapper.js +90 -0
- package/lib/scriptGroups.js +78 -0
- package/lib/versionTracker.js +312 -0
- package/main.js +1368 -0
- package/package.json +88 -0
|
@@ -0,0 +1,1490 @@
|
|
|
1
|
+
{
|
|
2
|
+
"i18n": true,
|
|
3
|
+
"type": "tabs",
|
|
4
|
+
"items": {
|
|
5
|
+
"tabBasic": {
|
|
6
|
+
"type": "panel",
|
|
7
|
+
"label": "Basic settings",
|
|
8
|
+
"items": {
|
|
9
|
+
"_basicOrientation": {
|
|
10
|
+
"type": "staticText",
|
|
11
|
+
"text": "Admin tab orientation basic",
|
|
12
|
+
"newLine": true,
|
|
13
|
+
"xs": 12,
|
|
14
|
+
"sm": 12,
|
|
15
|
+
"md": 12,
|
|
16
|
+
"lg": 12,
|
|
17
|
+
"xl": 12
|
|
18
|
+
},
|
|
19
|
+
"_basicSectionProfile": {
|
|
20
|
+
"type": "header",
|
|
21
|
+
"text": "Basic section profile",
|
|
22
|
+
"size": 4,
|
|
23
|
+
"newLine": true
|
|
24
|
+
},
|
|
25
|
+
"profile": {
|
|
26
|
+
"type": "select",
|
|
27
|
+
"label": "Documentation profile",
|
|
28
|
+
"help": "Target audience for Markdown export and default focus. HTML always includes all three profiles (admin, user, onboarding). AI text for User/Onboarding HTML runs whenever a KI provider is set, regardless of this selection.",
|
|
29
|
+
"options": [
|
|
30
|
+
{
|
|
31
|
+
"label": "Admin",
|
|
32
|
+
"value": "admin"
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"label": "User/Family",
|
|
36
|
+
"value": "user"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"label": "Onboarding",
|
|
40
|
+
"value": "onboarding"
|
|
41
|
+
}
|
|
42
|
+
],
|
|
43
|
+
"default": "admin",
|
|
44
|
+
"newLine": true,
|
|
45
|
+
"xs": 12,
|
|
46
|
+
"sm": 12,
|
|
47
|
+
"md": 6,
|
|
48
|
+
"lg": 6,
|
|
49
|
+
"xl": 6
|
|
50
|
+
},
|
|
51
|
+
"language": {
|
|
52
|
+
"type": "select",
|
|
53
|
+
"label": "Documentation language",
|
|
54
|
+
"help": "Language for the generated documentation",
|
|
55
|
+
"options": [
|
|
56
|
+
{
|
|
57
|
+
"label": "English",
|
|
58
|
+
"value": "en"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"label": "German",
|
|
62
|
+
"value": "de"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"label": "French",
|
|
66
|
+
"value": "fr"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"default": "en",
|
|
70
|
+
"xs": 12,
|
|
71
|
+
"sm": 12,
|
|
72
|
+
"md": 6,
|
|
73
|
+
"lg": 6,
|
|
74
|
+
"xl": 6
|
|
75
|
+
},
|
|
76
|
+
"_basicSectionTriggers": {
|
|
77
|
+
"type": "header",
|
|
78
|
+
"text": "Basic section triggers",
|
|
79
|
+
"size": 4,
|
|
80
|
+
"newLine": true
|
|
81
|
+
},
|
|
82
|
+
"autoGenerateOnStart": {
|
|
83
|
+
"type": "checkbox",
|
|
84
|
+
"label": "Generate documentation on adapter start",
|
|
85
|
+
"default": true,
|
|
86
|
+
"help": "If enabled, documentation is queued each time the adapter starts (runs in the background; the instance can show green before it finishes). If disabled, a run still happens once after an update when the built-in HTML renderer version no longer matches info.templateVersion. Check the log for \"Documentation generated via startup\" and state info.lastTrigger.",
|
|
87
|
+
"newLine": true,
|
|
88
|
+
"xs": 12,
|
|
89
|
+
"sm": 12,
|
|
90
|
+
"md": 12,
|
|
91
|
+
"lg": 12,
|
|
92
|
+
"xl": 12
|
|
93
|
+
},
|
|
94
|
+
"autoGenerateOnEvents": {
|
|
95
|
+
"type": "checkbox",
|
|
96
|
+
"label": "Generate documentation on adapter changes",
|
|
97
|
+
"help": "If enabled, documentation is regenerated automatically when adapters are installed, removed, or enabled/disabled (30 second debounce)",
|
|
98
|
+
"newLine": true,
|
|
99
|
+
"xs": 12,
|
|
100
|
+
"sm": 12,
|
|
101
|
+
"md": 12,
|
|
102
|
+
"lg": 12,
|
|
103
|
+
"xl": 12
|
|
104
|
+
},
|
|
105
|
+
"autoGenerateInterval": {
|
|
106
|
+
"type": "number",
|
|
107
|
+
"label": "Scheduled interval (hours)",
|
|
108
|
+
"help": "Optional timer: regenerate every X hours, independent of start and adapter-change options above. 0 = no scheduled runs (events and start still work).",
|
|
109
|
+
"min": 0,
|
|
110
|
+
"max": 168,
|
|
111
|
+
"default": 0,
|
|
112
|
+
"newLine": true,
|
|
113
|
+
"xs": 12,
|
|
114
|
+
"sm": 12,
|
|
115
|
+
"md": 6,
|
|
116
|
+
"lg": 6,
|
|
117
|
+
"xl": 6
|
|
118
|
+
},
|
|
119
|
+
"_basicSectionDiscovery": {
|
|
120
|
+
"type": "header",
|
|
121
|
+
"text": "Basic section discovery",
|
|
122
|
+
"size": 4,
|
|
123
|
+
"newLine": true
|
|
124
|
+
},
|
|
125
|
+
"readLiveStates": {
|
|
126
|
+
"type": "checkbox",
|
|
127
|
+
"label": "Read live state values (opt-in)",
|
|
128
|
+
"help": "If enabled, current values for selected state roles are read and shown in User/Onboarding room cards and the Admin device table (badges next to device names). Includes e.g. temperature, blinds (level.blind), dimmers, lights (switch.light), outlets (switch/plug), humidity, power metrics, locks, door/window/contact, motion, alarm. Room members may be channels or devices — matching child states are found automatically. Very custom or empty roles are skipped.",
|
|
129
|
+
"newLine": true,
|
|
130
|
+
"xs": 12,
|
|
131
|
+
"sm": 12,
|
|
132
|
+
"md": 12,
|
|
133
|
+
"lg": 12,
|
|
134
|
+
"xl": 12
|
|
135
|
+
},
|
|
136
|
+
"_basicSectionManual": {
|
|
137
|
+
"type": "header",
|
|
138
|
+
"text": "Basic section manual",
|
|
139
|
+
"size": 4,
|
|
140
|
+
"newLine": true
|
|
141
|
+
},
|
|
142
|
+
"_generateHint": {
|
|
143
|
+
"type": "staticText",
|
|
144
|
+
"text": "Generate now hint",
|
|
145
|
+
"newLine": true,
|
|
146
|
+
"xs": 12,
|
|
147
|
+
"sm": 12,
|
|
148
|
+
"md": 12,
|
|
149
|
+
"lg": 12,
|
|
150
|
+
"xl": 12
|
|
151
|
+
},
|
|
152
|
+
"_generateButton": {
|
|
153
|
+
"type": "setState",
|
|
154
|
+
"id": "autodoc.0.action.generate",
|
|
155
|
+
"val": true,
|
|
156
|
+
"label": "Generate documentation now",
|
|
157
|
+
"variant": "contained",
|
|
158
|
+
"confirm": {
|
|
159
|
+
"title": "Generate documentation",
|
|
160
|
+
"text": "Start documentation generation now? This may take a few seconds.",
|
|
161
|
+
"ok": "Generate",
|
|
162
|
+
"cancel": "Cancel"
|
|
163
|
+
},
|
|
164
|
+
"newLine": true,
|
|
165
|
+
"xs": 12,
|
|
166
|
+
"sm": 12,
|
|
167
|
+
"md": 6,
|
|
168
|
+
"lg": 4,
|
|
169
|
+
"xl": 3
|
|
170
|
+
},
|
|
171
|
+
"_lastGenStatus": {
|
|
172
|
+
"type": "textSendTo",
|
|
173
|
+
"command": "getStatus",
|
|
174
|
+
"label": "Last generated",
|
|
175
|
+
"container": "div",
|
|
176
|
+
"copyToClipboard": false,
|
|
177
|
+
"newLine": true,
|
|
178
|
+
"xs": 12,
|
|
179
|
+
"sm": 12,
|
|
180
|
+
"md": 12,
|
|
181
|
+
"lg": 12,
|
|
182
|
+
"xl": 12
|
|
183
|
+
},
|
|
184
|
+
"_forumCardSendTo": {
|
|
185
|
+
"type": "textSendTo",
|
|
186
|
+
"command": "getForumCard",
|
|
187
|
+
"label": "Forum system card (plaintext)",
|
|
188
|
+
"container": "div",
|
|
189
|
+
"copyToClipboard": true,
|
|
190
|
+
"newLine": true,
|
|
191
|
+
"xs": 12,
|
|
192
|
+
"sm": 12,
|
|
193
|
+
"md": 12,
|
|
194
|
+
"lg": 12,
|
|
195
|
+
"xl": 12
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
},
|
|
199
|
+
"tabManual": {
|
|
200
|
+
"type": "panel",
|
|
201
|
+
"label": "My documentation",
|
|
202
|
+
"items": {
|
|
203
|
+
"_documentationOrientation": {
|
|
204
|
+
"type": "staticText",
|
|
205
|
+
"text": "Admin tab orientation documentation",
|
|
206
|
+
"newLine": true,
|
|
207
|
+
"xs": 12,
|
|
208
|
+
"sm": 12,
|
|
209
|
+
"md": 12,
|
|
210
|
+
"lg": 12,
|
|
211
|
+
"xl": 12
|
|
212
|
+
},
|
|
213
|
+
"_manualHint": {
|
|
214
|
+
"type": "staticText",
|
|
215
|
+
"text": "Manual documentation hint",
|
|
216
|
+
"newLine": true,
|
|
217
|
+
"xs": 12,
|
|
218
|
+
"sm": 12,
|
|
219
|
+
"md": 12,
|
|
220
|
+
"lg": 12,
|
|
221
|
+
"xl": 12
|
|
222
|
+
},
|
|
223
|
+
"_manualSectionProject": {
|
|
224
|
+
"type": "header",
|
|
225
|
+
"text": "Manual section project",
|
|
226
|
+
"size": 4,
|
|
227
|
+
"newLine": true
|
|
228
|
+
},
|
|
229
|
+
"projectName": {
|
|
230
|
+
"type": "text",
|
|
231
|
+
"label": "Project name",
|
|
232
|
+
"help": "Name of the ioBroker project or installation",
|
|
233
|
+
"newLine": true,
|
|
234
|
+
"xs": 12,
|
|
235
|
+
"sm": 12,
|
|
236
|
+
"md": 6,
|
|
237
|
+
"lg": 6,
|
|
238
|
+
"xl": 6
|
|
239
|
+
},
|
|
240
|
+
"projectDescription": {
|
|
241
|
+
"type": "text",
|
|
242
|
+
"label": "Project description",
|
|
243
|
+
"help": "What does this system do? e.g. 'Single-family home, heating + lighting + security on 3 floors'",
|
|
244
|
+
"newLine": true,
|
|
245
|
+
"xs": 12,
|
|
246
|
+
"sm": 12,
|
|
247
|
+
"md": 12,
|
|
248
|
+
"lg": 12,
|
|
249
|
+
"xl": 12
|
|
250
|
+
},
|
|
251
|
+
"manualContact": {
|
|
252
|
+
"type": "text",
|
|
253
|
+
"label": "Contact person",
|
|
254
|
+
"help": "Who manages this system? e.g. 'Max Mustermann, Telegram @max' - shown so guests and family know who to ask",
|
|
255
|
+
"newLine": true,
|
|
256
|
+
"xs": 12,
|
|
257
|
+
"sm": 12,
|
|
258
|
+
"md": 6,
|
|
259
|
+
"lg": 6,
|
|
260
|
+
"xl": 6
|
|
261
|
+
},
|
|
262
|
+
"additionalNotes": {
|
|
263
|
+
"type": "text",
|
|
264
|
+
"label": "General notes",
|
|
265
|
+
"help": "Anything that doesn't fit elsewhere: e.g. 'Backup runs every Sunday, server is in the basement'",
|
|
266
|
+
"newLine": true,
|
|
267
|
+
"xs": 12,
|
|
268
|
+
"sm": 12,
|
|
269
|
+
"md": 12,
|
|
270
|
+
"lg": 12,
|
|
271
|
+
"xl": 12
|
|
272
|
+
},
|
|
273
|
+
"_guestFamilyPlainHeader": {
|
|
274
|
+
"type": "header",
|
|
275
|
+
"text": "Guest & family (plain language)",
|
|
276
|
+
"size": 4,
|
|
277
|
+
"newLine": true
|
|
278
|
+
},
|
|
279
|
+
"guestHelpNote": {
|
|
280
|
+
"type": "text",
|
|
281
|
+
"label": "Help & emergencies (guests/family)",
|
|
282
|
+
"help": "Who to call, what to try if something fails, where the fuse box is — your words only; nothing is invented automatically.",
|
|
283
|
+
"minRows": 4,
|
|
284
|
+
"maxRows": 16,
|
|
285
|
+
"newLine": true,
|
|
286
|
+
"xs": 12,
|
|
287
|
+
"sm": 12,
|
|
288
|
+
"md": 12,
|
|
289
|
+
"lg": 12,
|
|
290
|
+
"xl": 12
|
|
291
|
+
},
|
|
292
|
+
"homeRoutinesNote": {
|
|
293
|
+
"type": "text",
|
|
294
|
+
"label": "Routines & automations (your words)",
|
|
295
|
+
"help": "Describe in everyday language what often runs by itself (lights, heating, blinds). Shown near the script list; complements technical script names.",
|
|
296
|
+
"minRows": 4,
|
|
297
|
+
"maxRows": 18,
|
|
298
|
+
"newLine": true,
|
|
299
|
+
"xs": 12,
|
|
300
|
+
"sm": 12,
|
|
301
|
+
"md": 12,
|
|
302
|
+
"lg": 12,
|
|
303
|
+
"xl": 12
|
|
304
|
+
},
|
|
305
|
+
"ownerPlaybookNote": {
|
|
306
|
+
"type": "text",
|
|
307
|
+
"label": "How we run this home (your playbook)",
|
|
308
|
+
"help": "Step-by-step or bullet notes only you maintain: typical order of doing things, what must be done, what guests or family must not change (your words; nothing is invented automatically). Shown as its own section in family and guest docs.",
|
|
309
|
+
"minRows": 4,
|
|
310
|
+
"maxRows": 22,
|
|
311
|
+
"newLine": true,
|
|
312
|
+
"xs": 12,
|
|
313
|
+
"sm": 12,
|
|
314
|
+
"md": 12,
|
|
315
|
+
"lg": 12,
|
|
316
|
+
"xl": 12
|
|
317
|
+
},
|
|
318
|
+
"manualMermaidDiagram": {
|
|
319
|
+
"type": "text",
|
|
320
|
+
"label": "Mermaid diagram (optional)",
|
|
321
|
+
"help": "Optional Mermaid diagram you write yourself (flowchart, sequence, …). **HTML exports:** With `@mermaid-js/mermaid-cli` installed on the ioBroker host (optional npm dependency), diagrams are rendered to **embedded SVG during generation** — works in offline `file://` copies without network. Without the CLI the export uses `<pre class=\"mermaid\">` and loads **Mermaid 10.9.1** from jsDelivr when you open the page in a browser (**online**). **When all diagrams are embedded as SVG, the export no longer loads jsDelivr** (the script is only injected if a `<pre class=\"mermaid\">` remains). **Markdown** always emits a ```mermaid source fence (not pre-rendered). Hide your manual diagram in User/Onboarding with chapter id **`mermaid`** (**`mermaidAuto`** is only for the optional auto-host diagram below). Very long input is truncated. Tip: `flowchart LR` uses horizontal page width; `flowchart TB` (default) stacks top-to-bottom.",
|
|
322
|
+
"placeholder": "flowchart LR\n DEMOROOM --> DEMOGW",
|
|
323
|
+
"minRows": 4,
|
|
324
|
+
"maxRows": 28,
|
|
325
|
+
"newLine": true,
|
|
326
|
+
"xs": 12,
|
|
327
|
+
"sm": 12,
|
|
328
|
+
"md": 12,
|
|
329
|
+
"lg": 12,
|
|
330
|
+
"xl": 12
|
|
331
|
+
},
|
|
332
|
+
"autoMermaidHostGraph": {
|
|
333
|
+
"type": "checkbox",
|
|
334
|
+
"label": "Auto host topology diagram (Mermaid)",
|
|
335
|
+
"help": "When enabled, adds a second Mermaid diagram in HTML: adapter instances grouped by ioBroker host (helps in multihost setups). Instance node count is capped (next setting); not a full wiring graph. In User/Onboarding hide lists, use **`mermaidAuto`** to hide **only** this auto diagram (**`mermaid`** hides your manual diagram above). Same HTML embedding as manual Mermaid: embedded SVG when the CLI runs on the host, otherwise `<pre>` + jsDelivr in the browser.",
|
|
336
|
+
"default": false,
|
|
337
|
+
"newLine": true,
|
|
338
|
+
"xs": 12,
|
|
339
|
+
"sm": 12,
|
|
340
|
+
"md": 12,
|
|
341
|
+
"lg": 12,
|
|
342
|
+
"xl": 12
|
|
343
|
+
},
|
|
344
|
+
"autoMermaidHostGraphMaxNodes": {
|
|
345
|
+
"type": "number",
|
|
346
|
+
"label": "Max instances in auto topology diagram",
|
|
347
|
+
"help": "Maximum adapter **instance** nodes in the auto-generated diagram (8–200, default 40). Hosts are still shown; instances are chosen round-robin across hosts when there are more than this limit.",
|
|
348
|
+
"min": 8,
|
|
349
|
+
"max": 200,
|
|
350
|
+
"default": 40,
|
|
351
|
+
"newLine": true,
|
|
352
|
+
"xs": 12,
|
|
353
|
+
"sm": 12,
|
|
354
|
+
"md": 6,
|
|
355
|
+
"lg": 6,
|
|
356
|
+
"xl": 6
|
|
357
|
+
},
|
|
358
|
+
"_troubleshootQuickHeader": {
|
|
359
|
+
"type": "header",
|
|
360
|
+
"text": "Troubleshooting — quick lines (optional)",
|
|
361
|
+
"size": 4,
|
|
362
|
+
"newLine": true
|
|
363
|
+
},
|
|
364
|
+
"_troubleshootQuickHint": {
|
|
365
|
+
"type": "staticText",
|
|
366
|
+
"text": "Troubleshooting quick lines hint",
|
|
367
|
+
"newLine": true,
|
|
368
|
+
"xs": 12,
|
|
369
|
+
"sm": 12,
|
|
370
|
+
"md": 12,
|
|
371
|
+
"lg": 12,
|
|
372
|
+
"xl": 12
|
|
373
|
+
},
|
|
374
|
+
"troubleshootWifiHint": {
|
|
375
|
+
"type": "text",
|
|
376
|
+
"label": "Quick: Wi-Fi / network",
|
|
377
|
+
"help": "One line, e.g. guest Wi-Fi name or where a repeater is — optional.",
|
|
378
|
+
"newLine": true,
|
|
379
|
+
"xs": 12,
|
|
380
|
+
"sm": 12,
|
|
381
|
+
"md": 6,
|
|
382
|
+
"lg": 6,
|
|
383
|
+
"xl": 6
|
|
384
|
+
},
|
|
385
|
+
"troubleshootPowerHint": {
|
|
386
|
+
"type": "text",
|
|
387
|
+
"label": "Quick: power / fuses",
|
|
388
|
+
"help": "One line, e.g. where the electrical panel is — optional.",
|
|
389
|
+
"newLine": true,
|
|
390
|
+
"xs": 12,
|
|
391
|
+
"sm": 12,
|
|
392
|
+
"md": 6,
|
|
393
|
+
"lg": 6,
|
|
394
|
+
"xl": 6
|
|
395
|
+
},
|
|
396
|
+
"troubleshootWaterHint": {
|
|
397
|
+
"type": "text",
|
|
398
|
+
"label": "Quick: water shutoff",
|
|
399
|
+
"help": "One line, e.g. where to turn off main water — optional.",
|
|
400
|
+
"newLine": true,
|
|
401
|
+
"xs": 12,
|
|
402
|
+
"sm": 12,
|
|
403
|
+
"md": 6,
|
|
404
|
+
"lg": 6,
|
|
405
|
+
"xl": 6
|
|
406
|
+
},
|
|
407
|
+
"troubleshootExtraHint": {
|
|
408
|
+
"type": "text",
|
|
409
|
+
"label": "Quick: other",
|
|
410
|
+
"help": "One more short line (alarm code location, key box, etc.) — optional.",
|
|
411
|
+
"newLine": true,
|
|
412
|
+
"xs": 12,
|
|
413
|
+
"sm": 12,
|
|
414
|
+
"md": 6,
|
|
415
|
+
"lg": 6,
|
|
416
|
+
"xl": 6
|
|
417
|
+
},
|
|
418
|
+
"_adapterNotesHeader": {
|
|
419
|
+
"type": "header",
|
|
420
|
+
"text": "Per-adapter notes",
|
|
421
|
+
"size": 4,
|
|
422
|
+
"newLine": true
|
|
423
|
+
},
|
|
424
|
+
"adapterNotes": {
|
|
425
|
+
"type": "table",
|
|
426
|
+
"label": "Adapter notes",
|
|
427
|
+
"help": "Add a human-readable note for specific adapters (shown in all profiles)",
|
|
428
|
+
"newLine": true,
|
|
429
|
+
"xs": 12,
|
|
430
|
+
"sm": 12,
|
|
431
|
+
"md": 12,
|
|
432
|
+
"lg": 12,
|
|
433
|
+
"xl": 12,
|
|
434
|
+
"items": [
|
|
435
|
+
{
|
|
436
|
+
"attr": "adapter",
|
|
437
|
+
"type": "text",
|
|
438
|
+
"title": "Adapter (e.g. telegram)",
|
|
439
|
+
"width": "30%"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"attr": "note",
|
|
443
|
+
"type": "text",
|
|
444
|
+
"title": "Note",
|
|
445
|
+
"width": "70%"
|
|
446
|
+
}
|
|
447
|
+
]
|
|
448
|
+
},
|
|
449
|
+
"_roomNotesHeader": {
|
|
450
|
+
"type": "header",
|
|
451
|
+
"text": "Per-room notes",
|
|
452
|
+
"size": 4,
|
|
453
|
+
"newLine": true
|
|
454
|
+
},
|
|
455
|
+
"roomNotes": {
|
|
456
|
+
"type": "table",
|
|
457
|
+
"label": "Room notes",
|
|
458
|
+
"help": "Add a human-readable note for specific rooms (shown in User and Onboarding profiles)",
|
|
459
|
+
"newLine": true,
|
|
460
|
+
"xs": 12,
|
|
461
|
+
"sm": 12,
|
|
462
|
+
"md": 12,
|
|
463
|
+
"lg": 12,
|
|
464
|
+
"xl": 12,
|
|
465
|
+
"items": [
|
|
466
|
+
{
|
|
467
|
+
"attr": "room",
|
|
468
|
+
"type": "text",
|
|
469
|
+
"title": "Room name",
|
|
470
|
+
"width": "30%"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"attr": "note",
|
|
474
|
+
"type": "text",
|
|
475
|
+
"title": "Note",
|
|
476
|
+
"width": "70%"
|
|
477
|
+
}
|
|
478
|
+
]
|
|
479
|
+
},
|
|
480
|
+
"_onboardingHideHeader": {
|
|
481
|
+
"type": "header",
|
|
482
|
+
"text": "Onboarding - hide from guests",
|
|
483
|
+
"size": 4,
|
|
484
|
+
"newLine": true
|
|
485
|
+
},
|
|
486
|
+
"_onboardingHideHint": {
|
|
487
|
+
"type": "staticText",
|
|
488
|
+
"text": "Onboarding hide hint",
|
|
489
|
+
"newLine": true,
|
|
490
|
+
"xs": 12,
|
|
491
|
+
"sm": 12,
|
|
492
|
+
"md": 12,
|
|
493
|
+
"lg": 12,
|
|
494
|
+
"xl": 12
|
|
495
|
+
},
|
|
496
|
+
"onboardingHideRooms": {
|
|
497
|
+
"type": "table",
|
|
498
|
+
"label": "Hidden rooms (Onboarding)",
|
|
499
|
+
"help": "Onboarding hidden rooms help",
|
|
500
|
+
"newLine": true,
|
|
501
|
+
"xs": 12,
|
|
502
|
+
"sm": 6,
|
|
503
|
+
"md": 6,
|
|
504
|
+
"lg": 6,
|
|
505
|
+
"xl": 6,
|
|
506
|
+
"items": [
|
|
507
|
+
{
|
|
508
|
+
"attr": "room",
|
|
509
|
+
"type": "text",
|
|
510
|
+
"title": "Room name (exact)",
|
|
511
|
+
"width": "100%"
|
|
512
|
+
}
|
|
513
|
+
]
|
|
514
|
+
},
|
|
515
|
+
"onboardingHideAdapters": {
|
|
516
|
+
"type": "table",
|
|
517
|
+
"label": "Hidden adapters (Onboarding)",
|
|
518
|
+
"help": "Onboarding hidden adapters help",
|
|
519
|
+
"newLine": false,
|
|
520
|
+
"xs": 12,
|
|
521
|
+
"sm": 6,
|
|
522
|
+
"md": 6,
|
|
523
|
+
"lg": 6,
|
|
524
|
+
"xl": 6,
|
|
525
|
+
"items": [
|
|
526
|
+
{
|
|
527
|
+
"attr": "adapter",
|
|
528
|
+
"type": "text",
|
|
529
|
+
"title": "Adapter name (e.g. backitup)",
|
|
530
|
+
"width": "100%"
|
|
531
|
+
}
|
|
532
|
+
]
|
|
533
|
+
},
|
|
534
|
+
"onboardingGuestShowScriptNames": {
|
|
535
|
+
"type": "checkbox",
|
|
536
|
+
"label": "Onboarding guest view — list internal JavaScript file names",
|
|
537
|
+
"help": "onboarding guest script names help",
|
|
538
|
+
"newLine": true,
|
|
539
|
+
"xs": 12,
|
|
540
|
+
"sm": 12,
|
|
541
|
+
"md": 12,
|
|
542
|
+
"lg": 12,
|
|
543
|
+
"xl": 12
|
|
544
|
+
},
|
|
545
|
+
"_userHideHeader": {
|
|
546
|
+
"type": "header",
|
|
547
|
+
"text": "User/Family - hide from family",
|
|
548
|
+
"size": 4,
|
|
549
|
+
"newLine": true
|
|
550
|
+
},
|
|
551
|
+
"_userHideHint": {
|
|
552
|
+
"type": "staticText",
|
|
553
|
+
"text": "User hide hint",
|
|
554
|
+
"newLine": true,
|
|
555
|
+
"xs": 12,
|
|
556
|
+
"sm": 12,
|
|
557
|
+
"md": 12,
|
|
558
|
+
"lg": 12,
|
|
559
|
+
"xl": 12
|
|
560
|
+
},
|
|
561
|
+
"userHideRooms": {
|
|
562
|
+
"type": "table",
|
|
563
|
+
"label": "Hidden rooms (User/Family)",
|
|
564
|
+
"help": "User hidden rooms help",
|
|
565
|
+
"newLine": true,
|
|
566
|
+
"xs": 12,
|
|
567
|
+
"sm": 6,
|
|
568
|
+
"md": 6,
|
|
569
|
+
"lg": 6,
|
|
570
|
+
"xl": 6,
|
|
571
|
+
"items": [
|
|
572
|
+
{
|
|
573
|
+
"attr": "room",
|
|
574
|
+
"type": "text",
|
|
575
|
+
"title": "Room name (exact)",
|
|
576
|
+
"width": "100%"
|
|
577
|
+
}
|
|
578
|
+
]
|
|
579
|
+
},
|
|
580
|
+
"userHideAdapters": {
|
|
581
|
+
"type": "table",
|
|
582
|
+
"label": "Hidden adapters (User/Family)",
|
|
583
|
+
"help": "User hidden adapters help",
|
|
584
|
+
"newLine": false,
|
|
585
|
+
"xs": 12,
|
|
586
|
+
"sm": 6,
|
|
587
|
+
"md": 6,
|
|
588
|
+
"lg": 6,
|
|
589
|
+
"xl": 6,
|
|
590
|
+
"items": [
|
|
591
|
+
{
|
|
592
|
+
"attr": "adapter",
|
|
593
|
+
"type": "text",
|
|
594
|
+
"title": "Adapter name (e.g. backitup)",
|
|
595
|
+
"width": "100%"
|
|
596
|
+
}
|
|
597
|
+
]
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"tabAdvanced": {
|
|
602
|
+
"type": "panel",
|
|
603
|
+
"label": "Advanced",
|
|
604
|
+
"items": {
|
|
605
|
+
"_exportScriptsHint": {
|
|
606
|
+
"type": "staticText",
|
|
607
|
+
"text": "Admin export scripts hint",
|
|
608
|
+
"newLine": true,
|
|
609
|
+
"xs": 12,
|
|
610
|
+
"sm": 12,
|
|
611
|
+
"md": 12,
|
|
612
|
+
"lg": 12,
|
|
613
|
+
"xl": 12
|
|
614
|
+
},
|
|
615
|
+
"_advancedSectionContent": {
|
|
616
|
+
"type": "header",
|
|
617
|
+
"text": "Advanced section content",
|
|
618
|
+
"size": 4,
|
|
619
|
+
"newLine": true
|
|
620
|
+
},
|
|
621
|
+
"onlyEnabledInstances": {
|
|
622
|
+
"type": "checkbox",
|
|
623
|
+
"label": "Only document enabled instances",
|
|
624
|
+
"help": "If enabled, only active adapter instances are included in the documentation",
|
|
625
|
+
"newLine": true,
|
|
626
|
+
"xs": 12,
|
|
627
|
+
"sm": 12,
|
|
628
|
+
"md": 12,
|
|
629
|
+
"lg": 12,
|
|
630
|
+
"xl": 12
|
|
631
|
+
},
|
|
632
|
+
"hideInstanceDetailsInMarkdown": {
|
|
633
|
+
"type": "checkbox",
|
|
634
|
+
"label": "Hide instance details in markdown",
|
|
635
|
+
"help": "If enabled, the markdown output contains only summary information without the full instance list",
|
|
636
|
+
"newLine": true,
|
|
637
|
+
"xs": 12,
|
|
638
|
+
"sm": 12,
|
|
639
|
+
"md": 12,
|
|
640
|
+
"lg": 12,
|
|
641
|
+
"xl": 12
|
|
642
|
+
},
|
|
643
|
+
"maxDocumentedInstances": {
|
|
644
|
+
"type": "number",
|
|
645
|
+
"label": "Maximum documented instances",
|
|
646
|
+
"help": "Limits how many adapter instances are included in the generated documentation, 0 means unlimited",
|
|
647
|
+
"min": 0,
|
|
648
|
+
"default": 0,
|
|
649
|
+
"newLine": true,
|
|
650
|
+
"xs": 12,
|
|
651
|
+
"sm": 12,
|
|
652
|
+
"md": 6,
|
|
653
|
+
"lg": 6,
|
|
654
|
+
"xl": 6
|
|
655
|
+
},
|
|
656
|
+
"maxStoredFiles": {
|
|
657
|
+
"type": "number",
|
|
658
|
+
"label": "Maximum stored documentation files",
|
|
659
|
+
"help": "How many timestamped file sets to keep (per type: .md, .html, .json). Oldest are deleted automatically. 0 = use default (3).",
|
|
660
|
+
"min": 0,
|
|
661
|
+
"default": 3,
|
|
662
|
+
"newLine": true,
|
|
663
|
+
"xs": 12,
|
|
664
|
+
"sm": 12,
|
|
665
|
+
"md": 6,
|
|
666
|
+
"lg": 6,
|
|
667
|
+
"xl": 6
|
|
668
|
+
},
|
|
669
|
+
"_advancedSectionStates": {
|
|
670
|
+
"type": "header",
|
|
671
|
+
"text": "Advanced section states",
|
|
672
|
+
"size": 4,
|
|
673
|
+
"newLine": true
|
|
674
|
+
},
|
|
675
|
+
"documentationStatesMode": {
|
|
676
|
+
"type": "select",
|
|
677
|
+
"label": "Documentation states storage",
|
|
678
|
+
"help": "Documentation states storage help",
|
|
679
|
+
"options": [
|
|
680
|
+
{
|
|
681
|
+
"label": "Doc states mode full",
|
|
682
|
+
"value": "full"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"label": "Doc states mode metadata",
|
|
686
|
+
"value": "metadata"
|
|
687
|
+
}
|
|
688
|
+
],
|
|
689
|
+
"default": "full",
|
|
690
|
+
"newLine": true,
|
|
691
|
+
"xs": 12,
|
|
692
|
+
"sm": 12,
|
|
693
|
+
"md": 12,
|
|
694
|
+
"lg": 12,
|
|
695
|
+
"xl": 12
|
|
696
|
+
},
|
|
697
|
+
"baseUrl": {
|
|
698
|
+
"type": "text",
|
|
699
|
+
"label": "ioBroker base URL (optional)",
|
|
700
|
+
"help": "Used for the info.htmlUrl state. Include port, e.g. 192.168.1.100:8081 or http://myserver:8082. Protocol is optional. Leave empty for auto-detection (may fail in Docker).",
|
|
701
|
+
"newLine": true,
|
|
702
|
+
"xs": 12,
|
|
703
|
+
"sm": 12,
|
|
704
|
+
"md": 8,
|
|
705
|
+
"lg": 8,
|
|
706
|
+
"xl": 8
|
|
707
|
+
},
|
|
708
|
+
"_advancedSetupScoreIntro": {
|
|
709
|
+
"type": "staticText",
|
|
710
|
+
"text": "Advanced setup score intro",
|
|
711
|
+
"newLine": true,
|
|
712
|
+
"xs": 12,
|
|
713
|
+
"sm": 12,
|
|
714
|
+
"md": 12,
|
|
715
|
+
"lg": 12,
|
|
716
|
+
"xl": 12
|
|
717
|
+
},
|
|
718
|
+
"_advancedSectionMaintenanceScore": {
|
|
719
|
+
"type": "header",
|
|
720
|
+
"text": "Advanced section maintenance score",
|
|
721
|
+
"size": 4,
|
|
722
|
+
"newLine": true
|
|
723
|
+
},
|
|
724
|
+
"maintenanceScoreCheckDescription": {
|
|
725
|
+
"type": "checkbox",
|
|
726
|
+
"label": "Maintenance score include description check",
|
|
727
|
+
"help": "Maintenance score description check help",
|
|
728
|
+
"default": true,
|
|
729
|
+
"newLine": true,
|
|
730
|
+
"xs": 12,
|
|
731
|
+
"sm": 12,
|
|
732
|
+
"md": 12,
|
|
733
|
+
"lg": 12,
|
|
734
|
+
"xl": 12
|
|
735
|
+
},
|
|
736
|
+
"maintenanceScoreCheckBaseUrl": {
|
|
737
|
+
"type": "checkbox",
|
|
738
|
+
"label": "Maintenance score include base URL check",
|
|
739
|
+
"help": "Maintenance score base URL check help",
|
|
740
|
+
"default": true,
|
|
741
|
+
"newLine": true,
|
|
742
|
+
"xs": 12,
|
|
743
|
+
"sm": 12,
|
|
744
|
+
"md": 12,
|
|
745
|
+
"lg": 12,
|
|
746
|
+
"xl": 12
|
|
747
|
+
},
|
|
748
|
+
"maintenanceScoreCheckUnassigned": {
|
|
749
|
+
"type": "checkbox",
|
|
750
|
+
"label": "Maintenance score include unassigned check",
|
|
751
|
+
"help": "Maintenance score unassigned check help",
|
|
752
|
+
"default": true,
|
|
753
|
+
"newLine": true,
|
|
754
|
+
"xs": 12,
|
|
755
|
+
"sm": 12,
|
|
756
|
+
"md": 12,
|
|
757
|
+
"lg": 12,
|
|
758
|
+
"xl": 12
|
|
759
|
+
},
|
|
760
|
+
"maintenanceScoreMinDescriptionChars": {
|
|
761
|
+
"type": "number",
|
|
762
|
+
"label": "Maintenance score min description length",
|
|
763
|
+
"help": "Maintenance score min description length help",
|
|
764
|
+
"min": 5,
|
|
765
|
+
"max": 2000,
|
|
766
|
+
"default": 40,
|
|
767
|
+
"newLine": true,
|
|
768
|
+
"xs": 12,
|
|
769
|
+
"sm": 12,
|
|
770
|
+
"md": 6,
|
|
771
|
+
"lg": 6,
|
|
772
|
+
"xl": 6
|
|
773
|
+
},
|
|
774
|
+
"maintenanceScoreUnassignedWarnAt": {
|
|
775
|
+
"type": "number",
|
|
776
|
+
"label": "Maintenance score unassigned warn at",
|
|
777
|
+
"help": "Maintenance score unassigned warn at help",
|
|
778
|
+
"min": 1,
|
|
779
|
+
"max": 500,
|
|
780
|
+
"default": 10,
|
|
781
|
+
"newLine": true,
|
|
782
|
+
"xs": 12,
|
|
783
|
+
"sm": 12,
|
|
784
|
+
"md": 6,
|
|
785
|
+
"lg": 6,
|
|
786
|
+
"xl": 6
|
|
787
|
+
},
|
|
788
|
+
"_advancedSectionFilesystem": {
|
|
789
|
+
"type": "header",
|
|
790
|
+
"text": "Advanced section filesystem",
|
|
791
|
+
"size": 4,
|
|
792
|
+
"newLine": true
|
|
793
|
+
},
|
|
794
|
+
"exportPath": {
|
|
795
|
+
"type": "text",
|
|
796
|
+
"label": "Filesystem export path (optional)",
|
|
797
|
+
"help": "Export path hint",
|
|
798
|
+
"newLine": true,
|
|
799
|
+
"xs": 12,
|
|
800
|
+
"sm": 12,
|
|
801
|
+
"md": 12,
|
|
802
|
+
"lg": 12,
|
|
803
|
+
"xl": 12
|
|
804
|
+
},
|
|
805
|
+
"_advancedSectionPdf": {
|
|
806
|
+
"type": "header",
|
|
807
|
+
"text": "Advanced section pdf export",
|
|
808
|
+
"size": 4,
|
|
809
|
+
"newLine": true
|
|
810
|
+
},
|
|
811
|
+
"pdfExportAfterGeneration": {
|
|
812
|
+
"type": "checkbox",
|
|
813
|
+
"label": "Pdf export after generation label",
|
|
814
|
+
"help": "Pdf export after generation help",
|
|
815
|
+
"default": false,
|
|
816
|
+
"newLine": true,
|
|
817
|
+
"xs": 12,
|
|
818
|
+
"sm": 12,
|
|
819
|
+
"md": 12,
|
|
820
|
+
"lg": 12,
|
|
821
|
+
"xl": 12
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
},
|
|
825
|
+
"tabDocLayout": {
|
|
826
|
+
"type": "panel",
|
|
827
|
+
"label": "HTML export & extra sections",
|
|
828
|
+
"items": {
|
|
829
|
+
"_docLayoutIntro": {
|
|
830
|
+
"type": "staticText",
|
|
831
|
+
"text": "Doc layout intro",
|
|
832
|
+
"newLine": true,
|
|
833
|
+
"xs": 12,
|
|
834
|
+
"sm": 12,
|
|
835
|
+
"md": 12,
|
|
836
|
+
"lg": 12,
|
|
837
|
+
"xl": 12
|
|
838
|
+
},
|
|
839
|
+
"_docLayoutPdfHint": {
|
|
840
|
+
"type": "staticText",
|
|
841
|
+
"text": "Doc layout pdf hint",
|
|
842
|
+
"newLine": true,
|
|
843
|
+
"xs": 12,
|
|
844
|
+
"sm": 12,
|
|
845
|
+
"md": 12,
|
|
846
|
+
"lg": 12,
|
|
847
|
+
"xl": 12
|
|
848
|
+
},
|
|
849
|
+
"_docSectionAppearance": {
|
|
850
|
+
"type": "header",
|
|
851
|
+
"text": "Doc section appearance",
|
|
852
|
+
"size": 4,
|
|
853
|
+
"newLine": true
|
|
854
|
+
},
|
|
855
|
+
"htmlColorScheme": {
|
|
856
|
+
"type": "select",
|
|
857
|
+
"label": "HTML color scheme",
|
|
858
|
+
"help": "HTML color scheme help",
|
|
859
|
+
"options": [
|
|
860
|
+
{
|
|
861
|
+
"label": "Auto (viewer toggle + saved preference)",
|
|
862
|
+
"value": "auto"
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"label": "Light only",
|
|
866
|
+
"value": "light"
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
"label": "Dark only",
|
|
870
|
+
"value": "dark"
|
|
871
|
+
}
|
|
872
|
+
],
|
|
873
|
+
"default": "auto",
|
|
874
|
+
"newLine": true,
|
|
875
|
+
"xs": 12,
|
|
876
|
+
"sm": 12,
|
|
877
|
+
"md": 6,
|
|
878
|
+
"lg": 6,
|
|
879
|
+
"xl": 6
|
|
880
|
+
},
|
|
881
|
+
"htmlThemePreset": {
|
|
882
|
+
"type": "select",
|
|
883
|
+
"label": "HTML theme preset",
|
|
884
|
+
"help": "HTML theme preset help",
|
|
885
|
+
"options": [
|
|
886
|
+
{
|
|
887
|
+
"label": "HTML theme preset default",
|
|
888
|
+
"value": "default"
|
|
889
|
+
},
|
|
890
|
+
{
|
|
891
|
+
"label": "HTML theme preset high contrast",
|
|
892
|
+
"value": "highContrast"
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
"label": "HTML theme preset warm",
|
|
896
|
+
"value": "warm"
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"label": "HTML theme preset slate",
|
|
900
|
+
"value": "slate"
|
|
901
|
+
}
|
|
902
|
+
],
|
|
903
|
+
"default": "default",
|
|
904
|
+
"newLine": true,
|
|
905
|
+
"xs": 12,
|
|
906
|
+
"sm": 12,
|
|
907
|
+
"md": 6,
|
|
908
|
+
"lg": 6,
|
|
909
|
+
"xl": 6
|
|
910
|
+
},
|
|
911
|
+
"htmlHeaderLogoUrl": {
|
|
912
|
+
"type": "text",
|
|
913
|
+
"label": "Sidebar logo URL",
|
|
914
|
+
"help": "Sidebar logo URL help",
|
|
915
|
+
"newLine": true,
|
|
916
|
+
"xs": 12,
|
|
917
|
+
"sm": 12,
|
|
918
|
+
"md": 12,
|
|
919
|
+
"lg": 12,
|
|
920
|
+
"xl": 12
|
|
921
|
+
},
|
|
922
|
+
"_docSectionChapters": {
|
|
923
|
+
"type": "header",
|
|
924
|
+
"text": "Doc section chapters",
|
|
925
|
+
"size": 4,
|
|
926
|
+
"newLine": true
|
|
927
|
+
},
|
|
928
|
+
"_adminChaptersHeader": {
|
|
929
|
+
"type": "header",
|
|
930
|
+
"text": "Admin HTML — hide chapters",
|
|
931
|
+
"size": 4,
|
|
932
|
+
"newLine": true
|
|
933
|
+
},
|
|
934
|
+
"_adminChaptersHint": {
|
|
935
|
+
"type": "staticText",
|
|
936
|
+
"text": "Admin hidden chapters hint",
|
|
937
|
+
"newLine": true,
|
|
938
|
+
"xs": 12,
|
|
939
|
+
"sm": 12,
|
|
940
|
+
"md": 12,
|
|
941
|
+
"lg": 12,
|
|
942
|
+
"xl": 12
|
|
943
|
+
},
|
|
944
|
+
"_adminChapterOrderHint": {
|
|
945
|
+
"type": "staticText",
|
|
946
|
+
"text": "Admin chapter order hint",
|
|
947
|
+
"newLine": true,
|
|
948
|
+
"xs": 12,
|
|
949
|
+
"sm": 12,
|
|
950
|
+
"md": 12,
|
|
951
|
+
"lg": 12,
|
|
952
|
+
"xl": 12
|
|
953
|
+
},
|
|
954
|
+
"adminChapterOrderJson": {
|
|
955
|
+
"type": "text",
|
|
956
|
+
"label": "Admin chapter order (JSON array)",
|
|
957
|
+
"help": "Admin chapter order JSON help",
|
|
958
|
+
"placeholder": "[ \"system\", \"adapters\", \"manual\" ]",
|
|
959
|
+
"minRows": 2,
|
|
960
|
+
"maxRows": 8,
|
|
961
|
+
"newLine": true,
|
|
962
|
+
"xs": 12,
|
|
963
|
+
"sm": 12,
|
|
964
|
+
"md": 12,
|
|
965
|
+
"lg": 12,
|
|
966
|
+
"xl": 12
|
|
967
|
+
},
|
|
968
|
+
"adminHiddenChaptersJson": {
|
|
969
|
+
"type": "text",
|
|
970
|
+
"label": "Hidden chapter IDs (JSON array)",
|
|
971
|
+
"help": "Admin hidden chapters JSON help",
|
|
972
|
+
"placeholder": "[]",
|
|
973
|
+
"minRows": 3,
|
|
974
|
+
"maxRows": 8,
|
|
975
|
+
"newLine": true,
|
|
976
|
+
"xs": 12,
|
|
977
|
+
"sm": 12,
|
|
978
|
+
"md": 12,
|
|
979
|
+
"lg": 12,
|
|
980
|
+
"xl": 12
|
|
981
|
+
},
|
|
982
|
+
"_userChaptersHeader": {
|
|
983
|
+
"type": "header",
|
|
984
|
+
"text": "User/Family HTML — hide chapters",
|
|
985
|
+
"size": 4,
|
|
986
|
+
"newLine": true
|
|
987
|
+
},
|
|
988
|
+
"_userChaptersHint": {
|
|
989
|
+
"type": "staticText",
|
|
990
|
+
"text": "User hidden chapters hint",
|
|
991
|
+
"newLine": true,
|
|
992
|
+
"xs": 12,
|
|
993
|
+
"sm": 12,
|
|
994
|
+
"md": 12,
|
|
995
|
+
"lg": 12,
|
|
996
|
+
"xl": 12
|
|
997
|
+
},
|
|
998
|
+
"userHiddenChaptersJson": {
|
|
999
|
+
"type": "text",
|
|
1000
|
+
"label": "User profile — hidden chapter IDs (JSON)",
|
|
1001
|
+
"help": "User hidden chapters JSON help",
|
|
1002
|
+
"placeholder": "[]",
|
|
1003
|
+
"minRows": 3,
|
|
1004
|
+
"maxRows": 8,
|
|
1005
|
+
"newLine": true,
|
|
1006
|
+
"xs": 12,
|
|
1007
|
+
"sm": 12,
|
|
1008
|
+
"md": 12,
|
|
1009
|
+
"lg": 12,
|
|
1010
|
+
"xl": 12
|
|
1011
|
+
},
|
|
1012
|
+
"_userChapterOrderHint": {
|
|
1013
|
+
"type": "staticText",
|
|
1014
|
+
"text": "User chapter order hint",
|
|
1015
|
+
"newLine": true,
|
|
1016
|
+
"xs": 12,
|
|
1017
|
+
"sm": 12,
|
|
1018
|
+
"md": 12,
|
|
1019
|
+
"lg": 12,
|
|
1020
|
+
"xl": 12
|
|
1021
|
+
},
|
|
1022
|
+
"userChapterOrderJson": {
|
|
1023
|
+
"type": "text",
|
|
1024
|
+
"label": "User chapter order (JSON array)",
|
|
1025
|
+
"help": "User chapter order JSON help",
|
|
1026
|
+
"placeholder": "[ \"atAGlance\", \"rooms\", \"manual\" ]",
|
|
1027
|
+
"minRows": 2,
|
|
1028
|
+
"maxRows": 8,
|
|
1029
|
+
"newLine": true,
|
|
1030
|
+
"xs": 12,
|
|
1031
|
+
"sm": 12,
|
|
1032
|
+
"md": 12,
|
|
1033
|
+
"lg": 12,
|
|
1034
|
+
"xl": 12
|
|
1035
|
+
},
|
|
1036
|
+
"_onboardingChaptersHeader": {
|
|
1037
|
+
"type": "header",
|
|
1038
|
+
"text": "Onboarding HTML — hide chapters",
|
|
1039
|
+
"size": 4,
|
|
1040
|
+
"newLine": true
|
|
1041
|
+
},
|
|
1042
|
+
"_onboardingChaptersHint": {
|
|
1043
|
+
"type": "staticText",
|
|
1044
|
+
"text": "Onboarding hidden chapters hint",
|
|
1045
|
+
"newLine": true,
|
|
1046
|
+
"xs": 12,
|
|
1047
|
+
"sm": 12,
|
|
1048
|
+
"md": 12,
|
|
1049
|
+
"lg": 12,
|
|
1050
|
+
"xl": 12
|
|
1051
|
+
},
|
|
1052
|
+
"onboardingHiddenChaptersJson": {
|
|
1053
|
+
"type": "text",
|
|
1054
|
+
"label": "Onboarding profile — hidden chapter IDs (JSON)",
|
|
1055
|
+
"help": "Onboarding hidden chapters JSON help",
|
|
1056
|
+
"placeholder": "[]",
|
|
1057
|
+
"minRows": 3,
|
|
1058
|
+
"maxRows": 8,
|
|
1059
|
+
"newLine": true,
|
|
1060
|
+
"xs": 12,
|
|
1061
|
+
"sm": 12,
|
|
1062
|
+
"md": 12,
|
|
1063
|
+
"lg": 12,
|
|
1064
|
+
"xl": 12
|
|
1065
|
+
},
|
|
1066
|
+
"_onboardingChapterOrderHint": {
|
|
1067
|
+
"type": "staticText",
|
|
1068
|
+
"text": "Onboarding chapter order hint",
|
|
1069
|
+
"newLine": true,
|
|
1070
|
+
"xs": 12,
|
|
1071
|
+
"sm": 12,
|
|
1072
|
+
"md": 12,
|
|
1073
|
+
"lg": 12,
|
|
1074
|
+
"xl": 12
|
|
1075
|
+
},
|
|
1076
|
+
"onboardingChapterOrderJson": {
|
|
1077
|
+
"type": "text",
|
|
1078
|
+
"label": "Onboarding chapter order (JSON array)",
|
|
1079
|
+
"help": "Onboarding chapter order JSON help",
|
|
1080
|
+
"placeholder": "[ \"welcome\", \"quickstart\", \"rooms\" ]",
|
|
1081
|
+
"minRows": 2,
|
|
1082
|
+
"maxRows": 8,
|
|
1083
|
+
"newLine": true,
|
|
1084
|
+
"xs": 12,
|
|
1085
|
+
"sm": 12,
|
|
1086
|
+
"md": 12,
|
|
1087
|
+
"lg": 12,
|
|
1088
|
+
"xl": 12
|
|
1089
|
+
},
|
|
1090
|
+
"_customSectionsHeader": {
|
|
1091
|
+
"type": "header",
|
|
1092
|
+
"text": "Custom Markdown sections",
|
|
1093
|
+
"size": 4,
|
|
1094
|
+
"newLine": true
|
|
1095
|
+
},
|
|
1096
|
+
"_customSectionsHint": {
|
|
1097
|
+
"type": "staticText",
|
|
1098
|
+
"text": "Custom sections JSON hint",
|
|
1099
|
+
"newLine": true,
|
|
1100
|
+
"xs": 12,
|
|
1101
|
+
"sm": 12,
|
|
1102
|
+
"md": 12,
|
|
1103
|
+
"lg": 12,
|
|
1104
|
+
"xl": 12
|
|
1105
|
+
},
|
|
1106
|
+
"customDocSectionsJson": {
|
|
1107
|
+
"type": "text",
|
|
1108
|
+
"label": "Custom sections (JSON)",
|
|
1109
|
+
"help": "Custom sections JSON help",
|
|
1110
|
+
"placeholder": "[ { \"title\": \"DEMO title\", \"body\": \"Markdown only — replace DEMO text.\", \"profiles\": [ \"onboarding\" ] } ]",
|
|
1111
|
+
"minRows": 8,
|
|
1112
|
+
"maxRows": 24,
|
|
1113
|
+
"newLine": true,
|
|
1114
|
+
"xs": 12,
|
|
1115
|
+
"sm": 12,
|
|
1116
|
+
"md": 12,
|
|
1117
|
+
"lg": 12,
|
|
1118
|
+
"xl": 12
|
|
1119
|
+
},
|
|
1120
|
+
"_docSectionExpertStyling": {
|
|
1121
|
+
"type": "header",
|
|
1122
|
+
"text": "Doc section expert styling",
|
|
1123
|
+
"size": 4,
|
|
1124
|
+
"newLine": true
|
|
1125
|
+
},
|
|
1126
|
+
"_advancedStylingOpenHint": {
|
|
1127
|
+
"type": "staticText",
|
|
1128
|
+
"text": "Advanced styling open hint",
|
|
1129
|
+
"newLine": true,
|
|
1130
|
+
"xs": 12,
|
|
1131
|
+
"sm": 12,
|
|
1132
|
+
"md": 12,
|
|
1133
|
+
"lg": 12,
|
|
1134
|
+
"xl": 12
|
|
1135
|
+
},
|
|
1136
|
+
"_advancedStylingHint": {
|
|
1137
|
+
"type": "staticText",
|
|
1138
|
+
"text": "Advanced HTML styling hint",
|
|
1139
|
+
"newLine": true,
|
|
1140
|
+
"xs": 12,
|
|
1141
|
+
"sm": 12,
|
|
1142
|
+
"md": 12,
|
|
1143
|
+
"lg": 12,
|
|
1144
|
+
"xl": 12
|
|
1145
|
+
},
|
|
1146
|
+
"htmlFontStack": {
|
|
1147
|
+
"type": "text",
|
|
1148
|
+
"label": "Font stack (CSS)",
|
|
1149
|
+
"help": "Font stack help",
|
|
1150
|
+
"newLine": true,
|
|
1151
|
+
"xs": 12,
|
|
1152
|
+
"sm": 12,
|
|
1153
|
+
"md": 12,
|
|
1154
|
+
"lg": 12,
|
|
1155
|
+
"xl": 12
|
|
1156
|
+
},
|
|
1157
|
+
"htmlExtraCss": {
|
|
1158
|
+
"type": "text",
|
|
1159
|
+
"label": "Extra CSS",
|
|
1160
|
+
"help": "Extra CSS help",
|
|
1161
|
+
"minRows": 3,
|
|
1162
|
+
"maxRows": 16,
|
|
1163
|
+
"newLine": true,
|
|
1164
|
+
"xs": 12,
|
|
1165
|
+
"sm": 12,
|
|
1166
|
+
"md": 12,
|
|
1167
|
+
"lg": 12,
|
|
1168
|
+
"xl": 12
|
|
1169
|
+
}
|
|
1170
|
+
}
|
|
1171
|
+
},
|
|
1172
|
+
"tabNotify": {
|
|
1173
|
+
"type": "panel",
|
|
1174
|
+
"label": "Notifications",
|
|
1175
|
+
"items": {
|
|
1176
|
+
"_notifyOrientation": {
|
|
1177
|
+
"type": "staticText",
|
|
1178
|
+
"text": "Admin tab orientation notify",
|
|
1179
|
+
"newLine": true,
|
|
1180
|
+
"xs": 12,
|
|
1181
|
+
"sm": 12,
|
|
1182
|
+
"md": 12,
|
|
1183
|
+
"lg": 12,
|
|
1184
|
+
"xl": 12
|
|
1185
|
+
},
|
|
1186
|
+
"_notifySection": {
|
|
1187
|
+
"type": "header",
|
|
1188
|
+
"text": "Notify section",
|
|
1189
|
+
"size": 4,
|
|
1190
|
+
"newLine": true
|
|
1191
|
+
},
|
|
1192
|
+
"notifyEnabled": {
|
|
1193
|
+
"type": "checkbox",
|
|
1194
|
+
"label": "Send notification after documentation generation",
|
|
1195
|
+
"help": "If enabled, a message is sent via the configured adapter after each generation",
|
|
1196
|
+
"newLine": true,
|
|
1197
|
+
"xs": 12,
|
|
1198
|
+
"sm": 12,
|
|
1199
|
+
"md": 12,
|
|
1200
|
+
"lg": 12,
|
|
1201
|
+
"xl": 12
|
|
1202
|
+
},
|
|
1203
|
+
"notifyInstance": {
|
|
1204
|
+
"type": "text",
|
|
1205
|
+
"label": "Messaging adapter instance",
|
|
1206
|
+
"help": "Instance to send the notification through, e.g. telegram.0, pushover.0, email.0",
|
|
1207
|
+
"newLine": true,
|
|
1208
|
+
"xs": 12,
|
|
1209
|
+
"sm": 12,
|
|
1210
|
+
"md": 6,
|
|
1211
|
+
"lg": 6,
|
|
1212
|
+
"xl": 6
|
|
1213
|
+
},
|
|
1214
|
+
"notifyTarget": {
|
|
1215
|
+
"type": "text",
|
|
1216
|
+
"label": "Recipient (optional)",
|
|
1217
|
+
"help": "Telegram username, Pushover device, or email address - leave empty for adapter default",
|
|
1218
|
+
"xs": 12,
|
|
1219
|
+
"sm": 12,
|
|
1220
|
+
"md": 6,
|
|
1221
|
+
"lg": 6,
|
|
1222
|
+
"xl": 6
|
|
1223
|
+
},
|
|
1224
|
+
"notifyMessage": {
|
|
1225
|
+
"type": "text",
|
|
1226
|
+
"label": "Custom message template (optional)",
|
|
1227
|
+
"help": "Use {project}, {summary}, {version}, {trigger} as placeholders. Leave empty for default message.",
|
|
1228
|
+
"newLine": true,
|
|
1229
|
+
"xs": 12,
|
|
1230
|
+
"sm": 12,
|
|
1231
|
+
"md": 12,
|
|
1232
|
+
"lg": 12,
|
|
1233
|
+
"xl": 12
|
|
1234
|
+
}
|
|
1235
|
+
}
|
|
1236
|
+
},
|
|
1237
|
+
"tabAi": {
|
|
1238
|
+
"type": "panel",
|
|
1239
|
+
"label": "AI documentation",
|
|
1240
|
+
"items": {
|
|
1241
|
+
"_aiOrientation": {
|
|
1242
|
+
"type": "staticText",
|
|
1243
|
+
"text": "Admin tab orientation AI",
|
|
1244
|
+
"newLine": true,
|
|
1245
|
+
"xs": 12,
|
|
1246
|
+
"sm": 12,
|
|
1247
|
+
"md": 12,
|
|
1248
|
+
"lg": 12,
|
|
1249
|
+
"xl": 12
|
|
1250
|
+
},
|
|
1251
|
+
"_aiPrivacyWarning": {
|
|
1252
|
+
"type": "staticText",
|
|
1253
|
+
"text": "AI privacy warning",
|
|
1254
|
+
"newLine": true,
|
|
1255
|
+
"xs": 12,
|
|
1256
|
+
"sm": 12,
|
|
1257
|
+
"md": 12,
|
|
1258
|
+
"lg": 12,
|
|
1259
|
+
"xl": 12
|
|
1260
|
+
},
|
|
1261
|
+
"_aiHardwareHint": {
|
|
1262
|
+
"type": "staticText",
|
|
1263
|
+
"text": "AI hardware hint",
|
|
1264
|
+
"newLine": true,
|
|
1265
|
+
"xs": 12,
|
|
1266
|
+
"sm": 12,
|
|
1267
|
+
"md": 12,
|
|
1268
|
+
"lg": 12,
|
|
1269
|
+
"xl": 12
|
|
1270
|
+
},
|
|
1271
|
+
"_aiSectionProvider": {
|
|
1272
|
+
"type": "header",
|
|
1273
|
+
"text": "AI section provider",
|
|
1274
|
+
"size": 4,
|
|
1275
|
+
"newLine": true
|
|
1276
|
+
},
|
|
1277
|
+
"aiProvider": {
|
|
1278
|
+
"type": "select",
|
|
1279
|
+
"label": "AI provider",
|
|
1280
|
+
"help": "Ollama recommended: runs locally, no data leaves your network. Cloud providers send adapter/room/script names to external servers.",
|
|
1281
|
+
"options": [
|
|
1282
|
+
{
|
|
1283
|
+
"label": "Disabled",
|
|
1284
|
+
"value": "none"
|
|
1285
|
+
},
|
|
1286
|
+
{
|
|
1287
|
+
"label": "Ollama — local, private, free (recommended)",
|
|
1288
|
+
"value": "ollama"
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"label": "Mistral AI — EU/GDPR, free tier",
|
|
1292
|
+
"value": "mistral"
|
|
1293
|
+
},
|
|
1294
|
+
{
|
|
1295
|
+
"label": "Groq — US, free tier (data may be used for training)",
|
|
1296
|
+
"value": "groq"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"label": "Anthropic Claude — paid, no training on data",
|
|
1300
|
+
"value": "anthropic"
|
|
1301
|
+
}
|
|
1302
|
+
],
|
|
1303
|
+
"default": "none",
|
|
1304
|
+
"newLine": true,
|
|
1305
|
+
"xs": 12,
|
|
1306
|
+
"sm": 12,
|
|
1307
|
+
"md": 8,
|
|
1308
|
+
"lg": 8,
|
|
1309
|
+
"xl": 8
|
|
1310
|
+
},
|
|
1311
|
+
"aiModel": {
|
|
1312
|
+
"type": "text",
|
|
1313
|
+
"label": "AI model (optional)",
|
|
1314
|
+
"help": "Leave empty for default. Ollama: llama3.2 / gemma3. Mistral: mistral-small-latest. Groq: llama-3.3-70b-versatile. Anthropic: claude-haiku-4-5-20251001",
|
|
1315
|
+
"hidden": "data.aiProvider === 'none'",
|
|
1316
|
+
"newLine": true,
|
|
1317
|
+
"xs": 12,
|
|
1318
|
+
"sm": 12,
|
|
1319
|
+
"md": 6,
|
|
1320
|
+
"lg": 6,
|
|
1321
|
+
"xl": 6
|
|
1322
|
+
},
|
|
1323
|
+
"aiApiKey": {
|
|
1324
|
+
"type": "password",
|
|
1325
|
+
"label": "API key",
|
|
1326
|
+
"help": "Mistral: console.mistral.ai | Groq: starts with gsk_... | Anthropic: starts with sk-ant-... | Ollama: leave empty",
|
|
1327
|
+
"hidden": "data.aiProvider === 'none' || data.aiProvider === 'ollama'",
|
|
1328
|
+
"newLine": true,
|
|
1329
|
+
"xs": 12,
|
|
1330
|
+
"sm": 12,
|
|
1331
|
+
"md": 8,
|
|
1332
|
+
"lg": 8,
|
|
1333
|
+
"xl": 8
|
|
1334
|
+
},
|
|
1335
|
+
"aiBaseUrl": {
|
|
1336
|
+
"type": "text",
|
|
1337
|
+
"label": "Ollama base URL",
|
|
1338
|
+
"help": "Only for Ollama. Default: http://localhost:11434",
|
|
1339
|
+
"hidden": "data.aiProvider !== 'ollama'",
|
|
1340
|
+
"newLine": true,
|
|
1341
|
+
"xs": 12,
|
|
1342
|
+
"sm": 12,
|
|
1343
|
+
"md": 6,
|
|
1344
|
+
"lg": 6,
|
|
1345
|
+
"xl": 6
|
|
1346
|
+
},
|
|
1347
|
+
"aiRequestTimeoutSeconds": {
|
|
1348
|
+
"type": "text",
|
|
1349
|
+
"label": "AI request timeout seconds (optional)",
|
|
1350
|
+
"help": "Maximum wait for one LLM HTTP request. Default 300. Each generation uses several calls (user, onboarding, sometimes a German polish pass). Increase for slow local models on CPU (e.g. 480 or 600 for llama3.1:8b on NAS). Range 30–900.",
|
|
1351
|
+
"hidden": "data.aiProvider === 'none'",
|
|
1352
|
+
"newLine": true,
|
|
1353
|
+
"xs": 12,
|
|
1354
|
+
"sm": 12,
|
|
1355
|
+
"md": 6,
|
|
1356
|
+
"lg": 6,
|
|
1357
|
+
"xl": 6
|
|
1358
|
+
},
|
|
1359
|
+
"_aiHintsHeader": {
|
|
1360
|
+
"type": "header",
|
|
1361
|
+
"text": "AI context hints",
|
|
1362
|
+
"size": 4,
|
|
1363
|
+
"newLine": true,
|
|
1364
|
+
"hidden": "data.aiProvider === 'none'"
|
|
1365
|
+
},
|
|
1366
|
+
"_aiHintsHint": {
|
|
1367
|
+
"type": "staticText",
|
|
1368
|
+
"text": "AI context hints hint",
|
|
1369
|
+
"newLine": true,
|
|
1370
|
+
"xs": 12,
|
|
1371
|
+
"sm": 12,
|
|
1372
|
+
"md": 12,
|
|
1373
|
+
"lg": 12,
|
|
1374
|
+
"xl": 12,
|
|
1375
|
+
"hidden": "data.aiProvider === 'none'"
|
|
1376
|
+
},
|
|
1377
|
+
"aiOwnerHints": {
|
|
1378
|
+
"type": "text",
|
|
1379
|
+
"label": "AI context hints (owner notes)",
|
|
1380
|
+
"help": "AI context hints help",
|
|
1381
|
+
"minRows": 6,
|
|
1382
|
+
"maxRows": 18,
|
|
1383
|
+
"newLine": true,
|
|
1384
|
+
"xs": 12,
|
|
1385
|
+
"sm": 12,
|
|
1386
|
+
"md": 12,
|
|
1387
|
+
"lg": 12,
|
|
1388
|
+
"xl": 12,
|
|
1389
|
+
"hidden": "data.aiProvider === 'none'"
|
|
1390
|
+
},
|
|
1391
|
+
"_aiSectionTuning": {
|
|
1392
|
+
"type": "header",
|
|
1393
|
+
"text": "AI section tuning",
|
|
1394
|
+
"size": 4,
|
|
1395
|
+
"newLine": true,
|
|
1396
|
+
"hidden": "data.aiProvider === 'none'"
|
|
1397
|
+
},
|
|
1398
|
+
"aiTemperatureUser": {
|
|
1399
|
+
"type": "text",
|
|
1400
|
+
"label": "AI temperature — user profile (optional)",
|
|
1401
|
+
"help": "Sampling temperature for resident-facing AI text. Leave empty for the provider default. Typical range 0–2 (Ollama, Groq, Mistral); Anthropic accepts 0–1 (values above 1 are clamped). Lower ≈ steadier wording; higher ≈ more variation — tune after testing.",
|
|
1402
|
+
"hidden": "data.aiProvider === 'none'",
|
|
1403
|
+
"newLine": true,
|
|
1404
|
+
"xs": 12,
|
|
1405
|
+
"sm": 12,
|
|
1406
|
+
"md": 6,
|
|
1407
|
+
"lg": 6,
|
|
1408
|
+
"xl": 6
|
|
1409
|
+
},
|
|
1410
|
+
"aiTemperatureOnboarding": {
|
|
1411
|
+
"type": "text",
|
|
1412
|
+
"label": "AI temperature — onboarding (optional)",
|
|
1413
|
+
"help": "Sampling temperature for guest/onboarding AI text. Same rules as user profile. The German Sie polish pass uses a fixed low temperature and ignores this field.",
|
|
1414
|
+
"hidden": "data.aiProvider === 'none'",
|
|
1415
|
+
"xs": 12,
|
|
1416
|
+
"sm": 12,
|
|
1417
|
+
"md": 6,
|
|
1418
|
+
"lg": 6,
|
|
1419
|
+
"xl": 6
|
|
1420
|
+
},
|
|
1421
|
+
"_aiSectionScripts": {
|
|
1422
|
+
"type": "header",
|
|
1423
|
+
"text": "AI section scripts",
|
|
1424
|
+
"size": 4,
|
|
1425
|
+
"newLine": true,
|
|
1426
|
+
"hidden": "data.aiProvider === 'none'"
|
|
1427
|
+
},
|
|
1428
|
+
"aiAnalyzeScriptSources": {
|
|
1429
|
+
"type": "checkbox",
|
|
1430
|
+
"label": "AI explain JavaScript scripts (opt-in)",
|
|
1431
|
+
"help": "Sends sanitized script source to the same AI provider to add short plain-language explanations in User/Onboarding docs. Lines matching common secret patterns are redacted first; still review before enabling on production systems.",
|
|
1432
|
+
"default": false,
|
|
1433
|
+
"hidden": "data.aiProvider === 'none'",
|
|
1434
|
+
"newLine": true,
|
|
1435
|
+
"xs": 12,
|
|
1436
|
+
"sm": 12,
|
|
1437
|
+
"md": 12,
|
|
1438
|
+
"lg": 12,
|
|
1439
|
+
"xl": 12
|
|
1440
|
+
},
|
|
1441
|
+
"aiMaxScriptCharsForAi": {
|
|
1442
|
+
"type": "number",
|
|
1443
|
+
"label": "Max characters of script source per KI call",
|
|
1444
|
+
"help": "How many characters of each script (after redaction) are sent to the model; longer sources are truncated. Default 12000. Lower to speed up or fit small context; raise only if your model and timeout allow. Range 2000–100000. State info.aiScriptSourceProgress shows e.g. 5/12 while processing.",
|
|
1445
|
+
"min": 2000,
|
|
1446
|
+
"max": 100000,
|
|
1447
|
+
"default": 12000,
|
|
1448
|
+
"hidden": "data.aiProvider === 'none' || !data.aiAnalyzeScriptSources",
|
|
1449
|
+
"newLine": true,
|
|
1450
|
+
"xs": 12,
|
|
1451
|
+
"sm": 12,
|
|
1452
|
+
"md": 6,
|
|
1453
|
+
"lg": 6,
|
|
1454
|
+
"xl": 6
|
|
1455
|
+
},
|
|
1456
|
+
"_cancelScriptHint": {
|
|
1457
|
+
"type": "staticText",
|
|
1458
|
+
"text": "Cancel script KI hint",
|
|
1459
|
+
"hidden": "data.aiProvider === 'none' || !data.aiAnalyzeScriptSources",
|
|
1460
|
+
"newLine": true,
|
|
1461
|
+
"xs": 12,
|
|
1462
|
+
"sm": 12,
|
|
1463
|
+
"md": 12,
|
|
1464
|
+
"lg": 12,
|
|
1465
|
+
"xl": 12
|
|
1466
|
+
},
|
|
1467
|
+
"_cancelScriptButton": {
|
|
1468
|
+
"type": "setState",
|
|
1469
|
+
"id": "autodoc.0.action.cancelScriptSourceAi",
|
|
1470
|
+
"val": true,
|
|
1471
|
+
"label": "Cancel script KI (running generation)",
|
|
1472
|
+
"variant": "outlined",
|
|
1473
|
+
"hidden": "data.aiProvider === 'none' || !data.aiAnalyzeScriptSources",
|
|
1474
|
+
"confirm": {
|
|
1475
|
+
"title": "Cancel script KI",
|
|
1476
|
+
"text": "Stop the optional per-script KI pass? The request that is already running may still finish; further scripts will not be started. (The main user/onboarding KI calls run before this phase.)",
|
|
1477
|
+
"ok": "Cancel script KI",
|
|
1478
|
+
"cancel": "Back"
|
|
1479
|
+
},
|
|
1480
|
+
"newLine": true,
|
|
1481
|
+
"xs": 12,
|
|
1482
|
+
"sm": 12,
|
|
1483
|
+
"md": 6,
|
|
1484
|
+
"lg": 4,
|
|
1485
|
+
"xl": 4
|
|
1486
|
+
}
|
|
1487
|
+
}
|
|
1488
|
+
}
|
|
1489
|
+
}
|
|
1490
|
+
}
|