@stonyx/orm 0.2.1-beta.9 → 0.2.1-beta.90

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/README.md +64 -6
  2. package/config/environment.js +37 -1
  3. package/dist/aggregates.d.ts +21 -0
  4. package/dist/aggregates.js +93 -0
  5. package/dist/attr.d.ts +2 -0
  6. package/dist/attr.js +22 -0
  7. package/dist/belongs-to.d.ts +11 -0
  8. package/dist/belongs-to.js +59 -0
  9. package/dist/cli.d.ts +22 -0
  10. package/dist/cli.js +148 -0
  11. package/dist/commands.d.ts +7 -0
  12. package/dist/commands.js +146 -0
  13. package/dist/db.d.ts +21 -0
  14. package/dist/db.js +180 -0
  15. package/dist/exports/db.d.ts +7 -0
  16. package/{src → dist}/exports/db.js +2 -4
  17. package/dist/has-many.d.ts +11 -0
  18. package/dist/has-many.js +58 -0
  19. package/dist/hooks.d.ts +62 -0
  20. package/dist/hooks.js +110 -0
  21. package/dist/index.d.ts +14 -0
  22. package/dist/index.js +34 -0
  23. package/dist/main.d.ts +46 -0
  24. package/dist/main.js +181 -0
  25. package/dist/manage-record.d.ts +13 -0
  26. package/dist/manage-record.js +123 -0
  27. package/dist/meta-request.d.ts +6 -0
  28. package/dist/meta-request.js +52 -0
  29. package/dist/migrate.d.ts +2 -0
  30. package/dist/migrate.js +57 -0
  31. package/dist/model-property.d.ts +9 -0
  32. package/dist/model-property.js +29 -0
  33. package/dist/model.d.ts +15 -0
  34. package/dist/model.js +18 -0
  35. package/dist/mysql/connection.d.ts +14 -0
  36. package/dist/mysql/connection.js +24 -0
  37. package/dist/mysql/migration-generator.d.ts +45 -0
  38. package/dist/mysql/migration-generator.js +254 -0
  39. package/dist/mysql/migration-runner.d.ts +12 -0
  40. package/dist/mysql/migration-runner.js +88 -0
  41. package/dist/mysql/mysql-db.d.ts +100 -0
  42. package/dist/mysql/mysql-db.js +425 -0
  43. package/dist/mysql/query-builder.d.ts +10 -0
  44. package/dist/mysql/query-builder.js +44 -0
  45. package/dist/mysql/schema-introspector.d.ts +19 -0
  46. package/dist/mysql/schema-introspector.js +291 -0
  47. package/dist/mysql/type-map.d.ts +21 -0
  48. package/dist/mysql/type-map.js +36 -0
  49. package/dist/orm-request.d.ts +38 -0
  50. package/dist/orm-request.js +474 -0
  51. package/dist/plural-registry.d.ts +4 -0
  52. package/dist/plural-registry.js +9 -0
  53. package/dist/postgres/connection.d.ts +15 -0
  54. package/dist/postgres/connection.js +32 -0
  55. package/dist/postgres/migration-generator.d.ts +45 -0
  56. package/dist/postgres/migration-generator.js +261 -0
  57. package/dist/postgres/migration-runner.d.ts +10 -0
  58. package/dist/postgres/migration-runner.js +87 -0
  59. package/dist/postgres/postgres-db.d.ts +119 -0
  60. package/dist/postgres/postgres-db.js +477 -0
  61. package/dist/postgres/query-builder.d.ts +27 -0
  62. package/dist/postgres/query-builder.js +98 -0
  63. package/dist/postgres/schema-introspector.d.ts +29 -0
  64. package/dist/postgres/schema-introspector.js +314 -0
  65. package/dist/postgres/type-map.d.ts +23 -0
  66. package/dist/postgres/type-map.js +56 -0
  67. package/dist/record.d.ts +75 -0
  68. package/dist/record.js +129 -0
  69. package/dist/relationships.d.ts +10 -0
  70. package/dist/relationships.js +41 -0
  71. package/dist/serializer.d.ts +17 -0
  72. package/dist/serializer.js +136 -0
  73. package/dist/setup-rest-server.d.ts +1 -0
  74. package/dist/setup-rest-server.js +52 -0
  75. package/dist/standalone-db.d.ts +58 -0
  76. package/dist/standalone-db.js +142 -0
  77. package/dist/store.d.ts +62 -0
  78. package/dist/store.js +286 -0
  79. package/dist/timescale/query-builder.d.ts +43 -0
  80. package/dist/timescale/query-builder.js +115 -0
  81. package/dist/timescale/timescale-db.d.ts +45 -0
  82. package/dist/timescale/timescale-db.js +84 -0
  83. package/dist/transforms.d.ts +2 -0
  84. package/dist/transforms.js +17 -0
  85. package/dist/types/orm-types.d.ts +142 -0
  86. package/dist/types/orm-types.js +1 -0
  87. package/dist/utils.d.ts +7 -0
  88. package/dist/utils.js +17 -0
  89. package/dist/view-resolver.d.ts +8 -0
  90. package/dist/view-resolver.js +171 -0
  91. package/dist/view.d.ts +11 -0
  92. package/dist/view.js +18 -0
  93. package/package.json +57 -15
  94. package/src/aggregates.ts +109 -0
  95. package/src/{attr.js → attr.ts} +2 -2
  96. package/src/belongs-to.ts +90 -0
  97. package/src/cli.ts +183 -0
  98. package/src/{commands.js → commands.ts} +179 -170
  99. package/src/{db.js → db.ts} +55 -29
  100. package/src/exports/db.ts +7 -0
  101. package/src/has-many.ts +92 -0
  102. package/src/{hooks.js → hooks.ts} +41 -27
  103. package/src/{index.js → index.ts} +11 -2
  104. package/src/main.ts +229 -0
  105. package/src/manage-record.ts +161 -0
  106. package/src/{meta-request.js → meta-request.ts} +17 -14
  107. package/src/{migrate.js → migrate.ts} +9 -9
  108. package/src/model-property.ts +35 -0
  109. package/src/model.ts +21 -0
  110. package/src/mysql/{connection.js → connection.ts} +43 -28
  111. package/src/mysql/migration-generator.ts +337 -0
  112. package/src/mysql/{migration-runner.js → migration-runner.ts} +121 -110
  113. package/src/mysql/mysql-db.ts +543 -0
  114. package/src/mysql/{query-builder.js → query-builder.ts} +69 -64
  115. package/src/mysql/schema-introspector.ts +358 -0
  116. package/src/mysql/{type-map.js → type-map.ts} +42 -37
  117. package/src/{orm-request.js → orm-request.ts} +186 -108
  118. package/src/plural-registry.ts +12 -0
  119. package/src/postgres/connection.ts +48 -0
  120. package/src/postgres/migration-generator.ts +348 -0
  121. package/src/postgres/migration-runner.ts +115 -0
  122. package/src/postgres/postgres-db.ts +616 -0
  123. package/src/postgres/query-builder.ts +148 -0
  124. package/src/postgres/schema-introspector.ts +386 -0
  125. package/src/postgres/type-map.ts +61 -0
  126. package/src/record.ts +186 -0
  127. package/src/relationships.ts +54 -0
  128. package/src/serializer.ts +161 -0
  129. package/src/{setup-rest-server.js → setup-rest-server.ts} +18 -16
  130. package/src/standalone-db.ts +185 -0
  131. package/src/store.ts +373 -0
  132. package/src/timescale/query-builder.ts +174 -0
  133. package/src/timescale/timescale-db.ts +119 -0
  134. package/src/transforms.ts +20 -0
  135. package/src/types/mysql2.d.ts +49 -0
  136. package/src/types/orm-types.ts +146 -0
  137. package/src/types/pg.d.ts +32 -0
  138. package/src/types/stonyx-cron.d.ts +5 -0
  139. package/src/types/stonyx-events.d.ts +4 -0
  140. package/src/types/stonyx-rest-server.d.ts +16 -0
  141. package/src/types/stonyx-utils.d.ts +33 -0
  142. package/src/types/stonyx.d.ts +21 -0
  143. package/src/utils.ts +22 -0
  144. package/src/view-resolver.ts +211 -0
  145. package/src/view.ts +22 -0
  146. package/.claude/code-style-rules.md +0 -44
  147. package/.claude/hooks.md +0 -250
  148. package/.claude/index.md +0 -279
  149. package/.claude/usage-patterns.md +0 -217
  150. package/.github/workflows/ci.yml +0 -16
  151. package/.github/workflows/publish.yml +0 -51
  152. package/improvements.md +0 -139
  153. package/project-structure.md +0 -343
  154. package/src/belongs-to.js +0 -63
  155. package/src/has-many.js +0 -61
  156. package/src/main.js +0 -148
  157. package/src/manage-record.js +0 -118
  158. package/src/model-property.js +0 -29
  159. package/src/model.js +0 -9
  160. package/src/mysql/migration-generator.js +0 -188
  161. package/src/mysql/mysql-db.js +0 -320
  162. package/src/mysql/schema-introspector.js +0 -158
  163. package/src/record.js +0 -127
  164. package/src/relationships.js +0 -43
  165. package/src/serializer.js +0 -138
  166. package/src/store.js +0 -211
  167. package/src/transforms.js +0 -20
  168. package/src/utils.js +0 -12
  169. package/test-events-setup.js +0 -41
  170. package/test-hooks-manual.js +0 -54
  171. package/test-hooks-with-logging.js +0 -52
package/src/main.ts ADDED
@@ -0,0 +1,229 @@
1
+ /*
2
+ * Copyright 2025 Stone Costa
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ import DB from './db.js';
18
+ import config from 'stonyx/config';
19
+ import log from 'stonyx/log';
20
+ import { forEachFileImport } from '@stonyx/utils/file';
21
+ import { kebabCaseToPascalCase, pluralize } from '@stonyx/utils/string';
22
+ import { registerPluralName } from './plural-registry.js';
23
+ import setupRestServer from './setup-rest-server.js';
24
+ import baseTransforms from './transforms.js';
25
+ import Store from './store.js';
26
+ import Serializer from './serializer.js';
27
+ import { setup } from '@stonyx/events';
28
+
29
+ interface OrmOptions {
30
+ dbType?: string;
31
+ }
32
+
33
+ export interface SqlDb {
34
+ init(): Promise<unknown>;
35
+ startup(): Promise<void>;
36
+ shutdown(): Promise<void>;
37
+ persist(operation: string, model: string, context: unknown, response: unknown): Promise<void>;
38
+ findRecord(modelName: string, id: unknown): Promise<unknown>;
39
+ findAll(modelName: string, conditions?: Record<string, unknown>): Promise<unknown[]>;
40
+ }
41
+
42
+ export interface OrmDB {
43
+ record: unknown;
44
+ save(): Promise<void>;
45
+ init(): Promise<void>;
46
+ }
47
+
48
+ const defaultOptions: OrmOptions = {
49
+ dbType: 'json'
50
+ }
51
+
52
+ export default class Orm {
53
+ static initialized: boolean = false;
54
+ static relationships: Map<string, Map<string, unknown>> = new Map();
55
+ static store: Store = new Store();
56
+ static instance: Orm;
57
+ static ready: unknown[];
58
+
59
+ models: Record<string, unknown> = {};
60
+ serializers: Record<string, unknown> = {};
61
+ views: Record<string, unknown> = {};
62
+ transforms: Record<string, (value: unknown) => unknown> = { ...baseTransforms };
63
+ warnings: Set<string> = new Set();
64
+ options!: OrmOptions;
65
+ sqlDb?: SqlDb;
66
+ db?: OrmDB | SqlDb;
67
+
68
+ constructor(options: OrmOptions = {}) {
69
+ if (Orm.instance) return Orm.instance;
70
+
71
+ const { relationships } = Orm;
72
+
73
+ // Declare relationship maps
74
+ for (const key of ['hasMany', 'belongsTo', 'global', 'pending', 'pendingBelongsTo']) {
75
+ relationships.set(key, new Map());
76
+ }
77
+
78
+ this.options = { ...defaultOptions, ...options };
79
+
80
+ Orm.instance = this;
81
+ }
82
+
83
+ async init(): Promise<void> {
84
+ const { paths, restServer } = config.orm;
85
+
86
+ const promises: Promise<unknown>[] = ['Model', 'Serializer', 'Transform'].map(type => {
87
+ const lowerCaseType = type.toLowerCase();
88
+ const path = paths[lowerCaseType];
89
+
90
+ if (!path) throw new Error(`Configuration Error: ORM path for "${type}" must be defined.`);
91
+
92
+ return forEachFileImport(path, (exported: unknown, { name }: { name: string }) => {
93
+ // Transforms keep their original name, everything else gets converted to PascalCase with the type suffix
94
+ const alias = type === 'Transform' ? name : `${kebabCaseToPascalCase(name)}${type}`;
95
+
96
+ if (type === 'Model') {
97
+ Orm.store.set(name, new Map());
98
+ registerPluralName(name, exported as { pluralName?: string });
99
+ }
100
+
101
+ const collection = this[pluralize(lowerCaseType) as keyof this] as Record<string, unknown>;
102
+ return collection[alias] = exported;
103
+ }, { ignoreAccessFailure: true, rawName: true, recursive: true, recursiveNaming: true });
104
+ });
105
+
106
+ // Wait for imports before db & rest server setup
107
+ await Promise.all(promises);
108
+
109
+ // Discover views from paths.view (separate from model/serializer/transform)
110
+ if (paths.view) {
111
+ await forEachFileImport(paths.view, (exported: unknown, { name }: { name: string }) => {
112
+ const alias = `${kebabCaseToPascalCase(name)}View`;
113
+ Orm.store.set(name, new Map());
114
+ registerPluralName(name, exported as { pluralName?: string });
115
+ this.views[alias] = exported;
116
+ }, { ignoreAccessFailure: true, rawName: true, recursive: true, recursiveNaming: true });
117
+ }
118
+
119
+ // Setup event names for hooks after models are loaded
120
+ const eventNames: string[] = [];
121
+ const operations = ['list', 'get', 'create', 'update', 'delete'];
122
+ const viewOperations = ['list', 'get'];
123
+ const timings = ['before', 'after'];
124
+
125
+ for (const modelName of Orm.store.data.keys()) {
126
+ const isView = this.isView(modelName);
127
+ const ops = isView ? viewOperations : operations;
128
+
129
+ for (const timing of timings) {
130
+ for (const operation of ops) {
131
+ eventNames.push(`${timing}:${operation}:${modelName}`);
132
+ }
133
+ }
134
+ }
135
+
136
+ setup(eventNames);
137
+
138
+ if (config.orm.timescale) {
139
+ const { default: TimescaleDB } = await import('./timescale/timescale-db.js');
140
+ this.sqlDb = new TimescaleDB() as SqlDb;
141
+ this.db = this.sqlDb;
142
+ promises.push(this.sqlDb.init());
143
+ } else if (config.orm.postgres) {
144
+ const { default: PostgresDB } = await import('./postgres/postgres-db.js');
145
+ this.sqlDb = new PostgresDB() as SqlDb;
146
+ this.db = this.sqlDb;
147
+ promises.push(this.sqlDb.init());
148
+ } else if (config.orm.mysql) {
149
+ const { default: MysqlDB } = await import('./mysql/mysql-db.js');
150
+ this.sqlDb = new MysqlDB() as SqlDb;
151
+ this.db = this.sqlDb;
152
+ promises.push(this.sqlDb.init());
153
+ } else if (this.options.dbType !== 'none') {
154
+ const db = new DB();
155
+ this.db = db;
156
+
157
+ promises.push(db.init());
158
+ }
159
+
160
+ if (restServer.enabled === 'true') {
161
+ promises.push(setupRestServer(restServer.route, paths.access, restServer.metaRoute));
162
+ }
163
+
164
+ // Wire up memory resolver so store.find() can check model memory flags
165
+ Orm.store._memoryResolver = (modelName: string): boolean => {
166
+ const { modelClass } = this.getRecordClasses(modelName);
167
+ return (modelClass as { memory?: boolean })?.memory === true;
168
+ };
169
+
170
+ // Wire up SQL adapter reference for on-demand queries from store.find()/findAll()
171
+ if (this.sqlDb) {
172
+ Orm.store._sqlDb = this.sqlDb;
173
+ }
174
+
175
+ Orm.ready = await Promise.all(promises);
176
+ Orm.initialized = true;
177
+ }
178
+
179
+ async startup(): Promise<void> {
180
+ if (this.sqlDb) await this.sqlDb.startup();
181
+ }
182
+
183
+ async shutdown(): Promise<void> {
184
+ if (this.sqlDb) await this.sqlDb.shutdown();
185
+ }
186
+
187
+ static get db(): OrmDB | SqlDb {
188
+ if (!Orm.initialized) throw new Error('ORM has not been initialized yet');
189
+
190
+ if (!Orm.instance.db) throw new Error('ORM database has not been initialized');
191
+ return Orm.instance.db;
192
+ }
193
+
194
+ getRecordClasses(modelName: string): { modelClass: unknown; serializerClass: unknown } {
195
+ const modelClassPrefix = kebabCaseToPascalCase(modelName);
196
+
197
+ // Check views first, then models
198
+ const viewClass = this.views[`${modelClassPrefix}View`];
199
+ if (viewClass) {
200
+ return {
201
+ modelClass: viewClass,
202
+ serializerClass: this.serializers[`${modelClassPrefix}Serializer`] || Serializer
203
+ };
204
+ }
205
+
206
+ return {
207
+ modelClass: this.models[`${modelClassPrefix}Model`],
208
+ serializerClass: this.serializers[`${modelClassPrefix}Serializer`] || Serializer
209
+ };
210
+ }
211
+
212
+ isView(modelName: string): boolean {
213
+ const modelClassPrefix = kebabCaseToPascalCase(modelName);
214
+ return !!this.views[`${modelClassPrefix}View`];
215
+ }
216
+
217
+ // Queue warnings to avoid the same error from being logged in the same iteration
218
+ warn(message: string): void {
219
+ this.warnings.add(message);
220
+
221
+ setTimeout(() => {
222
+ this.warnings.forEach(warning => log.warn?.(warning));
223
+ this.warnings.clear();
224
+ }, 0);
225
+ }
226
+ }
227
+
228
+ export const store = Orm.store;
229
+ export const relationships = Orm.relationships;
@@ -0,0 +1,161 @@
1
+ import Orm, { store } from '@stonyx/orm';
2
+ import OrmRecord from './record.js';
3
+ import { getGlobalRegistry, getPendingRegistry, getPendingBelongsToRegistry, getBelongsToRegistry, getHasManyRegistry } from './relationships.js';
4
+ import type Serializer from './serializer.js';
5
+ import { isOrmRecord } from './utils.js';
6
+
7
+ interface CreateRecordOptions {
8
+ isDbRecord?: boolean;
9
+ serialize?: boolean;
10
+ transform?: boolean;
11
+ update?: boolean;
12
+ [key: string]: unknown;
13
+ }
14
+
15
+ interface PendingBelongsToEntry {
16
+ sourceRecord: OrmRecord;
17
+ sourceModelName: string;
18
+ relationshipKey: string;
19
+ relationshipId: unknown;
20
+ }
21
+
22
+ const defaultOptions: CreateRecordOptions = {
23
+ isDbRecord: false,
24
+ serialize: true,
25
+ transform: true
26
+ };
27
+
28
+ export function createRecord(modelName: string, rawData: { [key: string]: unknown } = {}, userOptions: CreateRecordOptions = {}): OrmRecord {
29
+ const orm = Orm.instance;
30
+ const { initialized } = Orm;
31
+ const options = { ...defaultOptions, ...userOptions };
32
+
33
+ if (!initialized && !options.isDbRecord) throw new Error('ORM is not ready');
34
+
35
+ // Guard: read-only views cannot have records created directly
36
+ if (orm?.isView?.(modelName) && !options.isDbRecord) {
37
+ throw new Error(`Cannot create records for read-only view '${modelName}'`);
38
+ }
39
+
40
+ const modelStore = store.get(modelName);
41
+ const globalRelationships = getGlobalRegistry();
42
+ const pendingRelationships = getPendingRegistry();
43
+
44
+ if (!modelStore) throw new Error(`Model store for '${modelName}' is not registered. Ensure the model is defined before creating records.`);
45
+
46
+ assignRecordId(modelName, rawData);
47
+ const existingRecord = modelStore.get(rawData.id as number | string);
48
+
49
+ if (existingRecord instanceof OrmRecord) {
50
+ // Update the existing record with new data so the last entry wins
51
+ updateRecord(existingRecord, rawData, { ...options, update: true });
52
+ return existingRecord;
53
+ }
54
+
55
+ const recordClasses = orm.getRecordClasses(modelName);
56
+ const modelClass = recordClasses.modelClass as (new (name: string) => { __name: string; [key: string]: unknown }) | undefined;
57
+ const serializerClass = recordClasses.serializerClass as new (model: { [key: string]: unknown }) => Serializer;
58
+
59
+ if (!modelClass) throw new Error(`A model named '${modelName}' does not exist`);
60
+
61
+ const model = new modelClass(modelName);
62
+ const serializer = new serializerClass(model);
63
+ const record = new OrmRecord(model, serializer);
64
+
65
+ record.serialize(rawData, options);
66
+ modelStore.set(record.id as number | string, record);
67
+
68
+ // populate global hasMany relationships
69
+ const globalHasMany = globalRelationships.get(modelName);
70
+ if (globalHasMany) for (const relationship of globalHasMany) relationship.push(record);
71
+
72
+ // populate pending hasMany relationships and clear the queue
73
+ const pendingHasMany = pendingRelationships.get(modelName)?.get(record.id);
74
+ if (pendingHasMany) {
75
+ for (const relationship of pendingHasMany) relationship.push(record);
76
+ pendingHasMany.splice(0);
77
+ }
78
+
79
+ // Fulfill pending belongsTo relationships
80
+ const pendingBelongsToQueue = getPendingBelongsToRegistry();
81
+ const pendingBelongsToRaw = pendingBelongsToQueue.get(modelName)?.get(record.id);
82
+ const pendingBelongsTo = Array.isArray(pendingBelongsToRaw) ? pendingBelongsToRaw as PendingBelongsToEntry[] : undefined;
83
+
84
+ if (pendingBelongsTo) {
85
+ const belongsToReg = getBelongsToRegistry();
86
+ const hasManyReg = getHasManyRegistry();
87
+
88
+ for (const { sourceRecord, sourceModelName, relationshipKey, relationshipId } of pendingBelongsTo) {
89
+ // Update the belongsTo relationship on the source record
90
+ sourceRecord.__relationships[relationshipKey] = record;
91
+ sourceRecord[relationshipKey] = record; // Also update the direct property
92
+
93
+ // Update the belongsTo relationship registry
94
+ const sourceModelReg = belongsToReg.get(sourceModelName);
95
+ if (sourceModelReg) {
96
+ const targetModelReg = sourceModelReg.get(modelName);
97
+ if (targetModelReg) {
98
+ targetModelReg.set(relationshipId, record);
99
+ }
100
+ }
101
+
102
+ // Wire inverse hasMany if it exists
103
+ const inverseHasMany = hasManyReg.get(modelName)?.get(sourceModelName)?.get(record.id);
104
+
105
+ if (inverseHasMany && !inverseHasMany.includes(sourceRecord)) {
106
+ inverseHasMany.push(sourceRecord);
107
+ }
108
+ }
109
+
110
+ // Clear the pending queue
111
+ pendingBelongsTo.length = 0;
112
+ }
113
+
114
+ return record;
115
+ }
116
+
117
+ export function updateRecord(record: OrmRecord, rawData: unknown, userOptions: CreateRecordOptions = {}): void {
118
+ if (!rawData) throw new Error('rawData must be passed in to updateRecord call');
119
+
120
+ // Guard: read-only views cannot be updated
121
+ const modelName = record?.__model?.__name;
122
+ if (modelName && Orm.instance?.isView?.(modelName)) {
123
+ throw new Error(`Cannot update records for read-only view '${modelName}'`);
124
+ }
125
+
126
+ const options = { ...defaultOptions, ...userOptions, update: true };
127
+
128
+ record.serialize(rawData, options);
129
+ }
130
+
131
+ /**
132
+ * gets the next available id based on last record entry.
133
+ *
134
+ * In MySQL mode with numeric IDs, assigns a temporary pending ID.
135
+ * MySQL's AUTO_INCREMENT provides the real ID after INSERT.
136
+ */
137
+ function assignRecordId(modelName: string, rawData: { [key: string]: unknown }): void {
138
+ if (rawData.id) return;
139
+
140
+ // In SQL mode with numeric IDs, defer to database auto-increment
141
+ if (Orm.instance?.sqlDb && !isStringIdModel(modelName)) {
142
+ rawData.id = `__pending_${Date.now()}_${Math.random()}`;
143
+ rawData.__pendingSqlId = true;
144
+ return;
145
+ }
146
+
147
+ const storeMap = store.get(modelName);
148
+ if (!storeMap) throw new Error(`Cannot assign record ID: model "${modelName}" not found in store`);
149
+ const modelStore = Array.from(storeMap.values()).filter(isOrmRecord);
150
+ const lastRecord = modelStore.at(-1);
151
+ rawData.id = lastRecord ? (lastRecord.id as number) + 1 : 1;
152
+ }
153
+
154
+ function isStringIdModel(modelName: string): boolean {
155
+ const modelClass = Orm.instance.getRecordClasses(modelName).modelClass as (new (name: string) => { [key: string]: unknown }) | undefined;
156
+ if (!modelClass) return false;
157
+
158
+ const model = new modelClass(modelName);
159
+
160
+ return (model.id as { type?: string } | undefined)?.type === 'string';
161
+ }
@@ -1,37 +1,40 @@
1
1
  import { Request } from '@stonyx/rest-server';
2
+ import ModelProperty from './model-property.js';
2
3
  import Orm from '@stonyx/orm';
3
4
  import config from 'stonyx/config';
4
5
  import { dbKey } from './db.js';
5
6
 
6
7
  export default class MetaRequest extends Request {
7
- constructor() {
8
- super(...arguments);
9
-
8
+ handlers: Record<string, unknown>;
9
+
10
+ constructor(...args: unknown[]) {
11
+ super(...args);
12
+
10
13
  this.handlers = {
11
14
  get: {
12
15
  '/meta': () => {
13
16
  try {
14
- const { models } = Orm.instance;
15
- const metadata = {};
17
+ const { models } = Orm.instance as Orm;
18
+ const metadata: Record<string, Record<string, unknown>> = {};
16
19
 
17
20
  for (const [modelName, modelClass] of Object.entries(models)) {
18
21
  const name = modelName.slice(0, -5).toLowerCase();
19
22
 
20
23
  if (name === dbKey) continue;
21
24
 
22
- const model = new modelClass(modelName);
23
- const properties = {};
25
+ const model = new (modelClass as new (name: string) => Record<string, unknown>)(modelName);
26
+ const properties: Record<string, unknown> = {};
24
27
 
25
28
  // Get regular properties and relationships
26
29
  for (const [key, property] of Object.entries(model)) {
27
30
  // Skip internal properties
28
31
  if (key.startsWith('__')) continue;
29
32
 
30
- if (property?.constructor?.name === 'ModelProperty') {
31
- properties[key] = { type: property.type };
33
+ if (property instanceof ModelProperty) {
34
+ properties[key] = { type: (property as { type: string }).type };
32
35
  } else if (typeof property === 'function') {
33
- const isBelongsTo = property.toString().includes(`getRelationships('belongsTo',`);
34
- const isHasMany = property.toString().includes(`getRelationships('hasMany',`);
36
+ const isBelongsTo = (property as { __relationshipType?: string }).__relationshipType === 'belongsTo';
37
+ const isHasMany = (property as { __relationshipType?: string }).__relationshipType === 'hasMany';
35
38
 
36
39
  if (isBelongsTo || isHasMany) properties[key] = { [isBelongsTo ? 'belongsTo' : 'hasMany']: name };
37
40
  }
@@ -40,16 +43,16 @@ export default class MetaRequest extends Request {
40
43
  metadata[name] = properties;
41
44
  }
42
45
 
43
- return metadata;
46
+ return metadata;
44
47
  } catch (error) {
45
- return { error: error.message };
48
+ return { error: error instanceof Error ? error.message : String(error) };
46
49
  }
47
50
  },
48
51
  },
49
52
  }
50
53
  }
51
54
 
52
- auth() {
55
+ auth(): number | undefined {
53
56
  if (!config.orm.restServer.metaRoute) return 403;
54
57
  }
55
58
  }
@@ -4,10 +4,10 @@ import { createFile, createDirectory, readFile, updateFile, deleteDirectory } fr
4
4
  import { dbKey } from './db.js';
5
5
  import path from 'path';
6
6
 
7
- function getCollectionKeys() {
8
- const SchemaClass = Orm.instance.models[`${dbKey}Model`];
7
+ function getCollectionKeys(): string[] {
8
+ const SchemaClass = (Orm.instance as Orm).models[`${dbKey}Model`] as new () => Record<string, unknown>;
9
9
  const instance = new SchemaClass();
10
- const keys = [];
10
+ const keys: string[] = [];
11
11
 
12
12
  for (const key of Object.keys(instance)) {
13
13
  if (key === '__name' || key === 'id') continue;
@@ -17,7 +17,7 @@ function getCollectionKeys() {
17
17
  return keys;
18
18
  }
19
19
 
20
- function getDirPath() {
20
+ function getDirPath(): string {
21
21
  const { rootPath } = config;
22
22
  const { file, directory } = config.orm.db;
23
23
  const dbDir = path.dirname(path.resolve(`${rootPath}/${file}`));
@@ -25,7 +25,7 @@ function getDirPath() {
25
25
  return path.join(dbDir, directory);
26
26
  }
27
27
 
28
- export async function fileToDirectory() {
28
+ export async function fileToDirectory(): Promise<void> {
29
29
  const { rootPath } = config;
30
30
  const { file } = config.orm.db;
31
31
  const dbFilePath = path.resolve(`${rootPath}/${file}`);
@@ -33,7 +33,7 @@ export async function fileToDirectory() {
33
33
  const dirPath = getDirPath();
34
34
 
35
35
  // Read full data from db.json
36
- const data = await readFile(dbFilePath, { json: true });
36
+ const data = await readFile(dbFilePath, { json: true }) as Record<string, unknown[]>;
37
37
 
38
38
  // Create directory and write each collection
39
39
  await createDirectory(dirPath);
@@ -43,13 +43,13 @@ export async function fileToDirectory() {
43
43
  ));
44
44
 
45
45
  // Overwrite db.json with empty-array skeleton
46
- const skeleton = {};
46
+ const skeleton: Record<string, unknown[]> = {};
47
47
  for (const key of collectionKeys) skeleton[key] = [];
48
48
 
49
49
  await updateFile(dbFilePath, skeleton, { json: true });
50
50
  }
51
51
 
52
- export async function directoryToFile() {
52
+ export async function directoryToFile(): Promise<void> {
53
53
  const { rootPath } = config;
54
54
  const { file } = config.orm.db;
55
55
  const dbFilePath = path.resolve(`${rootPath}/${file}`);
@@ -57,7 +57,7 @@ export async function directoryToFile() {
57
57
  const dirPath = getDirPath();
58
58
 
59
59
  // Read each collection from the directory
60
- const assembled = {};
60
+ const assembled: Record<string, unknown> = {};
61
61
 
62
62
  await Promise.all(collectionKeys.map(async key => {
63
63
  const filePath = path.join(dirPath, `${key}.json`);
@@ -0,0 +1,35 @@
1
+ import Orm from '@stonyx/orm';
2
+
3
+ function validType(type: string): boolean {
4
+ return Object.keys(Orm.instance.transforms).includes(type);
5
+ }
6
+
7
+ export default class ModelProperty {
8
+ readonly __kind = 'ModelProperty' as const;
9
+ type: string;
10
+ private _value: unknown;
11
+ ignoreFirstTransform?: boolean;
12
+
13
+ constructor(type: string = 'passthrough', defaultValue?: unknown) {
14
+ if (!validType(type)) throw new Error(`Invalid model property type: ${type}`);
15
+
16
+ this.type = type;
17
+ this.value = defaultValue;
18
+ }
19
+
20
+ get value(): unknown {
21
+ return this._value;
22
+ }
23
+
24
+ set value(newValue: unknown) {
25
+ if (this.ignoreFirstTransform) {
26
+ delete this.ignoreFirstTransform;
27
+ this._value = newValue;
28
+ return;
29
+ }
30
+
31
+ if (newValue === undefined) return;
32
+
33
+ this._value = newValue === null ? null : Orm.instance.transforms[this.type](newValue);
34
+ }
35
+ }
package/src/model.ts ADDED
@@ -0,0 +1,21 @@
1
+ import attr from './attr.js';
2
+
3
+ export default class Model {
4
+ /**
5
+ * Controls whether records of this model are loaded into memory on startup.
6
+ *
7
+ * - true → loaded on boot, kept in store
8
+ * - false → never cached; find() always queries MySQL (default)
9
+ *
10
+ * Override in subclass: static memory = true;
11
+ */
12
+ static memory: boolean = false;
13
+ static pluralName: string | undefined = undefined;
14
+
15
+ id = attr('number');
16
+ __name: string;
17
+
18
+ constructor(name: string) {
19
+ this.__name = name;
20
+ }
21
+ }
@@ -1,28 +1,43 @@
1
- let pool = null;
2
-
3
- export async function getPool(mysqlConfig) {
4
- if (pool) return pool;
5
-
6
- const mysql = await import('mysql2/promise');
7
-
8
- pool = mysql.createPool({
9
- host: mysqlConfig.host,
10
- port: mysqlConfig.port,
11
- user: mysqlConfig.user,
12
- password: mysqlConfig.password,
13
- database: mysqlConfig.database,
14
- connectionLimit: mysqlConfig.connectionLimit,
15
- waitForConnections: true,
16
- enableKeepAlive: true,
17
- keepAliveInitialDelay: 10000,
18
- });
19
-
20
- return pool;
21
- }
22
-
23
- export async function closePool() {
24
- if (!pool) return;
25
-
26
- await pool.end();
27
- pool = null;
28
- }
1
+ import type { Pool } from 'mysql2/promise';
2
+
3
+ interface MysqlConfig {
4
+ host: string;
5
+ port?: number;
6
+ user: string;
7
+ password: string;
8
+ database: string;
9
+ connectionLimit?: number;
10
+ migrationsTable?: string;
11
+ migrationsDir?: string;
12
+ }
13
+
14
+ let pool: Pool | null = null;
15
+
16
+ export async function getPool(mysqlConfig: MysqlConfig): Promise<Pool> {
17
+ if (pool) return pool;
18
+
19
+ const mysql = await import('mysql2/promise');
20
+
21
+ pool = mysql.createPool({
22
+ host: mysqlConfig.host,
23
+ port: mysqlConfig.port,
24
+ user: mysqlConfig.user,
25
+ password: mysqlConfig.password,
26
+ database: mysqlConfig.database,
27
+ connectionLimit: mysqlConfig.connectionLimit,
28
+ waitForConnections: true,
29
+ enableKeepAlive: true,
30
+ keepAliveInitialDelay: 10000,
31
+ });
32
+
33
+ return pool;
34
+ }
35
+
36
+ export async function closePool(): Promise<void> {
37
+ if (!pool) return;
38
+
39
+ await pool.end();
40
+ pool = null;
41
+ }
42
+
43
+ export type { MysqlConfig };