@creator.co/creatorco-prisma-client 1.0.24-alpha-b01aec2 → 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-b01aec2",
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
@@ -464,7 +464,6 @@ model Campaign {
464
464
  status String @default("draft") // draft, paused, pending, private, publish, trash
465
465
  date DateTime @default(now())
466
466
  publishDate DateTime?
467
- sfSyncDate DateTime?
468
467
  description String? @db.Text
469
468
  productDescription String? @db.Text
470
469
  prizeDescription String? @db.Text
@@ -529,7 +528,6 @@ model Campaign {
529
528
  sequences Sequence[]
530
529
 
531
530
  @@index([brandId])
532
- @@index([sfSyncDate])
533
531
  @@map("campaign")
534
532
  }
535
533
 
@@ -829,7 +827,6 @@ model Country {
829
827
  id Int @id @default(autoincrement())
830
828
  countryCode String @unique @db.VarChar(2)
831
829
  countryName String @db.VarChar(500)
832
- teleCode String @db.VarChar(10)
833
830
  states State[]
834
831
 
835
832
  campaigns CampaignToCountry[]
package/wasm.js CHANGED
@@ -384,7 +384,6 @@ exports.Prisma.CampaignScalarFieldEnum = {
384
384
  status: 'status',
385
385
  date: 'date',
386
386
  publishDate: 'publishDate',
387
- sfSyncDate: 'sfSyncDate',
388
387
  description: 'description',
389
388
  productDescription: 'productDescription',
390
389
  prizeDescription: 'prizeDescription',
@@ -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 = {