@objectql/create 4.0.0 → 4.0.1
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/package.json +1 -1
- package/templates/enterprise/CHANGELOG.md +10 -0
- package/templates/enterprise/package.json +2 -2
- package/templates/enterprise/src/plugins/audit/audit.plugin.ts +1 -1
- package/templates/enterprise/tsconfig.tsbuildinfo +1 -1
- package/templates/hello-world/CHANGELOG.md +8 -0
- package/templates/hello-world/package.json +1 -1
- package/templates/starter/CHANGELOG.md +10 -0
- package/templates/starter/package.json +1 -1
- package/templates/starter/src/modules/projects/projects.action.ts +195 -346
- package/templates/starter/src/modules/projects/projects.hook.ts +98 -263
- package/templates/starter/src/seed.ts +1 -1
- package/templates/starter/tsconfig.tsbuildinfo +1 -1
- package/templates/enterprise/__tests__/data-api.test.ts +0 -554
- package/templates/enterprise/__tests__/data-api.test.ts.backup +0 -526
- package/templates/enterprise/__tests__/metadata-api.test.ts +0 -315
- package/templates/enterprise/__tests__/metadata-loading.test.ts +0 -258
- package/templates/starter/__tests__/projects-hooks-actions.test.ts +0 -498
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectql/example-enterprise-erp",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.1",
|
|
4
4
|
"description": "ObjectQL Enterprise Example - CRM & HR Demo",
|
|
5
5
|
"private": true,
|
|
6
6
|
"keywords": [
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@objectql/cli": "workspace:*",
|
|
44
44
|
"@objectql/driver-sql": "workspace:*",
|
|
45
45
|
"@objectql/platform-node": "workspace:*",
|
|
46
|
-
"@objectstack/spec": "^0.
|
|
46
|
+
"@objectstack/spec": "^0.3.1",
|
|
47
47
|
"@types/jest": "^30.0.0",
|
|
48
48
|
"@types/node": "^20.0.0",
|
|
49
49
|
"jest": "^30.2.0",
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* LICENSE file in the root directory of this source tree.
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
// Import RuntimePlugin types from @objectql/core instead of @
|
|
9
|
+
// Import RuntimePlugin types from @objectql/core instead of @objectql/runtime
|
|
10
10
|
// to avoid ESM/CJS compatibility issues
|
|
11
11
|
interface RuntimeContext {
|
|
12
12
|
engine: any; // ObjectStackKernel
|