@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/edge.js +6 -5
- package/index-browser.js +2 -1
- package/index.d.ts +71 -32
- package/index.js +6 -5
- package/package.json +1 -1
- package/schema.prisma +2 -0
- package/wasm.js +2 -1
package/package.json
CHANGED
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 = {
|