@creator.co/creatorco-prisma-client 1.0.27-alpha-070bac6 → 1.0.27-alpha-2e714b4

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.27-alpha-070bac6",
76
+ "version": "1.0.27-alpha-2e714b4",
77
77
  "sideEffects": false,
78
78
  "description": "Prisma client for creatorco Database"
79
79
  }
package/schema.prisma CHANGED
@@ -754,7 +754,7 @@ model OptInVariable {
754
754
 
755
755
  model SocialPost {
756
756
  id Int @id @default(autoincrement())
757
- externalId Int? @map("external_id")// TODO: This should be required once all of the posts have been updated
757
+ externalId String? @map("external_id")// TODO: This should be required once all of the posts have been updated
758
758
  phylloId String? @unique
759
759
  metaData Json @default("{}")
760
760
  data Json @default("{}") // DEPRECATED, USE metaData instead, seems to be an error when attempting to remove this field, proabably due to table size
package/wasm.js CHANGED
@@ -1095,6 +1095,7 @@ exports.Prisma.TrolleyPaymentOrderByRelevanceFieldEnum = {
1095
1095
  };
1096
1096
 
1097
1097
  exports.Prisma.SocialPostOrderByRelevanceFieldEnum = {
1098
+ externalId: 'externalId',
1098
1099
  phylloId: 'phylloId',
1099
1100
  title: 'title',
1100
1101
  description: 'description',