@creator.co/creatorco-prisma-client 1.0.25 → 1.0.26

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
@@ -73,7 +73,7 @@
73
73
  },
74
74
  "./*": "./*"
75
75
  },
76
- "version": "1.0.25",
76
+ "version": "1.0.26",
77
77
  "sideEffects": false,
78
78
  "description": "Prisma client for creatorco Database"
79
79
  }
package/schema.prisma CHANGED
@@ -297,6 +297,7 @@ model BrandUserProfile {
297
297
  id Int @id @default(autoincrement())
298
298
  userId Int
299
299
  brandId Int
300
+ agencyPrivileges Boolean @default(false) @map("agency_privileges")
300
301
 
301
302
  user User @relation(fields: [userId], references: [id], onDelete: Cascade)
302
303
  brand Brand @relation(fields: [brandId], references: [id], onDelete: Cascade)
package/wasm.js CHANGED
@@ -299,7 +299,8 @@ exports.Prisma.TwitterProfileScalarFieldEnum = {
299
299
  exports.Prisma.BrandUserProfileScalarFieldEnum = {
300
300
  id: 'id',
301
301
  userId: 'userId',
302
- brandId: 'brandId'
302
+ brandId: 'brandId',
303
+ agencyPrivileges: 'agencyPrivileges'
303
304
  };
304
305
 
305
306
  exports.Prisma.BrandScalarFieldEnum = {