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