@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.
- package/CHANGELOG.md +456 -0
- package/dist/controllers/datasource-introspection.controller.d.ts +8 -0
- package/dist/controllers/datasource-introspection.controller.d.ts.map +1 -1
- package/dist/controllers/media.controller.js +0 -2
- package/dist/controllers/media.controller.js.map +1 -1
- package/dist/helpers/module-metadata-helper.service.js +1 -1
- package/dist/helpers/module-metadata-helper.service.js.map +1 -1
- package/dist/helpers/solid-registry.d.ts +1 -2
- package/dist/helpers/solid-registry.d.ts.map +1 -1
- package/dist/helpers/solid-registry.js.map +1 -1
- package/dist/helpers/typeorm-db-helper.d.ts +1 -0
- package/dist/helpers/typeorm-db-helper.d.ts.map +1 -1
- package/dist/helpers/typeorm-db-helper.js +12 -0
- package/dist/helpers/typeorm-db-helper.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -1
- package/dist/index.js.map +1 -1
- package/dist/interfaces.d.ts +1 -0
- package/dist/interfaces.d.ts.map +1 -1
- package/dist/interfaces.js.map +1 -1
- package/dist/seeders/seed-data/solid-core-metadata.json +62 -33
- package/dist/services/authentication.service.d.ts +2 -0
- package/dist/services/authentication.service.d.ts.map +1 -1
- package/dist/services/authentication.service.js +32 -11
- package/dist/services/authentication.service.js.map +1 -1
- package/dist/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.d.ts.map +1 -1
- package/dist/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.js +5 -6
- package/dist/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.js.map +1 -1
- package/dist/services/crud-helper.service.d.ts.map +1 -1
- package/dist/services/crud-helper.service.js +32 -12
- package/dist/services/crud-helper.service.js.map +1 -1
- package/dist/services/datasource-introspection.service.d.ts +10 -0
- package/dist/services/datasource-introspection.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection.service.js +109 -17
- package/dist/services/datasource-introspection.service.js.map +1 -1
- package/dist/services/menu-item-metadata.service.d.ts.map +1 -1
- package/dist/services/menu-item-metadata.service.js +1 -0
- package/dist/services/menu-item-metadata.service.js.map +1 -1
- package/dist/services/model-metadata.service.d.ts +2 -0
- package/dist/services/model-metadata.service.d.ts.map +1 -1
- package/dist/services/model-metadata.service.js +49 -15
- package/dist/services/model-metadata.service.js.map +1 -1
- package/dist/services/module-metadata.service.d.ts.map +1 -1
- package/dist/services/module-metadata.service.js +0 -27
- package/dist/services/module-metadata.service.js.map +1 -1
- package/dist/services/settings/default-settings-provider.service.d.ts +212 -0
- package/dist/services/settings/default-settings-provider.service.d.ts.map +1 -1
- package/dist/services/settings/default-settings-provider.service.js +106 -0
- package/dist/services/settings/default-settings-provider.service.js.map +1 -1
- package/dist/services/solid-ts-morph.service.d.ts +6 -0
- package/dist/services/solid-ts-morph.service.d.ts.map +1 -1
- package/dist/services/solid-ts-morph.service.js +43 -0
- package/dist/services/solid-ts-morph.service.js.map +1 -1
- package/dist/subscribers/audit.subscriber.d.ts +0 -1
- package/dist/subscribers/audit.subscriber.d.ts.map +1 -1
- package/dist/subscribers/audit.subscriber.js +1 -10
- package/dist/subscribers/audit.subscriber.js.map +1 -1
- package/dist/subscribers/computed-entity-field.subscriber.d.ts +1 -1
- package/dist/subscribers/computed-entity-field.subscriber.d.ts.map +1 -1
- package/dist/subscribers/computed-entity-field.subscriber.js +11 -13
- package/dist/subscribers/computed-entity-field.subscriber.js.map +1 -1
- package/dist/subscribers/created-by-updated-by.subscriber.d.ts.map +1 -1
- package/dist/subscribers/created-by-updated-by.subscriber.js.map +1 -1
- package/dist/subscribers/field-metadata.subscriber.d.ts.map +1 -1
- package/dist/subscribers/field-metadata.subscriber.js.map +1 -1
- package/dist/subscribers/scheduled-job.subscriber.js +1 -1
- package/dist/subscribers/scheduled-job.subscriber.js.map +1 -1
- package/dist/subscribers/security-rule.subscriber.js +1 -1
- package/dist/subscribers/security-rule.subscriber.js.map +1 -1
- package/package.json +1 -1
- package/src/controllers/media.controller.ts +1 -1
- package/src/helpers/module-metadata-helper.service.ts +1 -1
- package/src/helpers/solid-registry.ts +1 -7
- package/src/helpers/typeorm-db-helper.ts +15 -0
- package/src/index.ts +0 -1
- package/src/interfaces.ts +1 -0
- package/src/seeders/seed-data/solid-core-metadata.json +62 -33
- package/src/services/authentication.service.ts +46 -12
- package/src/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.ts +5 -10
- package/src/services/crud-helper.service.ts +32 -12
- package/src/services/datasource-introspection.service.ts +176 -16
- package/src/services/menu-item-metadata.service.ts +2 -1
- package/src/services/model-metadata.service.ts +63 -21
- package/src/services/module-metadata.service.ts +0 -35
- package/src/services/settings/default-settings-provider.service.ts +106 -0
- package/src/services/solid-ts-morph.service.ts +61 -1
- package/src/subscribers/audit.subscriber.ts +1 -12
- package/src/subscribers/computed-entity-field.subscriber.ts +23 -29
- package/src/subscribers/created-by-updated-by.subscriber.ts +0 -3
- package/src/subscribers/field-metadata.subscriber.ts +0 -3
- package/src/subscribers/scheduled-job.subscriber.ts +1 -1
- package/src/subscribers/security-rule.subscriber.ts +1 -1
- package/dist/helpers/nodemon-heartbeat.d.ts +0 -5
- package/dist/helpers/nodemon-heartbeat.d.ts.map +0 -1
- package/dist/helpers/nodemon-heartbeat.js +0 -67
- package/dist/helpers/nodemon-heartbeat.js.map +0 -1
- package/src/helpers/nodemon-heartbeat.ts +0 -59
|
@@ -23,6 +23,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
23
23
|
group: "authentication-settings",
|
|
24
24
|
sortOrder: 50,
|
|
25
25
|
controlType: "boolean",
|
|
26
|
+
helpText: "Shows Google as a sign-in and sign-up option on supported authentication screens.",
|
|
26
27
|
},
|
|
27
28
|
{
|
|
28
29
|
moduleName: "solid-core",
|
|
@@ -33,6 +34,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
33
34
|
group: "authentication-settings",
|
|
34
35
|
sortOrder: 50,
|
|
35
36
|
controlType: "boolean",
|
|
37
|
+
helpText: "Shows Facebook as a sign-in and sign-up option on supported authentication screens.",
|
|
36
38
|
},
|
|
37
39
|
{
|
|
38
40
|
moduleName: "solid-core",
|
|
@@ -43,6 +45,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
43
45
|
group: "authentication-settings",
|
|
44
46
|
sortOrder: 50,
|
|
45
47
|
controlType: "boolean",
|
|
48
|
+
helpText: "Shows Microsoft as a sign-in and sign-up option on supported authentication screens.",
|
|
46
49
|
},
|
|
47
50
|
{
|
|
48
51
|
moduleName: "solid-core",
|
|
@@ -53,6 +56,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
53
56
|
group: "authentication-settings",
|
|
54
57
|
sortOrder: 50,
|
|
55
58
|
controlType: "boolean",
|
|
59
|
+
helpText: "Shows Microsoft Active Directory as a sign-in and sign-up option on supported authentication screens.",
|
|
56
60
|
},
|
|
57
61
|
{
|
|
58
62
|
moduleName: "solid-core",
|
|
@@ -68,6 +72,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
68
72
|
{ label: "Center", value: "center" },
|
|
69
73
|
{ label: "Right", value: "right" },
|
|
70
74
|
],
|
|
75
|
+
helpText: "Controls whether authentication forms are centered or shown beside a left or right visual panel.",
|
|
71
76
|
},
|
|
72
77
|
{
|
|
73
78
|
moduleName: "solid-core",
|
|
@@ -78,6 +83,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
78
83
|
group: "app-settings",
|
|
79
84
|
sortOrder: 10,
|
|
80
85
|
controlType: "mediaSingle",
|
|
86
|
+
helpText: "Primary application logo used across branded authentication and workspace surfaces.",
|
|
81
87
|
},
|
|
82
88
|
{
|
|
83
89
|
moduleName: "solid-core",
|
|
@@ -88,6 +94,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
88
94
|
group: "app-settings",
|
|
89
95
|
sortOrder: 20,
|
|
90
96
|
controlType: "mediaSingle",
|
|
97
|
+
helpText: "Secondary company logo for installations that need separate corporate branding.",
|
|
91
98
|
},
|
|
92
99
|
{
|
|
93
100
|
moduleName: "solid-core",
|
|
@@ -98,6 +105,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
98
105
|
group: "app-settings",
|
|
99
106
|
sortOrder: 30,
|
|
100
107
|
controlType: "mediaSingle",
|
|
108
|
+
helpText: "Browser tab icon used by the workspace and authentication pages when a custom favicon is configured.",
|
|
101
109
|
},
|
|
102
110
|
{
|
|
103
111
|
moduleName: "solid-core",
|
|
@@ -112,6 +120,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
112
120
|
{ label: "In Form View", value: "in_form_view" },
|
|
113
121
|
{ label: "In Image View", value: "in_image_view" },
|
|
114
122
|
],
|
|
123
|
+
helpText: "Controls whether the app logo appears inside the authentication form or inside the image panel.",
|
|
115
124
|
},
|
|
116
125
|
{
|
|
117
126
|
moduleName: "solid-core",
|
|
@@ -126,6 +135,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
126
135
|
{ label: "Edit", value: "edit" },
|
|
127
136
|
{ label: "View", value: "view" },
|
|
128
137
|
],
|
|
138
|
+
helpText: "Decides whether clicking a list row opens the record in edit mode or view mode.",
|
|
129
139
|
},
|
|
130
140
|
{
|
|
131
141
|
moduleName: "solid-core",
|
|
@@ -136,6 +146,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
136
146
|
group: "app-settings",
|
|
137
147
|
sortOrder: 50,
|
|
138
148
|
controlType: "boolean",
|
|
149
|
+
helpText: "Shows or hides the title, subtitle, and description block on authentication screens.",
|
|
139
150
|
},
|
|
140
151
|
{
|
|
141
152
|
moduleName: "solid-core",
|
|
@@ -146,6 +157,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
146
157
|
group: "app-settings",
|
|
147
158
|
sortOrder: 60,
|
|
148
159
|
controlType: "shortText",
|
|
160
|
+
helpText: "Main application name shown on branded authentication screens.",
|
|
149
161
|
},
|
|
150
162
|
{
|
|
151
163
|
moduleName: "solid-core",
|
|
@@ -156,6 +168,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
156
168
|
group: "app-settings",
|
|
157
169
|
sortOrder: 70,
|
|
158
170
|
controlType: "shortText",
|
|
171
|
+
helpText: "Short subtitle shown above or beside the main application title.",
|
|
159
172
|
},
|
|
160
173
|
{
|
|
161
174
|
moduleName: "solid-core",
|
|
@@ -166,6 +179,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
166
179
|
group: "app-settings",
|
|
167
180
|
sortOrder: 80,
|
|
168
181
|
controlType: "longText",
|
|
182
|
+
helpText: "Supporting copy used to explain the product or workspace on authentication screens.",
|
|
169
183
|
},
|
|
170
184
|
{
|
|
171
185
|
moduleName: "solid-core",
|
|
@@ -176,6 +190,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
176
190
|
group: "app-settings",
|
|
177
191
|
sortOrder: 90,
|
|
178
192
|
controlType: "boolean",
|
|
193
|
+
helpText: "Shows or hides the terms and privacy links on authentication screens.",
|
|
179
194
|
},
|
|
180
195
|
{
|
|
181
196
|
moduleName: "solid-core",
|
|
@@ -186,6 +201,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
186
201
|
group: "app-settings",
|
|
187
202
|
sortOrder: 100,
|
|
188
203
|
controlType: "shortText",
|
|
204
|
+
helpText: "Terms and conditions URL shown when legal links are enabled.",
|
|
189
205
|
},
|
|
190
206
|
{
|
|
191
207
|
moduleName: "solid-core",
|
|
@@ -196,6 +212,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
196
212
|
group: "app-settings",
|
|
197
213
|
sortOrder: 110,
|
|
198
214
|
controlType: "shortText",
|
|
215
|
+
helpText: "Privacy policy URL shown when legal links are enabled.",
|
|
199
216
|
},
|
|
200
217
|
{
|
|
201
218
|
moduleName: "solid-core",
|
|
@@ -206,6 +223,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
206
223
|
group: "app-settings",
|
|
207
224
|
sortOrder: 120,
|
|
208
225
|
controlType: "boolean",
|
|
226
|
+
helpText: "Enables dark theme support for frontend surfaces that honor the global appearance setting.",
|
|
209
227
|
},
|
|
210
228
|
{
|
|
211
229
|
moduleName: "solid-core",
|
|
@@ -216,6 +234,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
216
234
|
group: "app-settings",
|
|
217
235
|
sortOrder: 130,
|
|
218
236
|
controlType: "longText",
|
|
237
|
+
helpText: "Footer copyright text shown on branded authentication screens.",
|
|
219
238
|
},
|
|
220
239
|
{
|
|
221
240
|
moduleName: "solid-core",
|
|
@@ -226,6 +245,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
226
245
|
group: "misc-settings",
|
|
227
246
|
sortOrder: 10,
|
|
228
247
|
controlType: "boolean",
|
|
248
|
+
helpText: "Allows username-based identity flows where the frontend supports them.",
|
|
229
249
|
},
|
|
230
250
|
{
|
|
231
251
|
moduleName: "solid-core",
|
|
@@ -236,6 +256,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
236
256
|
group: "misc-settings",
|
|
237
257
|
sortOrder: 20,
|
|
238
258
|
controlType: "boolean",
|
|
259
|
+
helpText: "Default notification toggle used by user-facing notification settings.",
|
|
239
260
|
},
|
|
240
261
|
{
|
|
241
262
|
moduleName: "solid-core",
|
|
@@ -246,6 +267,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
246
267
|
group: "misc-settings",
|
|
247
268
|
sortOrder: 30,
|
|
248
269
|
controlType: "shortText",
|
|
270
|
+
helpText: "Email address used by the support shortcut in the user menu and related help surfaces.",
|
|
249
271
|
},
|
|
250
272
|
{
|
|
251
273
|
moduleName: "solid-core",
|
|
@@ -256,6 +278,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
256
278
|
group: "misc-settings",
|
|
257
279
|
sortOrder: 40,
|
|
258
280
|
controlType: "shortText",
|
|
281
|
+
helpText: "Friendly label shown for the support shortcut, such as Support or Help Desk.",
|
|
259
282
|
},
|
|
260
283
|
{
|
|
261
284
|
moduleName: "solid-core",
|
|
@@ -266,6 +289,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
266
289
|
group: "misc-settings",
|
|
267
290
|
sortOrder: 50,
|
|
268
291
|
controlType: "shortText",
|
|
292
|
+
helpText: "Icon identifier used for the support shortcut so users can recognize it quickly.",
|
|
269
293
|
},
|
|
270
294
|
{
|
|
271
295
|
moduleName: "solid-core",
|
|
@@ -276,6 +300,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
276
300
|
group: "authentication-settings",
|
|
277
301
|
sortOrder: 90,
|
|
278
302
|
controlType: "mediaSingle",
|
|
303
|
+
helpText: "Banner image used when the authentication form is shown on the left and the visual panel is on the right.",
|
|
279
304
|
},
|
|
280
305
|
{
|
|
281
306
|
moduleName: "solid-core",
|
|
@@ -286,6 +311,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
286
311
|
group: "authentication-settings",
|
|
287
312
|
sortOrder: 100,
|
|
288
313
|
controlType: "mediaSingle",
|
|
314
|
+
helpText: "Banner image used when the authentication form is shown on the right and the visual panel is on the left.",
|
|
289
315
|
},
|
|
290
316
|
{
|
|
291
317
|
moduleName: "solid-core",
|
|
@@ -296,6 +322,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
296
322
|
group: "authentication-settings",
|
|
297
323
|
sortOrder: 110,
|
|
298
324
|
controlType: "mediaSingle",
|
|
325
|
+
helpText: "Background image used for the centered authentication layout.",
|
|
299
326
|
},
|
|
300
327
|
{
|
|
301
328
|
moduleName: "solid-core",
|
|
@@ -323,6 +350,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
323
350
|
sortOrder: 10,
|
|
324
351
|
controlType: "custom",
|
|
325
352
|
settingsWidget: "solidXGenAiCodeBuilderConfigWidget",
|
|
353
|
+
helpText: "Structured AI builder configuration that stores providers, credentials, and model assignments for SolidX code generation features.",
|
|
326
354
|
},
|
|
327
355
|
{
|
|
328
356
|
moduleName: "solid-core",
|
|
@@ -339,6 +367,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
339
367
|
group: "ai-settings",
|
|
340
368
|
sortOrder: 20,
|
|
341
369
|
controlType: "boolean",
|
|
370
|
+
helpText: "Read-only flag indicating whether MCP integration is enabled for this deployment.",
|
|
342
371
|
},
|
|
343
372
|
{
|
|
344
373
|
moduleName: "solid-core",
|
|
@@ -349,6 +378,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
349
378
|
group: "ai-settings",
|
|
350
379
|
sortOrder: 30,
|
|
351
380
|
controlType: "shortText",
|
|
381
|
+
helpText: "Base MCP server URL used when MCP integration is enabled.",
|
|
352
382
|
},
|
|
353
383
|
{
|
|
354
384
|
moduleName: "solid-core",
|
|
@@ -365,6 +395,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
365
395
|
group: "system-settings",
|
|
366
396
|
sortOrder: 10,
|
|
367
397
|
controlType: "shortText",
|
|
398
|
+
helpText: "Default date-time format used by Solid core features that need a shared server-side format.",
|
|
368
399
|
},
|
|
369
400
|
{
|
|
370
401
|
moduleName: "solid-core",
|
|
@@ -375,6 +406,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
375
406
|
group: "system-settings",
|
|
376
407
|
sortOrder: 20,
|
|
377
408
|
controlType: "shortText",
|
|
409
|
+
helpText: "Default date format used by Solid core features that need a shared server-side format.",
|
|
378
410
|
},
|
|
379
411
|
{
|
|
380
412
|
moduleName: "solid-core",
|
|
@@ -385,6 +417,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
385
417
|
group: "system-settings",
|
|
386
418
|
sortOrder: 30,
|
|
387
419
|
controlType: "shortText",
|
|
420
|
+
helpText: "Backend base URL used to generate absolute links and media URLs.",
|
|
388
421
|
},
|
|
389
422
|
{
|
|
390
423
|
moduleName: "solid-core",
|
|
@@ -395,6 +428,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
395
428
|
group: "system-settings",
|
|
396
429
|
sortOrder: 35,
|
|
397
430
|
controlType: "shortText",
|
|
431
|
+
helpText: "Frontend admin application base URL used when the backend needs to point users back to the admin UI.",
|
|
398
432
|
},
|
|
399
433
|
{
|
|
400
434
|
moduleName: "solid-core",
|
|
@@ -405,6 +439,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
405
439
|
group: "system-settings",
|
|
406
440
|
sortOrder: 40,
|
|
407
441
|
controlType: "shortText",
|
|
442
|
+
helpText: "Public website URL for the product or marketing site.",
|
|
408
443
|
},
|
|
409
444
|
{
|
|
410
445
|
moduleName: "solid-core",
|
|
@@ -415,6 +450,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
415
450
|
group: "storage-settings",
|
|
416
451
|
sortOrder: 10,
|
|
417
452
|
controlType: "longText",
|
|
453
|
+
helpText: "Comma-separated list of module metadata seed files that are loaded by the platform.",
|
|
418
454
|
},
|
|
419
455
|
{
|
|
420
456
|
moduleName: "solid-core",
|
|
@@ -425,6 +461,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
425
461
|
group: "storage-settings",
|
|
426
462
|
sortOrder: 20,
|
|
427
463
|
controlType: "shortText",
|
|
464
|
+
helpText: "Directory where uploaded media is staged before downstream processing or persistence.",
|
|
428
465
|
},
|
|
429
466
|
{
|
|
430
467
|
moduleName: "solid-core",
|
|
@@ -435,6 +472,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
435
472
|
group: "storage-settings",
|
|
436
473
|
sortOrder: 30,
|
|
437
474
|
controlType: "shortText",
|
|
475
|
+
helpText: "Directory used by the default disk-based file storage provider for persisted files.",
|
|
438
476
|
},
|
|
439
477
|
{
|
|
440
478
|
moduleName: "solid-core",
|
|
@@ -449,6 +487,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
449
487
|
{ label: "Disk", value: "disk" },
|
|
450
488
|
{ label: "S3", value: "s3" },
|
|
451
489
|
],
|
|
490
|
+
helpText: "Default storage implementation used for file handling, such as local disk or S3.",
|
|
452
491
|
},
|
|
453
492
|
{
|
|
454
493
|
moduleName: "solid-core",
|
|
@@ -471,6 +510,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
471
510
|
group: "storage-settings",
|
|
472
511
|
sortOrder: 50,
|
|
473
512
|
controlType: "shortText",
|
|
513
|
+
helpText: "AWS region used by the default S3 storage integration.",
|
|
474
514
|
},
|
|
475
515
|
{
|
|
476
516
|
moduleName: "solid-core",
|
|
@@ -481,6 +521,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
481
521
|
group: "storage-settings",
|
|
482
522
|
sortOrder: 60,
|
|
483
523
|
controlType: "shortText",
|
|
524
|
+
helpText: "Default S3 bucket used when the S3 storage provider is active.",
|
|
484
525
|
},
|
|
485
526
|
{
|
|
486
527
|
moduleName: "solid-core",
|
|
@@ -495,6 +536,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
495
536
|
{ label: "SMTP Email Service", value: "SMTPEMailService" },
|
|
496
537
|
{ label: "Elastic Email Service", value: "ElasticEmailService" },
|
|
497
538
|
],
|
|
539
|
+
helpText: "Email delivery provider currently configured for outbound mail.",
|
|
498
540
|
},
|
|
499
541
|
{
|
|
500
542
|
moduleName: "solid-core",
|
|
@@ -505,6 +547,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
505
547
|
group: "email-settings",
|
|
506
548
|
sortOrder: 20,
|
|
507
549
|
controlType: "longText",
|
|
550
|
+
helpText: "Comma-separated list of email template seed files loaded by the platform.",
|
|
508
551
|
},
|
|
509
552
|
{
|
|
510
553
|
moduleName: "solid-core",
|
|
@@ -515,6 +558,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
515
558
|
group: "email-settings",
|
|
516
559
|
sortOrder: 30,
|
|
517
560
|
controlType: "boolean",
|
|
561
|
+
helpText: "Whether outbound emails are queued for asynchronous delivery instead of being sent inline.",
|
|
518
562
|
},
|
|
519
563
|
{
|
|
520
564
|
moduleName: "solid-core",
|
|
@@ -525,6 +569,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
525
569
|
group: "email-settings",
|
|
526
570
|
sortOrder: 40,
|
|
527
571
|
controlType: "shortText",
|
|
572
|
+
helpText: "SMTP host name used when the SMTP email provider is active.",
|
|
528
573
|
},
|
|
529
574
|
{
|
|
530
575
|
moduleName: "solid-core",
|
|
@@ -535,6 +580,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
535
580
|
group: "email-settings",
|
|
536
581
|
sortOrder: 50,
|
|
537
582
|
controlType: "numeric",
|
|
583
|
+
helpText: "SMTP port used when the SMTP email provider is active.",
|
|
538
584
|
},
|
|
539
585
|
{
|
|
540
586
|
moduleName: "solid-core",
|
|
@@ -545,6 +591,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
545
591
|
group: "email-settings",
|
|
546
592
|
sortOrder: 60,
|
|
547
593
|
controlType: "shortText",
|
|
594
|
+
helpText: "SMTP username used when the SMTP email provider is active.",
|
|
548
595
|
},
|
|
549
596
|
{
|
|
550
597
|
moduleName: "solid-core",
|
|
@@ -561,6 +608,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
561
608
|
group: "email-settings",
|
|
562
609
|
sortOrder: 70,
|
|
563
610
|
controlType: "shortText",
|
|
611
|
+
helpText: "Default From address for outbound mail sent through the SMTP provider.",
|
|
564
612
|
},
|
|
565
613
|
{
|
|
566
614
|
moduleName: "solid-core",
|
|
@@ -577,6 +625,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
577
625
|
group: "email-settings",
|
|
578
626
|
sortOrder: 80,
|
|
579
627
|
controlType: "shortText",
|
|
628
|
+
helpText: "Default From address for outbound mail sent through API-based email providers.",
|
|
580
629
|
},
|
|
581
630
|
{
|
|
582
631
|
moduleName: "solid-core",
|
|
@@ -587,6 +636,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
587
636
|
group: "ai-settings",
|
|
588
637
|
sortOrder: 40,
|
|
589
638
|
controlType: "shortText",
|
|
639
|
+
helpText: "Base URL of the RAG service used by AI-assisted features that need retrieval support.",
|
|
590
640
|
},
|
|
591
641
|
{
|
|
592
642
|
moduleName: "solid-core",
|
|
@@ -627,6 +677,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
627
677
|
group: "oauth-settings",
|
|
628
678
|
sortOrder: 10,
|
|
629
679
|
controlType: "shortText",
|
|
680
|
+
helpText: "Google OAuth client ID registered for this application.",
|
|
630
681
|
},
|
|
631
682
|
{
|
|
632
683
|
moduleName: "solid-core",
|
|
@@ -643,6 +694,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
643
694
|
group: "oauth-settings",
|
|
644
695
|
sortOrder: 20,
|
|
645
696
|
controlType: "shortText",
|
|
697
|
+
helpText: "Backend callback URL that Google redirects to after authentication.",
|
|
646
698
|
},
|
|
647
699
|
{
|
|
648
700
|
moduleName: "solid-core",
|
|
@@ -653,12 +705,14 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
653
705
|
group: "oauth-settings",
|
|
654
706
|
sortOrder: 30,
|
|
655
707
|
controlType: "shortText",
|
|
708
|
+
helpText: "Post-authentication Google redirect URL used by the application flow.",
|
|
656
709
|
},
|
|
657
710
|
{
|
|
658
711
|
moduleName: "solid-core",
|
|
659
712
|
key: "FACEBOOK_CLIENT_ID",
|
|
660
713
|
value: process.env.IAM_FACEBOOK_OAUTH_CLIENT_ID,
|
|
661
714
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
715
|
+
helpText: "Facebook OAuth client ID registered for this application.",
|
|
662
716
|
},
|
|
663
717
|
{
|
|
664
718
|
moduleName: "solid-core",
|
|
@@ -671,18 +725,21 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
671
725
|
key: "FACEBOOK_CALLBACK_URL",
|
|
672
726
|
value: process.env.IAM_FACEBOOK_OAUTH_CALLBACK_URL,
|
|
673
727
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
728
|
+
helpText: "Backend callback URL that Facebook redirects to after authentication.",
|
|
674
729
|
},
|
|
675
730
|
{
|
|
676
731
|
moduleName: "solid-core",
|
|
677
732
|
key: "FACEBOOK_REDIRECT_URL",
|
|
678
733
|
value: process.env.IAM_FACEBOOK_OAUTH_REDIRECT_URL,
|
|
679
734
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
735
|
+
helpText: "Post-authentication Facebook redirect URL used by the application flow.",
|
|
680
736
|
},
|
|
681
737
|
{
|
|
682
738
|
moduleName: "solid-core",
|
|
683
739
|
key: "MICROSOFT_CLIENT_ID",
|
|
684
740
|
value: process.env.IAM_MICROSOFT_OAUTH_CLIENT_ID,
|
|
685
741
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
742
|
+
helpText: "Microsoft OAuth client ID registered for this application.",
|
|
686
743
|
},
|
|
687
744
|
{
|
|
688
745
|
moduleName: "solid-core",
|
|
@@ -695,18 +752,21 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
695
752
|
key: "MICROSOFT_TENANT_ID",
|
|
696
753
|
value: process.env.IAM_MICROSOFT_OAUTH_TENANT_ID || "common",
|
|
697
754
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
755
|
+
helpText: "Microsoft OAuth tenant identifier used to scope sign-in requests.",
|
|
698
756
|
},
|
|
699
757
|
{
|
|
700
758
|
moduleName: "solid-core",
|
|
701
759
|
key: "MICROSOFT_CALLBACK_URL",
|
|
702
760
|
value: process.env.IAM_MICROSOFT_OAUTH_CALLBACK_URL,
|
|
703
761
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
762
|
+
helpText: "Backend callback URL that Microsoft redirects to after authentication.",
|
|
704
763
|
},
|
|
705
764
|
{
|
|
706
765
|
moduleName: "solid-core",
|
|
707
766
|
key: "MICROSOFT_REDIRECT_URL",
|
|
708
767
|
value: process.env.IAM_MICROSOFT_OAUTH_REDIRECT_URL,
|
|
709
768
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
769
|
+
helpText: "Post-authentication Microsoft redirect URL used by the application flow.",
|
|
710
770
|
},
|
|
711
771
|
{
|
|
712
772
|
moduleName: "solid-core",
|
|
@@ -717,6 +777,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
717
777
|
group: "oauth-settings",
|
|
718
778
|
sortOrder: 70,
|
|
719
779
|
controlType: "shortText",
|
|
780
|
+
helpText: "Microsoft Active Directory client ID registered for this application.",
|
|
720
781
|
},
|
|
721
782
|
{
|
|
722
783
|
moduleName: "solid-core",
|
|
@@ -733,6 +794,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
733
794
|
group: "oauth-settings",
|
|
734
795
|
sortOrder: 80,
|
|
735
796
|
controlType: "shortText",
|
|
797
|
+
helpText: "Microsoft Active Directory tenant identifier used to scope sign-in requests.",
|
|
736
798
|
},
|
|
737
799
|
{
|
|
738
800
|
moduleName: "solid-core",
|
|
@@ -743,6 +805,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
743
805
|
group: "oauth-settings",
|
|
744
806
|
sortOrder: 90,
|
|
745
807
|
controlType: "shortText",
|
|
808
|
+
helpText: "Backend callback URL that Microsoft Active Directory redirects to after authentication.",
|
|
746
809
|
},
|
|
747
810
|
{
|
|
748
811
|
moduleName: "solid-core",
|
|
@@ -753,6 +816,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
753
816
|
group: "oauth-settings",
|
|
754
817
|
sortOrder: 100,
|
|
755
818
|
controlType: "shortText",
|
|
819
|
+
helpText: "Post-authentication Microsoft Active Directory redirect URL used by the application flow.",
|
|
756
820
|
},
|
|
757
821
|
{
|
|
758
822
|
moduleName: "solid-core",
|
|
@@ -763,6 +827,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
763
827
|
group: "authentication-settings",
|
|
764
828
|
sortOrder: 20,
|
|
765
829
|
controlType: "boolean",
|
|
830
|
+
helpText: "Enables passwordless sign-in flows such as OTP-based authentication.",
|
|
766
831
|
},
|
|
767
832
|
{
|
|
768
833
|
moduleName: "solid-core",
|
|
@@ -773,6 +838,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
773
838
|
group: "authentication-settings",
|
|
774
839
|
sortOrder: 10,
|
|
775
840
|
controlType: "boolean",
|
|
841
|
+
helpText: "Enables traditional password-based sign-in.",
|
|
776
842
|
},
|
|
777
843
|
{
|
|
778
844
|
moduleName: "solid-core",
|
|
@@ -787,6 +853,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
787
853
|
{ label: "Email", value: "email" },
|
|
788
854
|
{ label: "Mobile", value: "mobile" },
|
|
789
855
|
],
|
|
856
|
+
helpText: "Chooses whether passwordless registration validates new users by email or mobile number.",
|
|
790
857
|
},
|
|
791
858
|
{
|
|
792
859
|
moduleName: "solid-core",
|
|
@@ -802,6 +869,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
802
869
|
{ label: "Mobile", value: "mobile" },
|
|
803
870
|
{ label: "Selectable", value: "selectable" },
|
|
804
871
|
],
|
|
872
|
+
helpText: "Chooses whether passwordless login validates users by email, mobile number, or a selectable option.",
|
|
805
873
|
},
|
|
806
874
|
{
|
|
807
875
|
moduleName: "solid-core",
|
|
@@ -812,6 +880,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
812
880
|
group: "authentication-settings",
|
|
813
881
|
sortOrder: 60,
|
|
814
882
|
controlType: "boolean",
|
|
883
|
+
helpText: "Lets unauthenticated visitors create their own account from public registration screens.",
|
|
815
884
|
},
|
|
816
885
|
{
|
|
817
886
|
moduleName: "solid-core",
|
|
@@ -822,6 +891,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
822
891
|
group: "authentication-settings",
|
|
823
892
|
sortOrder: 70,
|
|
824
893
|
controlType: "boolean",
|
|
894
|
+
helpText: "Automatically activates newly registered users instead of requiring a separate activation step.",
|
|
825
895
|
},
|
|
826
896
|
{
|
|
827
897
|
moduleName: "solid-core",
|
|
@@ -844,6 +914,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
844
914
|
group: "authentication-settings",
|
|
845
915
|
sortOrder: 85,
|
|
846
916
|
controlType: "boolean",
|
|
917
|
+
helpText: "Allows OTP delivery to fall back to WhatsApp when the primary OTP path cannot be used.",
|
|
847
918
|
},
|
|
848
919
|
{
|
|
849
920
|
moduleName: "solid-core",
|
|
@@ -854,6 +925,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
854
925
|
group: "authentication-settings",
|
|
855
926
|
sortOrder: 86,
|
|
856
927
|
controlType: "shortText",
|
|
928
|
+
helpText: "Template identifier used when OTP messages are sent through WhatsApp.",
|
|
857
929
|
},
|
|
858
930
|
{
|
|
859
931
|
moduleName: "solid-core",
|
|
@@ -864,6 +936,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
864
936
|
group: "authentication-settings",
|
|
865
937
|
sortOrder: 87,
|
|
866
938
|
controlType: "boolean",
|
|
939
|
+
helpText: "Allows WhatsApp OTP delivery to run as an independent channel where supported.",
|
|
867
940
|
},
|
|
868
941
|
{
|
|
869
942
|
moduleName: "solid-core",
|
|
@@ -874,6 +947,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
874
947
|
group: "authentication-settings",
|
|
875
948
|
sortOrder: 88,
|
|
876
949
|
controlType: "shortText",
|
|
950
|
+
helpText: "Default dialing code applied when OTP phone numbers are entered without a country prefix.",
|
|
877
951
|
},
|
|
878
952
|
{
|
|
879
953
|
moduleName: "solid-core",
|
|
@@ -890,6 +964,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
890
964
|
group: "authentication-settings",
|
|
891
965
|
sortOrder: 75,
|
|
892
966
|
controlType: "shortText",
|
|
967
|
+
helpText: "Role assigned by default to newly created users in flows that rely on automatic role assignment.",
|
|
893
968
|
},
|
|
894
969
|
{
|
|
895
970
|
moduleName: "solid-core",
|
|
@@ -918,6 +993,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
918
993
|
group: "authentication-settings",
|
|
919
994
|
sortOrder: 110,
|
|
920
995
|
controlType: "numeric",
|
|
996
|
+
helpText: "Maximum failed login attempts allowed before a user is considered blocked.",
|
|
921
997
|
},
|
|
922
998
|
{
|
|
923
999
|
moduleName: "solid-core",
|
|
@@ -928,6 +1004,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
928
1004
|
group: "authentication-settings",
|
|
929
1005
|
sortOrder: 120,
|
|
930
1006
|
controlType: "boolean",
|
|
1007
|
+
helpText: "Requires users to choose a new password the first time they sign in.",
|
|
931
1008
|
},
|
|
932
1009
|
{
|
|
933
1010
|
moduleName: "solid-core",
|
|
@@ -939,6 +1016,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
939
1016
|
group: "authentication-settings",
|
|
940
1017
|
sortOrder: 130,
|
|
941
1018
|
controlType: "shortText",
|
|
1019
|
+
helpText: "Validation pattern applied to new passwords in registration and password-change flows.",
|
|
942
1020
|
},
|
|
943
1021
|
{
|
|
944
1022
|
moduleName: "solid-core",
|
|
@@ -950,6 +1028,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
950
1028
|
group: "authentication-settings",
|
|
951
1029
|
sortOrder: 140,
|
|
952
1030
|
controlType: "longText",
|
|
1031
|
+
helpText: "Custom error message shown when a password does not satisfy the configured regex.",
|
|
953
1032
|
},
|
|
954
1033
|
{
|
|
955
1034
|
moduleName: "solid-core",
|
|
@@ -961,6 +1040,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
961
1040
|
group: "authentication-settings",
|
|
962
1041
|
sortOrder: 150,
|
|
963
1042
|
controlType: "longText",
|
|
1043
|
+
helpText: "Human-friendly guidance shown to users so they understand the password policy before submission.",
|
|
964
1044
|
},
|
|
965
1045
|
{
|
|
966
1046
|
moduleName: "solid-core",
|
|
@@ -971,6 +1051,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
971
1051
|
group: "authentication-settings",
|
|
972
1052
|
sortOrder: 160,
|
|
973
1053
|
controlType: "boolean",
|
|
1054
|
+
helpText: "Enables automatic password generation in flows that create user credentials on the user's behalf.",
|
|
974
1055
|
},
|
|
975
1056
|
{
|
|
976
1057
|
moduleName: "solid-core",
|
|
@@ -989,6 +1070,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
989
1070
|
group: "authentication-settings",
|
|
990
1071
|
sortOrder: 170,
|
|
991
1072
|
controlType: "boolean",
|
|
1073
|
+
helpText: "Adds name fields to the public registration form so users can provide profile details up front.",
|
|
992
1074
|
},
|
|
993
1075
|
{
|
|
994
1076
|
moduleName: "solid-core",
|
|
@@ -999,6 +1081,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
999
1081
|
group: "authentication-settings",
|
|
1000
1082
|
sortOrder: 180,
|
|
1001
1083
|
controlType: "boolean",
|
|
1084
|
+
helpText: "Sends a welcome email after a successful signup when email delivery is configured.",
|
|
1002
1085
|
},
|
|
1003
1086
|
{
|
|
1004
1087
|
moduleName: "solid-core",
|
|
@@ -1009,6 +1092,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1009
1092
|
group: "authentication-settings",
|
|
1010
1093
|
sortOrder: 190,
|
|
1011
1094
|
controlType: "boolean",
|
|
1095
|
+
helpText: "Sends a welcome SMS after a successful signup when SMS delivery is configured.",
|
|
1012
1096
|
},
|
|
1013
1097
|
{
|
|
1014
1098
|
moduleName: "solid-core",
|
|
@@ -1019,6 +1103,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1019
1103
|
group: "authentication-settings",
|
|
1020
1104
|
sortOrder: 180,
|
|
1021
1105
|
controlType: "shortText",
|
|
1106
|
+
helpText: "Frontend login page URL used in backend-generated links and redirects.",
|
|
1022
1107
|
},
|
|
1023
1108
|
{
|
|
1024
1109
|
moduleName: "solid-core",
|
|
@@ -1029,6 +1114,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1029
1114
|
group: "authentication-settings",
|
|
1030
1115
|
sortOrder: 190,
|
|
1031
1116
|
controlType: "shortText",
|
|
1117
|
+
helpText: "Frontend forgot-password page URL used in backend-generated links and redirects.",
|
|
1032
1118
|
},
|
|
1033
1119
|
{
|
|
1034
1120
|
moduleName: "solid-core",
|
|
@@ -1045,6 +1131,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1045
1131
|
group: "jwt-settings",
|
|
1046
1132
|
sortOrder: 10,
|
|
1047
1133
|
controlType: "shortText",
|
|
1134
|
+
helpText: "JWT audience claim expected by tokens issued by this deployment.",
|
|
1048
1135
|
},
|
|
1049
1136
|
{
|
|
1050
1137
|
moduleName: "solid-core",
|
|
@@ -1055,6 +1142,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1055
1142
|
group: "jwt-settings",
|
|
1056
1143
|
sortOrder: 20,
|
|
1057
1144
|
controlType: "shortText",
|
|
1145
|
+
helpText: "JWT issuer claim attached to tokens issued by this deployment.",
|
|
1058
1146
|
},
|
|
1059
1147
|
{
|
|
1060
1148
|
moduleName: "solid-core",
|
|
@@ -1081,6 +1169,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1081
1169
|
{ label: "Database", value: "database" },
|
|
1082
1170
|
{ label: "RabbitMQ", value: "rabbitmq" },
|
|
1083
1171
|
],
|
|
1172
|
+
helpText: "Default queue broker used for background job processing.",
|
|
1084
1173
|
},
|
|
1085
1174
|
{
|
|
1086
1175
|
moduleName: "solid-core",
|
|
@@ -1091,6 +1180,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1091
1180
|
group: "queue-settings",
|
|
1092
1181
|
sortOrder: 20,
|
|
1093
1182
|
controlType: "shortText",
|
|
1183
|
+
helpText: "Service role or worker identity expected by the queue subsystem.",
|
|
1094
1184
|
},
|
|
1095
1185
|
{
|
|
1096
1186
|
moduleName: "solid-core",
|
|
@@ -1113,6 +1203,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1113
1203
|
group: "sms-settings",
|
|
1114
1204
|
sortOrder: 10,
|
|
1115
1205
|
controlType: "shortText",
|
|
1206
|
+
helpText: "SMS delivery provider currently configured for outbound messages.",
|
|
1116
1207
|
},
|
|
1117
1208
|
{
|
|
1118
1209
|
moduleName: "solid-core",
|
|
@@ -1123,6 +1214,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1123
1214
|
group: "sms-settings",
|
|
1124
1215
|
sortOrder: 20,
|
|
1125
1216
|
controlType: "longText",
|
|
1217
|
+
helpText: "Comma-separated list of SMS template seed files loaded by the platform.",
|
|
1126
1218
|
},
|
|
1127
1219
|
{
|
|
1128
1220
|
moduleName: "solid-core",
|
|
@@ -1133,6 +1225,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1133
1225
|
group: "sms-settings",
|
|
1134
1226
|
sortOrder: 30,
|
|
1135
1227
|
controlType: "boolean",
|
|
1228
|
+
helpText: "Whether outbound SMS messages are queued for asynchronous delivery instead of being sent inline.",
|
|
1136
1229
|
},
|
|
1137
1230
|
{
|
|
1138
1231
|
moduleName: "solid-core",
|
|
@@ -1143,6 +1236,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1143
1236
|
group: "sms-settings",
|
|
1144
1237
|
sortOrder: 40,
|
|
1145
1238
|
controlType: "shortText",
|
|
1239
|
+
helpText: "MSG91 endpoint URL used when the MSG91 SMS provider is active.",
|
|
1146
1240
|
},
|
|
1147
1241
|
{
|
|
1148
1242
|
moduleName: "solid-core",
|
|
@@ -1159,6 +1253,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1159
1253
|
group: "sms-settings",
|
|
1160
1254
|
sortOrder: 50,
|
|
1161
1255
|
controlType: "shortText",
|
|
1256
|
+
helpText: "Twilio account SID used when the Twilio SMS provider is active.",
|
|
1162
1257
|
},
|
|
1163
1258
|
{
|
|
1164
1259
|
moduleName: "solid-core",
|
|
@@ -1175,6 +1270,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1175
1270
|
group: "sms-settings",
|
|
1176
1271
|
sortOrder: 60,
|
|
1177
1272
|
controlType: "shortText",
|
|
1273
|
+
helpText: "Twilio phone number used as the sender for outbound SMS.",
|
|
1178
1274
|
},
|
|
1179
1275
|
{
|
|
1180
1276
|
moduleName: "solid-core",
|
|
@@ -1185,6 +1281,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1185
1281
|
group: "short-url-settings",
|
|
1186
1282
|
sortOrder: 10,
|
|
1187
1283
|
controlType: "shortText",
|
|
1284
|
+
helpText: "API endpoint used to create shortened URLs.",
|
|
1188
1285
|
},
|
|
1189
1286
|
{
|
|
1190
1287
|
moduleName: "solid-core",
|
|
@@ -1201,6 +1298,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1201
1298
|
group: "short-url-settings",
|
|
1202
1299
|
sortOrder: 20,
|
|
1203
1300
|
controlType: "shortText",
|
|
1301
|
+
helpText: "Short URL domain used when generating branded or provider-backed tiny URLs.",
|
|
1204
1302
|
},
|
|
1205
1303
|
{
|
|
1206
1304
|
moduleName: "solid-core",
|
|
@@ -1211,6 +1309,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1211
1309
|
group: "short-url-settings",
|
|
1212
1310
|
sortOrder: 30,
|
|
1213
1311
|
controlType: "boolean",
|
|
1312
|
+
helpText: "Indicates whether short URL generation is enabled for this deployment.",
|
|
1214
1313
|
},
|
|
1215
1314
|
{
|
|
1216
1315
|
moduleName: "solid-core",
|
|
@@ -1221,6 +1320,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1221
1320
|
group: "whatsapp-settings",
|
|
1222
1321
|
sortOrder: 10,
|
|
1223
1322
|
controlType: "shortText",
|
|
1323
|
+
helpText: "WhatsApp delivery provider currently configured for outbound messages.",
|
|
1224
1324
|
},
|
|
1225
1325
|
{
|
|
1226
1326
|
moduleName: "solid-core",
|
|
@@ -1231,6 +1331,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1231
1331
|
group: "whatsapp-settings",
|
|
1232
1332
|
sortOrder: 20,
|
|
1233
1333
|
controlType: "shortText",
|
|
1334
|
+
helpText: "MSG91 endpoint URL used when the MSG91 WhatsApp provider is active.",
|
|
1234
1335
|
},
|
|
1235
1336
|
{
|
|
1236
1337
|
moduleName: "solid-core",
|
|
@@ -1247,6 +1348,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1247
1348
|
group: "whatsapp-settings",
|
|
1248
1349
|
sortOrder: 30,
|
|
1249
1350
|
controlType: "shortText",
|
|
1351
|
+
helpText: "Integrated WhatsApp number used by the MSG91 WhatsApp provider.",
|
|
1250
1352
|
},
|
|
1251
1353
|
{
|
|
1252
1354
|
moduleName: "solid-core",
|
|
@@ -1257,6 +1359,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1257
1359
|
group: "whatsapp-settings",
|
|
1258
1360
|
sortOrder: 40,
|
|
1259
1361
|
controlType: "shortText",
|
|
1362
|
+
helpText: "Base Meta WhatsApp API URL used by the Meta WhatsApp integration.",
|
|
1260
1363
|
},
|
|
1261
1364
|
{
|
|
1262
1365
|
moduleName: "solid-core",
|
|
@@ -1267,6 +1370,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1267
1370
|
group: "whatsapp-settings",
|
|
1268
1371
|
sortOrder: 50,
|
|
1269
1372
|
controlType: "shortText",
|
|
1373
|
+
helpText: "Meta WhatsApp API version used when building outbound requests.",
|
|
1270
1374
|
},
|
|
1271
1375
|
{
|
|
1272
1376
|
moduleName: "solid-core",
|
|
@@ -1277,6 +1381,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1277
1381
|
group: "whatsapp-settings",
|
|
1278
1382
|
sortOrder: 60,
|
|
1279
1383
|
controlType: "shortText",
|
|
1384
|
+
helpText: "Meta WhatsApp phone number ID used to send messages from the connected business account.",
|
|
1280
1385
|
},
|
|
1281
1386
|
{
|
|
1282
1387
|
moduleName: "solid-core",
|
|
@@ -1287,6 +1392,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1287
1392
|
group: "whatsapp-settings",
|
|
1288
1393
|
sortOrder: 70,
|
|
1289
1394
|
controlType: "shortText",
|
|
1395
|
+
helpText: "Meta WhatsApp business account ID associated with the connected sender.",
|
|
1290
1396
|
},
|
|
1291
1397
|
{
|
|
1292
1398
|
moduleName: "solid-core",
|