corebasic 1.0.250 → 1.0.251

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.
@@ -17,6 +17,7 @@ g_this.Types ??= { Remotes: {} };
17
17
  // ================
18
18
  function init(partial) {
19
19
  return {
20
+ _id: "",
20
21
  created: 0,
21
22
  updated: 0,
22
23
  createdBy: "",
package/libs/schemas.ts CHANGED
@@ -14,6 +14,7 @@ g_this.Types ??= {Remotes: {}};
14
14
 
15
15
  function init(partial?: Partial<DefaultSchema>): DefaultSchema {
16
16
  return {
17
+ _id: "",
17
18
  created: 0,
18
19
  updated: 0,
19
20
  createdBy: "",
@@ -27,6 +28,7 @@ function init(partial?: Partial<DefaultSchema>): DefaultSchema {
27
28
  }
28
29
  declare global {
29
30
  type DefaultSchema = {
31
+ _id: string
30
32
  created: number
31
33
  updated: number
32
34
  createdBy: string
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "corebasic",
3
3
  "type": "module",
4
- "version": "1.0.250",
4
+ "version": "1.0.251",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
7
7
  "types": "./index.ts",