@creator.co/creatorco-prisma-client 1.0.24-alpha-ab9f46d → 1.0.24-alpha-273a26f

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-ab9f46d",
76
+ "version": "1.0.24-alpha-273a26f",
77
77
  "sideEffects": false,
78
78
  "description": "Prisma client for creatorco Database"
79
79
  }
package/schema.prisma CHANGED
@@ -297,7 +297,6 @@ model BrandUserProfile {
297
297
  id Int @id @default(autoincrement())
298
298
  userId Int
299
299
  brandId Int
300
- agencyPrivileges Boolean @default(false)
301
300
 
302
301
  user User @relation(fields: [userId], references: [id], onDelete: Cascade)
303
302
  brand Brand @relation(fields: [brandId], references: [id], onDelete: Cascade)
@@ -828,7 +827,6 @@ model Country {
828
827
  id Int @id @default(autoincrement())
829
828
  countryCode String @unique @db.VarChar(2)
830
829
  countryName String @db.VarChar(500)
831
- teleCode String @db.VarChar(10)
832
830
  states State[]
833
831
 
834
832
  campaigns CampaignToCountry[]
package/wasm.js CHANGED
@@ -299,8 +299,7 @@ exports.Prisma.TwitterProfileScalarFieldEnum = {
299
299
  exports.Prisma.BrandUserProfileScalarFieldEnum = {
300
300
  id: 'id',
301
301
  userId: 'userId',
302
- brandId: 'brandId',
303
- agencyPrivileges: 'agencyPrivileges'
302
+ brandId: 'brandId'
304
303
  };
305
304
 
306
305
  exports.Prisma.BrandScalarFieldEnum = {
@@ -600,8 +599,7 @@ exports.Prisma.BrandImageScalarFieldEnum = {
600
599
  exports.Prisma.CountryScalarFieldEnum = {
601
600
  id: 'id',
602
601
  countryCode: 'countryCode',
603
- countryName: 'countryName',
604
- teleCode: 'teleCode'
602
+ countryName: 'countryName'
605
603
  };
606
604
 
607
605
  exports.Prisma.StateScalarFieldEnum = {
@@ -1115,8 +1113,7 @@ exports.Prisma.BrandImageOrderByRelevanceFieldEnum = {
1115
1113
 
1116
1114
  exports.Prisma.CountryOrderByRelevanceFieldEnum = {
1117
1115
  countryCode: 'countryCode',
1118
- countryName: 'countryName',
1119
- teleCode: 'teleCode'
1116
+ countryName: 'countryName'
1120
1117
  };
1121
1118
 
1122
1119
  exports.Prisma.StateOrderByRelevanceFieldEnum = {