@creator.co/creatorco-prisma-client 1.0.38 → 1.0.39-alpha-0fc3e98

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
@@ -79,7 +79,7 @@
79
79
  },
80
80
  "./*": "./*"
81
81
  },
82
- "version": "1.0.38",
82
+ "version": "1.0.39-alpha-0fc3e98",
83
83
  "sideEffects": false,
84
84
  "description": "Prisma client for creatorco Database"
85
85
  }
package/schema.prisma CHANGED
@@ -822,10 +822,9 @@ model OptInVariable {
822
822
 
823
823
  model SocialPost {
824
824
  id Int @id @default(autoincrement())
825
- externalId String? @map("external_id") // TODO: This should be required once all of the posts have been updated
825
+ externalId String @map("external_id")
826
826
  phylloId String? @unique
827
827
  metaData Json @default("{}")
828
- data Json @default("{}") // DEPRECATED, USE metaData instead, seems to be an error when attempting to remove this field, proabably due to table size
829
828
  lastFetched DateTime?
830
829
  lastWebhook DateTime?
831
830
 
@@ -834,7 +833,6 @@ model SocialPost {
834
833
  title String? @db.Text
835
834
  description String? @db.Text
836
835
  url String? @db.VarChar(2083)
837
- urlPath String? @unique // DEPRECATED: This is here so we have some external identifier to quickly search by
838
836
  format String?
839
837
  type String?
840
838
  platform String?
package/wasm.js CHANGED
@@ -587,14 +587,12 @@ exports.Prisma.SocialPostScalarFieldEnum = {
587
587
  externalId: 'externalId',
588
588
  phylloId: 'phylloId',
589
589
  metaData: 'metaData',
590
- data: 'data',
591
590
  lastFetched: 'lastFetched',
592
591
  lastWebhook: 'lastWebhook',
593
592
  posted: 'posted',
594
593
  title: 'title',
595
594
  description: 'description',
596
595
  url: 'url',
597
- urlPath: 'urlPath',
598
596
  format: 'format',
599
597
  type: 'type',
600
598
  platform: 'platform',
@@ -1180,7 +1178,6 @@ exports.Prisma.SocialPostOrderByRelevanceFieldEnum = {
1180
1178
  title: 'title',
1181
1179
  description: 'description',
1182
1180
  url: 'url',
1183
- urlPath: 'urlPath',
1184
1181
  format: 'format',
1185
1182
  type: 'type',
1186
1183
  platform: 'platform',