@decaf-ts/core 0.5.43 → 0.5.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts CHANGED
@@ -12,7 +12,6 @@ export * from "./interfaces";
12
12
  export * from "./model";
13
13
  export * from "./query";
14
14
  export * from "./utils";
15
- export * from "./ram/RamAdapter";
16
15
  export * from "./persistence";
17
16
  /**
18
17
  * @description Stores the current package version
@@ -20,7 +19,7 @@ export * from "./persistence";
20
19
  * @const VERSION
21
20
  * @memberOf module:core
22
21
  */
23
- export declare const VERSION = "0.5.42";
22
+ export declare const VERSION = "0.5.44";
24
23
  /**
25
24
  * @description Stores the current package version
26
25
  * @summary A constant representing the version of the core package
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;;;;;;;;;;;;;;;AAEH,8DAA+D;AAC/D,2EAA8D;AAC9D,qDAAgD;AAEhD,kFAAkF;AAClF,mCAAW,CAAC,WAAW,CAAC,IAAI,iCAAmB,EAAE,CAAC,CAAC;AAEnD,4BAA4B;AAC5B,wDAA4B;AAC5B,yDAA6B;AAE7B,uDAA2B;AAC3B,yDAA6B;AAC7B,oDAAwB;AACxB,oDAAwB;AACxB,oDAAwB;AACxB,uDAAiC;AACjC,yBAAyB;AACzB,0DAA8B;AAE9B;;;;;GAKG;AACU,QAAA,OAAO,GAAG,aAAa,CAAC;AAErC;;;;;GAKG;AACU,QAAA,YAAY,GAAG,aAAa,CAAC;AAE1C,qBAAQ,CAAC,eAAe,CAAC,oBAAY,EAAE,eAAO,CAAC,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG;;;;;;;;;;;;;;;;;AAEH,8DAA+D;AAC/D,2EAA8D;AAC9D,qDAAgD;AAEhD,kFAAkF;AAClF,mCAAW,CAAC,WAAW,CAAC,IAAI,iCAAmB,EAAE,CAAC,CAAC;AAEnD,4BAA4B;AAC5B,wDAA4B;AAC5B,yDAA6B;AAE7B,uDAA2B;AAC3B,yDAA6B;AAC7B,oDAAwB;AACxB,oDAAwB;AACxB,oDAAwB;AACxB,yBAAyB;AACzB,0DAA8B;AAE9B;;;;;GAKG;AACU,QAAA,OAAO,GAAG,aAAa,CAAC;AAErC;;;;;GAKG;AACU,QAAA,YAAY,GAAG,aAAa,CAAC;AAE1C,qBAAQ,CAAC,eAAe,CAAC,oBAAY,EAAE,eAAO,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,16 +1,18 @@
1
1
  {
2
2
  "name": "@decaf-ts/core",
3
- "version": "0.5.43",
3
+ "version": "0.5.45",
4
4
  "description": "Core persistence module for the decaf framework",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {
8
8
  "require": "./lib/index.cjs",
9
- "import": "./lib/esm/index.js"
9
+ "import": "./lib/esm/index.js",
10
+ "types": "./lib/index.d.ts"
10
11
  },
11
12
  "./ram": {
12
13
  "require": "./lib/ram/index.cjs",
13
- "import": "./lib/esm/ram/index.js"
14
+ "import": "./lib/esm/ram/index.js",
15
+ "types": "./lib/esm/index.d.ts"
14
16
  }
15
17
  },
16
18
  "types": "lib/index.d.ts",
@@ -80,39 +82,13 @@
80
82
  },
81
83
  "homepage": "https://github.com/decaf-ts/core#readme",
82
84
  "devDependencies": {
83
- "@decaf-ts/utils": "latest",
84
- "@eslint/js": "^9.25.1",
85
- "@stylistic/eslint-plugin": "^4.2.0",
86
- "@types/jest": "^29.5.14",
87
- "clean-publish": "^5.1.0",
88
- "dpdm": "^3.14.0",
89
- "eslint": "^9.25.1",
90
- "eslint-config-prettier": "^10.1.2",
91
- "eslint-plugin-prettier": "^5.2.6",
92
- "globals": "^16.0.0",
93
- "jest": "^29.7.0",
94
- "jest-html-reporters": "^3.1.7",
95
- "jest-junit": "^16.0.0",
96
- "jsdoc": "^4.0.4",
97
- "jsdoc-mermaid": "^1.0.0",
98
- "markdown-include": "^0.4.3",
99
- "minimist": "^1.2.8",
100
- "nodemon": "^3.1.9",
101
- "npm-check-updates": "^18.0.0",
102
- "prettier": "3.5.3",
103
- "rimraf": "^6.0.1",
104
- "ts-jest": "^29.3.2",
105
- "ts-loader": "^9.5.2",
106
- "ts-node": "^10.9.2",
107
- "typescript": "^5.8.3",
108
- "typescript-eslint": "^8.31.0"
85
+ "@decaf-ts/utils": "latest"
109
86
  },
110
87
  "peerDependencies": {
111
88
  "@decaf-ts/db-decorators": "latest",
112
89
  "@decaf-ts/decoration": "latest",
113
90
  "@decaf-ts/decorator-validation": "latest",
114
91
  "@decaf-ts/injectable-decorators": "latest",
115
- "@decaf-ts/logging": "latest",
116
92
  "@decaf-ts/reflection": "latest",
117
93
  "@decaf-ts/transactional-decorators": "latest",
118
94
  "reflect-metadata": "^0.2.1"