@solidxai/core 0.1.13-beta.19 → 0.1.13-beta.20

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