@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/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 +1 -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) @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 = {
|