@solidxai/core 0.1.11-beta.0 → 0.1.11-beta.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/.claude/settings.local.json +2 -1
- package/CLAUDE.md +26 -0
- package/dist/commands/migrate-removed-fields.command.d.ts +19 -0
- package/dist/commands/migrate-removed-fields.command.d.ts.map +1 -0
- package/dist/commands/migrate-removed-fields.command.js +77 -0
- package/dist/commands/migrate-removed-fields.command.js.map +1 -0
- package/dist/controllers/datasource-introspection.controller.d.ts +46 -1
- package/dist/controllers/datasource-introspection.controller.d.ts.map +1 -1
- package/dist/controllers/datasource-introspection.controller.js +38 -0
- package/dist/controllers/datasource-introspection.controller.js.map +1 -1
- package/dist/controllers/service.controller.d.ts +1 -0
- package/dist/controllers/service.controller.d.ts.map +1 -1
- package/dist/controllers/service.controller.js +2 -2
- package/dist/controllers/service.controller.js.map +1 -1
- package/dist/dtos/datasource-introspection-mapping.dto.d.ts +5 -0
- package/dist/dtos/datasource-introspection-mapping.dto.d.ts.map +1 -1
- package/dist/dtos/datasource-introspection-mapping.dto.js +24 -2
- package/dist/dtos/datasource-introspection-mapping.dto.js.map +1 -1
- package/dist/entities/{legacy-common-with-id.entity.d.ts → legacy-common-with-generated-id.entity.d.ts} +2 -2
- package/dist/entities/legacy-common-with-generated-id.entity.d.ts.map +1 -0
- package/dist/entities/{legacy-common-with-id.entity.js → legacy-common-with-generated-id.entity.js} +4 -4
- package/dist/entities/legacy-common-with-generated-id.entity.js.map +1 -0
- package/dist/entities/{legacy-common.entity.d.ts → legacy-common.entity-with-existing-id.entity.d.ts} +1 -1
- package/dist/entities/legacy-common.entity-with-existing-id.entity.d.ts.map +1 -0
- package/dist/entities/{legacy-common.entity.js → legacy-common.entity-with-existing-id.entity.js} +1 -1
- package/dist/entities/legacy-common.entity-with-existing-id.entity.js.map +1 -0
- package/dist/helpers/command.service.d.ts +2 -0
- package/dist/helpers/command.service.d.ts.map +1 -1
- package/dist/helpers/command.service.js +6 -2
- package/dist/helpers/command.service.js.map +1 -1
- package/dist/helpers/environment.helper.d.ts +1 -0
- package/dist/helpers/environment.helper.d.ts.map +1 -1
- package/dist/helpers/environment.helper.js +4 -0
- package/dist/helpers/environment.helper.js.map +1 -1
- package/dist/helpers/field-crud-managers/IntFieldCrudManager.d.ts.map +1 -1
- package/dist/helpers/field-crud-managers/IntFieldCrudManager.js +4 -1
- package/dist/helpers/field-crud-managers/IntFieldCrudManager.js.map +1 -1
- package/dist/helpers/model-metadata-helper.service.d.ts +2 -1
- package/dist/helpers/model-metadata-helper.service.d.ts.map +1 -1
- package/dist/helpers/model-metadata-helper.service.js +9 -5
- package/dist/helpers/model-metadata-helper.service.js.map +1 -1
- package/dist/helpers/nodemon-heartbeat.d.ts +5 -0
- package/dist/helpers/nodemon-heartbeat.d.ts.map +1 -0
- package/dist/helpers/nodemon-heartbeat.js +67 -0
- package/dist/helpers/nodemon-heartbeat.js.map +1 -0
- package/dist/helpers/solid-registry.d.ts +2 -1
- 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 +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/interfaces/datasource-introspection-provider.interface.d.ts +1 -0
- package/dist/interfaces/datasource-introspection-provider.interface.d.ts.map +1 -1
- package/dist/interfaces/datasource-introspection-provider.interface.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/repository/scheduled-job.repository.d.ts +5 -2
- package/dist/repository/scheduled-job.repository.d.ts.map +1 -1
- package/dist/repository/scheduled-job.repository.js +66 -3
- package/dist/repository/scheduled-job.repository.js.map +1 -1
- package/dist/repository/security-rule.repository.d.ts +2 -2
- package/dist/repository/security-rule.repository.d.ts.map +1 -1
- package/dist/repository/security-rule.repository.js +6 -3
- package/dist/repository/security-rule.repository.js.map +1 -1
- package/dist/seeders/module-metadata-seeder.service.d.ts +43 -2
- package/dist/seeders/module-metadata-seeder.service.d.ts.map +1 -1
- package/dist/seeders/module-metadata-seeder.service.js +1173 -232
- package/dist/seeders/module-metadata-seeder.service.js.map +1 -1
- package/dist/seeders/seed-data/solid-core-metadata.json +128 -34
- package/dist/services/action-metadata.service.d.ts +7 -0
- package/dist/services/action-metadata.service.d.ts.map +1 -1
- package/dist/services/action-metadata.service.js +76 -3
- package/dist/services/action-metadata.service.js.map +1 -1
- package/dist/services/api-key.service.d.ts.map +1 -1
- package/dist/services/api-key.service.js.map +1 -1
- 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 +7 -5
- package/dist/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.js.map +1 -1
- package/dist/services/computed-fields/entity/concat-entity-computed-field-provider.service.d.ts +4 -0
- package/dist/services/computed-fields/entity/concat-entity-computed-field-provider.service.d.ts.map +1 -1
- package/dist/services/computed-fields/entity/concat-entity-computed-field-provider.service.js +18 -1
- package/dist/services/computed-fields/entity/concat-entity-computed-field-provider.service.js.map +1 -1
- package/dist/services/crud-helper.service.d.ts.map +1 -1
- package/dist/services/crud-helper.service.js +25 -12
- package/dist/services/crud-helper.service.js.map +1 -1
- package/dist/services/crud.service.d.ts +1 -0
- package/dist/services/crud.service.d.ts.map +1 -1
- package/dist/services/crud.service.js +27 -0
- package/dist/services/crud.service.js.map +1 -1
- package/dist/services/datasource-introspection/mssql-datasource-introspection-provider.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection/mssql-datasource-introspection-provider.service.js +12 -0
- package/dist/services/datasource-introspection/mssql-datasource-introspection-provider.service.js.map +1 -1
- package/dist/services/datasource-introspection/mysql-datasource-introspection-provider.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection/mysql-datasource-introspection-provider.service.js +2 -0
- package/dist/services/datasource-introspection/mysql-datasource-introspection-provider.service.js.map +1 -1
- package/dist/services/datasource-introspection/postgres-datasource-introspection-provider.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection/postgres-datasource-introspection-provider.service.js +28 -15
- package/dist/services/datasource-introspection/postgres-datasource-introspection-provider.service.js.map +1 -1
- package/dist/services/datasource-introspection.service.d.ts +62 -2
- package/dist/services/datasource-introspection.service.d.ts.map +1 -1
- package/dist/services/datasource-introspection.service.js +654 -186
- package/dist/services/datasource-introspection.service.js.map +1 -1
- package/dist/services/import-transaction.service.d.ts.map +1 -1
- package/dist/services/import-transaction.service.js +3 -0
- package/dist/services/import-transaction.service.js.map +1 -1
- package/dist/services/locale.service.d.ts +14 -0
- package/dist/services/locale.service.d.ts.map +1 -1
- package/dist/services/locale.service.js +83 -0
- package/dist/services/locale.service.js.map +1 -1
- package/dist/services/mediaStorageProviders/file-s3-storage-provider.js +10 -10
- package/dist/services/mediaStorageProviders/file-s3-storage-provider.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 +3 -0
- package/dist/services/model-metadata.service.d.ts.map +1 -1
- package/dist/services/model-metadata.service.js +78 -0
- 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 +28 -0
- package/dist/services/module-metadata.service.js.map +1 -1
- package/dist/services/removed-field-migration.service.d.ts +30 -0
- package/dist/services/removed-field-migration.service.d.ts.map +1 -0
- package/dist/services/removed-field-migration.service.js +319 -0
- package/dist/services/removed-field-migration.service.js.map +1 -0
- package/dist/services/role-metadata.service.d.ts +5 -0
- package/dist/services/role-metadata.service.d.ts.map +1 -1
- package/dist/services/role-metadata.service.js +95 -33
- package/dist/services/role-metadata.service.js.map +1 -1
- package/dist/services/settings/default-settings-provider.service.d.ts +244 -0
- package/dist/services/settings/default-settings-provider.service.d.ts.map +1 -1
- package/dist/services/settings/default-settings-provider.service.js +120 -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/services/view-metadata.service.d.ts +6 -0
- package/dist/services/view-metadata.service.d.ts.map +1 -1
- package/dist/services/view-metadata.service.js +70 -8
- package/dist/services/view-metadata.service.js.map +1 -1
- package/dist/solid-core.module.d.ts.map +1 -1
- package/dist/solid-core.module.js +4 -0
- package/dist/solid-core.module.js.map +1 -1
- package/dist/subscribers/audit.subscriber.d.ts +5 -1
- package/dist/subscribers/audit.subscriber.d.ts.map +1 -1
- package/dist/subscribers/audit.subscriber.js +76 -12
- package/dist/subscribers/audit.subscriber.js.map +1 -1
- package/dist/subscribers/computed-entity-field.subscriber.d.ts +9 -1
- package/dist/subscribers/computed-entity-field.subscriber.d.ts.map +1 -1
- package/dist/subscribers/computed-entity-field.subscriber.js +45 -11
- 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.d.ts.map +1 -1
- package/dist/subscribers/scheduled-job.subscriber.js +3 -2
- package/dist/subscribers/scheduled-job.subscriber.js.map +1 -1
- package/dist/subscribers/security-rule.subscriber.d.ts.map +1 -1
- package/dist/subscribers/security-rule.subscriber.js +5 -3
- package/dist/subscribers/security-rule.subscriber.js.map +1 -1
- package/package.json +1 -1
- package/src/commands/migrate-removed-fields.command.ts +81 -0
- package/src/controllers/datasource-introspection.controller.ts +27 -1
- package/src/controllers/service.controller.ts +3 -2
- package/src/dtos/datasource-introspection-mapping.dto.ts +15 -0
- package/src/entities/{legacy-common-with-id.entity.ts → legacy-common-with-generated-id.entity.ts} +1 -1
- package/src/helpers/command.service.ts +10 -2
- package/src/helpers/environment.helper.ts +11 -0
- package/src/helpers/field-crud-managers/IntFieldCrudManager.ts +4 -1
- package/src/helpers/model-metadata-helper.service.ts +8 -3
- package/src/helpers/nodemon-heartbeat.ts +59 -0
- package/src/helpers/solid-registry.ts +7 -1
- package/src/helpers/typeorm-db-helper.ts +15 -0
- package/src/index.ts +3 -2
- package/src/interfaces/datasource-introspection-provider.interface.ts +1 -0
- package/src/interfaces.ts +1 -0
- package/src/repository/scheduled-job.repository.ts +83 -4
- package/src/repository/security-rule.repository.ts +10 -4
- package/src/seeders/module-metadata-seeder.service.ts +1415 -264
- package/src/seeders/seed-data/solid-core-metadata.json +128 -34
- package/src/services/action-metadata.service.ts +87 -2
- package/src/services/api-key.service.ts +36 -36
- package/src/services/authentication.service.ts +46 -12
- package/src/services/computed-fields/entity/alpha-num-external-id-computed-field-provider.ts +11 -5
- package/src/services/computed-fields/entity/concat-entity-computed-field-provider.service.ts +15 -1
- package/src/services/crud-helper.service.ts +25 -12
- package/src/services/crud.service.ts +36 -11
- package/src/services/datasource-introspection/mssql-datasource-introspection-provider.service.ts +12 -0
- package/src/services/datasource-introspection/mysql-datasource-introspection-provider.service.ts +2 -0
- package/src/services/datasource-introspection/postgres-datasource-introspection-provider.service.ts +28 -15
- package/src/services/datasource-introspection.service.ts +811 -161
- package/src/services/import-transaction.service.ts +5 -0
- package/src/services/locale.service.ts +111 -3
- package/src/services/mediaStorageProviders/file-s3-storage-provider.ts +2 -2
- package/src/services/menu-item-metadata.service.ts +2 -1
- package/src/services/model-metadata.service.ts +109 -1
- package/src/services/module-metadata.service.ts +36 -0
- package/src/services/removed-field-migration.service.ts +334 -0
- package/src/services/role-metadata.service.ts +112 -49
- package/src/services/settings/default-settings-provider.service.ts +120 -0
- package/src/services/solid-ts-morph.service.ts +61 -1
- package/src/services/view-metadata.service.ts +83 -9
- package/src/solid-core.module.ts +4 -0
- package/src/subscribers/audit.subscriber.ts +101 -18
- package/src/subscribers/computed-entity-field.subscriber.ts +81 -28
- package/src/subscribers/created-by-updated-by.subscriber.ts +3 -0
- package/src/subscribers/field-metadata.subscriber.ts +3 -0
- package/src/subscribers/scheduled-job.subscriber.ts +3 -2
- package/src/subscribers/security-rule.subscriber.ts +8 -3
- package/dist/entities/legacy-common-with-id.entity.d.ts.map +0 -1
- package/dist/entities/legacy-common-with-id.entity.js.map +0 -1
- package/dist/entities/legacy-common.entity.d.ts.map +0 -1
- package/dist/entities/legacy-common.entity.js.map +0 -1
- /package/src/entities/{legacy-common.entity.ts → legacy-common.entity-with-existing-id.entity.ts} +0 -0
|
@@ -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,22 @@ 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.",
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
moduleName: "solid-core",
|
|
127
|
+
key: "rowClickAction",
|
|
128
|
+
value: "edit",
|
|
129
|
+
level: interfaces_1.SettingLevel.SystemAdminEditable,
|
|
130
|
+
label: "Row Click Action",
|
|
131
|
+
group: "app-settings",
|
|
132
|
+
sortOrder: 45,
|
|
133
|
+
controlType: "selectionStatic",
|
|
134
|
+
options: [
|
|
135
|
+
{ label: "Edit", value: "edit" },
|
|
136
|
+
{ label: "View", value: "view" },
|
|
137
|
+
],
|
|
138
|
+
helpText: "Decides whether clicking a list row opens the record in edit mode or view mode.",
|
|
115
139
|
},
|
|
116
140
|
{
|
|
117
141
|
moduleName: "solid-core",
|
|
@@ -122,6 +146,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
122
146
|
group: "app-settings",
|
|
123
147
|
sortOrder: 50,
|
|
124
148
|
controlType: "boolean",
|
|
149
|
+
helpText: "Shows or hides the title, subtitle, and description block on authentication screens.",
|
|
125
150
|
},
|
|
126
151
|
{
|
|
127
152
|
moduleName: "solid-core",
|
|
@@ -132,6 +157,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
132
157
|
group: "app-settings",
|
|
133
158
|
sortOrder: 60,
|
|
134
159
|
controlType: "shortText",
|
|
160
|
+
helpText: "Main application name shown on branded authentication screens.",
|
|
135
161
|
},
|
|
136
162
|
{
|
|
137
163
|
moduleName: "solid-core",
|
|
@@ -142,6 +168,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
142
168
|
group: "app-settings",
|
|
143
169
|
sortOrder: 70,
|
|
144
170
|
controlType: "shortText",
|
|
171
|
+
helpText: "Short subtitle shown above or beside the main application title.",
|
|
145
172
|
},
|
|
146
173
|
{
|
|
147
174
|
moduleName: "solid-core",
|
|
@@ -152,6 +179,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
152
179
|
group: "app-settings",
|
|
153
180
|
sortOrder: 80,
|
|
154
181
|
controlType: "longText",
|
|
182
|
+
helpText: "Supporting copy used to explain the product or workspace on authentication screens.",
|
|
155
183
|
},
|
|
156
184
|
{
|
|
157
185
|
moduleName: "solid-core",
|
|
@@ -162,6 +190,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
162
190
|
group: "app-settings",
|
|
163
191
|
sortOrder: 90,
|
|
164
192
|
controlType: "boolean",
|
|
193
|
+
helpText: "Shows or hides the terms and privacy links on authentication screens.",
|
|
165
194
|
},
|
|
166
195
|
{
|
|
167
196
|
moduleName: "solid-core",
|
|
@@ -172,6 +201,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
172
201
|
group: "app-settings",
|
|
173
202
|
sortOrder: 100,
|
|
174
203
|
controlType: "shortText",
|
|
204
|
+
helpText: "Terms and conditions URL shown when legal links are enabled.",
|
|
175
205
|
},
|
|
176
206
|
{
|
|
177
207
|
moduleName: "solid-core",
|
|
@@ -182,6 +212,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
182
212
|
group: "app-settings",
|
|
183
213
|
sortOrder: 110,
|
|
184
214
|
controlType: "shortText",
|
|
215
|
+
helpText: "Privacy policy URL shown when legal links are enabled.",
|
|
185
216
|
},
|
|
186
217
|
{
|
|
187
218
|
moduleName: "solid-core",
|
|
@@ -192,6 +223,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
192
223
|
group: "app-settings",
|
|
193
224
|
sortOrder: 120,
|
|
194
225
|
controlType: "boolean",
|
|
226
|
+
helpText: "Enables dark theme support for frontend surfaces that honor the global appearance setting.",
|
|
195
227
|
},
|
|
196
228
|
{
|
|
197
229
|
moduleName: "solid-core",
|
|
@@ -202,6 +234,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
202
234
|
group: "app-settings",
|
|
203
235
|
sortOrder: 130,
|
|
204
236
|
controlType: "longText",
|
|
237
|
+
helpText: "Footer copyright text shown on branded authentication screens.",
|
|
205
238
|
},
|
|
206
239
|
{
|
|
207
240
|
moduleName: "solid-core",
|
|
@@ -212,6 +245,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
212
245
|
group: "misc-settings",
|
|
213
246
|
sortOrder: 10,
|
|
214
247
|
controlType: "boolean",
|
|
248
|
+
helpText: "Allows username-based identity flows where the frontend supports them.",
|
|
215
249
|
},
|
|
216
250
|
{
|
|
217
251
|
moduleName: "solid-core",
|
|
@@ -222,6 +256,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
222
256
|
group: "misc-settings",
|
|
223
257
|
sortOrder: 20,
|
|
224
258
|
controlType: "boolean",
|
|
259
|
+
helpText: "Default notification toggle used by user-facing notification settings.",
|
|
225
260
|
},
|
|
226
261
|
{
|
|
227
262
|
moduleName: "solid-core",
|
|
@@ -232,6 +267,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
232
267
|
group: "misc-settings",
|
|
233
268
|
sortOrder: 30,
|
|
234
269
|
controlType: "shortText",
|
|
270
|
+
helpText: "Email address used by the support shortcut in the user menu and related help surfaces.",
|
|
235
271
|
},
|
|
236
272
|
{
|
|
237
273
|
moduleName: "solid-core",
|
|
@@ -242,6 +278,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
242
278
|
group: "misc-settings",
|
|
243
279
|
sortOrder: 40,
|
|
244
280
|
controlType: "shortText",
|
|
281
|
+
helpText: "Friendly label shown for the support shortcut, such as Support or Help Desk.",
|
|
245
282
|
},
|
|
246
283
|
{
|
|
247
284
|
moduleName: "solid-core",
|
|
@@ -252,6 +289,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
252
289
|
group: "misc-settings",
|
|
253
290
|
sortOrder: 50,
|
|
254
291
|
controlType: "shortText",
|
|
292
|
+
helpText: "Icon identifier used for the support shortcut so users can recognize it quickly.",
|
|
255
293
|
},
|
|
256
294
|
{
|
|
257
295
|
moduleName: "solid-core",
|
|
@@ -262,6 +300,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
262
300
|
group: "authentication-settings",
|
|
263
301
|
sortOrder: 90,
|
|
264
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.",
|
|
265
304
|
},
|
|
266
305
|
{
|
|
267
306
|
moduleName: "solid-core",
|
|
@@ -272,6 +311,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
272
311
|
group: "authentication-settings",
|
|
273
312
|
sortOrder: 100,
|
|
274
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.",
|
|
275
315
|
},
|
|
276
316
|
{
|
|
277
317
|
moduleName: "solid-core",
|
|
@@ -282,6 +322,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
282
322
|
group: "authentication-settings",
|
|
283
323
|
sortOrder: 110,
|
|
284
324
|
controlType: "mediaSingle",
|
|
325
|
+
helpText: "Background image used for the centered authentication layout.",
|
|
285
326
|
},
|
|
286
327
|
{
|
|
287
328
|
moduleName: "solid-core",
|
|
@@ -309,6 +350,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
309
350
|
sortOrder: 10,
|
|
310
351
|
controlType: "custom",
|
|
311
352
|
settingsWidget: "solidXGenAiCodeBuilderConfigWidget",
|
|
353
|
+
helpText: "Structured AI builder configuration that stores providers, credentials, and model assignments for SolidX code generation features.",
|
|
312
354
|
},
|
|
313
355
|
{
|
|
314
356
|
moduleName: "solid-core",
|
|
@@ -325,6 +367,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
325
367
|
group: "ai-settings",
|
|
326
368
|
sortOrder: 20,
|
|
327
369
|
controlType: "boolean",
|
|
370
|
+
helpText: "Read-only flag indicating whether MCP integration is enabled for this deployment.",
|
|
328
371
|
},
|
|
329
372
|
{
|
|
330
373
|
moduleName: "solid-core",
|
|
@@ -335,6 +378,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
335
378
|
group: "ai-settings",
|
|
336
379
|
sortOrder: 30,
|
|
337
380
|
controlType: "shortText",
|
|
381
|
+
helpText: "Base MCP server URL used when MCP integration is enabled.",
|
|
338
382
|
},
|
|
339
383
|
{
|
|
340
384
|
moduleName: "solid-core",
|
|
@@ -351,6 +395,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
351
395
|
group: "system-settings",
|
|
352
396
|
sortOrder: 10,
|
|
353
397
|
controlType: "shortText",
|
|
398
|
+
helpText: "Default date-time format used by Solid core features that need a shared server-side format.",
|
|
354
399
|
},
|
|
355
400
|
{
|
|
356
401
|
moduleName: "solid-core",
|
|
@@ -361,6 +406,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
361
406
|
group: "system-settings",
|
|
362
407
|
sortOrder: 20,
|
|
363
408
|
controlType: "shortText",
|
|
409
|
+
helpText: "Default date format used by Solid core features that need a shared server-side format.",
|
|
364
410
|
},
|
|
365
411
|
{
|
|
366
412
|
moduleName: "solid-core",
|
|
@@ -371,6 +417,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
371
417
|
group: "system-settings",
|
|
372
418
|
sortOrder: 30,
|
|
373
419
|
controlType: "shortText",
|
|
420
|
+
helpText: "Backend base URL used to generate absolute links and media URLs.",
|
|
374
421
|
},
|
|
375
422
|
{
|
|
376
423
|
moduleName: "solid-core",
|
|
@@ -381,6 +428,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
381
428
|
group: "system-settings",
|
|
382
429
|
sortOrder: 35,
|
|
383
430
|
controlType: "shortText",
|
|
431
|
+
helpText: "Frontend admin application base URL used when the backend needs to point users back to the admin UI.",
|
|
384
432
|
},
|
|
385
433
|
{
|
|
386
434
|
moduleName: "solid-core",
|
|
@@ -391,6 +439,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
391
439
|
group: "system-settings",
|
|
392
440
|
sortOrder: 40,
|
|
393
441
|
controlType: "shortText",
|
|
442
|
+
helpText: "Public website URL for the product or marketing site.",
|
|
394
443
|
},
|
|
395
444
|
{
|
|
396
445
|
moduleName: "solid-core",
|
|
@@ -401,6 +450,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
401
450
|
group: "storage-settings",
|
|
402
451
|
sortOrder: 10,
|
|
403
452
|
controlType: "longText",
|
|
453
|
+
helpText: "Comma-separated list of module metadata seed files that are loaded by the platform.",
|
|
404
454
|
},
|
|
405
455
|
{
|
|
406
456
|
moduleName: "solid-core",
|
|
@@ -411,6 +461,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
411
461
|
group: "storage-settings",
|
|
412
462
|
sortOrder: 20,
|
|
413
463
|
controlType: "shortText",
|
|
464
|
+
helpText: "Directory where uploaded media is staged before downstream processing or persistence.",
|
|
414
465
|
},
|
|
415
466
|
{
|
|
416
467
|
moduleName: "solid-core",
|
|
@@ -421,6 +472,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
421
472
|
group: "storage-settings",
|
|
422
473
|
sortOrder: 30,
|
|
423
474
|
controlType: "shortText",
|
|
475
|
+
helpText: "Directory used by the default disk-based file storage provider for persisted files.",
|
|
424
476
|
},
|
|
425
477
|
{
|
|
426
478
|
moduleName: "solid-core",
|
|
@@ -435,6 +487,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
435
487
|
{ label: "Disk", value: "disk" },
|
|
436
488
|
{ label: "S3", value: "s3" },
|
|
437
489
|
],
|
|
490
|
+
helpText: "Default storage implementation used for file handling, such as local disk or S3.",
|
|
438
491
|
},
|
|
439
492
|
{
|
|
440
493
|
moduleName: "solid-core",
|
|
@@ -457,6 +510,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
457
510
|
group: "storage-settings",
|
|
458
511
|
sortOrder: 50,
|
|
459
512
|
controlType: "shortText",
|
|
513
|
+
helpText: "AWS region used by the default S3 storage integration.",
|
|
460
514
|
},
|
|
461
515
|
{
|
|
462
516
|
moduleName: "solid-core",
|
|
@@ -467,6 +521,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
467
521
|
group: "storage-settings",
|
|
468
522
|
sortOrder: 60,
|
|
469
523
|
controlType: "shortText",
|
|
524
|
+
helpText: "Default S3 bucket used when the S3 storage provider is active.",
|
|
470
525
|
},
|
|
471
526
|
{
|
|
472
527
|
moduleName: "solid-core",
|
|
@@ -481,6 +536,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
481
536
|
{ label: "SMTP Email Service", value: "SMTPEMailService" },
|
|
482
537
|
{ label: "Elastic Email Service", value: "ElasticEmailService" },
|
|
483
538
|
],
|
|
539
|
+
helpText: "Email delivery provider currently configured for outbound mail.",
|
|
484
540
|
},
|
|
485
541
|
{
|
|
486
542
|
moduleName: "solid-core",
|
|
@@ -491,6 +547,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
491
547
|
group: "email-settings",
|
|
492
548
|
sortOrder: 20,
|
|
493
549
|
controlType: "longText",
|
|
550
|
+
helpText: "Comma-separated list of email template seed files loaded by the platform.",
|
|
494
551
|
},
|
|
495
552
|
{
|
|
496
553
|
moduleName: "solid-core",
|
|
@@ -501,6 +558,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
501
558
|
group: "email-settings",
|
|
502
559
|
sortOrder: 30,
|
|
503
560
|
controlType: "boolean",
|
|
561
|
+
helpText: "Whether outbound emails are queued for asynchronous delivery instead of being sent inline.",
|
|
504
562
|
},
|
|
505
563
|
{
|
|
506
564
|
moduleName: "solid-core",
|
|
@@ -511,6 +569,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
511
569
|
group: "email-settings",
|
|
512
570
|
sortOrder: 40,
|
|
513
571
|
controlType: "shortText",
|
|
572
|
+
helpText: "SMTP host name used when the SMTP email provider is active.",
|
|
514
573
|
},
|
|
515
574
|
{
|
|
516
575
|
moduleName: "solid-core",
|
|
@@ -521,6 +580,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
521
580
|
group: "email-settings",
|
|
522
581
|
sortOrder: 50,
|
|
523
582
|
controlType: "numeric",
|
|
583
|
+
helpText: "SMTP port used when the SMTP email provider is active.",
|
|
524
584
|
},
|
|
525
585
|
{
|
|
526
586
|
moduleName: "solid-core",
|
|
@@ -531,6 +591,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
531
591
|
group: "email-settings",
|
|
532
592
|
sortOrder: 60,
|
|
533
593
|
controlType: "shortText",
|
|
594
|
+
helpText: "SMTP username used when the SMTP email provider is active.",
|
|
534
595
|
},
|
|
535
596
|
{
|
|
536
597
|
moduleName: "solid-core",
|
|
@@ -547,6 +608,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
547
608
|
group: "email-settings",
|
|
548
609
|
sortOrder: 70,
|
|
549
610
|
controlType: "shortText",
|
|
611
|
+
helpText: "Default From address for outbound mail sent through the SMTP provider.",
|
|
550
612
|
},
|
|
551
613
|
{
|
|
552
614
|
moduleName: "solid-core",
|
|
@@ -563,6 +625,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
563
625
|
group: "email-settings",
|
|
564
626
|
sortOrder: 80,
|
|
565
627
|
controlType: "shortText",
|
|
628
|
+
helpText: "Default From address for outbound mail sent through API-based email providers.",
|
|
566
629
|
},
|
|
567
630
|
{
|
|
568
631
|
moduleName: "solid-core",
|
|
@@ -573,6 +636,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
573
636
|
group: "ai-settings",
|
|
574
637
|
sortOrder: 40,
|
|
575
638
|
controlType: "shortText",
|
|
639
|
+
helpText: "Base URL of the RAG service used by AI-assisted features that need retrieval support.",
|
|
576
640
|
},
|
|
577
641
|
{
|
|
578
642
|
moduleName: "solid-core",
|
|
@@ -613,6 +677,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
613
677
|
group: "oauth-settings",
|
|
614
678
|
sortOrder: 10,
|
|
615
679
|
controlType: "shortText",
|
|
680
|
+
helpText: "Google OAuth client ID registered for this application.",
|
|
616
681
|
},
|
|
617
682
|
{
|
|
618
683
|
moduleName: "solid-core",
|
|
@@ -629,6 +694,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
629
694
|
group: "oauth-settings",
|
|
630
695
|
sortOrder: 20,
|
|
631
696
|
controlType: "shortText",
|
|
697
|
+
helpText: "Backend callback URL that Google redirects to after authentication.",
|
|
632
698
|
},
|
|
633
699
|
{
|
|
634
700
|
moduleName: "solid-core",
|
|
@@ -639,12 +705,14 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
639
705
|
group: "oauth-settings",
|
|
640
706
|
sortOrder: 30,
|
|
641
707
|
controlType: "shortText",
|
|
708
|
+
helpText: "Post-authentication Google redirect URL used by the application flow.",
|
|
642
709
|
},
|
|
643
710
|
{
|
|
644
711
|
moduleName: "solid-core",
|
|
645
712
|
key: "FACEBOOK_CLIENT_ID",
|
|
646
713
|
value: process.env.IAM_FACEBOOK_OAUTH_CLIENT_ID,
|
|
647
714
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
715
|
+
helpText: "Facebook OAuth client ID registered for this application.",
|
|
648
716
|
},
|
|
649
717
|
{
|
|
650
718
|
moduleName: "solid-core",
|
|
@@ -657,18 +725,21 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
657
725
|
key: "FACEBOOK_CALLBACK_URL",
|
|
658
726
|
value: process.env.IAM_FACEBOOK_OAUTH_CALLBACK_URL,
|
|
659
727
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
728
|
+
helpText: "Backend callback URL that Facebook redirects to after authentication.",
|
|
660
729
|
},
|
|
661
730
|
{
|
|
662
731
|
moduleName: "solid-core",
|
|
663
732
|
key: "FACEBOOK_REDIRECT_URL",
|
|
664
733
|
value: process.env.IAM_FACEBOOK_OAUTH_REDIRECT_URL,
|
|
665
734
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
735
|
+
helpText: "Post-authentication Facebook redirect URL used by the application flow.",
|
|
666
736
|
},
|
|
667
737
|
{
|
|
668
738
|
moduleName: "solid-core",
|
|
669
739
|
key: "MICROSOFT_CLIENT_ID",
|
|
670
740
|
value: process.env.IAM_MICROSOFT_OAUTH_CLIENT_ID,
|
|
671
741
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
742
|
+
helpText: "Microsoft OAuth client ID registered for this application.",
|
|
672
743
|
},
|
|
673
744
|
{
|
|
674
745
|
moduleName: "solid-core",
|
|
@@ -681,18 +752,21 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
681
752
|
key: "MICROSOFT_TENANT_ID",
|
|
682
753
|
value: process.env.IAM_MICROSOFT_OAUTH_TENANT_ID || "common",
|
|
683
754
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
755
|
+
helpText: "Microsoft OAuth tenant identifier used to scope sign-in requests.",
|
|
684
756
|
},
|
|
685
757
|
{
|
|
686
758
|
moduleName: "solid-core",
|
|
687
759
|
key: "MICROSOFT_CALLBACK_URL",
|
|
688
760
|
value: process.env.IAM_MICROSOFT_OAUTH_CALLBACK_URL,
|
|
689
761
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
762
|
+
helpText: "Backend callback URL that Microsoft redirects to after authentication.",
|
|
690
763
|
},
|
|
691
764
|
{
|
|
692
765
|
moduleName: "solid-core",
|
|
693
766
|
key: "MICROSOFT_REDIRECT_URL",
|
|
694
767
|
value: process.env.IAM_MICROSOFT_OAUTH_REDIRECT_URL,
|
|
695
768
|
level: interfaces_1.SettingLevel.SystemAdminReadonly,
|
|
769
|
+
helpText: "Post-authentication Microsoft redirect URL used by the application flow.",
|
|
696
770
|
},
|
|
697
771
|
{
|
|
698
772
|
moduleName: "solid-core",
|
|
@@ -703,6 +777,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
703
777
|
group: "oauth-settings",
|
|
704
778
|
sortOrder: 70,
|
|
705
779
|
controlType: "shortText",
|
|
780
|
+
helpText: "Microsoft Active Directory client ID registered for this application.",
|
|
706
781
|
},
|
|
707
782
|
{
|
|
708
783
|
moduleName: "solid-core",
|
|
@@ -719,6 +794,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
719
794
|
group: "oauth-settings",
|
|
720
795
|
sortOrder: 80,
|
|
721
796
|
controlType: "shortText",
|
|
797
|
+
helpText: "Microsoft Active Directory tenant identifier used to scope sign-in requests.",
|
|
722
798
|
},
|
|
723
799
|
{
|
|
724
800
|
moduleName: "solid-core",
|
|
@@ -729,6 +805,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
729
805
|
group: "oauth-settings",
|
|
730
806
|
sortOrder: 90,
|
|
731
807
|
controlType: "shortText",
|
|
808
|
+
helpText: "Backend callback URL that Microsoft Active Directory redirects to after authentication.",
|
|
732
809
|
},
|
|
733
810
|
{
|
|
734
811
|
moduleName: "solid-core",
|
|
@@ -739,6 +816,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
739
816
|
group: "oauth-settings",
|
|
740
817
|
sortOrder: 100,
|
|
741
818
|
controlType: "shortText",
|
|
819
|
+
helpText: "Post-authentication Microsoft Active Directory redirect URL used by the application flow.",
|
|
742
820
|
},
|
|
743
821
|
{
|
|
744
822
|
moduleName: "solid-core",
|
|
@@ -749,6 +827,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
749
827
|
group: "authentication-settings",
|
|
750
828
|
sortOrder: 20,
|
|
751
829
|
controlType: "boolean",
|
|
830
|
+
helpText: "Enables passwordless sign-in flows such as OTP-based authentication.",
|
|
752
831
|
},
|
|
753
832
|
{
|
|
754
833
|
moduleName: "solid-core",
|
|
@@ -759,6 +838,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
759
838
|
group: "authentication-settings",
|
|
760
839
|
sortOrder: 10,
|
|
761
840
|
controlType: "boolean",
|
|
841
|
+
helpText: "Enables traditional password-based sign-in.",
|
|
762
842
|
},
|
|
763
843
|
{
|
|
764
844
|
moduleName: "solid-core",
|
|
@@ -773,6 +853,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
773
853
|
{ label: "Email", value: "email" },
|
|
774
854
|
{ label: "Mobile", value: "mobile" },
|
|
775
855
|
],
|
|
856
|
+
helpText: "Chooses whether passwordless registration validates new users by email or mobile number.",
|
|
776
857
|
},
|
|
777
858
|
{
|
|
778
859
|
moduleName: "solid-core",
|
|
@@ -788,6 +869,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
788
869
|
{ label: "Mobile", value: "mobile" },
|
|
789
870
|
{ label: "Selectable", value: "selectable" },
|
|
790
871
|
],
|
|
872
|
+
helpText: "Chooses whether passwordless login validates users by email, mobile number, or a selectable option.",
|
|
791
873
|
},
|
|
792
874
|
{
|
|
793
875
|
moduleName: "solid-core",
|
|
@@ -798,6 +880,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
798
880
|
group: "authentication-settings",
|
|
799
881
|
sortOrder: 60,
|
|
800
882
|
controlType: "boolean",
|
|
883
|
+
helpText: "Lets unauthenticated visitors create their own account from public registration screens.",
|
|
801
884
|
},
|
|
802
885
|
{
|
|
803
886
|
moduleName: "solid-core",
|
|
@@ -808,6 +891,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
808
891
|
group: "authentication-settings",
|
|
809
892
|
sortOrder: 70,
|
|
810
893
|
controlType: "boolean",
|
|
894
|
+
helpText: "Automatically activates newly registered users instead of requiring a separate activation step.",
|
|
811
895
|
},
|
|
812
896
|
{
|
|
813
897
|
moduleName: "solid-core",
|
|
@@ -830,6 +914,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
830
914
|
group: "authentication-settings",
|
|
831
915
|
sortOrder: 85,
|
|
832
916
|
controlType: "boolean",
|
|
917
|
+
helpText: "Allows OTP delivery to fall back to WhatsApp when the primary OTP path cannot be used.",
|
|
833
918
|
},
|
|
834
919
|
{
|
|
835
920
|
moduleName: "solid-core",
|
|
@@ -840,6 +925,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
840
925
|
group: "authentication-settings",
|
|
841
926
|
sortOrder: 86,
|
|
842
927
|
controlType: "shortText",
|
|
928
|
+
helpText: "Template identifier used when OTP messages are sent through WhatsApp.",
|
|
843
929
|
},
|
|
844
930
|
{
|
|
845
931
|
moduleName: "solid-core",
|
|
@@ -850,6 +936,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
850
936
|
group: "authentication-settings",
|
|
851
937
|
sortOrder: 87,
|
|
852
938
|
controlType: "boolean",
|
|
939
|
+
helpText: "Allows WhatsApp OTP delivery to run as an independent channel where supported.",
|
|
853
940
|
},
|
|
854
941
|
{
|
|
855
942
|
moduleName: "solid-core",
|
|
@@ -860,6 +947,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
860
947
|
group: "authentication-settings",
|
|
861
948
|
sortOrder: 88,
|
|
862
949
|
controlType: "shortText",
|
|
950
|
+
helpText: "Default dialing code applied when OTP phone numbers are entered without a country prefix.",
|
|
863
951
|
},
|
|
864
952
|
{
|
|
865
953
|
moduleName: "solid-core",
|
|
@@ -876,6 +964,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
876
964
|
group: "authentication-settings",
|
|
877
965
|
sortOrder: 75,
|
|
878
966
|
controlType: "shortText",
|
|
967
|
+
helpText: "Role assigned by default to newly created users in flows that rely on automatic role assignment.",
|
|
879
968
|
},
|
|
880
969
|
{
|
|
881
970
|
moduleName: "solid-core",
|
|
@@ -904,6 +993,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
904
993
|
group: "authentication-settings",
|
|
905
994
|
sortOrder: 110,
|
|
906
995
|
controlType: "numeric",
|
|
996
|
+
helpText: "Maximum failed login attempts allowed before a user is considered blocked.",
|
|
907
997
|
},
|
|
908
998
|
{
|
|
909
999
|
moduleName: "solid-core",
|
|
@@ -914,6 +1004,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
914
1004
|
group: "authentication-settings",
|
|
915
1005
|
sortOrder: 120,
|
|
916
1006
|
controlType: "boolean",
|
|
1007
|
+
helpText: "Requires users to choose a new password the first time they sign in.",
|
|
917
1008
|
},
|
|
918
1009
|
{
|
|
919
1010
|
moduleName: "solid-core",
|
|
@@ -925,6 +1016,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
925
1016
|
group: "authentication-settings",
|
|
926
1017
|
sortOrder: 130,
|
|
927
1018
|
controlType: "shortText",
|
|
1019
|
+
helpText: "Validation pattern applied to new passwords in registration and password-change flows.",
|
|
928
1020
|
},
|
|
929
1021
|
{
|
|
930
1022
|
moduleName: "solid-core",
|
|
@@ -936,6 +1028,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
936
1028
|
group: "authentication-settings",
|
|
937
1029
|
sortOrder: 140,
|
|
938
1030
|
controlType: "longText",
|
|
1031
|
+
helpText: "Custom error message shown when a password does not satisfy the configured regex.",
|
|
939
1032
|
},
|
|
940
1033
|
{
|
|
941
1034
|
moduleName: "solid-core",
|
|
@@ -947,6 +1040,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
947
1040
|
group: "authentication-settings",
|
|
948
1041
|
sortOrder: 150,
|
|
949
1042
|
controlType: "longText",
|
|
1043
|
+
helpText: "Human-friendly guidance shown to users so they understand the password policy before submission.",
|
|
950
1044
|
},
|
|
951
1045
|
{
|
|
952
1046
|
moduleName: "solid-core",
|
|
@@ -957,6 +1051,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
957
1051
|
group: "authentication-settings",
|
|
958
1052
|
sortOrder: 160,
|
|
959
1053
|
controlType: "boolean",
|
|
1054
|
+
helpText: "Enables automatic password generation in flows that create user credentials on the user's behalf.",
|
|
960
1055
|
},
|
|
961
1056
|
{
|
|
962
1057
|
moduleName: "solid-core",
|
|
@@ -975,6 +1070,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
975
1070
|
group: "authentication-settings",
|
|
976
1071
|
sortOrder: 170,
|
|
977
1072
|
controlType: "boolean",
|
|
1073
|
+
helpText: "Adds name fields to the public registration form so users can provide profile details up front.",
|
|
978
1074
|
},
|
|
979
1075
|
{
|
|
980
1076
|
moduleName: "solid-core",
|
|
@@ -985,6 +1081,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
985
1081
|
group: "authentication-settings",
|
|
986
1082
|
sortOrder: 180,
|
|
987
1083
|
controlType: "boolean",
|
|
1084
|
+
helpText: "Sends a welcome email after a successful signup when email delivery is configured.",
|
|
988
1085
|
},
|
|
989
1086
|
{
|
|
990
1087
|
moduleName: "solid-core",
|
|
@@ -995,6 +1092,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
995
1092
|
group: "authentication-settings",
|
|
996
1093
|
sortOrder: 190,
|
|
997
1094
|
controlType: "boolean",
|
|
1095
|
+
helpText: "Sends a welcome SMS after a successful signup when SMS delivery is configured.",
|
|
998
1096
|
},
|
|
999
1097
|
{
|
|
1000
1098
|
moduleName: "solid-core",
|
|
@@ -1005,6 +1103,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1005
1103
|
group: "authentication-settings",
|
|
1006
1104
|
sortOrder: 180,
|
|
1007
1105
|
controlType: "shortText",
|
|
1106
|
+
helpText: "Frontend login page URL used in backend-generated links and redirects.",
|
|
1008
1107
|
},
|
|
1009
1108
|
{
|
|
1010
1109
|
moduleName: "solid-core",
|
|
@@ -1015,6 +1114,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1015
1114
|
group: "authentication-settings",
|
|
1016
1115
|
sortOrder: 190,
|
|
1017
1116
|
controlType: "shortText",
|
|
1117
|
+
helpText: "Frontend forgot-password page URL used in backend-generated links and redirects.",
|
|
1018
1118
|
},
|
|
1019
1119
|
{
|
|
1020
1120
|
moduleName: "solid-core",
|
|
@@ -1031,6 +1131,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1031
1131
|
group: "jwt-settings",
|
|
1032
1132
|
sortOrder: 10,
|
|
1033
1133
|
controlType: "shortText",
|
|
1134
|
+
helpText: "JWT audience claim expected by tokens issued by this deployment.",
|
|
1034
1135
|
},
|
|
1035
1136
|
{
|
|
1036
1137
|
moduleName: "solid-core",
|
|
@@ -1041,6 +1142,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1041
1142
|
group: "jwt-settings",
|
|
1042
1143
|
sortOrder: 20,
|
|
1043
1144
|
controlType: "shortText",
|
|
1145
|
+
helpText: "JWT issuer claim attached to tokens issued by this deployment.",
|
|
1044
1146
|
},
|
|
1045
1147
|
{
|
|
1046
1148
|
moduleName: "solid-core",
|
|
@@ -1067,6 +1169,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1067
1169
|
{ label: "Database", value: "database" },
|
|
1068
1170
|
{ label: "RabbitMQ", value: "rabbitmq" },
|
|
1069
1171
|
],
|
|
1172
|
+
helpText: "Default queue broker used for background job processing.",
|
|
1070
1173
|
},
|
|
1071
1174
|
{
|
|
1072
1175
|
moduleName: "solid-core",
|
|
@@ -1077,6 +1180,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1077
1180
|
group: "queue-settings",
|
|
1078
1181
|
sortOrder: 20,
|
|
1079
1182
|
controlType: "shortText",
|
|
1183
|
+
helpText: "Service role or worker identity expected by the queue subsystem.",
|
|
1080
1184
|
},
|
|
1081
1185
|
{
|
|
1082
1186
|
moduleName: "solid-core",
|
|
@@ -1099,6 +1203,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1099
1203
|
group: "sms-settings",
|
|
1100
1204
|
sortOrder: 10,
|
|
1101
1205
|
controlType: "shortText",
|
|
1206
|
+
helpText: "SMS delivery provider currently configured for outbound messages.",
|
|
1102
1207
|
},
|
|
1103
1208
|
{
|
|
1104
1209
|
moduleName: "solid-core",
|
|
@@ -1109,6 +1214,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1109
1214
|
group: "sms-settings",
|
|
1110
1215
|
sortOrder: 20,
|
|
1111
1216
|
controlType: "longText",
|
|
1217
|
+
helpText: "Comma-separated list of SMS template seed files loaded by the platform.",
|
|
1112
1218
|
},
|
|
1113
1219
|
{
|
|
1114
1220
|
moduleName: "solid-core",
|
|
@@ -1119,6 +1225,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1119
1225
|
group: "sms-settings",
|
|
1120
1226
|
sortOrder: 30,
|
|
1121
1227
|
controlType: "boolean",
|
|
1228
|
+
helpText: "Whether outbound SMS messages are queued for asynchronous delivery instead of being sent inline.",
|
|
1122
1229
|
},
|
|
1123
1230
|
{
|
|
1124
1231
|
moduleName: "solid-core",
|
|
@@ -1129,6 +1236,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1129
1236
|
group: "sms-settings",
|
|
1130
1237
|
sortOrder: 40,
|
|
1131
1238
|
controlType: "shortText",
|
|
1239
|
+
helpText: "MSG91 endpoint URL used when the MSG91 SMS provider is active.",
|
|
1132
1240
|
},
|
|
1133
1241
|
{
|
|
1134
1242
|
moduleName: "solid-core",
|
|
@@ -1145,6 +1253,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1145
1253
|
group: "sms-settings",
|
|
1146
1254
|
sortOrder: 50,
|
|
1147
1255
|
controlType: "shortText",
|
|
1256
|
+
helpText: "Twilio account SID used when the Twilio SMS provider is active.",
|
|
1148
1257
|
},
|
|
1149
1258
|
{
|
|
1150
1259
|
moduleName: "solid-core",
|
|
@@ -1161,6 +1270,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1161
1270
|
group: "sms-settings",
|
|
1162
1271
|
sortOrder: 60,
|
|
1163
1272
|
controlType: "shortText",
|
|
1273
|
+
helpText: "Twilio phone number used as the sender for outbound SMS.",
|
|
1164
1274
|
},
|
|
1165
1275
|
{
|
|
1166
1276
|
moduleName: "solid-core",
|
|
@@ -1171,6 +1281,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1171
1281
|
group: "short-url-settings",
|
|
1172
1282
|
sortOrder: 10,
|
|
1173
1283
|
controlType: "shortText",
|
|
1284
|
+
helpText: "API endpoint used to create shortened URLs.",
|
|
1174
1285
|
},
|
|
1175
1286
|
{
|
|
1176
1287
|
moduleName: "solid-core",
|
|
@@ -1187,6 +1298,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1187
1298
|
group: "short-url-settings",
|
|
1188
1299
|
sortOrder: 20,
|
|
1189
1300
|
controlType: "shortText",
|
|
1301
|
+
helpText: "Short URL domain used when generating branded or provider-backed tiny URLs.",
|
|
1190
1302
|
},
|
|
1191
1303
|
{
|
|
1192
1304
|
moduleName: "solid-core",
|
|
@@ -1197,6 +1309,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1197
1309
|
group: "short-url-settings",
|
|
1198
1310
|
sortOrder: 30,
|
|
1199
1311
|
controlType: "boolean",
|
|
1312
|
+
helpText: "Indicates whether short URL generation is enabled for this deployment.",
|
|
1200
1313
|
},
|
|
1201
1314
|
{
|
|
1202
1315
|
moduleName: "solid-core",
|
|
@@ -1207,6 +1320,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1207
1320
|
group: "whatsapp-settings",
|
|
1208
1321
|
sortOrder: 10,
|
|
1209
1322
|
controlType: "shortText",
|
|
1323
|
+
helpText: "WhatsApp delivery provider currently configured for outbound messages.",
|
|
1210
1324
|
},
|
|
1211
1325
|
{
|
|
1212
1326
|
moduleName: "solid-core",
|
|
@@ -1217,6 +1331,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1217
1331
|
group: "whatsapp-settings",
|
|
1218
1332
|
sortOrder: 20,
|
|
1219
1333
|
controlType: "shortText",
|
|
1334
|
+
helpText: "MSG91 endpoint URL used when the MSG91 WhatsApp provider is active.",
|
|
1220
1335
|
},
|
|
1221
1336
|
{
|
|
1222
1337
|
moduleName: "solid-core",
|
|
@@ -1233,6 +1348,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1233
1348
|
group: "whatsapp-settings",
|
|
1234
1349
|
sortOrder: 30,
|
|
1235
1350
|
controlType: "shortText",
|
|
1351
|
+
helpText: "Integrated WhatsApp number used by the MSG91 WhatsApp provider.",
|
|
1236
1352
|
},
|
|
1237
1353
|
{
|
|
1238
1354
|
moduleName: "solid-core",
|
|
@@ -1243,6 +1359,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1243
1359
|
group: "whatsapp-settings",
|
|
1244
1360
|
sortOrder: 40,
|
|
1245
1361
|
controlType: "shortText",
|
|
1362
|
+
helpText: "Base Meta WhatsApp API URL used by the Meta WhatsApp integration.",
|
|
1246
1363
|
},
|
|
1247
1364
|
{
|
|
1248
1365
|
moduleName: "solid-core",
|
|
@@ -1253,6 +1370,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1253
1370
|
group: "whatsapp-settings",
|
|
1254
1371
|
sortOrder: 50,
|
|
1255
1372
|
controlType: "shortText",
|
|
1373
|
+
helpText: "Meta WhatsApp API version used when building outbound requests.",
|
|
1256
1374
|
},
|
|
1257
1375
|
{
|
|
1258
1376
|
moduleName: "solid-core",
|
|
@@ -1263,6 +1381,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1263
1381
|
group: "whatsapp-settings",
|
|
1264
1382
|
sortOrder: 60,
|
|
1265
1383
|
controlType: "shortText",
|
|
1384
|
+
helpText: "Meta WhatsApp phone number ID used to send messages from the connected business account.",
|
|
1266
1385
|
},
|
|
1267
1386
|
{
|
|
1268
1387
|
moduleName: "solid-core",
|
|
@@ -1273,6 +1392,7 @@ const getSolidCoreSettings = (isProd) => [
|
|
|
1273
1392
|
group: "whatsapp-settings",
|
|
1274
1393
|
sortOrder: 70,
|
|
1275
1394
|
controlType: "shortText",
|
|
1395
|
+
helpText: "Meta WhatsApp business account ID associated with the connected sender.",
|
|
1276
1396
|
},
|
|
1277
1397
|
{
|
|
1278
1398
|
moduleName: "solid-core",
|