@creator.co/creatorco-prisma-client 1.0.38-alpha-ecb61d8 → 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/edge.js +4 -7
- package/index-browser.js +0 -3
- package/index.d.ts +33 -116
- package/index.js +4 -7
- package/package.json +1 -1
- package/schema.prisma +1 -3
- package/wasm.js +0 -3
package/package.json
CHANGED
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
|
|
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',
|