@creator.co/creatorco-prisma-client 1.0.11 → 1.0.12
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 +19 -5
- package/index-browser.js +15 -1
- package/index.d.ts +1656 -2
- package/index.js +19 -5
- package/package.json +1 -1
- package/schema.prisma +12 -0
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -333,6 +333,7 @@ model Brand {
|
|
|
333
333
|
socialListeningLists SocialListeningList[]
|
|
334
334
|
campaignInvites CampaignInvite[]
|
|
335
335
|
images BrandToImage[]
|
|
336
|
+
creatorsearchfilter CreatorSearchFilter[]
|
|
336
337
|
|
|
337
338
|
// for agencies
|
|
338
339
|
parentBrandId Int?
|
|
@@ -1065,3 +1066,14 @@ model SlowQueries {
|
|
|
1065
1066
|
|
|
1066
1067
|
@@map("slow_queries")
|
|
1067
1068
|
}
|
|
1069
|
+
|
|
1070
|
+
model CreatorSearchFilter {
|
|
1071
|
+
id Int @id @default(autoincrement())
|
|
1072
|
+
brandId Int
|
|
1073
|
+
title String
|
|
1074
|
+
filters Json @default("{}")
|
|
1075
|
+
createdAt DateTime @default(now())
|
|
1076
|
+
updatedAt DateTime?
|
|
1077
|
+
brand Brand @relation(fields: [brandId], references: [id], onDelete: Cascade)
|
|
1078
|
+
@@map("creatorsearchfilter")
|
|
1079
|
+
}
|