@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/edge.js +5 -4
- package/index-browser.js +1 -0
- package/index.d.ts +34 -39
- package/index.js +5 -4
- package/package.json +1 -1
- package/schema.prisma +1 -1
- package/wasm.js +1 -0
package/package.json
CHANGED
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
|
|
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