@solidxai/core 0.1.15 → 0.1.16-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (171) hide show
  1. package/CHANGELOG.md +642 -0
  2. package/dist/commands/run-tests.command.d.ts +3 -1
  3. package/dist/commands/run-tests.command.d.ts.map +1 -1
  4. package/dist/commands/run-tests.command.js +6 -2
  5. package/dist/commands/run-tests.command.js.map +1 -1
  6. package/dist/controllers/test-run.controller.d.ts +12 -0
  7. package/dist/controllers/test-run.controller.d.ts.map +1 -0
  8. package/dist/controllers/test-run.controller.js +54 -0
  9. package/dist/controllers/test-run.controller.js.map +1 -0
  10. package/dist/dtos/test-run-request.dto.d.ts +35 -0
  11. package/dist/dtos/test-run-request.dto.d.ts.map +1 -0
  12. package/dist/dtos/test-run-request.dto.js +120 -0
  13. package/dist/dtos/test-run-request.dto.js.map +1 -0
  14. package/dist/guards/access-token.guard.d.ts +5 -1
  15. package/dist/guards/access-token.guard.d.ts.map +1 -1
  16. package/dist/guards/access-token.guard.js +20 -1
  17. package/dist/guards/access-token.guard.js.map +1 -1
  18. package/dist/index.d.ts +12 -0
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.js +17 -1
  21. package/dist/index.js.map +1 -1
  22. package/dist/interfaces/active-user-data.interface.d.ts +1 -0
  23. package/dist/interfaces/active-user-data.interface.d.ts.map +1 -1
  24. package/dist/interfaces/active-user-data.interface.js.map +1 -1
  25. package/dist/jobs/database/test-run-queue-options-database.d.ts +8 -0
  26. package/dist/jobs/database/test-run-queue-options-database.d.ts.map +1 -0
  27. package/dist/jobs/database/test-run-queue-options-database.js +10 -0
  28. package/dist/jobs/database/test-run-queue-options-database.js.map +1 -0
  29. package/dist/jobs/database/test-run-queue-publisher-database.service.d.ts +12 -0
  30. package/dist/jobs/database/test-run-queue-publisher-database.service.d.ts.map +1 -0
  31. package/dist/jobs/database/test-run-queue-publisher-database.service.js +39 -0
  32. package/dist/jobs/database/test-run-queue-publisher-database.service.js.map +1 -0
  33. package/dist/jobs/database/test-run-queue-subscriber-database.service.d.ts +26 -0
  34. package/dist/jobs/database/test-run-queue-subscriber-database.service.d.ts.map +1 -0
  35. package/dist/jobs/database/test-run-queue-subscriber-database.service.js +120 -0
  36. package/dist/jobs/database/test-run-queue-subscriber-database.service.js.map +1 -0
  37. package/dist/seeders/seed-data/solid-core-metadata.json +3 -1
  38. package/dist/services/access-token-denylist.service.d.ts +16 -0
  39. package/dist/services/access-token-denylist.service.d.ts.map +1 -0
  40. package/dist/services/access-token-denylist.service.js +74 -0
  41. package/dist/services/access-token-denylist.service.js.map +1 -0
  42. package/dist/services/authentication.service.d.ts +9 -1
  43. package/dist/services/authentication.service.d.ts.map +1 -1
  44. package/dist/services/authentication.service.js +39 -4
  45. package/dist/services/authentication.service.js.map +1 -1
  46. package/dist/services/import-transaction.service.d.ts +1 -1
  47. package/dist/services/import-transaction.service.d.ts.map +1 -1
  48. package/dist/services/import-transaction.service.js +13 -23
  49. package/dist/services/import-transaction.service.js.map +1 -1
  50. package/dist/services/settings/default-settings-provider.service.d.ts +20 -0
  51. package/dist/services/settings/default-settings-provider.service.d.ts.map +1 -1
  52. package/dist/services/settings/default-settings-provider.service.js +11 -0
  53. package/dist/services/settings/default-settings-provider.service.js.map +1 -1
  54. package/dist/services/workflow-secret.service.d.ts +3 -0
  55. package/dist/services/workflow-secret.service.d.ts.map +1 -1
  56. package/dist/services/workflow-secret.service.js +25 -0
  57. package/dist/services/workflow-secret.service.js.map +1 -1
  58. package/dist/solid-core.module.d.ts.map +1 -1
  59. package/dist/solid-core.module.js +9 -0
  60. package/dist/solid-core.module.js.map +1 -1
  61. package/dist/testing/adapters/ui/browser-provisioner.d.ts +5 -0
  62. package/dist/testing/adapters/ui/browser-provisioner.d.ts.map +1 -0
  63. package/dist/testing/adapters/ui/browser-provisioner.js +102 -0
  64. package/dist/testing/adapters/ui/browser-provisioner.js.map +1 -0
  65. package/dist/testing/adapters/ui/playwright-adapter.d.ts +40 -1
  66. package/dist/testing/adapters/ui/playwright-adapter.d.ts.map +1 -1
  67. package/dist/testing/adapters/ui/playwright-adapter.js +185 -3
  68. package/dist/testing/adapters/ui/playwright-adapter.js.map +1 -1
  69. package/dist/testing/adapters/ui/ui.types.d.ts +6 -0
  70. package/dist/testing/adapters/ui/ui.types.d.ts.map +1 -1
  71. package/dist/testing/adapters/ui/ui.types.js.map +1 -1
  72. package/dist/testing/contracts/runtime-context.types.d.ts +2 -0
  73. package/dist/testing/contracts/runtime-context.types.d.ts.map +1 -1
  74. package/dist/testing/contracts/runtime-context.types.js.map +1 -1
  75. package/dist/testing/core/interpolation.d.ts +1 -0
  76. package/dist/testing/core/interpolation.d.ts.map +1 -1
  77. package/dist/testing/core/interpolation.js +28 -68
  78. package/dist/testing/core/interpolation.js.map +1 -1
  79. package/dist/testing/core/path-resolution.spec.d.ts +2 -0
  80. package/dist/testing/core/path-resolution.spec.d.ts.map +1 -0
  81. package/dist/testing/core/path-resolution.spec.js +106 -0
  82. package/dist/testing/core/path-resolution.spec.js.map +1 -0
  83. package/dist/testing/core/path-segments.d.ts +2 -0
  84. package/dist/testing/core/path-segments.d.ts.map +1 -0
  85. package/dist/testing/core/path-segments.js +70 -0
  86. package/dist/testing/core/path-segments.js.map +1 -0
  87. package/dist/testing/core/resource-store.d.ts.map +1 -1
  88. package/dist/testing/core/resource-store.js +5 -2
  89. package/dist/testing/core/resource-store.js.map +1 -1
  90. package/dist/testing/core/testing-engine.d.ts.map +1 -1
  91. package/dist/testing/core/testing-engine.js +16 -0
  92. package/dist/testing/core/testing-engine.js.map +1 -1
  93. package/dist/testing/reporter/artifact-sink.d.ts +14 -0
  94. package/dist/testing/reporter/artifact-sink.d.ts.map +1 -0
  95. package/dist/testing/reporter/artifact-sink.js +3 -0
  96. package/dist/testing/reporter/artifact-sink.js.map +1 -0
  97. package/dist/testing/reporter/console-reporter.d.ts.map +1 -1
  98. package/dist/testing/reporter/console-reporter.js +7 -0
  99. package/dist/testing/reporter/console-reporter.js.map +1 -1
  100. package/dist/testing/reporter/file-service-artifact-sink.d.ts +22 -0
  101. package/dist/testing/reporter/file-service-artifact-sink.d.ts.map +1 -0
  102. package/dist/testing/reporter/file-service-artifact-sink.js +31 -0
  103. package/dist/testing/reporter/file-service-artifact-sink.js.map +1 -0
  104. package/dist/testing/reporter/lifecycle-events.types.d.ts +67 -0
  105. package/dist/testing/reporter/lifecycle-events.types.d.ts.map +1 -0
  106. package/dist/testing/reporter/lifecycle-events.types.js +3 -0
  107. package/dist/testing/reporter/lifecycle-events.types.js.map +1 -0
  108. package/dist/testing/reporter/lifecycle-webhook-reporter.d.ts +77 -0
  109. package/dist/testing/reporter/lifecycle-webhook-reporter.d.ts.map +1 -0
  110. package/dist/testing/reporter/lifecycle-webhook-reporter.js +275 -0
  111. package/dist/testing/reporter/lifecycle-webhook-reporter.js.map +1 -0
  112. package/dist/testing/reporter/progress-reporter.d.ts +3 -3
  113. package/dist/testing/reporter/progress-reporter.d.ts.map +1 -1
  114. package/dist/testing/reporter/progress-reporter.js.map +1 -1
  115. package/dist/testing/reporter/reporter.types.d.ts +13 -1
  116. package/dist/testing/reporter/reporter.types.d.ts.map +1 -1
  117. package/dist/testing/reporter/reporter.types.js.map +1 -1
  118. package/dist/testing/runner/read-scenarios-file.d.ts +9 -0
  119. package/dist/testing/runner/read-scenarios-file.d.ts.map +1 -0
  120. package/dist/testing/runner/read-scenarios-file.js +56 -0
  121. package/dist/testing/runner/read-scenarios-file.js.map +1 -0
  122. package/dist/testing/runner/run-from-metadata.d.ts +7 -2
  123. package/dist/testing/runner/run-from-metadata.d.ts.map +1 -1
  124. package/dist/testing/runner/run-from-metadata.js +57 -6
  125. package/dist/testing/runner/run-from-metadata.js.map +1 -1
  126. package/dist/testing/steps/ui/navigation.step.d.ts.map +1 -1
  127. package/dist/testing/steps/ui/navigation.step.js +12 -12
  128. package/dist/testing/steps/ui/navigation.step.js.map +1 -1
  129. package/package.json +1 -1
  130. package/postman/instant-logout.postman_collection.json +1493 -0
  131. package/src/commands/run-tests.command.ts +3 -0
  132. package/src/controllers/test-run.controller.ts +44 -0
  133. package/src/dtos/test-run-request.dto.ts +130 -0
  134. package/src/guards/access-token.guard.ts +48 -0
  135. package/src/index.ts +21 -1
  136. package/src/interfaces/active-user-data.interface.ts +8 -0
  137. package/src/jobs/database/test-run-queue-options-database.ts +9 -0
  138. package/src/jobs/database/test-run-queue-publisher-database.service.ts +24 -0
  139. package/src/jobs/database/test-run-queue-subscriber-database.service.ts +122 -0
  140. package/src/seeders/seed-data/solid-core-metadata.json +3 -1
  141. package/src/services/access-token-denylist.service.ts +145 -0
  142. package/src/services/authentication.service.ts +118 -2
  143. package/src/services/import-transaction.service.ts +19 -36
  144. package/src/services/settings/default-settings-provider.service.ts +12 -0
  145. package/src/services/workflow-secret.service.ts +61 -2
  146. package/src/solid-core.module.ts +11 -0
  147. package/src/testing/README.md +44 -1
  148. package/src/testing/adapters/ui/browser-provisioner.ts +115 -0
  149. package/src/testing/adapters/ui/playwright-adapter.ts +255 -5
  150. package/src/testing/adapters/ui/ui.types.ts +14 -0
  151. package/src/testing/contracts/runtime-context.types.ts +6 -0
  152. package/src/testing/core/interpolation.ts +39 -69
  153. package/src/testing/core/path-resolution.spec.ts +133 -0
  154. package/src/testing/core/path-segments.ts +81 -0
  155. package/src/testing/core/resource-store.ts +8 -2
  156. package/src/testing/core/testing-engine.ts +22 -0
  157. package/src/testing/reporter/artifact-sink.ts +16 -0
  158. package/src/testing/reporter/console-reporter.ts +9 -0
  159. package/src/testing/reporter/file-service-artifact-sink.ts +46 -0
  160. package/src/testing/reporter/lifecycle-events.types.ts +103 -0
  161. package/src/testing/reporter/lifecycle-webhook-reporter.ts +385 -0
  162. package/src/testing/reporter/progress-reporter.ts +3 -1
  163. package/src/testing/reporter/reporter.types.ts +10 -1
  164. package/src/testing/runner/read-scenarios-file.ts +44 -0
  165. package/src/testing/runner/run-from-metadata.ts +102 -9
  166. package/src/testing/steps/ui/navigation.step.ts +24 -20
  167. package/dist/services/access-token-storage.service.d.ts +0 -1
  168. package/dist/services/access-token-storage.service.d.ts.map +0 -1
  169. package/dist/services/access-token-storage.service.js +0 -1
  170. package/dist/services/access-token-storage.service.js.map +0 -1
  171. package/src/services/access-token-storage.service.ts +0 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,647 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.16-beta.0] - 2026-08-31
4
+
5
+ ### Added
6
+
7
+ - remove delete button visibility for user activity history
8
+ - implement default value application for required fields in import transactions
9
+ - add default values for required fields in import transactions
10
+ - enhance media type mapping to support multiple categories per extension in MediaFieldCrudManager
11
+ - update media file type definitions to expose only necessary fields for better clarity
12
+ - enhance media type handling by consolidating media file types and updating related services
13
+ - add SecretResolutionController and related DTO for reading secrets safely
14
+ - expose media type mappings and improve field label handling in MediaFieldCrudManager
15
+ - add resolve and resolveMany methods for secret management
16
+ - add normalization utilities for text fields and integrate them into LongTextFieldCrudManager and ShortTextFieldCrudManager
17
+ - implement eager installation of Chromium for Playwright UI tests
18
+ - add security header options for iframe embedding and customize frame-ancestors
19
+ - implement transaction handling for unpublishing records and restore previous version
20
+ - add createdAt field to PostChatterMessageDto and set default in service
21
+ - implement transaction handling for unpublishing records and restore previous version
22
+ - add progress reporting functionality to test runner and reporters
23
+ - add viewWidget attribute for fileSize in metadata
24
+ - add configurable UI timeouts for testing steps and update documentation
25
+ - enhance internationalisation by adding applyCreateDefaults method for localeName on create DTOs
26
+ - implement promoteRecoveredDraftPublishVersion method and integrate with CRUDService for soft-deleted records
27
+ - add default locale name for internationalised entries in test data seeding
28
+ - implement draft/publish versioning support and refactor related services
29
+ - add DraftPublishHelperService for managing draft and publish workflows
30
+ - add workflow field data provider support and related interfaces
31
+ - add asynchronous execution for workflows and enhance execution status retrieval
32
+ - implement WorkflowSecret management with CRUD operations and integrate into workflow execution
33
+ - enhance workflow definition management and add Python runtime node
34
+ - add SolidX integration nodes for login, email, and SMS
35
+ - add support for versioning and publishing in CRUD operations, including new fields in entities and filters
36
+ - enhance http.request node with query parameters and body modes
37
+ - refactor node structure and add sequential and switch nodes
38
+ - update workflow execution and definition handling
39
+ - implement workflow execution services and nodes
40
+ - implement API key generation for system admin users in ModuleMetadataSeederService
41
+ - enhance ModuleMetadataSeederService to generate and store API keys for system admin users
42
+ - add fieldConfig property to DatasourceIntrospectionMappingColumnDto and enhance field sanitization in DatasourceIntrospectionService
43
+ - enhance migration process with build and seed commands
44
+ - enhance datasource introspection with primary key detection and migration support
45
+ - enhance role creation with module linkage and resolve module metadata
46
+ - enhance action, role, and view metadata services with change detection and JSON normalization
47
+ - add introspection services for MSSQL, MySQL, and PostgreSQL
48
+ - add new dashboard controller actions to permissions
49
+ - simplify queue health permissions by consolidating patterns
50
+ - implement explicit widget permissions and unauthorized response handling
51
+ - enhance widget permission checks and add unauthorized response handling
52
+ - add Queue SLA heatmap provider and update metadata
53
+ - update queue health menu item and reorder messages
54
+ - add various dashboard providers and runtime services
55
+ - implement WhatsApp Cloud API integration
56
+ - add gupshup whatsapp provider
57
+ - add deleteByMediaRecord method to MediaStorageProvider implementations
58
+ - add updateCustomNoteMessage action to ChatterMessageController
59
+ - add secure custom-note edit API with attachment add/remove support
60
+ - implemented social media oath for facebook and microsoft
61
+ - add partialUpdate endpoint to menu-item-metadata controller and update metadata seeder relation field name
62
+ - implemented social media oath for facebook and microsoft
63
+ - add Message Tree Action and corresponding view for mqMessage
64
+ - implement processing timeout for RabbitMQ subscriber
65
+ - Add a composite index to `ChatterMessage` on `coModelName` and `coModelEntityId`, and an index to `chatterMessage` in `ChatterMessageDetails`.
66
+ - Migrate date/time transformers to UtcDateTimeTransformer.
67
+ - simplify S3 URL resolution DTO, and remove unused S3 resolution logic.
68
+
69
+ ### Fixed
70
+
71
+ - prevent caching of negative lookups in cache helper and permission metadata service
72
+ - use replaceAll for activeUserId in security rule config
73
+ - remove migration command and related services
74
+ - pass model service to convertImportedRecordToDto and apply defaults in the correct order
75
+ - remove delete permission from metadata configuration
76
+ - remove delete permission from global settings
77
+ - make currentValue optional in CreateModelSequenceDto and update seeding logic to exclude it
78
+ - change matched column type from bit to default nullable boolean
79
+ - improve error message for media deletion restriction
80
+ - use transactions entitymanager for all subscribers only for embedded db projects
81
+ - update consuming project name resolution to use parent directory
82
+ - update solidx directory path to include consuming project name
83
+ - correct package name in model generation command and update error handling in module metadata retrieval
84
+ - username
85
+ - remove type specification for encrypted column in Setting entity, to work in mssql also
86
+ - handle null or empty security rule configuration strings in repository
87
+
88
+ ### Changed
89
+
90
+ - rename applyEntityDefaults to applyImportDefaults for clarity
91
+ - update media type handling in CreateFieldMetadataDto and FieldMetadataService
92
+ - remove onDelete cascade option from ManyToOne relationships in entity definitions
93
+ - unify datetime column types across entities using helper function
94
+ - remove explicit timestamp type for nullable date columns across entities
95
+ - update CommonEntity properties to be optional and adjust types in WorkflowTriggerExecution
96
+ - rename create-draft-publish-helper.service to draft-publish-helper.service and update imports
97
+ - inject InternationalisationHelperService in ModuleTestDataService and CrudHelperService
98
+ - separate generic delete from draft-publish and i18n cleanup in CRUDService
99
+ - remove unused boolean type and related system column definitions from DatasourceIntrospectionService
100
+ - update CrudHelperService to initialize DraftPublishHelperService directly in the class refactor: remove publishedAt sorting logic from getLayout method in ViewMetadataService
101
+ - simplify published version filtering in CRUDService
102
+ - remove handleSeedLocales method to streamline locale seeding process
103
+ - remove legacy dashboard files and add new dashboarding architecture guide
104
+ - remove unused dashboard question and variable providers, SQL expression resolver, and related subscribers
105
+ - remove redundant null check in resolveSecurityRuleConfig
106
+ - update body column type to longText using getColumnType helper in SmsTemplate entity
107
+ - update legacy entity fields to be nullable and support null types
108
+ - replace DTO introspection with explicit isUpdate flag in MediaFieldCrudManager
109
+ - make password scheme and failed login attempt columns non-nullable in UserEntity.
110
+ - make passwordScheme, passwordSchemeVersion, and failedLoginAttempts fields nullable in the User entity.
111
+
112
+ ### Documentation
113
+
114
+ - update expired discord link
115
+
116
+ ### Other
117
+
118
+ - instant logout for access token changes
119
+ - vocabulary docs added
120
+ - removed the secrets read endpoint, since it is not required now
121
+ - renamed variables for better naming
122
+ - changes to ensure path segement parsing is consisten for $res and $data fragements in the ops vocabulary e.g currently $res was not supporting brackets but only . while grabbing data from and object
123
+ - ensure missing secrets show up in the report output so the error is presented alongside the scenario step for clarity
124
+ - `${secret:...}` in the test vocabulary
125
+ - Refactor Chromium installation process and remove eager install script
126
+ - changes
127
+ - ## Phase 6 — Global Multer upload size limit
128
+ - ## Phase 5 — Dangerous-extension checks on menu-icon & settings uploads
129
+ - ## Phase 4 — Route chatter attachments through `MediaFieldCrudManager`
130
+ - ## Phase 3 — Close the `mediaMultiple` size/category gap, and align `validateAllowedExtensions`'s placement
131
+ - ## Phase 2 — Make `mediaTypes` category resolution extension-authoritative
132
+ - Per-field extension allowlist (`mediaAllowedExtensions`)
133
+ - mpin scheme version changes
134
+ - mpin related changes
135
+ - Add safe percent-decoding for uploaded file names to prevent bypassing extension checks
136
+ - Revert "Revert "Deliverable A now stands as: cache TTL (with the store swap that make…""
137
+ - Revert "Deliverable A now stands as: cache TTL (with the store swap that make…"
138
+ - fixes around handling concurrent logins properly using per deviceKey buckets.
139
+ - Deliverable A now stands as: cache TTL (with the store swap that makes it actually work), the me() null guard it necessitates, the logout verify/idempotency fix, previousValidUntil replacing the timer, and the dead validate() removed.
140
+ - fixed the request body limit to keep it as 10mb instead of 25mb by default
141
+ - changes around files name sanitization and normalization
142
+ - changes to handle variations in extension while uploading dangerous extension files
143
+ - change request body max to 25mb
144
+ - Comment out countGroupedRecords method implementation for refactoring
145
+ - show theme toggle
146
+ - rename theme registry
147
+ - remove some unusable code
148
+ - some changes
149
+ - solidx theme settings
150
+ - chagesn to testing readme
151
+ - changes to make ui.expectUrl to wait using the navigation timeout
152
+ - type fixes
153
+ - fixes around playwright context
154
+ - Scenario snap shot changes
155
+ - test run payload changes
156
+ - Testhub test run queue changes
157
+ - Screen shoot changes
158
+ - Test Life Cycle Changes.
159
+ - Testing Hub Changes
160
+ - chagesn to testing readme
161
+ - changes to support passing an explicit createdAt while posting a chatter message
162
+ - Enhance countGroupedRecords and passed internationalisation and draft publish workflow parameters in executeGroupPipeline
163
+ - rename theme registry
164
+ - changes to make ui.expectUrl to wait using the navigation timeout
165
+ - type fixes
166
+ - fixes around playwright context
167
+ - Scenario snap shot changes
168
+ - test run payload changes
169
+ - Testhub test run queue changes
170
+ - Screen shoot changes
171
+ - Test Life Cycle Changes.
172
+ - Testing Hub Changes
173
+ - remove add permisson from permisson-list-view
174
+ - removed indexes on username and mobile since it is a conditional index and it breaks for mssql since multiple nulls are not allowed on unique columns
175
+ - readme changes
176
+ - removed hardcoded type against a boolean type
177
+ - changes to the default testing setting timeout to pick from env as well
178
+ - remove duplicate code
179
+ - refactoring around chatter media security fix
180
+ - add media extension support for post chatter
181
+ - Add media upload action and validation in MediaService
182
+ - add media extension support for post chatter
183
+ - changes to ensure only id and field are returned while populating the user in chatter
184
+ - Update defaultValue types in solid-core-metadata.json to strings
185
+ - 1. changes to ensure user populated for chatter and createdBy/updatedBy has only id and fullName populate 2. Added Exclude at property level on user to exclude sensitive fields by default without having to add an exclude at the class level
186
+ - Add getMentionableUsers permission
187
+ - Add endpoint to retrieve mentionable users with search and limit options
188
+ - Add error handling nodes and enhance workflow node definitions
189
+ - Add skipHooks option to seed command and related services
190
+ - Remove type specification for matched column in WorkflowTriggerExecution entity
191
+ - Enhance workflow node definitions and runtime context handling
192
+ - remvoing redundent code
193
+ - Remove onDelete cascade option from ManyToOne relationships in SavedFilters entity
194
+ - changes
195
+ - changes
196
+ - sql injection vulnerability closed in filter queries
197
+ - Remove LocalPath
198
+ - revert changes
199
+ - revert changes
200
+ - revert changes
201
+ - re revert
202
+ - revert changes
203
+ - private-file-cleanup
204
+ - add downlaodurl
205
+ - changes to allow overriding the is allowed api keys flag thru extension user
206
+ - Revert "user enumeration"
207
+ - remove validation from username and mobile
208
+ - user create validation bugs
209
+ - add normalize for otp based also
210
+ - Disable metadata pruning by default in seed command configuration
211
+ - Update seed command to enable metadata pruning by default
212
+ - handle-case-sensitive-for-email
213
+ - Add delete permissions for ImportTransactionController in solid-core metadata
214
+ - Add permissions for import/export functionality in solid-core metadata
215
+ - Refactor role assignment for admin users to handle capability roles individually
216
+ - discard changes
217
+ - add support for static file
218
+ - Add capability roles for admin users in module metadata seeder
219
+ - Enhance module metadata seeder with event emission for start and finish; add options interface for seeding configuration
220
+ - attachment
221
+ - Add new roles and permissions for import/export functionality; refactor role permission handling
222
+ - make isPublic default true
223
+ - changes to show the image inline
224
+ - cleanup againts media's
225
+ - inline role crate false
226
+ - Implement chatter mention notification system with email templates and queue handling
227
+ - Add messageBodyMentions field to chatter message DTOs and entity
228
+ - fix-audit-bug
229
+ - changes to include signed url token for private media
230
+ - Revert "Revert "rename function name""
231
+ - Revert "Revert "add private media support""
232
+ - Add media file type constants and enhance security for media uploads
233
+ - remove some unusable code
234
+ - some changes
235
+ - handle technical error messages due to missing resource in static resources folder
236
+ - Revert "add private media support"
237
+ - Revert "rename function name"
238
+ - rename function name
239
+ - add private media support
240
+ - some fixes
241
+ - solidx session invalid changes
242
+ - add validation on get chatter message
243
+ - updatedAt value is updating now
244
+ - fix to allow linking a userKey belonging to the parent model while seeding a child model
245
+ - add security against chatter
246
+ - chatter message endpoint made public
247
+ - removed embedded db support
248
+ - Add default sorting by ID if not explicitly specified in order options
249
+ - solidx theme settings
250
+ - add icons across all the models in solid core
251
+ - media upload added behind auth
252
+ - Refactor module path resolution to use kebab-case and extract migration file writing logic into a separate method
253
+ - Implement cleanup for TypeORM datasource entities and enhance file handling in SolidTsMorphService
254
+ - class serializer interceptor added for impact of Exclude and Expose
255
+ - Enhance datasource introspection with primary key validation and user key resolution
256
+ - Concurrent Login Feature
257
+ - user enumeration
258
+ - add helper text key on settings object .........
259
+ - changes to handle case insenstive filter operations if the values are other than string by casting
260
+ - menus item fix
261
+ - changes to ensure entity manager does not get serialized as part of the message for the computed field queue
262
+ - added nodemon heartbeat to allow in-process db query execution for code generation for embedded db
263
+ - display name changed
264
+ - name changed
265
+ - added settings for configure the row click on solid list view
266
+ - Revert "Fix for this issue > stop applying lower for numeric fields."
267
+ - fixed legacy entity files names
268
+ - view metadata type field - selection static and roles required false from menu-item
269
+ - Fix for this issue > stop applying lower for numeric fields.
270
+ - refactor and add migration command
271
+ - Handling for audit subscriber to defer audit publish when in embedded db mode
272
+ - Fixed the one genuine mid-transaction second-connection case and hardened the latent spots (for embedded db)
273
+ - changes to take in option for seeding with modules in current seed method
274
+ - Fix validation logic to parse string field values as integers before applying validations
275
+ - remove computed field from instruction add one remove field command fix many-to-many on chatter log
276
+ - ad changes
277
+ - Add locale seeding functionality and enhance locale management
278
+ - subscribers now use the event’s own transaction connection instead of a second pooled one (helpful for embedded db)
279
+ - changes to avoid extra module checks before dynamically loading it
280
+ - defaulted to modulemetadataseederservice if no seeder provided
281
+ - Add Date field in Instructions Response
282
+ - ai interaction cleanup changes
283
+ - enabling create,edit,import,export on permission and lov modules
284
+ - added module to rolemetadata list view
285
+ - roles group by module changes
286
+ - Refactor dashboard providers to utilize new bucket expression and normalization functions
287
+ - Implement Datasource Management functionality with controller, service, and DTO
288
+ - added index to fields newly added as sortable and searchable
289
+ - Add archiver package to dependencies
290
+ - removed unnecessary seed file
291
+ - Add TypeORM migration helper functions and export in index
292
+ - fixes
293
+ - reverted accidental removal of the layout builder root menu
294
+ - pending cleanup of solid core menu items
295
+ - Refactor metadata: remove standalone menu items and add scheduled jobs and saved filters tree views
296
+ - Remove ChatterMessageDetails and ImportTransactionErrorLog menu items; add Chatter Messages tree view and action. Other menu sub menus cleanup done
297
+ - Add model sequence and list of values tree views to metadata, other cleanup changes
298
+ - changes for IAM
299
+ - Add clearPackageRuntime functionality and corresponding metadata action
300
+ - Add archiver dependency and implement module package export functionality
301
+ - Refactor menu cleanup logic in ModelMetadataService and ModuleMetadataService; improve error handling for file deletion and update build commands in ModulePackageService to use solidctl.
302
+ - Update solid-core-metadata.json to disable create, edit, and delete actions, and set searchable attributes to false for specific fields for media storage provider
303
+ - Add media tree view and action & media view cleanup, enhance file storage provider with file size tracking, implemented storeStreams for s3
304
+ - Remove cleanup procedures for module metadata across all SQL dialects and implement menu and action cleanup in the service layer.
305
+ - Remove unused database bootstrap service and related SQL cleanup procedures
306
+ - cleanup
307
+ - Add view and action metadata tree views with updated permissions and searchable fields
308
+ - Add view and action metadata tree views with updated permissions and searchable fields
309
+ - menu item model cleanup
310
+ - Add resumable import handling and transaction management in module package service
311
+ - Add method to retrieve Solid UI module path and enhance cleanup logging
312
+ - Enhance module metadata seeder: add validation for module name, streamline array handling for scheduled jobs, saved filters, list of values, security rules, sms templates, email templates, menus, actions, views, users, roles, media storage providers, model sequences, and models metadata.
313
+ - Implement module package management: add controller, service, and DTOs for import, export, and build operations.
314
+ - many to one left join issue fixed
315
+ - Refactor field metadata actions and views: update action types, enhance searchability, and adjust permissions for create, edit, and delete operations.
316
+ - Refactor CRUD and model metadata services to enhance group filtering and pagination; streamline response handling and improve query structure. configuration changes to support tree view in model metadata
317
+ - Update solid-core metadata: remove import/export options, rename fields, and add sortable attribute
318
+ - Enhance solid-core metadata structure for module mdtadata by removing import/export options and adding sortable attributes for fields
319
+ - Implement module metadata explorer with CRUD operations and search functionality
320
+ - Refactor module metadata paths to use a consistent directory structure and improve file resolution logic
321
+ - Bug fixs
322
+ - added frontend base url as well to the default settings
323
+ - minor cleanup
324
+ - changes to cleanup legacy table related fields
325
+ - changes for new dashboards functionality
326
+ - always print server startup line regardless of log level
327
+ - Add field quality checks and fixes checklist for backend validation
328
+ - typeo issue
329
+ - Agent table clean up
330
+ - Add manual interaction step for Playwright and update README
331
+ - provision made to unlink data rather than having to teardown everything
332
+ - provision made to unlink data rather than having to teardown everything
333
+ - changes to colour the server startup line
334
+ - Agent table clean up
335
+ - changes to avoid too many initialization logs. controlled thru the verboseBootstrap option to the boostrap helper
336
+ - removed id command options and retained the singular name option only for consistency purposes
337
+ - changes to route genertion commands thru solidctl. The refresh-module & refresh-model commands are what are eventually called and end up calling the services only, keeping calling consistent and ensuring everything is route thru solidctl generate
338
+ - got rid of fieldNamesForRefresh and fieldIdsForRefresh dead chain since it is not used now, due to fields being read in the code builder from the metadata json directly
339
+ - MCP table solid changes
340
+ - playwrite added as dependency instead
341
+ - changes to the test runner
342
+ - chatter message user resolution chagnes
343
+ - bug fix in chatter message user resolution after we moved to queues.
344
+ - moved back to beta3
345
+ - failed login attempts field added to the json and update dto and exposed in entity
346
+ - removed un-necessary index on newvalue display
347
+ - ts changes error: any
348
+ - auto addition of menus happens at the bottom now. list view layout changes for security access rules + enabled delete made welcome email & sms SystemAdminEditable
349
+ - changed model metadata service default form layout to be single column
350
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
351
+ - added typing to catch blocks + authentication service bug fixes for private registration flow
352
+ - normalised @ApiTags
353
+ - enum for passwordless modes
354
+ - bug fix in how alternative actions are rendered
355
+ - queue related bug fixes
356
+ - changes to add a websocket adaptor to the bootstrap server routine
357
+ - license changes
358
+ - type fixes
359
+ - removed min and max from long text mapping
360
+ - bug fix for shortext field mapping
361
+ - changes to post the testing results to a webhook api with a test payload
362
+ - added import multer this fixes un-necessary ts errors in vscode
363
+ - ts errors fixed
364
+ - bug fix in rabbitmq subscriber optimisation in all subscribers to default to role both if not specified
365
+ - formatting changes
366
+ - facebook oauth
367
+ - Status required false
368
+ - updated gitignore
369
+ - dleete un-necessary docs
370
+ - deleted un-necessary files
371
+ - changes related to more grooming
372
+ - api added in cors
373
+ - refactor Oauth strategy
374
+ - Revert "Ft social media login"
375
+ - bug fix
376
+ - bug fix
377
+ - add new api me endpoint and role based settings
378
+ - setting changes for new ui architecture
379
+ - changes for new settings structure
380
+ - chatter task subtype and related changes
381
+ - bug fix
382
+ - fixes
383
+ - changes to get rid of angular schematics for helping with string case transformation for consistency purpose i.e (lodash is being used on frontend too) and avoid edge cases
384
+ - changes to handle import logs as well, thru configured winston log level
385
+ - change isMultiSelect to true in solid-core-metadata.json
386
+ - change isMultiSelect to false and set visibility for cronExpression, dayOfWeek, and dayOfMonth fields to false
387
+ - tightened up queue subscriber interface + fixed core subscribers that were not returning anything. all subscribers must either return a promise or if not async then the actual value
388
+ - removed authTheme setting, auth pages dark - light is now controlled by the same local storage as the rest of the app shell
389
+ - bug fix: passwordless registration should create a user with active false
390
+ - apikeys attribute was not exposed
391
+ - refactor Oauth strategy
392
+ - changes to avoid sending out encrypted setting in api responses. also removed menu item and action entries for ai settings. (temporary fix, since setting ui to be revamped soon)
393
+ - bug fix
394
+ - null check on role
395
+ - made provision to seed custom permissions
396
+ - handled seed scenario too
397
+ - upload File and expectHidden changes
398
+ - extension user cleanup and checks added
399
+ - fixed types for cleanup
400
+ - added tsc-alias as well to ensure clean imports in dist as an extra cleanup measure
401
+ - fixes bare shell imports with relative imports
402
+ - dynamic import fix
403
+ - removed unnecessary file
404
+ - fixes for 1. throw exception if extension user and no provider configured 2. fixed roles method in the extensionUserProvider interface to make it mandatory
405
+ - removed base abstract class
406
+ - added interface too
407
+ - changes
408
+ - changes to test data seeding & fixed the type for authenticationService.signup method
409
+ - changes to user dto to include the api keys toggle
410
+ - add default role to the user only if there are no roles resolved against a user
411
+ - changes to replace current extension user custom user creation logic with the use of dynamic extension user provider. cleans up creation of an extension user
412
+ - Only forward --debug when explicitly enabled.
413
+ - toolOutput field changes to json
414
+ - adding user api key entity to export
415
+ - minor optimisation to how dynamic modules are loaded
416
+ - Add Discord badge to top of README
417
+ - Fix broken BSL license link and add Discord link to README
418
+ - Add BSL 1.1 license and update package.json license field
419
+ - Seed user and roles in testing data
420
+ - removed readme.txt
421
+ - moved type and interfaces in interfaces.ts and refactored accordingly
422
+ - changed to md
423
+ - added readme
424
+ - Ai setting model change
425
+ - changes to allow encrypting setting keys
426
+ - form view clean up
427
+ - Agent table list view changes
428
+ - synchronize false
429
+ - changes to resolve the selection dynamic provider by name and token both
430
+ - changes to bypass swagger urls from csp policy
431
+ - changes to create a seperate endpoint for admin users to generate api key + custom repository created for userApiKey
432
+ - changes to fix issue around isAllowedToGenerateApiKeys not getting saved during user creation
433
+ - changes to implement the sso code and sso exchange use cases
434
+ - removed orm types / exported api key entity
435
+ - added provision to control if api key creation is allowed for the user
436
+ - api key changes for backend
437
+ - changes to bootstrap helper to read from standard env variables and avoid redundantly passing swagger options
438
+ - fix to call addRoles only if role names are present
439
+ - Revert "revert: refactor: update legacy entity fields to be nullable and support null types"
440
+ - refactor: update legacy entity fields to be nullable and support null types
441
+ - Json structure change
442
+ - Agent table metadata clean up changes
443
+ - longtext
444
+ - longtext changes
445
+ - Agent tables clean up
446
+ - fixes to seed many-to-many relation for tests
447
+ - changes to seed media in testing data
448
+ - Chatter modelUserkey and excel many to one issue
449
+ - keeping the default selectionValueType as string since this is a good default
450
+ - bug fixes around how media is done
451
+ - bug fixes
452
+ - try catch inside logEvent
453
+ - media has card based metadata
454
+ - Refresh token activity
455
+ - changes to implement the sso code and sso exchange use cases
456
+ - cleanup
457
+ - enabled kanban view on mq message
458
+ - Agent table changes
459
+ - changes to disallow deleting a model or module in production
460
+ - changelog version bumped
461
+ - changelog added
462
+ - changes to control the logging using env variables & set appropriate defaults basis environment
463
+ - chnages for logging
464
+ - Chatter queue fixs
465
+ - one more "beta" for ozzy
466
+ - additional loggging in cors helper
467
+ - changes
468
+ - Redis Queue component and rabbitMQ folder changes
469
+ - changes to track old and new fields as part of the delete entity operation
470
+ - optimizations done for audit subcriber
471
+ - changes to optimize audit subscriber code to use background jobs entirely instead of partially
472
+ - changes to push all work/processing to the chatter queue subscriber to better manage workloads & db pooling utilization
473
+ - formatting changes
474
+ - performance optimisations 1. created by updated by subscriber is not querying users again and again 2. rabbit pub / sub can now optinally switch off db persistence
475
+ - qs depth config increased
476
+ - changes to move the shouldTrackAudit check into registry to avoid unnecessary checks during runtime
477
+ - cached model metadata queries
478
+ - changse
479
+ - disabled extra loggign
480
+ - chagnes
481
+ - reduced concurrency in computed fields
482
+ - additional loggign
483
+ - added indexes to mobile & email since those are frequently queries upon
484
+ - changes to optimize the permission service methods used in the hotspot load paths within auth and access token guards
485
+ - Redis background job changes
486
+ - Chatter Rationalizing
487
+ - changes
488
+ - changes
489
+ - changes to merge the entityId sequence computed provider into the existing sequence number provider
490
+ - changes to export bootstrap helpers for server & cli nest applications
491
+ - changes to toggle the validation for selection dynamic provider. Also changes to export a bootstrap helper function
492
+ - registered the EntityIdSequenceNumComputedFieldProvider computation provider as a nest provider
493
+ - Added EntityIdSequenceNumComputedFieldProvider as an alternative simpler provider which uses the modelSequence configuration and relies on the id persisted during creation for an entity
494
+ - added index on message id in mq message table
495
+ - changes around sequence num computed field being a post computation provider error logging in rabbit mq
496
+ - changes to save model sequence id as part of post compute instead of pre compute
497
+ - changse
498
+ - Revert "High concurrency fix for alpha num and sequence num computed fields"
499
+ - High concurrency fix for alpha num and sequence num computed fields
500
+ - bug fix in cron evalutaion
501
+ - tighter logging around roles
502
+ - scheduler now supports env based specific jobs starting and others not
503
+ - reverting back to text (i.e since it is good enough for mysql too) i.e 64kb for these fields
504
+ - revert cross db changes for view-metadata-entity
505
+ - fixes
506
+ - changes to handle cross-db compatibility
507
+ - added type as simple-json
508
+ - Remove isValidateForUpdate hack that relied on checking dto.id !== undefined
509
+ - Revert "Merge branch 'media-update' into 'main'"
510
+ - Mysql related changes
511
+ - ts-morph and media storage fix
512
+ - dashboard layout menu item added
513
+ - dashboard changes
514
+ - scheduler bug fix
515
+ - made provision to execute scheduled jobs manually
516
+ - changes
517
+ - cleanup
518
+ - logging related changes and made user activity history tree view
519
+ - changes to return the wall clock time as utc for chatter as well to keep it...
520
+ - changes around dashboard question refactoring
521
+ - default tree view and action added on code generation
522
+ - Date time format changes in audit
523
+ - user activity history on otp login
524
+ - changes
525
+ - changelog added
526
+ - reverted legacy and common entity to use local date time transformer only
527
+ - added changelog
528
+ - made playwright dependency lazy
529
+ - ai interaction table user is nullable now
530
+ - rabbitmq subscriber does a prefetch now allowing for more concurrency
531
+ - formatting changes
532
+ - Version info changes
533
+ - dummy otp can now be enabled on a per user basis
534
+ - jwt token optimisation
535
+ - optimised the authentication flow in microservice adapter to cache access token
536
+ - deleted file containing secrets
537
+ - changes
538
+ - optimisation around how dummy otp is managed
539
+ - isSeeded added
540
+ - bug fix for fetch layouts
541
+ - view modes added in layout
542
+ - One to many crud manager fixes
543
+ - one-to-many-crud-manager-fixes
544
+ - Many to many crud field manager fixes
545
+ - patch endpoint added in role controller
546
+ - many-to-many field fixes
547
+ - modelSequenceFormViewChangeHandler added on field change
548
+ - changes to convert the passwordlessRegistrationValidateWhat from array to string
549
+ - changes to format group values consistently
550
+ - fixes for normalizing group values
551
+ - Revert "changes to return groupValue in the group meta response as well. groupValue is..."
552
+ - changes to return groupValue in the group meta response as well. groupValue is...
553
+ - changes to return groupValue in the group meta response as well. groupValue is...
554
+ - filter_field_granularity_supported_added_for_date_fields
555
+ - password registration/login cleanup + max failed login attempts checks added
556
+ - removed unsafe inline from CSP
557
+ - removed incorrect comment
558
+ - changes
559
+ - Revert "replaced playwright with lazy dependency"
560
+ - replaced playwright with lazy dependency
561
+ - count and average
562
+ - fixes to solid core metadata configuration
563
+ - make `s3Key` and `isPrivate` properties mandatory in `ResolveS3UrlDto`.
564
+ - solid seed now prints proper exception stack trace
565
+ - added playwright dependencies as peer dependencies
566
+ - changed playwright import to make it lazy
567
+ - issue fixes
568
+ - formatting changes
569
+ - formatting changes
570
+ - changes for test setup
571
+ - package changes
572
+ - Changes to generate an SA user with the default password for simpler experience during setup
573
+ - more changes to support form data based uploads
574
+ - changes
575
+ - changes around testing workflow
576
+ - unified testing utitlities
577
+ - added comments to the slug code
578
+ - refactored queue namespacign
579
+ - queue namespacing related chanes
580
+ - removed todo
581
+ - queue name related changes
582
+ - cag
583
+ - changrs
584
+ - queues names are now namespaced by service naem
585
+ - enabled logs
586
+ - debug logs
587
+ - testing docs updated
588
+ - changes
589
+ - cleanup
590
+ - removed old testing related fiels
591
+ - testing infra now supports data based interpolation
592
+ - testing changes: now we support fully custom test specs
593
+ - changes for test automation
594
+ - changes to tsconfig for playwright tests
595
+ - exporting typeorm db helper
596
+ - removed the files section
597
+ - changes for playwright testing
598
+ - changes to disable service controller seed method
599
+ - formatting changes
600
+ - oom issue
601
+ - logger added for chatter
602
+ - changed arg to kebab case instead of came case in schematic service
603
+ - default menu icons added
604
+ - rabbitmq subscriber: add retries, DLX queues, reconnects, and docs
605
+ - removed un-necessary log
606
+ - fix for handling non existence of fieldNamesForRemoval arg
607
+ - foirmatting canges
608
+ - Archived/solidstarters main
609
+ - version changes
610
+ - changed org : @solidstarters -> @solidxai
611
+ - removed publish script, since it is replaced with solidctl release
612
+ - chanes
613
+ - Revert "@solidstarters namespace changed to @solidx"
614
+ - @solidstarters namespace changed to @solidx
615
+ - file service interface changes
616
+ - CR in s3 file service, url options now supports isPrivateBucket allowing one to generate signed and un-signed URLs using the getUrl method
617
+ - changes to the publish script to support: 1.reverse merging main to dev to ensure latest package version is synced with dev post publish. 2. added guardrail to allow publishing from main branch only 3. added dry run option and force option i.e (in case we want to publish from another branch, but is hidden) 4. script now pushes the git version tags as well
618
+ - changes to pass minimal parameters to the schematics project and pick the rest from the metadata configuration json file (avoid long shell commands)
619
+ - test data workflow
620
+ - test-data command
621
+ - seed command updated
622
+ - changes
623
+ - changes
624
+ - seed command changes to support pruning, test-data-setup and test-data-teardown.
625
+ - seeding now supports seedData allowing us to seed fixtures for testing.
626
+ - precomputations now skip computation if value is already provided
627
+ - added utility for findOneByUserKey
628
+ - pruning related chagnes
629
+ - changes
630
+ - more changes related to pruning metadata
631
+ - pruen logs added
632
+ - module metadata seeder now does prune also
633
+ - reformatting to improve readability
634
+ - changes
635
+ - file type not allowed. Allowed: image, document, pdf. Received mimetype: application/pdf (mapped to file)
636
+ - bug fixes
637
+ - changes to cleanup the implementation by having the write method of file service return the url post write
638
+ - changes to support using the region specified in a media storage provider, instead only the default while creating an s3 client
639
+ - fixes for using the default-aws-s3 bucket for storing the settings media if default file service is s3
640
+ - changes to settings media storage logic i.e copy multer path to file service implementation write
641
+ - file service abstraction cleanup
642
+ - chagnes
643
+ - Dashboard Question Responsive
644
+
3
645
  ## [0.1.15] - 2026-08-28
4
646
 
5
647
  ### Added
@@ -1,6 +1,7 @@
1
1
  import { CommandRunner } from 'nest-commander';
2
2
  import { ModuleMetadataHelperService } from '../helpers/module-metadata-helper.service';
3
3
  import { SettingService } from '../services/setting.service';
4
+ import { WorkflowSecretService } from '../services/workflow-secret.service';
4
5
  interface TestRunCommandOptions {
5
6
  module?: string;
6
7
  moduleName?: string;
@@ -23,8 +24,9 @@ interface TestRunCommandOptions {
23
24
  export declare class TestRunCommand extends CommandRunner {
24
25
  private readonly moduleMetadataHelperService;
25
26
  private readonly settingService;
27
+ private readonly workflowSecretService;
26
28
  private readonly logger;
27
- constructor(moduleMetadataHelperService: ModuleMetadataHelperService, settingService: SettingService);
29
+ constructor(moduleMetadataHelperService: ModuleMetadataHelperService, settingService: SettingService, workflowSecretService: WorkflowSecretService);
28
30
  run(passedParam: string[], options?: TestRunCommandOptions): Promise<void>;
29
31
  parseModule(val: string): string;
30
32
  parseScenarioIds(val: string): string;