@neupgroup/mapper 1.4.2 → 1.4.3

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.
@@ -0,0 +1,3 @@
1
+ export declare const migrations: string[];
2
+ export declare const completed: never[];
3
+ export declare const currentVersion = -1;
@@ -0,0 +1,5 @@
1
+ export const migrations = [
2
+ '20260131_132407_users_initial schema'
3
+ ];
4
+ export const completed = [];
5
+ export const currentVersion = -1;
@@ -0,0 +1,8 @@
1
+ export declare const users: {
2
+ fields: never[];
3
+ insertableFields: never[];
4
+ updatableFields: never[];
5
+ massUpdateable: boolean;
6
+ massDeletable: boolean;
7
+ usesConnection: string;
8
+ };
@@ -0,0 +1,10 @@
1
+ export const users = {
2
+ fields: [
3
+ // { name: 'id', type: 'int', isPrimary: true, autoIncrement: true }
4
+ ],
5
+ insertableFields: [],
6
+ updatableFields: [],
7
+ massUpdateable: false,
8
+ massDeletable: false,
9
+ usesConnection: 'default' // Update this
10
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neupgroup/mapper",
3
- "version": "1.4.2",
3
+ "version": "1.4.3",
4
4
  "description": "Neup.Mapper core library for schema and mapping utilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -31,5 +31,11 @@
31
31
  "devDependencies": {
32
32
  "@types/node": "^24.10.1",
33
33
  "typescript": "^5.9.3"
34
+ },
35
+ "dependencies": {
36
+ "mongodb": "^7.0.0",
37
+ "mysql2": "^3.16.2",
38
+ "pg": "^8.18.0",
39
+ "sqlite3": "^5.1.7"
34
40
  }
35
41
  }