@solidxai/core 0.1.11-beta.8 → 0.1.11

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.
Files changed (98) hide show
  1. package/CHANGELOG.md +456 -0
  2. package/dist/controllers/datasource-introspection.controller.d.ts +8 -0
  3. package/dist/controllers/datasource-introspection.controller.d.ts.map +1 -1
  4. package/dist/controllers/media.controller.js +0 -2
  5. package/dist/controllers/media.controller.js.map +1 -1
  6. package/dist/helpers/module-metadata-helper.service.js +1 -1
  7. package/dist/helpers/module-metadata-helper.service.js.map +1 -1
  8. package/dist/helpers/solid-registry.d.ts +1 -2
  9. package/dist/helpers/solid-registry.d.ts.map +1 -1
  10. package/dist/helpers/solid-registry.js.map +1 -1
  11. package/dist/helpers/typeorm-db-helper.d.ts +1 -0
  12. package/dist/helpers/typeorm-db-helper.d.ts.map +1 -1
  13. package/dist/helpers/typeorm-db-helper.js +12 -0
  14. package/dist/helpers/typeorm-db-helper.js.map +1 -1
  15. package/dist/index.d.ts +0 -1
  16. package/dist/index.d.ts.map +1 -1
  17. package/dist/index.js +0 -1
  18. package/dist/index.js.map +1 -1
  19. package/dist/interfaces.d.ts +1 -0
  20. package/dist/interfaces.d.ts.map +1 -1
  21. package/dist/interfaces.js.map +1 -1
  22. package/dist/seeders/seed-data/solid-core-metadata.json +62 -33
  23. package/dist/services/authentication.service.d.ts +2 -0
  24. package/dist/services/authentication.service.d.ts.map +1 -1
  25. package/dist/services/authentication.service.js +32 -11
  26. package/dist/services/authentication.service.js.map +1 -1
  27. package/dist/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.d.ts.map +1 -1
  28. package/dist/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.js +5 -6
  29. package/dist/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.js.map +1 -1
  30. package/dist/services/crud-helper.service.d.ts.map +1 -1
  31. package/dist/services/crud-helper.service.js +32 -12
  32. package/dist/services/crud-helper.service.js.map +1 -1
  33. package/dist/services/datasource-introspection.service.d.ts +10 -0
  34. package/dist/services/datasource-introspection.service.d.ts.map +1 -1
  35. package/dist/services/datasource-introspection.service.js +109 -17
  36. package/dist/services/datasource-introspection.service.js.map +1 -1
  37. package/dist/services/menu-item-metadata.service.d.ts.map +1 -1
  38. package/dist/services/menu-item-metadata.service.js +1 -0
  39. package/dist/services/menu-item-metadata.service.js.map +1 -1
  40. package/dist/services/model-metadata.service.d.ts +2 -0
  41. package/dist/services/model-metadata.service.d.ts.map +1 -1
  42. package/dist/services/model-metadata.service.js +49 -15
  43. package/dist/services/model-metadata.service.js.map +1 -1
  44. package/dist/services/module-metadata.service.d.ts.map +1 -1
  45. package/dist/services/module-metadata.service.js +0 -27
  46. package/dist/services/module-metadata.service.js.map +1 -1
  47. package/dist/services/settings/default-settings-provider.service.d.ts +212 -0
  48. package/dist/services/settings/default-settings-provider.service.d.ts.map +1 -1
  49. package/dist/services/settings/default-settings-provider.service.js +106 -0
  50. package/dist/services/settings/default-settings-provider.service.js.map +1 -1
  51. package/dist/services/solid-ts-morph.service.d.ts +6 -0
  52. package/dist/services/solid-ts-morph.service.d.ts.map +1 -1
  53. package/dist/services/solid-ts-morph.service.js +43 -0
  54. package/dist/services/solid-ts-morph.service.js.map +1 -1
  55. package/dist/subscribers/audit.subscriber.d.ts +0 -1
  56. package/dist/subscribers/audit.subscriber.d.ts.map +1 -1
  57. package/dist/subscribers/audit.subscriber.js +1 -10
  58. package/dist/subscribers/audit.subscriber.js.map +1 -1
  59. package/dist/subscribers/computed-entity-field.subscriber.d.ts +1 -1
  60. package/dist/subscribers/computed-entity-field.subscriber.d.ts.map +1 -1
  61. package/dist/subscribers/computed-entity-field.subscriber.js +11 -13
  62. package/dist/subscribers/computed-entity-field.subscriber.js.map +1 -1
  63. package/dist/subscribers/created-by-updated-by.subscriber.d.ts.map +1 -1
  64. package/dist/subscribers/created-by-updated-by.subscriber.js.map +1 -1
  65. package/dist/subscribers/field-metadata.subscriber.d.ts.map +1 -1
  66. package/dist/subscribers/field-metadata.subscriber.js.map +1 -1
  67. package/dist/subscribers/scheduled-job.subscriber.js +1 -1
  68. package/dist/subscribers/scheduled-job.subscriber.js.map +1 -1
  69. package/dist/subscribers/security-rule.subscriber.js +1 -1
  70. package/dist/subscribers/security-rule.subscriber.js.map +1 -1
  71. package/package.json +1 -1
  72. package/src/controllers/media.controller.ts +1 -1
  73. package/src/helpers/module-metadata-helper.service.ts +1 -1
  74. package/src/helpers/solid-registry.ts +1 -7
  75. package/src/helpers/typeorm-db-helper.ts +15 -0
  76. package/src/index.ts +0 -1
  77. package/src/interfaces.ts +1 -0
  78. package/src/seeders/seed-data/solid-core-metadata.json +62 -33
  79. package/src/services/authentication.service.ts +46 -12
  80. package/src/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.ts +5 -10
  81. package/src/services/crud-helper.service.ts +32 -12
  82. package/src/services/datasource-introspection.service.ts +176 -16
  83. package/src/services/menu-item-metadata.service.ts +2 -1
  84. package/src/services/model-metadata.service.ts +63 -21
  85. package/src/services/module-metadata.service.ts +0 -35
  86. package/src/services/settings/default-settings-provider.service.ts +106 -0
  87. package/src/services/solid-ts-morph.service.ts +61 -1
  88. package/src/subscribers/audit.subscriber.ts +1 -12
  89. package/src/subscribers/computed-entity-field.subscriber.ts +23 -29
  90. package/src/subscribers/created-by-updated-by.subscriber.ts +0 -3
  91. package/src/subscribers/field-metadata.subscriber.ts +0 -3
  92. package/src/subscribers/scheduled-job.subscriber.ts +1 -1
  93. package/src/subscribers/security-rule.subscriber.ts +1 -1
  94. package/dist/helpers/nodemon-heartbeat.d.ts +0 -5
  95. package/dist/helpers/nodemon-heartbeat.d.ts.map +0 -1
  96. package/dist/helpers/nodemon-heartbeat.js +0 -67
  97. package/dist/helpers/nodemon-heartbeat.js.map +0 -1
  98. package/src/helpers/nodemon-heartbeat.ts +0 -59
@@ -10,6 +10,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
10
10
  readonly group: "authentication-settings";
11
11
  readonly sortOrder: 50;
12
12
  readonly controlType: "boolean";
13
+ readonly helpText: "Shows Google as a sign-in and sign-up option on supported authentication screens.";
13
14
  }, {
14
15
  readonly moduleName: "solid-core";
15
16
  readonly key: "iamFacebookOAuthEnabled";
@@ -19,6 +20,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
19
20
  readonly group: "authentication-settings";
20
21
  readonly sortOrder: 50;
21
22
  readonly controlType: "boolean";
23
+ readonly helpText: "Shows Facebook as a sign-in and sign-up option on supported authentication screens.";
22
24
  }, {
23
25
  readonly moduleName: "solid-core";
24
26
  readonly key: "iamMicrosoftOAuthEnabled";
@@ -28,6 +30,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
28
30
  readonly group: "authentication-settings";
29
31
  readonly sortOrder: 50;
30
32
  readonly controlType: "boolean";
33
+ readonly helpText: "Shows Microsoft as a sign-in and sign-up option on supported authentication screens.";
31
34
  }, {
32
35
  readonly moduleName: "solid-core";
33
36
  readonly key: "iamMicrosoftActiveDirectoryOAuthEnabled";
@@ -37,6 +40,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
37
40
  readonly group: "authentication-settings";
38
41
  readonly sortOrder: 50;
39
42
  readonly controlType: "boolean";
43
+ readonly helpText: "Shows Microsoft Active Directory as a sign-in and sign-up option on supported authentication screens.";
40
44
  }, {
41
45
  readonly moduleName: "solid-core";
42
46
  readonly key: "authPagesLayout";
@@ -56,6 +60,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
56
60
  readonly label: "Right";
57
61
  readonly value: "right";
58
62
  }];
63
+ readonly helpText: "Controls whether authentication forms are centered or shown beside a left or right visual panel.";
59
64
  }, {
60
65
  readonly moduleName: "solid-core";
61
66
  readonly key: "appLogo";
@@ -65,6 +70,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
65
70
  readonly group: "app-settings";
66
71
  readonly sortOrder: 10;
67
72
  readonly controlType: "mediaSingle";
73
+ readonly helpText: "Primary application logo used across branded authentication and workspace surfaces.";
68
74
  }, {
69
75
  readonly moduleName: "solid-core";
70
76
  readonly key: "companylogo";
@@ -74,6 +80,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
74
80
  readonly group: "app-settings";
75
81
  readonly sortOrder: 20;
76
82
  readonly controlType: "mediaSingle";
83
+ readonly helpText: "Secondary company logo for installations that need separate corporate branding.";
77
84
  }, {
78
85
  readonly moduleName: "solid-core";
79
86
  readonly key: "favicon";
@@ -83,6 +90,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
83
90
  readonly group: "app-settings";
84
91
  readonly sortOrder: 30;
85
92
  readonly controlType: "mediaSingle";
93
+ readonly helpText: "Browser tab icon used by the workspace and authentication pages when a custom favicon is configured.";
86
94
  }, {
87
95
  readonly moduleName: "solid-core";
88
96
  readonly key: "appLogoPosition";
@@ -99,6 +107,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
99
107
  readonly label: "In Image View";
100
108
  readonly value: "in_image_view";
101
109
  }];
110
+ readonly helpText: "Controls whether the app logo appears inside the authentication form or inside the image panel.";
102
111
  }, {
103
112
  readonly moduleName: "solid-core";
104
113
  readonly key: "rowClickAction";
@@ -115,6 +124,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
115
124
  readonly label: "View";
116
125
  readonly value: "view";
117
126
  }];
127
+ readonly helpText: "Decides whether clicking a list row opens the record in edit mode or view mode.";
118
128
  }, {
119
129
  readonly moduleName: "solid-core";
120
130
  readonly key: "showAuthContent";
@@ -124,6 +134,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
124
134
  readonly group: "app-settings";
125
135
  readonly sortOrder: 50;
126
136
  readonly controlType: "boolean";
137
+ readonly helpText: "Shows or hides the title, subtitle, and description block on authentication screens.";
127
138
  }, {
128
139
  readonly moduleName: "solid-core";
129
140
  readonly key: "appTitle";
@@ -133,6 +144,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
133
144
  readonly group: "app-settings";
134
145
  readonly sortOrder: 60;
135
146
  readonly controlType: "shortText";
147
+ readonly helpText: "Main application name shown on branded authentication screens.";
136
148
  }, {
137
149
  readonly moduleName: "solid-core";
138
150
  readonly key: "appSubtitle";
@@ -142,6 +154,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
142
154
  readonly group: "app-settings";
143
155
  readonly sortOrder: 70;
144
156
  readonly controlType: "shortText";
157
+ readonly helpText: "Short subtitle shown above or beside the main application title.";
145
158
  }, {
146
159
  readonly moduleName: "solid-core";
147
160
  readonly key: "appDescription";
@@ -151,6 +164,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
151
164
  readonly group: "app-settings";
152
165
  readonly sortOrder: 80;
153
166
  readonly controlType: "longText";
167
+ readonly helpText: "Supporting copy used to explain the product or workspace on authentication screens.";
154
168
  }, {
155
169
  readonly moduleName: "solid-core";
156
170
  readonly key: "showLegalLinks";
@@ -160,6 +174,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
160
174
  readonly group: "app-settings";
161
175
  readonly sortOrder: 90;
162
176
  readonly controlType: "boolean";
177
+ readonly helpText: "Shows or hides the terms and privacy links on authentication screens.";
163
178
  }, {
164
179
  readonly moduleName: "solid-core";
165
180
  readonly key: "appTnc";
@@ -169,6 +184,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
169
184
  readonly group: "app-settings";
170
185
  readonly sortOrder: 100;
171
186
  readonly controlType: "shortText";
187
+ readonly helpText: "Terms and conditions URL shown when legal links are enabled.";
172
188
  }, {
173
189
  readonly moduleName: "solid-core";
174
190
  readonly key: "appPrivacyPolicy";
@@ -178,6 +194,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
178
194
  readonly group: "app-settings";
179
195
  readonly sortOrder: 110;
180
196
  readonly controlType: "shortText";
197
+ readonly helpText: "Privacy policy URL shown when legal links are enabled.";
181
198
  }, {
182
199
  readonly moduleName: "solid-core";
183
200
  readonly key: "enableDarkMode";
@@ -187,6 +204,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
187
204
  readonly group: "app-settings";
188
205
  readonly sortOrder: 120;
189
206
  readonly controlType: "boolean";
207
+ readonly helpText: "Enables dark theme support for frontend surfaces that honor the global appearance setting.";
190
208
  }, {
191
209
  readonly moduleName: "solid-core";
192
210
  readonly key: "copyright";
@@ -196,6 +214,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
196
214
  readonly group: "app-settings";
197
215
  readonly sortOrder: 130;
198
216
  readonly controlType: "longText";
217
+ readonly helpText: "Footer copyright text shown on branded authentication screens.";
199
218
  }, {
200
219
  readonly moduleName: "solid-core";
201
220
  readonly key: "enableUsername";
@@ -205,6 +224,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
205
224
  readonly group: "misc-settings";
206
225
  readonly sortOrder: 10;
207
226
  readonly controlType: "boolean";
227
+ readonly helpText: "Allows username-based identity flows where the frontend supports them.";
208
228
  }, {
209
229
  readonly moduleName: "solid-core";
210
230
  readonly key: "enabledNotification";
@@ -214,6 +234,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
214
234
  readonly group: "misc-settings";
215
235
  readonly sortOrder: 20;
216
236
  readonly controlType: "boolean";
237
+ readonly helpText: "Default notification toggle used by user-facing notification settings.";
217
238
  }, {
218
239
  readonly moduleName: "solid-core";
219
240
  readonly key: "contactSupportEmail";
@@ -223,6 +244,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
223
244
  readonly group: "misc-settings";
224
245
  readonly sortOrder: 30;
225
246
  readonly controlType: "shortText";
247
+ readonly helpText: "Email address used by the support shortcut in the user menu and related help surfaces.";
226
248
  }, {
227
249
  readonly moduleName: "solid-core";
228
250
  readonly key: "contactSupportDisplayName";
@@ -232,6 +254,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
232
254
  readonly group: "misc-settings";
233
255
  readonly sortOrder: 40;
234
256
  readonly controlType: "shortText";
257
+ readonly helpText: "Friendly label shown for the support shortcut, such as Support or Help Desk.";
235
258
  }, {
236
259
  readonly moduleName: "solid-core";
237
260
  readonly key: "contactSupportIcon";
@@ -241,6 +264,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
241
264
  readonly group: "misc-settings";
242
265
  readonly sortOrder: 50;
243
266
  readonly controlType: "shortText";
267
+ readonly helpText: "Icon identifier used for the support shortcut so users can recognize it quickly.";
244
268
  }, {
245
269
  readonly moduleName: "solid-core";
246
270
  readonly key: "authScreenRightBackgroundImage";
@@ -250,6 +274,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
250
274
  readonly group: "authentication-settings";
251
275
  readonly sortOrder: 90;
252
276
  readonly controlType: "mediaSingle";
277
+ readonly helpText: "Banner image used when the authentication form is shown on the left and the visual panel is on the right.";
253
278
  }, {
254
279
  readonly moduleName: "solid-core";
255
280
  readonly key: "authScreenLeftBackgroundImage";
@@ -259,6 +284,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
259
284
  readonly group: "authentication-settings";
260
285
  readonly sortOrder: 100;
261
286
  readonly controlType: "mediaSingle";
287
+ readonly helpText: "Banner image used when the authentication form is shown on the right and the visual panel is on the left.";
262
288
  }, {
263
289
  readonly moduleName: "solid-core";
264
290
  readonly key: "authScreenCenterBackgroundImage";
@@ -268,6 +294,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
268
294
  readonly group: "authentication-settings";
269
295
  readonly sortOrder: 110;
270
296
  readonly controlType: "mediaSingle";
297
+ readonly helpText: "Background image used for the centered authentication layout.";
271
298
  }, {
272
299
  readonly moduleName: "solid-core";
273
300
  readonly key: "solidXGenAiCodeBuilderConfig";
@@ -280,6 +307,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
280
307
  readonly sortOrder: 10;
281
308
  readonly controlType: "custom";
282
309
  readonly settingsWidget: "solidXGenAiCodeBuilderConfigWidget";
310
+ readonly helpText: "Structured AI builder configuration that stores providers, credentials, and model assignments for SolidX code generation features.";
283
311
  }, {
284
312
  readonly moduleName: "solid-core";
285
313
  readonly key: "appEncryptionKey";
@@ -294,6 +322,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
294
322
  readonly group: "ai-settings";
295
323
  readonly sortOrder: 20;
296
324
  readonly controlType: "boolean";
325
+ readonly helpText: "Read-only flag indicating whether MCP integration is enabled for this deployment.";
297
326
  }, {
298
327
  readonly moduleName: "solid-core";
299
328
  readonly key: "mcpServerUrl";
@@ -303,6 +332,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
303
332
  readonly group: "ai-settings";
304
333
  readonly sortOrder: 30;
305
334
  readonly controlType: "shortText";
335
+ readonly helpText: "Base MCP server URL used when MCP integration is enabled.";
306
336
  }, {
307
337
  readonly moduleName: "solid-core";
308
338
  readonly key: "mcpApiKey";
@@ -317,6 +347,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
317
347
  readonly group: "system-settings";
318
348
  readonly sortOrder: 10;
319
349
  readonly controlType: "shortText";
350
+ readonly helpText: "Default date-time format used by Solid core features that need a shared server-side format.";
320
351
  }, {
321
352
  readonly moduleName: "solid-core";
322
353
  readonly key: "dateFormat";
@@ -326,6 +357,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
326
357
  readonly group: "system-settings";
327
358
  readonly sortOrder: 20;
328
359
  readonly controlType: "shortText";
360
+ readonly helpText: "Default date format used by Solid core features that need a shared server-side format.";
329
361
  }, {
330
362
  readonly moduleName: "solid-core";
331
363
  readonly key: "baseUrl";
@@ -335,6 +367,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
335
367
  readonly group: "system-settings";
336
368
  readonly sortOrder: 30;
337
369
  readonly controlType: "shortText";
370
+ readonly helpText: "Backend base URL used to generate absolute links and media URLs.";
338
371
  }, {
339
372
  readonly moduleName: "solid-core";
340
373
  readonly key: "frontendAdminBaseUrl";
@@ -344,6 +377,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
344
377
  readonly group: "system-settings";
345
378
  readonly sortOrder: 35;
346
379
  readonly controlType: "shortText";
380
+ readonly helpText: "Frontend admin application base URL used when the backend needs to point users back to the admin UI.";
347
381
  }, {
348
382
  readonly moduleName: "solid-core";
349
383
  readonly key: "solidAppWebsiteUrl";
@@ -353,6 +387,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
353
387
  readonly group: "system-settings";
354
388
  readonly sortOrder: 40;
355
389
  readonly controlType: "shortText";
390
+ readonly helpText: "Public website URL for the product or marketing site.";
356
391
  }, {
357
392
  readonly moduleName: "solid-core";
358
393
  readonly key: "moduleMetadataSeederFiles";
@@ -362,6 +397,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
362
397
  readonly group: "storage-settings";
363
398
  readonly sortOrder: 10;
364
399
  readonly controlType: "longText";
400
+ readonly helpText: "Comma-separated list of module metadata seed files that are loaded by the platform.";
365
401
  }, {
366
402
  readonly moduleName: "solid-core";
367
403
  readonly key: "uploadDir";
@@ -371,6 +407,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
371
407
  readonly group: "storage-settings";
372
408
  readonly sortOrder: 20;
373
409
  readonly controlType: "shortText";
410
+ readonly helpText: "Directory where uploaded media is staged before downstream processing or persistence.";
374
411
  }, {
375
412
  readonly moduleName: "solid-core";
376
413
  readonly key: "fileStorageDir";
@@ -380,6 +417,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
380
417
  readonly group: "storage-settings";
381
418
  readonly sortOrder: 30;
382
419
  readonly controlType: "shortText";
420
+ readonly helpText: "Directory used by the default disk-based file storage provider for persisted files.";
383
421
  }, {
384
422
  readonly moduleName: "solid-core";
385
423
  readonly key: "defaultFileService";
@@ -396,6 +434,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
396
434
  readonly label: "S3";
397
435
  readonly value: "s3";
398
436
  }];
437
+ readonly helpText: "Default storage implementation used for file handling, such as local disk or S3.";
399
438
  }, {
400
439
  readonly moduleName: "solid-core";
401
440
  readonly key: "S3_AWS_ACCESS_KEY";
@@ -415,6 +454,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
415
454
  readonly group: "storage-settings";
416
455
  readonly sortOrder: 50;
417
456
  readonly controlType: "shortText";
457
+ readonly helpText: "AWS region used by the default S3 storage integration.";
418
458
  }, {
419
459
  readonly moduleName: "solid-core";
420
460
  readonly key: "S3_DEFAULT_BUCKET";
@@ -424,6 +464,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
424
464
  readonly group: "storage-settings";
425
465
  readonly sortOrder: 60;
426
466
  readonly controlType: "shortText";
467
+ readonly helpText: "Default S3 bucket used when the S3 storage provider is active.";
427
468
  }, {
428
469
  readonly moduleName: "solid-core";
429
470
  readonly key: "emailProvider";
@@ -440,6 +481,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
440
481
  readonly label: "Elastic Email Service";
441
482
  readonly value: "ElasticEmailService";
442
483
  }];
484
+ readonly helpText: "Email delivery provider currently configured for outbound mail.";
443
485
  }, {
444
486
  readonly moduleName: "solid-core";
445
487
  readonly key: "emailTemplateSeederFiles";
@@ -449,6 +491,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
449
491
  readonly group: "email-settings";
450
492
  readonly sortOrder: 20;
451
493
  readonly controlType: "longText";
494
+ readonly helpText: "Comma-separated list of email template seed files loaded by the platform.";
452
495
  }, {
453
496
  readonly moduleName: "solid-core";
454
497
  readonly key: "shouldQueueEmails";
@@ -458,6 +501,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
458
501
  readonly group: "email-settings";
459
502
  readonly sortOrder: 30;
460
503
  readonly controlType: "boolean";
504
+ readonly helpText: "Whether outbound emails are queued for asynchronous delivery instead of being sent inline.";
461
505
  }, {
462
506
  readonly moduleName: "solid-core";
463
507
  readonly key: "smtpMailHost";
@@ -467,6 +511,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
467
511
  readonly group: "email-settings";
468
512
  readonly sortOrder: 40;
469
513
  readonly controlType: "shortText";
514
+ readonly helpText: "SMTP host name used when the SMTP email provider is active.";
470
515
  }, {
471
516
  readonly moduleName: "solid-core";
472
517
  readonly key: "smtpMailPort";
@@ -476,6 +521,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
476
521
  readonly group: "email-settings";
477
522
  readonly sortOrder: 50;
478
523
  readonly controlType: "numeric";
524
+ readonly helpText: "SMTP port used when the SMTP email provider is active.";
479
525
  }, {
480
526
  readonly moduleName: "solid-core";
481
527
  readonly key: "smtpMailUsername";
@@ -485,6 +531,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
485
531
  readonly group: "email-settings";
486
532
  readonly sortOrder: 60;
487
533
  readonly controlType: "shortText";
534
+ readonly helpText: "SMTP username used when the SMTP email provider is active.";
488
535
  }, {
489
536
  readonly moduleName: "solid-core";
490
537
  readonly key: "smtpMailPassword";
@@ -499,6 +546,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
499
546
  readonly group: "email-settings";
500
547
  readonly sortOrder: 70;
501
548
  readonly controlType: "shortText";
549
+ readonly helpText: "Default From address for outbound mail sent through the SMTP provider.";
502
550
  }, {
503
551
  readonly moduleName: "solid-core";
504
552
  readonly key: "apiMailKey";
@@ -513,6 +561,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
513
561
  readonly group: "email-settings";
514
562
  readonly sortOrder: 80;
515
563
  readonly controlType: "shortText";
564
+ readonly helpText: "Default From address for outbound mail sent through API-based email providers.";
516
565
  }, {
517
566
  readonly moduleName: "solid-core";
518
567
  readonly key: "ragServerUrl";
@@ -522,6 +571,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
522
571
  readonly group: "ai-settings";
523
572
  readonly sortOrder: 40;
524
573
  readonly controlType: "shortText";
574
+ readonly helpText: "Base URL of the RAG service used by AI-assisted features that need retrieval support.";
525
575
  }, {
526
576
  readonly moduleName: "solid-core";
527
577
  readonly key: "ragServerLogin";
@@ -556,6 +606,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
556
606
  readonly group: "oauth-settings";
557
607
  readonly sortOrder: 10;
558
608
  readonly controlType: "shortText";
609
+ readonly helpText: "Google OAuth client ID registered for this application.";
559
610
  }, {
560
611
  readonly moduleName: "solid-core";
561
612
  readonly key: "clientSecret";
@@ -570,6 +621,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
570
621
  readonly group: "oauth-settings";
571
622
  readonly sortOrder: 20;
572
623
  readonly controlType: "shortText";
624
+ readonly helpText: "Backend callback URL that Google redirects to after authentication.";
573
625
  }, {
574
626
  readonly moduleName: "solid-core";
575
627
  readonly key: "redirectURL";
@@ -579,11 +631,13 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
579
631
  readonly group: "oauth-settings";
580
632
  readonly sortOrder: 30;
581
633
  readonly controlType: "shortText";
634
+ readonly helpText: "Post-authentication Google redirect URL used by the application flow.";
582
635
  }, {
583
636
  readonly moduleName: "solid-core";
584
637
  readonly key: "FACEBOOK_CLIENT_ID";
585
638
  readonly value: string;
586
639
  readonly level: SettingLevel.SystemAdminReadonly;
640
+ readonly helpText: "Facebook OAuth client ID registered for this application.";
587
641
  }, {
588
642
  readonly moduleName: "solid-core";
589
643
  readonly key: "FACEBOOK_CLIENT_SECRET";
@@ -594,16 +648,19 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
594
648
  readonly key: "FACEBOOK_CALLBACK_URL";
595
649
  readonly value: string;
596
650
  readonly level: SettingLevel.SystemAdminReadonly;
651
+ readonly helpText: "Backend callback URL that Facebook redirects to after authentication.";
597
652
  }, {
598
653
  readonly moduleName: "solid-core";
599
654
  readonly key: "FACEBOOK_REDIRECT_URL";
600
655
  readonly value: string;
601
656
  readonly level: SettingLevel.SystemAdminReadonly;
657
+ readonly helpText: "Post-authentication Facebook redirect URL used by the application flow.";
602
658
  }, {
603
659
  readonly moduleName: "solid-core";
604
660
  readonly key: "MICROSOFT_CLIENT_ID";
605
661
  readonly value: string;
606
662
  readonly level: SettingLevel.SystemAdminReadonly;
663
+ readonly helpText: "Microsoft OAuth client ID registered for this application.";
607
664
  }, {
608
665
  readonly moduleName: "solid-core";
609
666
  readonly key: "MICROSOFT_CLIENT_SECRET";
@@ -614,16 +671,19 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
614
671
  readonly key: "MICROSOFT_TENANT_ID";
615
672
  readonly value: string;
616
673
  readonly level: SettingLevel.SystemAdminReadonly;
674
+ readonly helpText: "Microsoft OAuth tenant identifier used to scope sign-in requests.";
617
675
  }, {
618
676
  readonly moduleName: "solid-core";
619
677
  readonly key: "MICROSOFT_CALLBACK_URL";
620
678
  readonly value: string;
621
679
  readonly level: SettingLevel.SystemAdminReadonly;
680
+ readonly helpText: "Backend callback URL that Microsoft redirects to after authentication.";
622
681
  }, {
623
682
  readonly moduleName: "solid-core";
624
683
  readonly key: "MICROSOFT_REDIRECT_URL";
625
684
  readonly value: string;
626
685
  readonly level: SettingLevel.SystemAdminReadonly;
686
+ readonly helpText: "Post-authentication Microsoft redirect URL used by the application flow.";
627
687
  }, {
628
688
  readonly moduleName: "solid-core";
629
689
  readonly key: "MICROSOFT_ACTIVE_DIRECTORY_CLIENT_ID";
@@ -633,6 +693,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
633
693
  readonly group: "oauth-settings";
634
694
  readonly sortOrder: 70;
635
695
  readonly controlType: "shortText";
696
+ readonly helpText: "Microsoft Active Directory client ID registered for this application.";
636
697
  }, {
637
698
  readonly moduleName: "solid-core";
638
699
  readonly key: "MICROSOFT_ACTIVE_DIRECTORY_CLIENT_SECRET";
@@ -647,6 +708,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
647
708
  readonly group: "oauth-settings";
648
709
  readonly sortOrder: 80;
649
710
  readonly controlType: "shortText";
711
+ readonly helpText: "Microsoft Active Directory tenant identifier used to scope sign-in requests.";
650
712
  }, {
651
713
  readonly moduleName: "solid-core";
652
714
  readonly key: "MICROSOFT_ACTIVE_DIRECTORY_CALLBACK_URL";
@@ -656,6 +718,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
656
718
  readonly group: "oauth-settings";
657
719
  readonly sortOrder: 90;
658
720
  readonly controlType: "shortText";
721
+ readonly helpText: "Backend callback URL that Microsoft Active Directory redirects to after authentication.";
659
722
  }, {
660
723
  readonly moduleName: "solid-core";
661
724
  readonly key: "MICROSOFT_ACTIVE_DIRECTORY_REDIRECT_URL";
@@ -665,6 +728,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
665
728
  readonly group: "oauth-settings";
666
729
  readonly sortOrder: 100;
667
730
  readonly controlType: "shortText";
731
+ readonly helpText: "Post-authentication Microsoft Active Directory redirect URL used by the application flow.";
668
732
  }, {
669
733
  readonly moduleName: "solid-core";
670
734
  readonly key: "passwordLessAuth";
@@ -674,6 +738,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
674
738
  readonly group: "authentication-settings";
675
739
  readonly sortOrder: 20;
676
740
  readonly controlType: "boolean";
741
+ readonly helpText: "Enables passwordless sign-in flows such as OTP-based authentication.";
677
742
  }, {
678
743
  readonly moduleName: "solid-core";
679
744
  readonly key: "passwordBasedAuth";
@@ -683,6 +748,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
683
748
  readonly group: "authentication-settings";
684
749
  readonly sortOrder: 10;
685
750
  readonly controlType: "boolean";
751
+ readonly helpText: "Enables traditional password-based sign-in.";
686
752
  }, {
687
753
  readonly moduleName: "solid-core";
688
754
  readonly key: "passwordlessRegistrationValidateWhat";
@@ -699,6 +765,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
699
765
  readonly label: "Mobile";
700
766
  readonly value: "mobile";
701
767
  }];
768
+ readonly helpText: "Chooses whether passwordless registration validates new users by email or mobile number.";
702
769
  }, {
703
770
  readonly moduleName: "solid-core";
704
771
  readonly key: "passwordlessLoginValidateWhat";
@@ -718,6 +785,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
718
785
  readonly label: "Selectable";
719
786
  readonly value: "selectable";
720
787
  }];
788
+ readonly helpText: "Chooses whether passwordless login validates users by email, mobile number, or a selectable option.";
721
789
  }, {
722
790
  readonly moduleName: "solid-core";
723
791
  readonly key: "allowPublicRegistration";
@@ -727,6 +795,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
727
795
  readonly group: "authentication-settings";
728
796
  readonly sortOrder: 60;
729
797
  readonly controlType: "boolean";
798
+ readonly helpText: "Lets unauthenticated visitors create their own account from public registration screens.";
730
799
  }, {
731
800
  readonly moduleName: "solid-core";
732
801
  readonly key: "activateUserOnRegistration";
@@ -736,6 +805,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
736
805
  readonly group: "authentication-settings";
737
806
  readonly sortOrder: 70;
738
807
  readonly controlType: "boolean";
808
+ readonly helpText: "Automatically activates newly registered users instead of requiring a separate activation step.";
739
809
  }, {
740
810
  readonly moduleName: "solid-core";
741
811
  readonly key: "autoLoginUserOnRegistration";
@@ -755,6 +825,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
755
825
  readonly group: "authentication-settings";
756
826
  readonly sortOrder: 85;
757
827
  readonly controlType: "boolean";
828
+ readonly helpText: "Allows OTP delivery to fall back to WhatsApp when the primary OTP path cannot be used.";
758
829
  }, {
759
830
  readonly moduleName: "solid-core";
760
831
  readonly key: "otpWhatsappTemplateId";
@@ -764,6 +835,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
764
835
  readonly group: "authentication-settings";
765
836
  readonly sortOrder: 86;
766
837
  readonly controlType: "shortText";
838
+ readonly helpText: "Template identifier used when OTP messages are sent through WhatsApp.";
767
839
  }, {
768
840
  readonly moduleName: "solid-core";
769
841
  readonly key: "otpWhatsappIndependentEnabled";
@@ -773,6 +845,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
773
845
  readonly group: "authentication-settings";
774
846
  readonly sortOrder: 87;
775
847
  readonly controlType: "boolean";
848
+ readonly helpText: "Allows WhatsApp OTP delivery to run as an independent channel where supported.";
776
849
  }, {
777
850
  readonly moduleName: "solid-core";
778
851
  readonly key: "otpDefaultCountryDialCode";
@@ -782,6 +855,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
782
855
  readonly group: "authentication-settings";
783
856
  readonly sortOrder: 88;
784
857
  readonly controlType: "shortText";
858
+ readonly helpText: "Default dialing code applied when OTP phone numbers are entered without a country prefix.";
785
859
  }, {
786
860
  readonly moduleName: "solid-core";
787
861
  readonly key: "forgotPasswordVerificationTokenExpiry";
@@ -796,6 +870,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
796
870
  readonly group: "authentication-settings";
797
871
  readonly sortOrder: 75;
798
872
  readonly controlType: "shortText";
873
+ readonly helpText: "Role assigned by default to newly created users in flows that rely on automatic role assignment.";
799
874
  }, {
800
875
  readonly moduleName: "solid-core";
801
876
  readonly key: "dummyOtp";
@@ -820,6 +895,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
820
895
  readonly group: "authentication-settings";
821
896
  readonly sortOrder: 110;
822
897
  readonly controlType: "numeric";
898
+ readonly helpText: "Maximum failed login attempts allowed before a user is considered blocked.";
823
899
  }, {
824
900
  readonly moduleName: "solid-core";
825
901
  readonly key: "forceChangePasswordOnFirstLogin";
@@ -829,6 +905,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
829
905
  readonly group: "authentication-settings";
830
906
  readonly sortOrder: 120;
831
907
  readonly controlType: "boolean";
908
+ readonly helpText: "Requires users to choose a new password the first time they sign in.";
832
909
  }, {
833
910
  readonly moduleName: "solid-core";
834
911
  readonly key: "authenticationPasswordRegex";
@@ -838,6 +915,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
838
915
  readonly group: "authentication-settings";
839
916
  readonly sortOrder: 130;
840
917
  readonly controlType: "shortText";
918
+ readonly helpText: "Validation pattern applied to new passwords in registration and password-change flows.";
841
919
  }, {
842
920
  readonly moduleName: "solid-core";
843
921
  readonly key: "authenticationPasswordRegexErrorMessage";
@@ -847,6 +925,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
847
925
  readonly group: "authentication-settings";
848
926
  readonly sortOrder: 140;
849
927
  readonly controlType: "longText";
928
+ readonly helpText: "Custom error message shown when a password does not satisfy the configured regex.";
850
929
  }, {
851
930
  readonly moduleName: "solid-core";
852
931
  readonly key: "authenticationPasswordComplexityDescription";
@@ -856,6 +935,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
856
935
  readonly group: "authentication-settings";
857
936
  readonly sortOrder: 150;
858
937
  readonly controlType: "longText";
938
+ readonly helpText: "Human-friendly guidance shown to users so they understand the password policy before submission.";
859
939
  }, {
860
940
  readonly moduleName: "solid-core";
861
941
  readonly key: "iamAutoGeneratedPassword";
@@ -865,6 +945,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
865
945
  readonly group: "authentication-settings";
866
946
  readonly sortOrder: 160;
867
947
  readonly controlType: "boolean";
948
+ readonly helpText: "Enables automatic password generation in flows that create user credentials on the user's behalf.";
868
949
  }, {
869
950
  readonly moduleName: "solid-core";
870
951
  readonly key: "passwordPepper";
@@ -879,6 +960,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
879
960
  readonly group: "authentication-settings";
880
961
  readonly sortOrder: 170;
881
962
  readonly controlType: "boolean";
963
+ readonly helpText: "Adds name fields to the public registration form so users can provide profile details up front.";
882
964
  }, {
883
965
  readonly moduleName: "solid-core";
884
966
  readonly key: "sendWelcomeEmailOnSignup";
@@ -888,6 +970,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
888
970
  readonly group: "authentication-settings";
889
971
  readonly sortOrder: 180;
890
972
  readonly controlType: "boolean";
973
+ readonly helpText: "Sends a welcome email after a successful signup when email delivery is configured.";
891
974
  }, {
892
975
  readonly moduleName: "solid-core";
893
976
  readonly key: "sendWelcomeSmsOnSignup";
@@ -897,6 +980,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
897
980
  readonly group: "authentication-settings";
898
981
  readonly sortOrder: 190;
899
982
  readonly controlType: "boolean";
983
+ readonly helpText: "Sends a welcome SMS after a successful signup when SMS delivery is configured.";
900
984
  }, {
901
985
  readonly moduleName: "solid-core";
902
986
  readonly key: "frontendLoginPageUrl";
@@ -906,6 +990,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
906
990
  readonly group: "authentication-settings";
907
991
  readonly sortOrder: 180;
908
992
  readonly controlType: "shortText";
993
+ readonly helpText: "Frontend login page URL used in backend-generated links and redirects.";
909
994
  }, {
910
995
  readonly moduleName: "solid-core";
911
996
  readonly key: "frontendForgotPasswordPageUrl";
@@ -915,6 +1000,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
915
1000
  readonly group: "authentication-settings";
916
1001
  readonly sortOrder: 190;
917
1002
  readonly controlType: "shortText";
1003
+ readonly helpText: "Frontend forgot-password page URL used in backend-generated links and redirects.";
918
1004
  }, {
919
1005
  readonly moduleName: "solid-core";
920
1006
  readonly key: "secret";
@@ -929,6 +1015,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
929
1015
  readonly group: "jwt-settings";
930
1016
  readonly sortOrder: 10;
931
1017
  readonly controlType: "shortText";
1018
+ readonly helpText: "JWT audience claim expected by tokens issued by this deployment.";
932
1019
  }, {
933
1020
  readonly moduleName: "solid-core";
934
1021
  readonly key: "issuer";
@@ -938,6 +1025,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
938
1025
  readonly group: "jwt-settings";
939
1026
  readonly sortOrder: 20;
940
1027
  readonly controlType: "shortText";
1028
+ readonly helpText: "JWT issuer claim attached to tokens issued by this deployment.";
941
1029
  }, {
942
1030
  readonly moduleName: "solid-core";
943
1031
  readonly key: "accessTokenTtl";
@@ -964,6 +1052,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
964
1052
  readonly label: "RabbitMQ";
965
1053
  readonly value: "rabbitmq";
966
1054
  }];
1055
+ readonly helpText: "Default queue broker used for background job processing.";
967
1056
  }, {
968
1057
  readonly moduleName: "solid-core";
969
1058
  readonly key: "queuesServiceRole";
@@ -973,6 +1062,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
973
1062
  readonly group: "queue-settings";
974
1063
  readonly sortOrder: 20;
975
1064
  readonly controlType: "shortText";
1065
+ readonly helpText: "Service role or worker identity expected by the queue subsystem.";
976
1066
  }, {
977
1067
  readonly moduleName: "solid-core";
978
1068
  readonly key: "queuesRabbitMqUrl";
@@ -992,6 +1082,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
992
1082
  readonly group: "sms-settings";
993
1083
  readonly sortOrder: 10;
994
1084
  readonly controlType: "shortText";
1085
+ readonly helpText: "SMS delivery provider currently configured for outbound messages.";
995
1086
  }, {
996
1087
  readonly moduleName: "solid-core";
997
1088
  readonly key: "smsTemplateSeederFiles";
@@ -1001,6 +1092,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1001
1092
  readonly group: "sms-settings";
1002
1093
  readonly sortOrder: 20;
1003
1094
  readonly controlType: "longText";
1095
+ readonly helpText: "Comma-separated list of SMS template seed files loaded by the platform.";
1004
1096
  }, {
1005
1097
  readonly moduleName: "solid-core";
1006
1098
  readonly key: "shouldQueueSms";
@@ -1010,6 +1102,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1010
1102
  readonly group: "sms-settings";
1011
1103
  readonly sortOrder: 30;
1012
1104
  readonly controlType: "boolean";
1105
+ readonly helpText: "Whether outbound SMS messages are queued for asynchronous delivery instead of being sent inline.";
1013
1106
  }, {
1014
1107
  readonly moduleName: "solid-core";
1015
1108
  readonly key: "msg91SmsUrl";
@@ -1019,6 +1112,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1019
1112
  readonly group: "sms-settings";
1020
1113
  readonly sortOrder: 40;
1021
1114
  readonly controlType: "shortText";
1115
+ readonly helpText: "MSG91 endpoint URL used when the MSG91 SMS provider is active.";
1022
1116
  }, {
1023
1117
  readonly moduleName: "solid-core";
1024
1118
  readonly key: "msg91SmsApiKey";
@@ -1033,6 +1127,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1033
1127
  readonly group: "sms-settings";
1034
1128
  readonly sortOrder: 50;
1035
1129
  readonly controlType: "shortText";
1130
+ readonly helpText: "Twilio account SID used when the Twilio SMS provider is active.";
1036
1131
  }, {
1037
1132
  readonly moduleName: "solid-core";
1038
1133
  readonly key: "twilioAuthToken";
@@ -1047,6 +1142,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1047
1142
  readonly group: "sms-settings";
1048
1143
  readonly sortOrder: 60;
1049
1144
  readonly controlType: "shortText";
1145
+ readonly helpText: "Twilio phone number used as the sender for outbound SMS.";
1050
1146
  }, {
1051
1147
  readonly moduleName: "solid-core";
1052
1148
  readonly key: "tinyUrlApiUrl";
@@ -1056,6 +1152,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1056
1152
  readonly group: "short-url-settings";
1057
1153
  readonly sortOrder: 10;
1058
1154
  readonly controlType: "shortText";
1155
+ readonly helpText: "API endpoint used to create shortened URLs.";
1059
1156
  }, {
1060
1157
  readonly moduleName: "solid-core";
1061
1158
  readonly key: "tinyUrlApiKey";
@@ -1070,6 +1167,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1070
1167
  readonly group: "short-url-settings";
1071
1168
  readonly sortOrder: 20;
1072
1169
  readonly controlType: "shortText";
1170
+ readonly helpText: "Short URL domain used when generating branded or provider-backed tiny URLs.";
1073
1171
  }, {
1074
1172
  readonly moduleName: "solid-core";
1075
1173
  readonly key: "tinyUrlEnabled";
@@ -1079,6 +1177,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1079
1177
  readonly group: "short-url-settings";
1080
1178
  readonly sortOrder: 30;
1081
1179
  readonly controlType: "boolean";
1180
+ readonly helpText: "Indicates whether short URL generation is enabled for this deployment.";
1082
1181
  }, {
1083
1182
  readonly moduleName: "solid-core";
1084
1183
  readonly key: "whatsappProvider";
@@ -1088,6 +1187,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1088
1187
  readonly group: "whatsapp-settings";
1089
1188
  readonly sortOrder: 10;
1090
1189
  readonly controlType: "shortText";
1190
+ readonly helpText: "WhatsApp delivery provider currently configured for outbound messages.";
1091
1191
  }, {
1092
1192
  readonly moduleName: "solid-core";
1093
1193
  readonly key: "msg91WhatsappUrl";
@@ -1097,6 +1197,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1097
1197
  readonly group: "whatsapp-settings";
1098
1198
  readonly sortOrder: 20;
1099
1199
  readonly controlType: "shortText";
1200
+ readonly helpText: "MSG91 endpoint URL used when the MSG91 WhatsApp provider is active.";
1100
1201
  }, {
1101
1202
  readonly moduleName: "solid-core";
1102
1203
  readonly key: "msg91WhatsappApiKey";
@@ -1111,6 +1212,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1111
1212
  readonly group: "whatsapp-settings";
1112
1213
  readonly sortOrder: 30;
1113
1214
  readonly controlType: "shortText";
1215
+ readonly helpText: "Integrated WhatsApp number used by the MSG91 WhatsApp provider.";
1114
1216
  }, {
1115
1217
  readonly moduleName: "solid-core";
1116
1218
  readonly key: "metaWhatsappApiUrl";
@@ -1120,6 +1222,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1120
1222
  readonly group: "whatsapp-settings";
1121
1223
  readonly sortOrder: 40;
1122
1224
  readonly controlType: "shortText";
1225
+ readonly helpText: "Base Meta WhatsApp API URL used by the Meta WhatsApp integration.";
1123
1226
  }, {
1124
1227
  readonly moduleName: "solid-core";
1125
1228
  readonly key: "metaWhatsappApiVersion";
@@ -1129,6 +1232,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1129
1232
  readonly group: "whatsapp-settings";
1130
1233
  readonly sortOrder: 50;
1131
1234
  readonly controlType: "shortText";
1235
+ readonly helpText: "Meta WhatsApp API version used when building outbound requests.";
1132
1236
  }, {
1133
1237
  readonly moduleName: "solid-core";
1134
1238
  readonly key: "metaWhatsappPhoneNumberId";
@@ -1138,6 +1242,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1138
1242
  readonly group: "whatsapp-settings";
1139
1243
  readonly sortOrder: 60;
1140
1244
  readonly controlType: "shortText";
1245
+ readonly helpText: "Meta WhatsApp phone number ID used to send messages from the connected business account.";
1141
1246
  }, {
1142
1247
  readonly moduleName: "solid-core";
1143
1248
  readonly key: "metaWhatsappBusinessAccountId";
@@ -1147,6 +1252,7 @@ declare const getSolidCoreSettings: (isProd: boolean) => [{
1147
1252
  readonly group: "whatsapp-settings";
1148
1253
  readonly sortOrder: 70;
1149
1254
  readonly controlType: "shortText";
1255
+ readonly helpText: "Meta WhatsApp business account ID associated with the connected sender.";
1150
1256
  }, {
1151
1257
  readonly moduleName: "solid-core";
1152
1258
  readonly key: "metaWhatsappAccessToken";
@@ -1174,6 +1280,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1174
1280
  readonly group: "authentication-settings";
1175
1281
  readonly sortOrder: 50;
1176
1282
  readonly controlType: "boolean";
1283
+ readonly helpText: "Shows Google as a sign-in and sign-up option on supported authentication screens.";
1177
1284
  }, {
1178
1285
  readonly moduleName: "solid-core";
1179
1286
  readonly key: "iamFacebookOAuthEnabled";
@@ -1183,6 +1290,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1183
1290
  readonly group: "authentication-settings";
1184
1291
  readonly sortOrder: 50;
1185
1292
  readonly controlType: "boolean";
1293
+ readonly helpText: "Shows Facebook as a sign-in and sign-up option on supported authentication screens.";
1186
1294
  }, {
1187
1295
  readonly moduleName: "solid-core";
1188
1296
  readonly key: "iamMicrosoftOAuthEnabled";
@@ -1192,6 +1300,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1192
1300
  readonly group: "authentication-settings";
1193
1301
  readonly sortOrder: 50;
1194
1302
  readonly controlType: "boolean";
1303
+ readonly helpText: "Shows Microsoft as a sign-in and sign-up option on supported authentication screens.";
1195
1304
  }, {
1196
1305
  readonly moduleName: "solid-core";
1197
1306
  readonly key: "iamMicrosoftActiveDirectoryOAuthEnabled";
@@ -1201,6 +1310,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1201
1310
  readonly group: "authentication-settings";
1202
1311
  readonly sortOrder: 50;
1203
1312
  readonly controlType: "boolean";
1313
+ readonly helpText: "Shows Microsoft Active Directory as a sign-in and sign-up option on supported authentication screens.";
1204
1314
  }, {
1205
1315
  readonly moduleName: "solid-core";
1206
1316
  readonly key: "authPagesLayout";
@@ -1220,6 +1330,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1220
1330
  readonly label: "Right";
1221
1331
  readonly value: "right";
1222
1332
  }];
1333
+ readonly helpText: "Controls whether authentication forms are centered or shown beside a left or right visual panel.";
1223
1334
  }, {
1224
1335
  readonly moduleName: "solid-core";
1225
1336
  readonly key: "appLogo";
@@ -1229,6 +1340,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1229
1340
  readonly group: "app-settings";
1230
1341
  readonly sortOrder: 10;
1231
1342
  readonly controlType: "mediaSingle";
1343
+ readonly helpText: "Primary application logo used across branded authentication and workspace surfaces.";
1232
1344
  }, {
1233
1345
  readonly moduleName: "solid-core";
1234
1346
  readonly key: "companylogo";
@@ -1238,6 +1350,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1238
1350
  readonly group: "app-settings";
1239
1351
  readonly sortOrder: 20;
1240
1352
  readonly controlType: "mediaSingle";
1353
+ readonly helpText: "Secondary company logo for installations that need separate corporate branding.";
1241
1354
  }, {
1242
1355
  readonly moduleName: "solid-core";
1243
1356
  readonly key: "favicon";
@@ -1247,6 +1360,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1247
1360
  readonly group: "app-settings";
1248
1361
  readonly sortOrder: 30;
1249
1362
  readonly controlType: "mediaSingle";
1363
+ readonly helpText: "Browser tab icon used by the workspace and authentication pages when a custom favicon is configured.";
1250
1364
  }, {
1251
1365
  readonly moduleName: "solid-core";
1252
1366
  readonly key: "appLogoPosition";
@@ -1263,6 +1377,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1263
1377
  readonly label: "In Image View";
1264
1378
  readonly value: "in_image_view";
1265
1379
  }];
1380
+ readonly helpText: "Controls whether the app logo appears inside the authentication form or inside the image panel.";
1266
1381
  }, {
1267
1382
  readonly moduleName: "solid-core";
1268
1383
  readonly key: "rowClickAction";
@@ -1279,6 +1394,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1279
1394
  readonly label: "View";
1280
1395
  readonly value: "view";
1281
1396
  }];
1397
+ readonly helpText: "Decides whether clicking a list row opens the record in edit mode or view mode.";
1282
1398
  }, {
1283
1399
  readonly moduleName: "solid-core";
1284
1400
  readonly key: "showAuthContent";
@@ -1288,6 +1404,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1288
1404
  readonly group: "app-settings";
1289
1405
  readonly sortOrder: 50;
1290
1406
  readonly controlType: "boolean";
1407
+ readonly helpText: "Shows or hides the title, subtitle, and description block on authentication screens.";
1291
1408
  }, {
1292
1409
  readonly moduleName: "solid-core";
1293
1410
  readonly key: "appTitle";
@@ -1297,6 +1414,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1297
1414
  readonly group: "app-settings";
1298
1415
  readonly sortOrder: 60;
1299
1416
  readonly controlType: "shortText";
1417
+ readonly helpText: "Main application name shown on branded authentication screens.";
1300
1418
  }, {
1301
1419
  readonly moduleName: "solid-core";
1302
1420
  readonly key: "appSubtitle";
@@ -1306,6 +1424,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1306
1424
  readonly group: "app-settings";
1307
1425
  readonly sortOrder: 70;
1308
1426
  readonly controlType: "shortText";
1427
+ readonly helpText: "Short subtitle shown above or beside the main application title.";
1309
1428
  }, {
1310
1429
  readonly moduleName: "solid-core";
1311
1430
  readonly key: "appDescription";
@@ -1315,6 +1434,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1315
1434
  readonly group: "app-settings";
1316
1435
  readonly sortOrder: 80;
1317
1436
  readonly controlType: "longText";
1437
+ readonly helpText: "Supporting copy used to explain the product or workspace on authentication screens.";
1318
1438
  }, {
1319
1439
  readonly moduleName: "solid-core";
1320
1440
  readonly key: "showLegalLinks";
@@ -1324,6 +1444,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1324
1444
  readonly group: "app-settings";
1325
1445
  readonly sortOrder: 90;
1326
1446
  readonly controlType: "boolean";
1447
+ readonly helpText: "Shows or hides the terms and privacy links on authentication screens.";
1327
1448
  }, {
1328
1449
  readonly moduleName: "solid-core";
1329
1450
  readonly key: "appTnc";
@@ -1333,6 +1454,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1333
1454
  readonly group: "app-settings";
1334
1455
  readonly sortOrder: 100;
1335
1456
  readonly controlType: "shortText";
1457
+ readonly helpText: "Terms and conditions URL shown when legal links are enabled.";
1336
1458
  }, {
1337
1459
  readonly moduleName: "solid-core";
1338
1460
  readonly key: "appPrivacyPolicy";
@@ -1342,6 +1464,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1342
1464
  readonly group: "app-settings";
1343
1465
  readonly sortOrder: 110;
1344
1466
  readonly controlType: "shortText";
1467
+ readonly helpText: "Privacy policy URL shown when legal links are enabled.";
1345
1468
  }, {
1346
1469
  readonly moduleName: "solid-core";
1347
1470
  readonly key: "enableDarkMode";
@@ -1351,6 +1474,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1351
1474
  readonly group: "app-settings";
1352
1475
  readonly sortOrder: 120;
1353
1476
  readonly controlType: "boolean";
1477
+ readonly helpText: "Enables dark theme support for frontend surfaces that honor the global appearance setting.";
1354
1478
  }, {
1355
1479
  readonly moduleName: "solid-core";
1356
1480
  readonly key: "copyright";
@@ -1360,6 +1484,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1360
1484
  readonly group: "app-settings";
1361
1485
  readonly sortOrder: 130;
1362
1486
  readonly controlType: "longText";
1487
+ readonly helpText: "Footer copyright text shown on branded authentication screens.";
1363
1488
  }, {
1364
1489
  readonly moduleName: "solid-core";
1365
1490
  readonly key: "enableUsername";
@@ -1369,6 +1494,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1369
1494
  readonly group: "misc-settings";
1370
1495
  readonly sortOrder: 10;
1371
1496
  readonly controlType: "boolean";
1497
+ readonly helpText: "Allows username-based identity flows where the frontend supports them.";
1372
1498
  }, {
1373
1499
  readonly moduleName: "solid-core";
1374
1500
  readonly key: "enabledNotification";
@@ -1378,6 +1504,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1378
1504
  readonly group: "misc-settings";
1379
1505
  readonly sortOrder: 20;
1380
1506
  readonly controlType: "boolean";
1507
+ readonly helpText: "Default notification toggle used by user-facing notification settings.";
1381
1508
  }, {
1382
1509
  readonly moduleName: "solid-core";
1383
1510
  readonly key: "contactSupportEmail";
@@ -1387,6 +1514,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1387
1514
  readonly group: "misc-settings";
1388
1515
  readonly sortOrder: 30;
1389
1516
  readonly controlType: "shortText";
1517
+ readonly helpText: "Email address used by the support shortcut in the user menu and related help surfaces.";
1390
1518
  }, {
1391
1519
  readonly moduleName: "solid-core";
1392
1520
  readonly key: "contactSupportDisplayName";
@@ -1396,6 +1524,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1396
1524
  readonly group: "misc-settings";
1397
1525
  readonly sortOrder: 40;
1398
1526
  readonly controlType: "shortText";
1527
+ readonly helpText: "Friendly label shown for the support shortcut, such as Support or Help Desk.";
1399
1528
  }, {
1400
1529
  readonly moduleName: "solid-core";
1401
1530
  readonly key: "contactSupportIcon";
@@ -1405,6 +1534,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1405
1534
  readonly group: "misc-settings";
1406
1535
  readonly sortOrder: 50;
1407
1536
  readonly controlType: "shortText";
1537
+ readonly helpText: "Icon identifier used for the support shortcut so users can recognize it quickly.";
1408
1538
  }, {
1409
1539
  readonly moduleName: "solid-core";
1410
1540
  readonly key: "authScreenRightBackgroundImage";
@@ -1414,6 +1544,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1414
1544
  readonly group: "authentication-settings";
1415
1545
  readonly sortOrder: 90;
1416
1546
  readonly controlType: "mediaSingle";
1547
+ readonly helpText: "Banner image used when the authentication form is shown on the left and the visual panel is on the right.";
1417
1548
  }, {
1418
1549
  readonly moduleName: "solid-core";
1419
1550
  readonly key: "authScreenLeftBackgroundImage";
@@ -1423,6 +1554,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1423
1554
  readonly group: "authentication-settings";
1424
1555
  readonly sortOrder: 100;
1425
1556
  readonly controlType: "mediaSingle";
1557
+ readonly helpText: "Banner image used when the authentication form is shown on the right and the visual panel is on the left.";
1426
1558
  }, {
1427
1559
  readonly moduleName: "solid-core";
1428
1560
  readonly key: "authScreenCenterBackgroundImage";
@@ -1432,6 +1564,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1432
1564
  readonly group: "authentication-settings";
1433
1565
  readonly sortOrder: 110;
1434
1566
  readonly controlType: "mediaSingle";
1567
+ readonly helpText: "Background image used for the centered authentication layout.";
1435
1568
  }, {
1436
1569
  readonly moduleName: "solid-core";
1437
1570
  readonly key: "solidXGenAiCodeBuilderConfig";
@@ -1444,6 +1577,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1444
1577
  readonly sortOrder: 10;
1445
1578
  readonly controlType: "custom";
1446
1579
  readonly settingsWidget: "solidXGenAiCodeBuilderConfigWidget";
1580
+ readonly helpText: "Structured AI builder configuration that stores providers, credentials, and model assignments for SolidX code generation features.";
1447
1581
  }, {
1448
1582
  readonly moduleName: "solid-core";
1449
1583
  readonly key: "appEncryptionKey";
@@ -1458,6 +1592,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1458
1592
  readonly group: "ai-settings";
1459
1593
  readonly sortOrder: 20;
1460
1594
  readonly controlType: "boolean";
1595
+ readonly helpText: "Read-only flag indicating whether MCP integration is enabled for this deployment.";
1461
1596
  }, {
1462
1597
  readonly moduleName: "solid-core";
1463
1598
  readonly key: "mcpServerUrl";
@@ -1467,6 +1602,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1467
1602
  readonly group: "ai-settings";
1468
1603
  readonly sortOrder: 30;
1469
1604
  readonly controlType: "shortText";
1605
+ readonly helpText: "Base MCP server URL used when MCP integration is enabled.";
1470
1606
  }, {
1471
1607
  readonly moduleName: "solid-core";
1472
1608
  readonly key: "mcpApiKey";
@@ -1481,6 +1617,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1481
1617
  readonly group: "system-settings";
1482
1618
  readonly sortOrder: 10;
1483
1619
  readonly controlType: "shortText";
1620
+ readonly helpText: "Default date-time format used by Solid core features that need a shared server-side format.";
1484
1621
  }, {
1485
1622
  readonly moduleName: "solid-core";
1486
1623
  readonly key: "dateFormat";
@@ -1490,6 +1627,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1490
1627
  readonly group: "system-settings";
1491
1628
  readonly sortOrder: 20;
1492
1629
  readonly controlType: "shortText";
1630
+ readonly helpText: "Default date format used by Solid core features that need a shared server-side format.";
1493
1631
  }, {
1494
1632
  readonly moduleName: "solid-core";
1495
1633
  readonly key: "baseUrl";
@@ -1499,6 +1637,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1499
1637
  readonly group: "system-settings";
1500
1638
  readonly sortOrder: 30;
1501
1639
  readonly controlType: "shortText";
1640
+ readonly helpText: "Backend base URL used to generate absolute links and media URLs.";
1502
1641
  }, {
1503
1642
  readonly moduleName: "solid-core";
1504
1643
  readonly key: "frontendAdminBaseUrl";
@@ -1508,6 +1647,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1508
1647
  readonly group: "system-settings";
1509
1648
  readonly sortOrder: 35;
1510
1649
  readonly controlType: "shortText";
1650
+ readonly helpText: "Frontend admin application base URL used when the backend needs to point users back to the admin UI.";
1511
1651
  }, {
1512
1652
  readonly moduleName: "solid-core";
1513
1653
  readonly key: "solidAppWebsiteUrl";
@@ -1517,6 +1657,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1517
1657
  readonly group: "system-settings";
1518
1658
  readonly sortOrder: 40;
1519
1659
  readonly controlType: "shortText";
1660
+ readonly helpText: "Public website URL for the product or marketing site.";
1520
1661
  }, {
1521
1662
  readonly moduleName: "solid-core";
1522
1663
  readonly key: "moduleMetadataSeederFiles";
@@ -1526,6 +1667,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1526
1667
  readonly group: "storage-settings";
1527
1668
  readonly sortOrder: 10;
1528
1669
  readonly controlType: "longText";
1670
+ readonly helpText: "Comma-separated list of module metadata seed files that are loaded by the platform.";
1529
1671
  }, {
1530
1672
  readonly moduleName: "solid-core";
1531
1673
  readonly key: "uploadDir";
@@ -1535,6 +1677,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1535
1677
  readonly group: "storage-settings";
1536
1678
  readonly sortOrder: 20;
1537
1679
  readonly controlType: "shortText";
1680
+ readonly helpText: "Directory where uploaded media is staged before downstream processing or persistence.";
1538
1681
  }, {
1539
1682
  readonly moduleName: "solid-core";
1540
1683
  readonly key: "fileStorageDir";
@@ -1544,6 +1687,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1544
1687
  readonly group: "storage-settings";
1545
1688
  readonly sortOrder: 30;
1546
1689
  readonly controlType: "shortText";
1690
+ readonly helpText: "Directory used by the default disk-based file storage provider for persisted files.";
1547
1691
  }, {
1548
1692
  readonly moduleName: "solid-core";
1549
1693
  readonly key: "defaultFileService";
@@ -1560,6 +1704,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1560
1704
  readonly label: "S3";
1561
1705
  readonly value: "s3";
1562
1706
  }];
1707
+ readonly helpText: "Default storage implementation used for file handling, such as local disk or S3.";
1563
1708
  }, {
1564
1709
  readonly moduleName: "solid-core";
1565
1710
  readonly key: "S3_AWS_ACCESS_KEY";
@@ -1579,6 +1724,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1579
1724
  readonly group: "storage-settings";
1580
1725
  readonly sortOrder: 50;
1581
1726
  readonly controlType: "shortText";
1727
+ readonly helpText: "AWS region used by the default S3 storage integration.";
1582
1728
  }, {
1583
1729
  readonly moduleName: "solid-core";
1584
1730
  readonly key: "S3_DEFAULT_BUCKET";
@@ -1588,6 +1734,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1588
1734
  readonly group: "storage-settings";
1589
1735
  readonly sortOrder: 60;
1590
1736
  readonly controlType: "shortText";
1737
+ readonly helpText: "Default S3 bucket used when the S3 storage provider is active.";
1591
1738
  }, {
1592
1739
  readonly moduleName: "solid-core";
1593
1740
  readonly key: "emailProvider";
@@ -1604,6 +1751,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1604
1751
  readonly label: "Elastic Email Service";
1605
1752
  readonly value: "ElasticEmailService";
1606
1753
  }];
1754
+ readonly helpText: "Email delivery provider currently configured for outbound mail.";
1607
1755
  }, {
1608
1756
  readonly moduleName: "solid-core";
1609
1757
  readonly key: "emailTemplateSeederFiles";
@@ -1613,6 +1761,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1613
1761
  readonly group: "email-settings";
1614
1762
  readonly sortOrder: 20;
1615
1763
  readonly controlType: "longText";
1764
+ readonly helpText: "Comma-separated list of email template seed files loaded by the platform.";
1616
1765
  }, {
1617
1766
  readonly moduleName: "solid-core";
1618
1767
  readonly key: "shouldQueueEmails";
@@ -1622,6 +1771,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1622
1771
  readonly group: "email-settings";
1623
1772
  readonly sortOrder: 30;
1624
1773
  readonly controlType: "boolean";
1774
+ readonly helpText: "Whether outbound emails are queued for asynchronous delivery instead of being sent inline.";
1625
1775
  }, {
1626
1776
  readonly moduleName: "solid-core";
1627
1777
  readonly key: "smtpMailHost";
@@ -1631,6 +1781,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1631
1781
  readonly group: "email-settings";
1632
1782
  readonly sortOrder: 40;
1633
1783
  readonly controlType: "shortText";
1784
+ readonly helpText: "SMTP host name used when the SMTP email provider is active.";
1634
1785
  }, {
1635
1786
  readonly moduleName: "solid-core";
1636
1787
  readonly key: "smtpMailPort";
@@ -1640,6 +1791,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1640
1791
  readonly group: "email-settings";
1641
1792
  readonly sortOrder: 50;
1642
1793
  readonly controlType: "numeric";
1794
+ readonly helpText: "SMTP port used when the SMTP email provider is active.";
1643
1795
  }, {
1644
1796
  readonly moduleName: "solid-core";
1645
1797
  readonly key: "smtpMailUsername";
@@ -1649,6 +1801,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1649
1801
  readonly group: "email-settings";
1650
1802
  readonly sortOrder: 60;
1651
1803
  readonly controlType: "shortText";
1804
+ readonly helpText: "SMTP username used when the SMTP email provider is active.";
1652
1805
  }, {
1653
1806
  readonly moduleName: "solid-core";
1654
1807
  readonly key: "smtpMailPassword";
@@ -1663,6 +1816,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1663
1816
  readonly group: "email-settings";
1664
1817
  readonly sortOrder: 70;
1665
1818
  readonly controlType: "shortText";
1819
+ readonly helpText: "Default From address for outbound mail sent through the SMTP provider.";
1666
1820
  }, {
1667
1821
  readonly moduleName: "solid-core";
1668
1822
  readonly key: "apiMailKey";
@@ -1677,6 +1831,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1677
1831
  readonly group: "email-settings";
1678
1832
  readonly sortOrder: 80;
1679
1833
  readonly controlType: "shortText";
1834
+ readonly helpText: "Default From address for outbound mail sent through API-based email providers.";
1680
1835
  }, {
1681
1836
  readonly moduleName: "solid-core";
1682
1837
  readonly key: "ragServerUrl";
@@ -1686,6 +1841,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1686
1841
  readonly group: "ai-settings";
1687
1842
  readonly sortOrder: 40;
1688
1843
  readonly controlType: "shortText";
1844
+ readonly helpText: "Base URL of the RAG service used by AI-assisted features that need retrieval support.";
1689
1845
  }, {
1690
1846
  readonly moduleName: "solid-core";
1691
1847
  readonly key: "ragServerLogin";
@@ -1720,6 +1876,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1720
1876
  readonly group: "oauth-settings";
1721
1877
  readonly sortOrder: 10;
1722
1878
  readonly controlType: "shortText";
1879
+ readonly helpText: "Google OAuth client ID registered for this application.";
1723
1880
  }, {
1724
1881
  readonly moduleName: "solid-core";
1725
1882
  readonly key: "clientSecret";
@@ -1734,6 +1891,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1734
1891
  readonly group: "oauth-settings";
1735
1892
  readonly sortOrder: 20;
1736
1893
  readonly controlType: "shortText";
1894
+ readonly helpText: "Backend callback URL that Google redirects to after authentication.";
1737
1895
  }, {
1738
1896
  readonly moduleName: "solid-core";
1739
1897
  readonly key: "redirectURL";
@@ -1743,11 +1901,13 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1743
1901
  readonly group: "oauth-settings";
1744
1902
  readonly sortOrder: 30;
1745
1903
  readonly controlType: "shortText";
1904
+ readonly helpText: "Post-authentication Google redirect URL used by the application flow.";
1746
1905
  }, {
1747
1906
  readonly moduleName: "solid-core";
1748
1907
  readonly key: "FACEBOOK_CLIENT_ID";
1749
1908
  readonly value: string;
1750
1909
  readonly level: SettingLevel.SystemAdminReadonly;
1910
+ readonly helpText: "Facebook OAuth client ID registered for this application.";
1751
1911
  }, {
1752
1912
  readonly moduleName: "solid-core";
1753
1913
  readonly key: "FACEBOOK_CLIENT_SECRET";
@@ -1758,16 +1918,19 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1758
1918
  readonly key: "FACEBOOK_CALLBACK_URL";
1759
1919
  readonly value: string;
1760
1920
  readonly level: SettingLevel.SystemAdminReadonly;
1921
+ readonly helpText: "Backend callback URL that Facebook redirects to after authentication.";
1761
1922
  }, {
1762
1923
  readonly moduleName: "solid-core";
1763
1924
  readonly key: "FACEBOOK_REDIRECT_URL";
1764
1925
  readonly value: string;
1765
1926
  readonly level: SettingLevel.SystemAdminReadonly;
1927
+ readonly helpText: "Post-authentication Facebook redirect URL used by the application flow.";
1766
1928
  }, {
1767
1929
  readonly moduleName: "solid-core";
1768
1930
  readonly key: "MICROSOFT_CLIENT_ID";
1769
1931
  readonly value: string;
1770
1932
  readonly level: SettingLevel.SystemAdminReadonly;
1933
+ readonly helpText: "Microsoft OAuth client ID registered for this application.";
1771
1934
  }, {
1772
1935
  readonly moduleName: "solid-core";
1773
1936
  readonly key: "MICROSOFT_CLIENT_SECRET";
@@ -1778,16 +1941,19 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1778
1941
  readonly key: "MICROSOFT_TENANT_ID";
1779
1942
  readonly value: string;
1780
1943
  readonly level: SettingLevel.SystemAdminReadonly;
1944
+ readonly helpText: "Microsoft OAuth tenant identifier used to scope sign-in requests.";
1781
1945
  }, {
1782
1946
  readonly moduleName: "solid-core";
1783
1947
  readonly key: "MICROSOFT_CALLBACK_URL";
1784
1948
  readonly value: string;
1785
1949
  readonly level: SettingLevel.SystemAdminReadonly;
1950
+ readonly helpText: "Backend callback URL that Microsoft redirects to after authentication.";
1786
1951
  }, {
1787
1952
  readonly moduleName: "solid-core";
1788
1953
  readonly key: "MICROSOFT_REDIRECT_URL";
1789
1954
  readonly value: string;
1790
1955
  readonly level: SettingLevel.SystemAdminReadonly;
1956
+ readonly helpText: "Post-authentication Microsoft redirect URL used by the application flow.";
1791
1957
  }, {
1792
1958
  readonly moduleName: "solid-core";
1793
1959
  readonly key: "MICROSOFT_ACTIVE_DIRECTORY_CLIENT_ID";
@@ -1797,6 +1963,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1797
1963
  readonly group: "oauth-settings";
1798
1964
  readonly sortOrder: 70;
1799
1965
  readonly controlType: "shortText";
1966
+ readonly helpText: "Microsoft Active Directory client ID registered for this application.";
1800
1967
  }, {
1801
1968
  readonly moduleName: "solid-core";
1802
1969
  readonly key: "MICROSOFT_ACTIVE_DIRECTORY_CLIENT_SECRET";
@@ -1811,6 +1978,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1811
1978
  readonly group: "oauth-settings";
1812
1979
  readonly sortOrder: 80;
1813
1980
  readonly controlType: "shortText";
1981
+ readonly helpText: "Microsoft Active Directory tenant identifier used to scope sign-in requests.";
1814
1982
  }, {
1815
1983
  readonly moduleName: "solid-core";
1816
1984
  readonly key: "MICROSOFT_ACTIVE_DIRECTORY_CALLBACK_URL";
@@ -1820,6 +1988,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1820
1988
  readonly group: "oauth-settings";
1821
1989
  readonly sortOrder: 90;
1822
1990
  readonly controlType: "shortText";
1991
+ readonly helpText: "Backend callback URL that Microsoft Active Directory redirects to after authentication.";
1823
1992
  }, {
1824
1993
  readonly moduleName: "solid-core";
1825
1994
  readonly key: "MICROSOFT_ACTIVE_DIRECTORY_REDIRECT_URL";
@@ -1829,6 +1998,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1829
1998
  readonly group: "oauth-settings";
1830
1999
  readonly sortOrder: 100;
1831
2000
  readonly controlType: "shortText";
2001
+ readonly helpText: "Post-authentication Microsoft Active Directory redirect URL used by the application flow.";
1832
2002
  }, {
1833
2003
  readonly moduleName: "solid-core";
1834
2004
  readonly key: "passwordLessAuth";
@@ -1838,6 +2008,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1838
2008
  readonly group: "authentication-settings";
1839
2009
  readonly sortOrder: 20;
1840
2010
  readonly controlType: "boolean";
2011
+ readonly helpText: "Enables passwordless sign-in flows such as OTP-based authentication.";
1841
2012
  }, {
1842
2013
  readonly moduleName: "solid-core";
1843
2014
  readonly key: "passwordBasedAuth";
@@ -1847,6 +2018,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1847
2018
  readonly group: "authentication-settings";
1848
2019
  readonly sortOrder: 10;
1849
2020
  readonly controlType: "boolean";
2021
+ readonly helpText: "Enables traditional password-based sign-in.";
1850
2022
  }, {
1851
2023
  readonly moduleName: "solid-core";
1852
2024
  readonly key: "passwordlessRegistrationValidateWhat";
@@ -1863,6 +2035,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1863
2035
  readonly label: "Mobile";
1864
2036
  readonly value: "mobile";
1865
2037
  }];
2038
+ readonly helpText: "Chooses whether passwordless registration validates new users by email or mobile number.";
1866
2039
  }, {
1867
2040
  readonly moduleName: "solid-core";
1868
2041
  readonly key: "passwordlessLoginValidateWhat";
@@ -1882,6 +2055,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1882
2055
  readonly label: "Selectable";
1883
2056
  readonly value: "selectable";
1884
2057
  }];
2058
+ readonly helpText: "Chooses whether passwordless login validates users by email, mobile number, or a selectable option.";
1885
2059
  }, {
1886
2060
  readonly moduleName: "solid-core";
1887
2061
  readonly key: "allowPublicRegistration";
@@ -1891,6 +2065,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1891
2065
  readonly group: "authentication-settings";
1892
2066
  readonly sortOrder: 60;
1893
2067
  readonly controlType: "boolean";
2068
+ readonly helpText: "Lets unauthenticated visitors create their own account from public registration screens.";
1894
2069
  }, {
1895
2070
  readonly moduleName: "solid-core";
1896
2071
  readonly key: "activateUserOnRegistration";
@@ -1900,6 +2075,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1900
2075
  readonly group: "authentication-settings";
1901
2076
  readonly sortOrder: 70;
1902
2077
  readonly controlType: "boolean";
2078
+ readonly helpText: "Automatically activates newly registered users instead of requiring a separate activation step.";
1903
2079
  }, {
1904
2080
  readonly moduleName: "solid-core";
1905
2081
  readonly key: "autoLoginUserOnRegistration";
@@ -1919,6 +2095,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1919
2095
  readonly group: "authentication-settings";
1920
2096
  readonly sortOrder: 85;
1921
2097
  readonly controlType: "boolean";
2098
+ readonly helpText: "Allows OTP delivery to fall back to WhatsApp when the primary OTP path cannot be used.";
1922
2099
  }, {
1923
2100
  readonly moduleName: "solid-core";
1924
2101
  readonly key: "otpWhatsappTemplateId";
@@ -1928,6 +2105,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1928
2105
  readonly group: "authentication-settings";
1929
2106
  readonly sortOrder: 86;
1930
2107
  readonly controlType: "shortText";
2108
+ readonly helpText: "Template identifier used when OTP messages are sent through WhatsApp.";
1931
2109
  }, {
1932
2110
  readonly moduleName: "solid-core";
1933
2111
  readonly key: "otpWhatsappIndependentEnabled";
@@ -1937,6 +2115,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1937
2115
  readonly group: "authentication-settings";
1938
2116
  readonly sortOrder: 87;
1939
2117
  readonly controlType: "boolean";
2118
+ readonly helpText: "Allows WhatsApp OTP delivery to run as an independent channel where supported.";
1940
2119
  }, {
1941
2120
  readonly moduleName: "solid-core";
1942
2121
  readonly key: "otpDefaultCountryDialCode";
@@ -1946,6 +2125,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1946
2125
  readonly group: "authentication-settings";
1947
2126
  readonly sortOrder: 88;
1948
2127
  readonly controlType: "shortText";
2128
+ readonly helpText: "Default dialing code applied when OTP phone numbers are entered without a country prefix.";
1949
2129
  }, {
1950
2130
  readonly moduleName: "solid-core";
1951
2131
  readonly key: "forgotPasswordVerificationTokenExpiry";
@@ -1960,6 +2140,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1960
2140
  readonly group: "authentication-settings";
1961
2141
  readonly sortOrder: 75;
1962
2142
  readonly controlType: "shortText";
2143
+ readonly helpText: "Role assigned by default to newly created users in flows that rely on automatic role assignment.";
1963
2144
  }, {
1964
2145
  readonly moduleName: "solid-core";
1965
2146
  readonly key: "dummyOtp";
@@ -1984,6 +2165,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1984
2165
  readonly group: "authentication-settings";
1985
2166
  readonly sortOrder: 110;
1986
2167
  readonly controlType: "numeric";
2168
+ readonly helpText: "Maximum failed login attempts allowed before a user is considered blocked.";
1987
2169
  }, {
1988
2170
  readonly moduleName: "solid-core";
1989
2171
  readonly key: "forceChangePasswordOnFirstLogin";
@@ -1993,6 +2175,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
1993
2175
  readonly group: "authentication-settings";
1994
2176
  readonly sortOrder: 120;
1995
2177
  readonly controlType: "boolean";
2178
+ readonly helpText: "Requires users to choose a new password the first time they sign in.";
1996
2179
  }, {
1997
2180
  readonly moduleName: "solid-core";
1998
2181
  readonly key: "authenticationPasswordRegex";
@@ -2002,6 +2185,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2002
2185
  readonly group: "authentication-settings";
2003
2186
  readonly sortOrder: 130;
2004
2187
  readonly controlType: "shortText";
2188
+ readonly helpText: "Validation pattern applied to new passwords in registration and password-change flows.";
2005
2189
  }, {
2006
2190
  readonly moduleName: "solid-core";
2007
2191
  readonly key: "authenticationPasswordRegexErrorMessage";
@@ -2011,6 +2195,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2011
2195
  readonly group: "authentication-settings";
2012
2196
  readonly sortOrder: 140;
2013
2197
  readonly controlType: "longText";
2198
+ readonly helpText: "Custom error message shown when a password does not satisfy the configured regex.";
2014
2199
  }, {
2015
2200
  readonly moduleName: "solid-core";
2016
2201
  readonly key: "authenticationPasswordComplexityDescription";
@@ -2020,6 +2205,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2020
2205
  readonly group: "authentication-settings";
2021
2206
  readonly sortOrder: 150;
2022
2207
  readonly controlType: "longText";
2208
+ readonly helpText: "Human-friendly guidance shown to users so they understand the password policy before submission.";
2023
2209
  }, {
2024
2210
  readonly moduleName: "solid-core";
2025
2211
  readonly key: "iamAutoGeneratedPassword";
@@ -2029,6 +2215,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2029
2215
  readonly group: "authentication-settings";
2030
2216
  readonly sortOrder: 160;
2031
2217
  readonly controlType: "boolean";
2218
+ readonly helpText: "Enables automatic password generation in flows that create user credentials on the user's behalf.";
2032
2219
  }, {
2033
2220
  readonly moduleName: "solid-core";
2034
2221
  readonly key: "passwordPepper";
@@ -2043,6 +2230,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2043
2230
  readonly group: "authentication-settings";
2044
2231
  readonly sortOrder: 170;
2045
2232
  readonly controlType: "boolean";
2233
+ readonly helpText: "Adds name fields to the public registration form so users can provide profile details up front.";
2046
2234
  }, {
2047
2235
  readonly moduleName: "solid-core";
2048
2236
  readonly key: "sendWelcomeEmailOnSignup";
@@ -2052,6 +2240,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2052
2240
  readonly group: "authentication-settings";
2053
2241
  readonly sortOrder: 180;
2054
2242
  readonly controlType: "boolean";
2243
+ readonly helpText: "Sends a welcome email after a successful signup when email delivery is configured.";
2055
2244
  }, {
2056
2245
  readonly moduleName: "solid-core";
2057
2246
  readonly key: "sendWelcomeSmsOnSignup";
@@ -2061,6 +2250,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2061
2250
  readonly group: "authentication-settings";
2062
2251
  readonly sortOrder: 190;
2063
2252
  readonly controlType: "boolean";
2253
+ readonly helpText: "Sends a welcome SMS after a successful signup when SMS delivery is configured.";
2064
2254
  }, {
2065
2255
  readonly moduleName: "solid-core";
2066
2256
  readonly key: "frontendLoginPageUrl";
@@ -2070,6 +2260,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2070
2260
  readonly group: "authentication-settings";
2071
2261
  readonly sortOrder: 180;
2072
2262
  readonly controlType: "shortText";
2263
+ readonly helpText: "Frontend login page URL used in backend-generated links and redirects.";
2073
2264
  }, {
2074
2265
  readonly moduleName: "solid-core";
2075
2266
  readonly key: "frontendForgotPasswordPageUrl";
@@ -2079,6 +2270,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2079
2270
  readonly group: "authentication-settings";
2080
2271
  readonly sortOrder: 190;
2081
2272
  readonly controlType: "shortText";
2273
+ readonly helpText: "Frontend forgot-password page URL used in backend-generated links and redirects.";
2082
2274
  }, {
2083
2275
  readonly moduleName: "solid-core";
2084
2276
  readonly key: "secret";
@@ -2093,6 +2285,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2093
2285
  readonly group: "jwt-settings";
2094
2286
  readonly sortOrder: 10;
2095
2287
  readonly controlType: "shortText";
2288
+ readonly helpText: "JWT audience claim expected by tokens issued by this deployment.";
2096
2289
  }, {
2097
2290
  readonly moduleName: "solid-core";
2098
2291
  readonly key: "issuer";
@@ -2102,6 +2295,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2102
2295
  readonly group: "jwt-settings";
2103
2296
  readonly sortOrder: 20;
2104
2297
  readonly controlType: "shortText";
2298
+ readonly helpText: "JWT issuer claim attached to tokens issued by this deployment.";
2105
2299
  }, {
2106
2300
  readonly moduleName: "solid-core";
2107
2301
  readonly key: "accessTokenTtl";
@@ -2128,6 +2322,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2128
2322
  readonly label: "RabbitMQ";
2129
2323
  readonly value: "rabbitmq";
2130
2324
  }];
2325
+ readonly helpText: "Default queue broker used for background job processing.";
2131
2326
  }, {
2132
2327
  readonly moduleName: "solid-core";
2133
2328
  readonly key: "queuesServiceRole";
@@ -2137,6 +2332,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2137
2332
  readonly group: "queue-settings";
2138
2333
  readonly sortOrder: 20;
2139
2334
  readonly controlType: "shortText";
2335
+ readonly helpText: "Service role or worker identity expected by the queue subsystem.";
2140
2336
  }, {
2141
2337
  readonly moduleName: "solid-core";
2142
2338
  readonly key: "queuesRabbitMqUrl";
@@ -2156,6 +2352,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2156
2352
  readonly group: "sms-settings";
2157
2353
  readonly sortOrder: 10;
2158
2354
  readonly controlType: "shortText";
2355
+ readonly helpText: "SMS delivery provider currently configured for outbound messages.";
2159
2356
  }, {
2160
2357
  readonly moduleName: "solid-core";
2161
2358
  readonly key: "smsTemplateSeederFiles";
@@ -2165,6 +2362,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2165
2362
  readonly group: "sms-settings";
2166
2363
  readonly sortOrder: 20;
2167
2364
  readonly controlType: "longText";
2365
+ readonly helpText: "Comma-separated list of SMS template seed files loaded by the platform.";
2168
2366
  }, {
2169
2367
  readonly moduleName: "solid-core";
2170
2368
  readonly key: "shouldQueueSms";
@@ -2174,6 +2372,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2174
2372
  readonly group: "sms-settings";
2175
2373
  readonly sortOrder: 30;
2176
2374
  readonly controlType: "boolean";
2375
+ readonly helpText: "Whether outbound SMS messages are queued for asynchronous delivery instead of being sent inline.";
2177
2376
  }, {
2178
2377
  readonly moduleName: "solid-core";
2179
2378
  readonly key: "msg91SmsUrl";
@@ -2183,6 +2382,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2183
2382
  readonly group: "sms-settings";
2184
2383
  readonly sortOrder: 40;
2185
2384
  readonly controlType: "shortText";
2385
+ readonly helpText: "MSG91 endpoint URL used when the MSG91 SMS provider is active.";
2186
2386
  }, {
2187
2387
  readonly moduleName: "solid-core";
2188
2388
  readonly key: "msg91SmsApiKey";
@@ -2197,6 +2397,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2197
2397
  readonly group: "sms-settings";
2198
2398
  readonly sortOrder: 50;
2199
2399
  readonly controlType: "shortText";
2400
+ readonly helpText: "Twilio account SID used when the Twilio SMS provider is active.";
2200
2401
  }, {
2201
2402
  readonly moduleName: "solid-core";
2202
2403
  readonly key: "twilioAuthToken";
@@ -2211,6 +2412,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2211
2412
  readonly group: "sms-settings";
2212
2413
  readonly sortOrder: 60;
2213
2414
  readonly controlType: "shortText";
2415
+ readonly helpText: "Twilio phone number used as the sender for outbound SMS.";
2214
2416
  }, {
2215
2417
  readonly moduleName: "solid-core";
2216
2418
  readonly key: "tinyUrlApiUrl";
@@ -2220,6 +2422,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2220
2422
  readonly group: "short-url-settings";
2221
2423
  readonly sortOrder: 10;
2222
2424
  readonly controlType: "shortText";
2425
+ readonly helpText: "API endpoint used to create shortened URLs.";
2223
2426
  }, {
2224
2427
  readonly moduleName: "solid-core";
2225
2428
  readonly key: "tinyUrlApiKey";
@@ -2234,6 +2437,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2234
2437
  readonly group: "short-url-settings";
2235
2438
  readonly sortOrder: 20;
2236
2439
  readonly controlType: "shortText";
2440
+ readonly helpText: "Short URL domain used when generating branded or provider-backed tiny URLs.";
2237
2441
  }, {
2238
2442
  readonly moduleName: "solid-core";
2239
2443
  readonly key: "tinyUrlEnabled";
@@ -2243,6 +2447,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2243
2447
  readonly group: "short-url-settings";
2244
2448
  readonly sortOrder: 30;
2245
2449
  readonly controlType: "boolean";
2450
+ readonly helpText: "Indicates whether short URL generation is enabled for this deployment.";
2246
2451
  }, {
2247
2452
  readonly moduleName: "solid-core";
2248
2453
  readonly key: "whatsappProvider";
@@ -2252,6 +2457,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2252
2457
  readonly group: "whatsapp-settings";
2253
2458
  readonly sortOrder: 10;
2254
2459
  readonly controlType: "shortText";
2460
+ readonly helpText: "WhatsApp delivery provider currently configured for outbound messages.";
2255
2461
  }, {
2256
2462
  readonly moduleName: "solid-core";
2257
2463
  readonly key: "msg91WhatsappUrl";
@@ -2261,6 +2467,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2261
2467
  readonly group: "whatsapp-settings";
2262
2468
  readonly sortOrder: 20;
2263
2469
  readonly controlType: "shortText";
2470
+ readonly helpText: "MSG91 endpoint URL used when the MSG91 WhatsApp provider is active.";
2264
2471
  }, {
2265
2472
  readonly moduleName: "solid-core";
2266
2473
  readonly key: "msg91WhatsappApiKey";
@@ -2275,6 +2482,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2275
2482
  readonly group: "whatsapp-settings";
2276
2483
  readonly sortOrder: 30;
2277
2484
  readonly controlType: "shortText";
2485
+ readonly helpText: "Integrated WhatsApp number used by the MSG91 WhatsApp provider.";
2278
2486
  }, {
2279
2487
  readonly moduleName: "solid-core";
2280
2488
  readonly key: "metaWhatsappApiUrl";
@@ -2284,6 +2492,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2284
2492
  readonly group: "whatsapp-settings";
2285
2493
  readonly sortOrder: 40;
2286
2494
  readonly controlType: "shortText";
2495
+ readonly helpText: "Base Meta WhatsApp API URL used by the Meta WhatsApp integration.";
2287
2496
  }, {
2288
2497
  readonly moduleName: "solid-core";
2289
2498
  readonly key: "metaWhatsappApiVersion";
@@ -2293,6 +2502,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2293
2502
  readonly group: "whatsapp-settings";
2294
2503
  readonly sortOrder: 50;
2295
2504
  readonly controlType: "shortText";
2505
+ readonly helpText: "Meta WhatsApp API version used when building outbound requests.";
2296
2506
  }, {
2297
2507
  readonly moduleName: "solid-core";
2298
2508
  readonly key: "metaWhatsappPhoneNumberId";
@@ -2302,6 +2512,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2302
2512
  readonly group: "whatsapp-settings";
2303
2513
  readonly sortOrder: 60;
2304
2514
  readonly controlType: "shortText";
2515
+ readonly helpText: "Meta WhatsApp phone number ID used to send messages from the connected business account.";
2305
2516
  }, {
2306
2517
  readonly moduleName: "solid-core";
2307
2518
  readonly key: "metaWhatsappBusinessAccountId";
@@ -2311,6 +2522,7 @@ export declare class SolidCoreDefaultSettingsProvider implements ISettingsProvid
2311
2522
  readonly group: "whatsapp-settings";
2312
2523
  readonly sortOrder: 70;
2313
2524
  readonly controlType: "shortText";
2525
+ readonly helpText: "Meta WhatsApp business account ID associated with the connected sender.";
2314
2526
  }, {
2315
2527
  readonly moduleName: "solid-core";
2316
2528
  readonly key: "metaWhatsappAccessToken";