@vibeorm/generator 1.1.1 → 1.1.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vibeorm/generator",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "TypeScript client generator for VibeORM — produces typed delegates, inputs, and Zod schemas from a Prisma schema",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -37,6 +37,6 @@
37
37
  "bun": ">=1.1.0"
38
38
  },
39
39
  "dependencies": {
40
- "@vibeorm/parser": "1.1.1"
40
+ "@vibeorm/parser": "1.1.2"
41
41
  }
42
42
  }
@@ -90,6 +90,7 @@ function generateModelMeta(params: { schema: Schema }): string {
90
90
  const extras: string[] = [];
91
91
  if (isUpdatedAt) extras.push(`isUpdatedAt: true`);
92
92
  if (f.kind === "scalar") extras.push(`type: "${f.prismaType}"`);
93
+ if (f.isList) extras.push(`isList: true`);
93
94
 
94
95
  // Emit default kind for application-level generation (uuid, cuid, nanoid, ulid)
95
96
  if (f.default) {