@objectql/starter-basic 1.7.2 → 1.8.0

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/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 ObjectQL Contributors
3
+ Copyright (c) 2026 ObjectQL Contributors (https://github.com/objectql)
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -101,8 +101,10 @@ fields:
101
101
 
102
102
  # --- Media ---
103
103
  profile_pic:
104
- type: avatar
104
+ type: image
105
105
  label: Avatar
106
+ multiple: false
107
+ max_size: 1048576 # 1MB
106
108
 
107
109
  attachment:
108
110
  type: file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@objectql/starter-basic",
3
- "version": "1.7.2",
3
+ "version": "1.8.0",
4
4
  "license": "MIT",
5
5
  "author": "ObjectQL Contributors",
6
6
  "repository": {
@@ -16,23 +16,26 @@
16
16
  ],
17
17
  "peerDependencies": {
18
18
  "sqlite3": "^5.1.7",
19
- "@objectql/core": "1.7.2",
20
- "@objectql/driver-sql": "1.7.2",
21
- "@objectql/platform-node": "1.7.2",
22
- "@objectql/types": "1.7.2"
19
+ "@objectql/core": "1.8.0",
20
+ "@objectql/driver-sql": "1.8.0",
21
+ "@objectql/platform-node": "1.8.0",
22
+ "@objectql/types": "1.8.0"
23
23
  },
24
24
  "devDependencies": {
25
+ "@types/jest": "^30.0.0",
26
+ "jest": "^30.2.0",
27
+ "ts-jest": "^29.4.6",
25
28
  "typescript": "^5.3.0",
26
- "@objectql/cli": "1.7.2",
27
- "@objectql/core": "1.7.2",
28
- "@objectql/driver-sql": "1.7.2",
29
- "@objectql/platform-node": "1.7.2",
30
- "@objectql/types": "1.7.2"
29
+ "@objectql/cli": "1.8.0",
30
+ "@objectql/core": "1.8.0",
31
+ "@objectql/driver-sql": "1.8.0",
32
+ "@objectql/platform-node": "1.8.0",
33
+ "@objectql/types": "1.8.0"
31
34
  },
32
35
  "scripts": {
33
36
  "codegen": "objectql generate -s src -o src/types",
34
37
  "build": "npm run codegen && tsc && rsync -a --include '*/' --include '*.yml' --exclude '*' src/ dist/",
35
38
  "repl": "objectql repl",
36
- "test": "echo \"No tests specified\""
39
+ "test": "jest"
37
40
  }
38
41
  }