@creator.co/creatorco-prisma-client 1.0.50-alpha-283f6cb → 1.0.50-alpha-73636ce

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
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "./*": "./*"
81
81
  },
82
- "version": "1.0.50-alpha-283f6cb",
82
+ "version": "1.0.50-alpha-73636ce",
83
83
  "sideEffects": false,
84
84
  "description": "Prisma client for creatorco Database"
85
85
  }
package/schema.prisma CHANGED
@@ -29,6 +29,7 @@ datasource db {
29
29
 
30
30
  model User {
31
31
  id Int @id @default(autoincrement())
32
+ idmId String? @unique @map("idm_id")
32
33
  role String
33
34
  email String? @unique
34
35
  password String?
package/wasm.js CHANGED
@@ -121,6 +121,7 @@ exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
121
121
 
122
122
  exports.Prisma.UserScalarFieldEnum = {
123
123
  id: 'id',
124
+ idmId: 'idmId',
124
125
  role: 'role',
125
126
  email: 'email',
126
127
  password: 'password',
@@ -1041,6 +1042,7 @@ exports.Prisma.NullsOrder = {
1041
1042
  };
1042
1043
 
1043
1044
  exports.Prisma.UserOrderByRelevanceFieldEnum = {
1045
+ idmId: 'idmId',
1044
1046
  role: 'role',
1045
1047
  email: 'email',
1046
1048
  password: 'password',