@creator.co/creatorco-prisma-client 1.0.24-alpha-28b252a → 1.0.24-alpha-ab9f46d

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.24-alpha-28b252a",
76
+ "version": "1.0.24-alpha-ab9f46d",
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)
300
301
 
301
302
  user User @relation(fields: [userId], references: [id], onDelete: Cascade)
302
303
  brand Brand @relation(fields: [brandId], references: [id], onDelete: Cascade)
@@ -1241,6 +1242,7 @@ model ShopifyStore {
1241
1242
 
1242
1243
  brand Brand? @relation(fields: [brandId], references: [id], onDelete: Cascade)
1243
1244
 
1245
+ @@index([brandId])
1244
1246
  @@map("shopify_store")
1245
1247
  }
1246
1248
 
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 = {