@stacksjs/orm 0.70.16 → 0.70.17

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/dist/utils.d.ts CHANGED
@@ -19,4 +19,5 @@ export declare function getFillableAttributes(model: Model, otherModelRelations:
19
19
  declare function parseRule(rule: string): FieldArrayElement | null;
20
20
  export declare function mapEntity(attribute: ModelElement): string | undefined;
21
21
  export declare function findCoreModel(modelName: string): string;
22
- export declare function findUserModel(modelName: string): string;
22
+ export declare function findUserModel(modelName: string): string;
23
+ export declare function formatDate(date: Date): string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/orm",
3
3
  "type": "module",
4
- "version": "0.70.16",
4
+ "version": "0.70.17",
5
5
  "description": "The Stacks ORM integration",
6
6
  "author": "Chris Breuer",
7
7
  "contributors": ["Chris Breuer <chris@stacksjs.org>"],
@@ -34,10 +34,10 @@
34
34
  "prepublishOnly": "bun run build"
35
35
  },
36
36
  "devDependencies": {
37
- "@stacksjs/build": "0.70.11",
38
- "@stacksjs/config": "0.70.11",
39
- "@stacksjs/development": "0.70.11",
40
- "@stacksjs/query-builder": "0.70.11",
41
- "@stacksjs/types": "0.70.11"
37
+ "@stacksjs/build": "0.70.16",
38
+ "@stacksjs/config": "0.70.16",
39
+ "@stacksjs/development": "0.70.16",
40
+ "@stacksjs/query-builder": "0.70.16",
41
+ "@stacksjs/types": "0.70.16"
42
42
  }
43
43
  }