@creator.co/creatorco-prisma-client 1.0.70 → 1.0.72
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 -4
- package/index.d.ts +7 -1
- package/index.js +4 -4
- package/package.json +1 -1
- package/schema.prisma +1 -0
package/index.d.ts
CHANGED
|
@@ -108432,6 +108432,7 @@ export namespace Prisma {
|
|
|
108432
108432
|
|
|
108433
108433
|
export type CreatorListItemWhereUniqueInput = Prisma.AtLeast<{
|
|
108434
108434
|
id?: number
|
|
108435
|
+
creatorListId_socialProfileId?: CreatorListItemCreatorListIdSocialProfileIdCompoundUniqueInput
|
|
108435
108436
|
AND?: CreatorListItemWhereInput | CreatorListItemWhereInput[]
|
|
108436
108437
|
OR?: CreatorListItemWhereInput[]
|
|
108437
108438
|
NOT?: CreatorListItemWhereInput | CreatorListItemWhereInput[]
|
|
@@ -108448,7 +108449,7 @@ export namespace Prisma {
|
|
|
108448
108449
|
sequenceOutboundEmails?: SequenceOutboundEmailListRelationFilter
|
|
108449
108450
|
sequenceInboundEmails?: SequenceInboundEmailListRelationFilter
|
|
108450
108451
|
sequenceImapCheckpoints?: SequenceImapCheckpointListRelationFilter
|
|
108451
|
-
}, "id">
|
|
108452
|
+
}, "id" | "creatorListId_socialProfileId">
|
|
108452
108453
|
|
|
108453
108454
|
export type CreatorListItemOrderByWithAggregationInput = {
|
|
108454
108455
|
id?: SortOrder
|
|
@@ -121956,6 +121957,11 @@ export namespace Prisma {
|
|
|
121956
121957
|
search: string
|
|
121957
121958
|
}
|
|
121958
121959
|
|
|
121960
|
+
export type CreatorListItemCreatorListIdSocialProfileIdCompoundUniqueInput = {
|
|
121961
|
+
creatorListId: number
|
|
121962
|
+
socialProfileId: number
|
|
121963
|
+
}
|
|
121964
|
+
|
|
121959
121965
|
export type CreatorListItemCountOrderByAggregateInput = {
|
|
121960
121966
|
id?: SortOrder
|
|
121961
121967
|
socialProfileId?: SortOrder
|