@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/index-browser.js
CHANGED
package/index.d.ts
CHANGED
|
@@ -42592,7 +42592,6 @@ export namespace Prisma {
|
|
|
42592
42592
|
|
|
42593
42593
|
export type SocialPostAvgAggregateOutputType = {
|
|
42594
42594
|
id: number | null
|
|
42595
|
-
externalId: number | null
|
|
42596
42595
|
views: number | null
|
|
42597
42596
|
impressions: number | null
|
|
42598
42597
|
impressionsOrganic: number | null
|
|
@@ -42612,7 +42611,6 @@ export namespace Prisma {
|
|
|
42612
42611
|
|
|
42613
42612
|
export type SocialPostSumAggregateOutputType = {
|
|
42614
42613
|
id: number | null
|
|
42615
|
-
externalId: number | null
|
|
42616
42614
|
views: number | null
|
|
42617
42615
|
impressions: number | null
|
|
42618
42616
|
impressionsOrganic: number | null
|
|
@@ -42632,7 +42630,7 @@ export namespace Prisma {
|
|
|
42632
42630
|
|
|
42633
42631
|
export type SocialPostMinAggregateOutputType = {
|
|
42634
42632
|
id: number | null
|
|
42635
|
-
externalId:
|
|
42633
|
+
externalId: string | null
|
|
42636
42634
|
phylloId: string | null
|
|
42637
42635
|
lastFetched: Date | null
|
|
42638
42636
|
lastWebhook: Date | null
|
|
@@ -42667,7 +42665,7 @@ export namespace Prisma {
|
|
|
42667
42665
|
|
|
42668
42666
|
export type SocialPostMaxAggregateOutputType = {
|
|
42669
42667
|
id: number | null
|
|
42670
|
-
externalId:
|
|
42668
|
+
externalId: string | null
|
|
42671
42669
|
phylloId: string | null
|
|
42672
42670
|
lastFetched: Date | null
|
|
42673
42671
|
lastWebhook: Date | null
|
|
@@ -42741,7 +42739,6 @@ export namespace Prisma {
|
|
|
42741
42739
|
|
|
42742
42740
|
export type SocialPostAvgAggregateInputType = {
|
|
42743
42741
|
id?: true
|
|
42744
|
-
externalId?: true
|
|
42745
42742
|
views?: true
|
|
42746
42743
|
impressions?: true
|
|
42747
42744
|
impressionsOrganic?: true
|
|
@@ -42761,7 +42758,6 @@ export namespace Prisma {
|
|
|
42761
42758
|
|
|
42762
42759
|
export type SocialPostSumAggregateInputType = {
|
|
42763
42760
|
id?: true
|
|
42764
|
-
externalId?: true
|
|
42765
42761
|
views?: true
|
|
42766
42762
|
impressions?: true
|
|
42767
42763
|
impressionsOrganic?: true
|
|
@@ -42975,7 +42971,7 @@ export namespace Prisma {
|
|
|
42975
42971
|
|
|
42976
42972
|
export type SocialPostGroupByOutputType = {
|
|
42977
42973
|
id: number
|
|
42978
|
-
externalId:
|
|
42974
|
+
externalId: string | null
|
|
42979
42975
|
phylloId: string | null
|
|
42980
42976
|
metaData: JsonValue
|
|
42981
42977
|
data: JsonValue
|
|
@@ -43124,7 +43120,7 @@ export namespace Prisma {
|
|
|
43124
43120
|
}
|
|
43125
43121
|
scalars: $Extensions.GetPayloadResult<{
|
|
43126
43122
|
id: number
|
|
43127
|
-
externalId:
|
|
43123
|
+
externalId: string | null
|
|
43128
43124
|
phylloId: string | null
|
|
43129
43125
|
metaData: Prisma.JsonValue
|
|
43130
43126
|
data: Prisma.JsonValue
|
|
@@ -43557,7 +43553,7 @@ export namespace Prisma {
|
|
|
43557
43553
|
*/
|
|
43558
43554
|
interface SocialPostFieldRefs {
|
|
43559
43555
|
readonly id: FieldRef<"SocialPost", 'Int'>
|
|
43560
|
-
readonly externalId: FieldRef<"SocialPost", '
|
|
43556
|
+
readonly externalId: FieldRef<"SocialPost", 'String'>
|
|
43561
43557
|
readonly phylloId: FieldRef<"SocialPost", 'String'>
|
|
43562
43558
|
readonly metaData: FieldRef<"SocialPost", 'Json'>
|
|
43563
43559
|
readonly data: FieldRef<"SocialPost", 'Json'>
|
|
@@ -76501,6 +76497,7 @@ export namespace Prisma {
|
|
|
76501
76497
|
|
|
76502
76498
|
|
|
76503
76499
|
export const SocialPostOrderByRelevanceFieldEnum: {
|
|
76500
|
+
externalId: 'externalId',
|
|
76504
76501
|
phylloId: 'phylloId',
|
|
76505
76502
|
title: 'title',
|
|
76506
76503
|
description: 'description',
|
|
@@ -79839,7 +79836,7 @@ export namespace Prisma {
|
|
|
79839
79836
|
OR?: SocialPostWhereInput[]
|
|
79840
79837
|
NOT?: SocialPostWhereInput | SocialPostWhereInput[]
|
|
79841
79838
|
id?: IntFilter<"SocialPost"> | number
|
|
79842
|
-
externalId?:
|
|
79839
|
+
externalId?: StringNullableFilter<"SocialPost"> | string | null
|
|
79843
79840
|
phylloId?: StringNullableFilter<"SocialPost"> | string | null
|
|
79844
79841
|
metaData?: JsonFilter<"SocialPost">
|
|
79845
79842
|
data?: JsonFilter<"SocialPost">
|
|
@@ -79926,7 +79923,7 @@ export namespace Prisma {
|
|
|
79926
79923
|
AND?: SocialPostWhereInput | SocialPostWhereInput[]
|
|
79927
79924
|
OR?: SocialPostWhereInput[]
|
|
79928
79925
|
NOT?: SocialPostWhereInput | SocialPostWhereInput[]
|
|
79929
|
-
externalId?:
|
|
79926
|
+
externalId?: StringNullableFilter<"SocialPost"> | string | null
|
|
79930
79927
|
metaData?: JsonFilter<"SocialPost">
|
|
79931
79928
|
data?: JsonFilter<"SocialPost">
|
|
79932
79929
|
lastFetched?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
@@ -80009,7 +80006,7 @@ export namespace Prisma {
|
|
|
80009
80006
|
OR?: SocialPostScalarWhereWithAggregatesInput[]
|
|
80010
80007
|
NOT?: SocialPostScalarWhereWithAggregatesInput | SocialPostScalarWhereWithAggregatesInput[]
|
|
80011
80008
|
id?: IntWithAggregatesFilter<"SocialPost"> | number
|
|
80012
|
-
externalId?:
|
|
80009
|
+
externalId?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
|
|
80013
80010
|
phylloId?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
|
|
80014
80011
|
metaData?: JsonWithAggregatesFilter<"SocialPost">
|
|
80015
80012
|
data?: JsonWithAggregatesFilter<"SocialPost">
|
|
@@ -85416,7 +85413,7 @@ export namespace Prisma {
|
|
|
85416
85413
|
}
|
|
85417
85414
|
|
|
85418
85415
|
export type SocialPostCreateInput = {
|
|
85419
|
-
externalId?:
|
|
85416
|
+
externalId?: string | null
|
|
85420
85417
|
phylloId?: string | null
|
|
85421
85418
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85422
85419
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85454,7 +85451,7 @@ export namespace Prisma {
|
|
|
85454
85451
|
|
|
85455
85452
|
export type SocialPostUncheckedCreateInput = {
|
|
85456
85453
|
id?: number
|
|
85457
|
-
externalId?:
|
|
85454
|
+
externalId?: string | null
|
|
85458
85455
|
phylloId?: string | null
|
|
85459
85456
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85460
85457
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85491,7 +85488,7 @@ export namespace Prisma {
|
|
|
85491
85488
|
}
|
|
85492
85489
|
|
|
85493
85490
|
export type SocialPostUpdateInput = {
|
|
85494
|
-
externalId?:
|
|
85491
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85495
85492
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85496
85493
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85497
85494
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85529,7 +85526,7 @@ export namespace Prisma {
|
|
|
85529
85526
|
|
|
85530
85527
|
export type SocialPostUncheckedUpdateInput = {
|
|
85531
85528
|
id?: IntFieldUpdateOperationsInput | number
|
|
85532
|
-
externalId?:
|
|
85529
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85533
85530
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85534
85531
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85535
85532
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85567,7 +85564,7 @@ export namespace Prisma {
|
|
|
85567
85564
|
|
|
85568
85565
|
export type SocialPostCreateManyInput = {
|
|
85569
85566
|
id?: number
|
|
85570
|
-
externalId?:
|
|
85567
|
+
externalId?: string | null
|
|
85571
85568
|
phylloId?: string | null
|
|
85572
85569
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85573
85570
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85603,7 +85600,7 @@ export namespace Prisma {
|
|
|
85603
85600
|
}
|
|
85604
85601
|
|
|
85605
85602
|
export type SocialPostUpdateManyMutationInput = {
|
|
85606
|
-
externalId?:
|
|
85603
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85607
85604
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85608
85605
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85609
85606
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85638,7 +85635,7 @@ export namespace Prisma {
|
|
|
85638
85635
|
|
|
85639
85636
|
export type SocialPostUncheckedUpdateManyInput = {
|
|
85640
85637
|
id?: IntFieldUpdateOperationsInput | number
|
|
85641
|
-
externalId?:
|
|
85638
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85642
85639
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85643
85640
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85644
85641
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -90565,7 +90562,7 @@ export namespace Prisma {
|
|
|
90565
90562
|
|
|
90566
90563
|
export type SocialPostPlatformExternalIdCompoundUniqueInput = {
|
|
90567
90564
|
platform: string
|
|
90568
|
-
externalId:
|
|
90565
|
+
externalId: string
|
|
90569
90566
|
}
|
|
90570
90567
|
|
|
90571
90568
|
export type SocialPostCountOrderByAggregateInput = {
|
|
@@ -90607,7 +90604,6 @@ export namespace Prisma {
|
|
|
90607
90604
|
|
|
90608
90605
|
export type SocialPostAvgOrderByAggregateInput = {
|
|
90609
90606
|
id?: SortOrder
|
|
90610
|
-
externalId?: SortOrder
|
|
90611
90607
|
views?: SortOrder
|
|
90612
90608
|
impressions?: SortOrder
|
|
90613
90609
|
impressionsOrganic?: SortOrder
|
|
@@ -90697,7 +90693,6 @@ export namespace Prisma {
|
|
|
90697
90693
|
|
|
90698
90694
|
export type SocialPostSumOrderByAggregateInput = {
|
|
90699
90695
|
id?: SortOrder
|
|
90700
|
-
externalId?: SortOrder
|
|
90701
90696
|
views?: SortOrder
|
|
90702
90697
|
impressions?: SortOrder
|
|
90703
90698
|
impressionsOrganic?: SortOrder
|
|
@@ -98967,7 +98962,7 @@ export namespace Prisma {
|
|
|
98967
98962
|
}
|
|
98968
98963
|
|
|
98969
98964
|
export type SocialPostCreateWithoutUserInput = {
|
|
98970
|
-
externalId?:
|
|
98965
|
+
externalId?: string | null
|
|
98971
98966
|
phylloId?: string | null
|
|
98972
98967
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98973
98968
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -99004,7 +98999,7 @@ export namespace Prisma {
|
|
|
99004
98999
|
|
|
99005
99000
|
export type SocialPostUncheckedCreateWithoutUserInput = {
|
|
99006
99001
|
id?: number
|
|
99007
|
-
externalId?:
|
|
99002
|
+
externalId?: string | null
|
|
99008
99003
|
phylloId?: string | null
|
|
99009
99004
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
99010
99005
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -99917,7 +99912,7 @@ export namespace Prisma {
|
|
|
99917
99912
|
OR?: SocialPostScalarWhereInput[]
|
|
99918
99913
|
NOT?: SocialPostScalarWhereInput | SocialPostScalarWhereInput[]
|
|
99919
99914
|
id?: IntFilter<"SocialPost"> | number
|
|
99920
|
-
externalId?:
|
|
99915
|
+
externalId?: StringNullableFilter<"SocialPost"> | string | null
|
|
99921
99916
|
phylloId?: StringNullableFilter<"SocialPost"> | string | null
|
|
99922
99917
|
metaData?: JsonFilter<"SocialPost">
|
|
99923
99918
|
data?: JsonFilter<"SocialPost">
|
|
@@ -106138,7 +106133,7 @@ export namespace Prisma {
|
|
|
106138
106133
|
}
|
|
106139
106134
|
|
|
106140
106135
|
export type SocialPostCreateWithoutCampaignInput = {
|
|
106141
|
-
externalId?:
|
|
106136
|
+
externalId?: string | null
|
|
106142
106137
|
phylloId?: string | null
|
|
106143
106138
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106144
106139
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -106175,7 +106170,7 @@ export namespace Prisma {
|
|
|
106175
106170
|
|
|
106176
106171
|
export type SocialPostUncheckedCreateWithoutCampaignInput = {
|
|
106177
106172
|
id?: number
|
|
106178
|
-
externalId?:
|
|
106173
|
+
externalId?: string | null
|
|
106179
106174
|
phylloId?: string | null
|
|
106180
106175
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106181
106176
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -115270,7 +115265,7 @@ export namespace Prisma {
|
|
|
115270
115265
|
}
|
|
115271
115266
|
|
|
115272
115267
|
export type SocialPostCreateWithoutListsInput = {
|
|
115273
|
-
externalId?:
|
|
115268
|
+
externalId?: string | null
|
|
115274
115269
|
phylloId?: string | null
|
|
115275
115270
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115276
115271
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -115307,7 +115302,7 @@ export namespace Prisma {
|
|
|
115307
115302
|
|
|
115308
115303
|
export type SocialPostUncheckedCreateWithoutListsInput = {
|
|
115309
115304
|
id?: number
|
|
115310
|
-
externalId?:
|
|
115305
|
+
externalId?: string | null
|
|
115311
115306
|
phylloId?: string | null
|
|
115312
115307
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115313
115308
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -115393,7 +115388,7 @@ export namespace Prisma {
|
|
|
115393
115388
|
}
|
|
115394
115389
|
|
|
115395
115390
|
export type SocialPostUpdateWithoutListsInput = {
|
|
115396
|
-
externalId?:
|
|
115391
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115397
115392
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115398
115393
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115399
115394
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -115430,7 +115425,7 @@ export namespace Prisma {
|
|
|
115430
115425
|
|
|
115431
115426
|
export type SocialPostUncheckedUpdateWithoutListsInput = {
|
|
115432
115427
|
id?: IntFieldUpdateOperationsInput | number
|
|
115433
|
-
externalId?:
|
|
115428
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115434
115429
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115435
115430
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115436
115431
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -118599,7 +118594,7 @@ export namespace Prisma {
|
|
|
118599
118594
|
|
|
118600
118595
|
export type SocialPostCreateManyUserInput = {
|
|
118601
118596
|
id?: number
|
|
118602
|
-
externalId?:
|
|
118597
|
+
externalId?: string | null
|
|
118603
118598
|
phylloId?: string | null
|
|
118604
118599
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118605
118600
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -119030,7 +119025,7 @@ export namespace Prisma {
|
|
|
119030
119025
|
}
|
|
119031
119026
|
|
|
119032
119027
|
export type SocialPostUpdateWithoutUserInput = {
|
|
119033
|
-
externalId?:
|
|
119028
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119034
119029
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119035
119030
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119036
119031
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -119067,7 +119062,7 @@ export namespace Prisma {
|
|
|
119067
119062
|
|
|
119068
119063
|
export type SocialPostUncheckedUpdateWithoutUserInput = {
|
|
119069
119064
|
id?: IntFieldUpdateOperationsInput | number
|
|
119070
|
-
externalId?:
|
|
119065
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119071
119066
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119072
119067
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119073
119068
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -119104,7 +119099,7 @@ export namespace Prisma {
|
|
|
119104
119099
|
|
|
119105
119100
|
export type SocialPostUncheckedUpdateManyWithoutUserInput = {
|
|
119106
119101
|
id?: IntFieldUpdateOperationsInput | number
|
|
119107
|
-
externalId?:
|
|
119102
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119108
119103
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119109
119104
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119110
119105
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -120458,7 +120453,7 @@ export namespace Prisma {
|
|
|
120458
120453
|
|
|
120459
120454
|
export type SocialPostCreateManyCampaignInput = {
|
|
120460
120455
|
id?: number
|
|
120461
|
-
externalId?:
|
|
120456
|
+
externalId?: string | null
|
|
120462
120457
|
phylloId?: string | null
|
|
120463
120458
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120464
120459
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -120728,7 +120723,7 @@ export namespace Prisma {
|
|
|
120728
120723
|
}
|
|
120729
120724
|
|
|
120730
120725
|
export type SocialPostUpdateWithoutCampaignInput = {
|
|
120731
|
-
externalId?:
|
|
120726
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120732
120727
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120733
120728
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120734
120729
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -120765,7 +120760,7 @@ export namespace Prisma {
|
|
|
120765
120760
|
|
|
120766
120761
|
export type SocialPostUncheckedUpdateWithoutCampaignInput = {
|
|
120767
120762
|
id?: IntFieldUpdateOperationsInput | number
|
|
120768
|
-
externalId?:
|
|
120763
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120769
120764
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120770
120765
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120771
120766
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -120802,7 +120797,7 @@ export namespace Prisma {
|
|
|
120802
120797
|
|
|
120803
120798
|
export type SocialPostUncheckedUpdateManyWithoutCampaignInput = {
|
|
120804
120799
|
id?: IntFieldUpdateOperationsInput | number
|
|
120805
|
-
externalId?:
|
|
120800
|
+
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120806
120801
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120807
120802
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120808
120803
|
data?: JsonNullValueInput | InputJsonValue
|