@creator.co/creatorco-prisma-client 1.0.26 → 1.0.27-alpha-070bac6
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 +8 -5
- package/index-browser.js +4 -1
- package/index.d.ts +101 -2
- package/index.js +8 -5
- package/package.json +1 -1
- package/schema.prisma +5 -1
- package/wasm.js +4 -1
package/index.d.ts
CHANGED
|
@@ -42592,6 +42592,7 @@ export namespace Prisma {
|
|
|
42592
42592
|
|
|
42593
42593
|
export type SocialPostAvgAggregateOutputType = {
|
|
42594
42594
|
id: number | null
|
|
42595
|
+
externalId: number | null
|
|
42595
42596
|
views: number | null
|
|
42596
42597
|
impressions: number | null
|
|
42597
42598
|
impressionsOrganic: number | null
|
|
@@ -42611,6 +42612,7 @@ export namespace Prisma {
|
|
|
42611
42612
|
|
|
42612
42613
|
export type SocialPostSumAggregateOutputType = {
|
|
42613
42614
|
id: number | null
|
|
42615
|
+
externalId: number | null
|
|
42614
42616
|
views: number | null
|
|
42615
42617
|
impressions: number | null
|
|
42616
42618
|
impressionsOrganic: number | null
|
|
@@ -42630,6 +42632,7 @@ export namespace Prisma {
|
|
|
42630
42632
|
|
|
42631
42633
|
export type SocialPostMinAggregateOutputType = {
|
|
42632
42634
|
id: number | null
|
|
42635
|
+
externalId: number | null
|
|
42633
42636
|
phylloId: string | null
|
|
42634
42637
|
lastFetched: Date | null
|
|
42635
42638
|
lastWebhook: Date | null
|
|
@@ -42664,6 +42667,7 @@ export namespace Prisma {
|
|
|
42664
42667
|
|
|
42665
42668
|
export type SocialPostMaxAggregateOutputType = {
|
|
42666
42669
|
id: number | null
|
|
42670
|
+
externalId: number | null
|
|
42667
42671
|
phylloId: string | null
|
|
42668
42672
|
lastFetched: Date | null
|
|
42669
42673
|
lastWebhook: Date | null
|
|
@@ -42698,6 +42702,7 @@ export namespace Prisma {
|
|
|
42698
42702
|
|
|
42699
42703
|
export type SocialPostCountAggregateOutputType = {
|
|
42700
42704
|
id: number
|
|
42705
|
+
externalId: number
|
|
42701
42706
|
phylloId: number
|
|
42702
42707
|
metaData: number
|
|
42703
42708
|
data: number
|
|
@@ -42736,6 +42741,7 @@ export namespace Prisma {
|
|
|
42736
42741
|
|
|
42737
42742
|
export type SocialPostAvgAggregateInputType = {
|
|
42738
42743
|
id?: true
|
|
42744
|
+
externalId?: true
|
|
42739
42745
|
views?: true
|
|
42740
42746
|
impressions?: true
|
|
42741
42747
|
impressionsOrganic?: true
|
|
@@ -42755,6 +42761,7 @@ export namespace Prisma {
|
|
|
42755
42761
|
|
|
42756
42762
|
export type SocialPostSumAggregateInputType = {
|
|
42757
42763
|
id?: true
|
|
42764
|
+
externalId?: true
|
|
42758
42765
|
views?: true
|
|
42759
42766
|
impressions?: true
|
|
42760
42767
|
impressionsOrganic?: true
|
|
@@ -42774,6 +42781,7 @@ export namespace Prisma {
|
|
|
42774
42781
|
|
|
42775
42782
|
export type SocialPostMinAggregateInputType = {
|
|
42776
42783
|
id?: true
|
|
42784
|
+
externalId?: true
|
|
42777
42785
|
phylloId?: true
|
|
42778
42786
|
lastFetched?: true
|
|
42779
42787
|
lastWebhook?: true
|
|
@@ -42808,6 +42816,7 @@ export namespace Prisma {
|
|
|
42808
42816
|
|
|
42809
42817
|
export type SocialPostMaxAggregateInputType = {
|
|
42810
42818
|
id?: true
|
|
42819
|
+
externalId?: true
|
|
42811
42820
|
phylloId?: true
|
|
42812
42821
|
lastFetched?: true
|
|
42813
42822
|
lastWebhook?: true
|
|
@@ -42842,6 +42851,7 @@ export namespace Prisma {
|
|
|
42842
42851
|
|
|
42843
42852
|
export type SocialPostCountAggregateInputType = {
|
|
42844
42853
|
id?: true
|
|
42854
|
+
externalId?: true
|
|
42845
42855
|
phylloId?: true
|
|
42846
42856
|
metaData?: true
|
|
42847
42857
|
data?: true
|
|
@@ -42965,6 +42975,7 @@ export namespace Prisma {
|
|
|
42965
42975
|
|
|
42966
42976
|
export type SocialPostGroupByOutputType = {
|
|
42967
42977
|
id: number
|
|
42978
|
+
externalId: number | null
|
|
42968
42979
|
phylloId: string | null
|
|
42969
42980
|
metaData: JsonValue
|
|
42970
42981
|
data: JsonValue
|
|
@@ -43020,6 +43031,7 @@ export namespace Prisma {
|
|
|
43020
43031
|
|
|
43021
43032
|
export type SocialPostSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
43022
43033
|
id?: boolean
|
|
43034
|
+
externalId?: boolean
|
|
43023
43035
|
phylloId?: boolean
|
|
43024
43036
|
metaData?: boolean
|
|
43025
43037
|
data?: boolean
|
|
@@ -43060,6 +43072,7 @@ export namespace Prisma {
|
|
|
43060
43072
|
|
|
43061
43073
|
export type SocialPostSelectScalar = {
|
|
43062
43074
|
id?: boolean
|
|
43075
|
+
externalId?: boolean
|
|
43063
43076
|
phylloId?: boolean
|
|
43064
43077
|
metaData?: boolean
|
|
43065
43078
|
data?: boolean
|
|
@@ -43111,6 +43124,7 @@ export namespace Prisma {
|
|
|
43111
43124
|
}
|
|
43112
43125
|
scalars: $Extensions.GetPayloadResult<{
|
|
43113
43126
|
id: number
|
|
43127
|
+
externalId: number | null
|
|
43114
43128
|
phylloId: string | null
|
|
43115
43129
|
metaData: Prisma.JsonValue
|
|
43116
43130
|
data: Prisma.JsonValue
|
|
@@ -43543,6 +43557,7 @@ export namespace Prisma {
|
|
|
43543
43557
|
*/
|
|
43544
43558
|
interface SocialPostFieldRefs {
|
|
43545
43559
|
readonly id: FieldRef<"SocialPost", 'Int'>
|
|
43560
|
+
readonly externalId: FieldRef<"SocialPost", 'Int'>
|
|
43546
43561
|
readonly phylloId: FieldRef<"SocialPost", 'String'>
|
|
43547
43562
|
readonly metaData: FieldRef<"SocialPost", 'Json'>
|
|
43548
43563
|
readonly data: FieldRef<"SocialPost", 'Json'>
|
|
@@ -57190,6 +57205,7 @@ export namespace Prisma {
|
|
|
57190
57205
|
engagement: number | null
|
|
57191
57206
|
avgViews: number | null
|
|
57192
57207
|
verified: boolean | null
|
|
57208
|
+
visibility: string | null
|
|
57193
57209
|
created: Date | null
|
|
57194
57210
|
updated: Date | null
|
|
57195
57211
|
}
|
|
@@ -57207,6 +57223,7 @@ export namespace Prisma {
|
|
|
57207
57223
|
engagement: number | null
|
|
57208
57224
|
avgViews: number | null
|
|
57209
57225
|
verified: boolean | null
|
|
57226
|
+
visibility: string | null
|
|
57210
57227
|
created: Date | null
|
|
57211
57228
|
updated: Date | null
|
|
57212
57229
|
}
|
|
@@ -57224,6 +57241,7 @@ export namespace Prisma {
|
|
|
57224
57241
|
engagement: number
|
|
57225
57242
|
avgViews: number
|
|
57226
57243
|
verified: number
|
|
57244
|
+
visibility: number
|
|
57227
57245
|
metaData: number
|
|
57228
57246
|
audienceData: number
|
|
57229
57247
|
phylloData: number
|
|
@@ -57262,6 +57280,7 @@ export namespace Prisma {
|
|
|
57262
57280
|
engagement?: true
|
|
57263
57281
|
avgViews?: true
|
|
57264
57282
|
verified?: true
|
|
57283
|
+
visibility?: true
|
|
57265
57284
|
created?: true
|
|
57266
57285
|
updated?: true
|
|
57267
57286
|
}
|
|
@@ -57279,6 +57298,7 @@ export namespace Prisma {
|
|
|
57279
57298
|
engagement?: true
|
|
57280
57299
|
avgViews?: true
|
|
57281
57300
|
verified?: true
|
|
57301
|
+
visibility?: true
|
|
57282
57302
|
created?: true
|
|
57283
57303
|
updated?: true
|
|
57284
57304
|
}
|
|
@@ -57296,6 +57316,7 @@ export namespace Prisma {
|
|
|
57296
57316
|
engagement?: true
|
|
57297
57317
|
avgViews?: true
|
|
57298
57318
|
verified?: true
|
|
57319
|
+
visibility?: true
|
|
57299
57320
|
metaData?: true
|
|
57300
57321
|
audienceData?: true
|
|
57301
57322
|
phylloData?: true
|
|
@@ -57403,6 +57424,7 @@ export namespace Prisma {
|
|
|
57403
57424
|
engagement: number | null
|
|
57404
57425
|
avgViews: number | null
|
|
57405
57426
|
verified: boolean | null
|
|
57427
|
+
visibility: string
|
|
57406
57428
|
metaData: JsonValue
|
|
57407
57429
|
audienceData: JsonValue
|
|
57408
57430
|
phylloData: JsonValue
|
|
@@ -57442,6 +57464,7 @@ export namespace Prisma {
|
|
|
57442
57464
|
engagement?: boolean
|
|
57443
57465
|
avgViews?: boolean
|
|
57444
57466
|
verified?: boolean
|
|
57467
|
+
visibility?: boolean
|
|
57445
57468
|
metaData?: boolean
|
|
57446
57469
|
audienceData?: boolean
|
|
57447
57470
|
phylloData?: boolean
|
|
@@ -57466,6 +57489,7 @@ export namespace Prisma {
|
|
|
57466
57489
|
engagement?: boolean
|
|
57467
57490
|
avgViews?: boolean
|
|
57468
57491
|
verified?: boolean
|
|
57492
|
+
visibility?: boolean
|
|
57469
57493
|
metaData?: boolean
|
|
57470
57494
|
audienceData?: boolean
|
|
57471
57495
|
phylloData?: boolean
|
|
@@ -57501,6 +57525,7 @@ export namespace Prisma {
|
|
|
57501
57525
|
engagement: number | null
|
|
57502
57526
|
avgViews: number | null
|
|
57503
57527
|
verified: boolean | null
|
|
57528
|
+
visibility: string
|
|
57504
57529
|
metaData: Prisma.JsonValue
|
|
57505
57530
|
audienceData: Prisma.JsonValue
|
|
57506
57531
|
phylloData: Prisma.JsonValue
|
|
@@ -57917,6 +57942,7 @@ export namespace Prisma {
|
|
|
57917
57942
|
readonly engagement: FieldRef<"SocialProfile", 'Float'>
|
|
57918
57943
|
readonly avgViews: FieldRef<"SocialProfile", 'Int'>
|
|
57919
57944
|
readonly verified: FieldRef<"SocialProfile", 'Boolean'>
|
|
57945
|
+
readonly visibility: FieldRef<"SocialProfile", 'String'>
|
|
57920
57946
|
readonly metaData: FieldRef<"SocialProfile", 'Json'>
|
|
57921
57947
|
readonly audienceData: FieldRef<"SocialProfile", 'Json'>
|
|
57922
57948
|
readonly phylloData: FieldRef<"SocialProfile", 'Json'>
|
|
@@ -75747,6 +75773,7 @@ export namespace Prisma {
|
|
|
75747
75773
|
|
|
75748
75774
|
export const SocialPostScalarFieldEnum: {
|
|
75749
75775
|
id: 'id',
|
|
75776
|
+
externalId: 'externalId',
|
|
75750
75777
|
phylloId: 'phylloId',
|
|
75751
75778
|
metaData: 'metaData',
|
|
75752
75779
|
data: 'data',
|
|
@@ -75963,6 +75990,7 @@ export namespace Prisma {
|
|
|
75963
75990
|
engagement: 'engagement',
|
|
75964
75991
|
avgViews: 'avgViews',
|
|
75965
75992
|
verified: 'verified',
|
|
75993
|
+
visibility: 'visibility',
|
|
75966
75994
|
metaData: 'metaData',
|
|
75967
75995
|
audienceData: 'audienceData',
|
|
75968
75996
|
phylloData: 'phylloData',
|
|
@@ -76589,7 +76617,8 @@ export namespace Prisma {
|
|
|
76589
76617
|
username: 'username',
|
|
76590
76618
|
fullname: 'fullname',
|
|
76591
76619
|
profileUrl: 'profileUrl',
|
|
76592
|
-
profilePicUrl: 'profilePicUrl'
|
|
76620
|
+
profilePicUrl: 'profilePicUrl',
|
|
76621
|
+
visibility: 'visibility'
|
|
76593
76622
|
};
|
|
76594
76623
|
|
|
76595
76624
|
export type SocialProfileOrderByRelevanceFieldEnum = (typeof SocialProfileOrderByRelevanceFieldEnum)[keyof typeof SocialProfileOrderByRelevanceFieldEnum]
|
|
@@ -79810,6 +79839,7 @@ export namespace Prisma {
|
|
|
79810
79839
|
OR?: SocialPostWhereInput[]
|
|
79811
79840
|
NOT?: SocialPostWhereInput | SocialPostWhereInput[]
|
|
79812
79841
|
id?: IntFilter<"SocialPost"> | number
|
|
79842
|
+
externalId?: IntNullableFilter<"SocialPost"> | number | null
|
|
79813
79843
|
phylloId?: StringNullableFilter<"SocialPost"> | string | null
|
|
79814
79844
|
metaData?: JsonFilter<"SocialPost">
|
|
79815
79845
|
data?: JsonFilter<"SocialPost">
|
|
@@ -79849,6 +79879,7 @@ export namespace Prisma {
|
|
|
79849
79879
|
|
|
79850
79880
|
export type SocialPostOrderByWithRelationAndSearchRelevanceInput = {
|
|
79851
79881
|
id?: SortOrder
|
|
79882
|
+
externalId?: SortOrderInput | SortOrder
|
|
79852
79883
|
phylloId?: SortOrderInput | SortOrder
|
|
79853
79884
|
metaData?: SortOrder
|
|
79854
79885
|
data?: SortOrder
|
|
@@ -79891,9 +79922,11 @@ export namespace Prisma {
|
|
|
79891
79922
|
id?: number
|
|
79892
79923
|
phylloId?: string
|
|
79893
79924
|
urlPath?: string
|
|
79925
|
+
platform_externalId?: SocialPostPlatformExternalIdCompoundUniqueInput
|
|
79894
79926
|
AND?: SocialPostWhereInput | SocialPostWhereInput[]
|
|
79895
79927
|
OR?: SocialPostWhereInput[]
|
|
79896
79928
|
NOT?: SocialPostWhereInput | SocialPostWhereInput[]
|
|
79929
|
+
externalId?: IntNullableFilter<"SocialPost"> | number | null
|
|
79897
79930
|
metaData?: JsonFilter<"SocialPost">
|
|
79898
79931
|
data?: JsonFilter<"SocialPost">
|
|
79899
79932
|
lastFetched?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
|
|
@@ -79927,10 +79960,11 @@ export namespace Prisma {
|
|
|
79927
79960
|
user?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
79928
79961
|
campaign?: XOR<CampaignNullableRelationFilter, CampaignWhereInput> | null
|
|
79929
79962
|
lists?: ListToSocialPostListRelationFilter
|
|
79930
|
-
}, "id" | "phylloId" | "urlPath">
|
|
79963
|
+
}, "id" | "phylloId" | "urlPath" | "platform_externalId">
|
|
79931
79964
|
|
|
79932
79965
|
export type SocialPostOrderByWithAggregationInput = {
|
|
79933
79966
|
id?: SortOrder
|
|
79967
|
+
externalId?: SortOrderInput | SortOrder
|
|
79934
79968
|
phylloId?: SortOrderInput | SortOrder
|
|
79935
79969
|
metaData?: SortOrder
|
|
79936
79970
|
data?: SortOrder
|
|
@@ -79975,6 +80009,7 @@ export namespace Prisma {
|
|
|
79975
80009
|
OR?: SocialPostScalarWhereWithAggregatesInput[]
|
|
79976
80010
|
NOT?: SocialPostScalarWhereWithAggregatesInput | SocialPostScalarWhereWithAggregatesInput[]
|
|
79977
80011
|
id?: IntWithAggregatesFilter<"SocialPost"> | number
|
|
80012
|
+
externalId?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
79978
80013
|
phylloId?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
|
|
79979
80014
|
metaData?: JsonWithAggregatesFilter<"SocialPost">
|
|
79980
80015
|
data?: JsonWithAggregatesFilter<"SocialPost">
|
|
@@ -80950,6 +80985,7 @@ export namespace Prisma {
|
|
|
80950
80985
|
engagement?: FloatNullableFilter<"SocialProfile"> | number | null
|
|
80951
80986
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
80952
80987
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
80988
|
+
visibility?: StringFilter<"SocialProfile"> | string
|
|
80953
80989
|
metaData?: JsonFilter<"SocialProfile">
|
|
80954
80990
|
audienceData?: JsonFilter<"SocialProfile">
|
|
80955
80991
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -80973,6 +81009,7 @@ export namespace Prisma {
|
|
|
80973
81009
|
engagement?: SortOrderInput | SortOrder
|
|
80974
81010
|
avgViews?: SortOrderInput | SortOrder
|
|
80975
81011
|
verified?: SortOrderInput | SortOrder
|
|
81012
|
+
visibility?: SortOrder
|
|
80976
81013
|
metaData?: SortOrder
|
|
80977
81014
|
audienceData?: SortOrder
|
|
80978
81015
|
phylloData?: SortOrder
|
|
@@ -81000,6 +81037,7 @@ export namespace Prisma {
|
|
|
81000
81037
|
engagement?: FloatNullableFilter<"SocialProfile"> | number | null
|
|
81001
81038
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
81002
81039
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
81040
|
+
visibility?: StringFilter<"SocialProfile"> | string
|
|
81003
81041
|
metaData?: JsonFilter<"SocialProfile">
|
|
81004
81042
|
audienceData?: JsonFilter<"SocialProfile">
|
|
81005
81043
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -81023,6 +81061,7 @@ export namespace Prisma {
|
|
|
81023
81061
|
engagement?: SortOrderInput | SortOrder
|
|
81024
81062
|
avgViews?: SortOrderInput | SortOrder
|
|
81025
81063
|
verified?: SortOrderInput | SortOrder
|
|
81064
|
+
visibility?: SortOrder
|
|
81026
81065
|
metaData?: SortOrder
|
|
81027
81066
|
audienceData?: SortOrder
|
|
81028
81067
|
phylloData?: SortOrder
|
|
@@ -81051,6 +81090,7 @@ export namespace Prisma {
|
|
|
81051
81090
|
engagement?: FloatNullableWithAggregatesFilter<"SocialProfile"> | number | null
|
|
81052
81091
|
avgViews?: IntNullableWithAggregatesFilter<"SocialProfile"> | number | null
|
|
81053
81092
|
verified?: BoolNullableWithAggregatesFilter<"SocialProfile"> | boolean | null
|
|
81093
|
+
visibility?: StringWithAggregatesFilter<"SocialProfile"> | string
|
|
81054
81094
|
metaData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
81055
81095
|
audienceData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
81056
81096
|
phylloData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
@@ -85376,6 +85416,7 @@ export namespace Prisma {
|
|
|
85376
85416
|
}
|
|
85377
85417
|
|
|
85378
85418
|
export type SocialPostCreateInput = {
|
|
85419
|
+
externalId?: number | null
|
|
85379
85420
|
phylloId?: string | null
|
|
85380
85421
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85381
85422
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85413,6 +85454,7 @@ export namespace Prisma {
|
|
|
85413
85454
|
|
|
85414
85455
|
export type SocialPostUncheckedCreateInput = {
|
|
85415
85456
|
id?: number
|
|
85457
|
+
externalId?: number | null
|
|
85416
85458
|
phylloId?: string | null
|
|
85417
85459
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85418
85460
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85449,6 +85491,7 @@ export namespace Prisma {
|
|
|
85449
85491
|
}
|
|
85450
85492
|
|
|
85451
85493
|
export type SocialPostUpdateInput = {
|
|
85494
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
85452
85495
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85453
85496
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85454
85497
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85486,6 +85529,7 @@ export namespace Prisma {
|
|
|
85486
85529
|
|
|
85487
85530
|
export type SocialPostUncheckedUpdateInput = {
|
|
85488
85531
|
id?: IntFieldUpdateOperationsInput | number
|
|
85532
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
85489
85533
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85490
85534
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85491
85535
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85523,6 +85567,7 @@ export namespace Prisma {
|
|
|
85523
85567
|
|
|
85524
85568
|
export type SocialPostCreateManyInput = {
|
|
85525
85569
|
id?: number
|
|
85570
|
+
externalId?: number | null
|
|
85526
85571
|
phylloId?: string | null
|
|
85527
85572
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85528
85573
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85558,6 +85603,7 @@ export namespace Prisma {
|
|
|
85558
85603
|
}
|
|
85559
85604
|
|
|
85560
85605
|
export type SocialPostUpdateManyMutationInput = {
|
|
85606
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
85561
85607
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85562
85608
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85563
85609
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -85592,6 +85638,7 @@ export namespace Prisma {
|
|
|
85592
85638
|
|
|
85593
85639
|
export type SocialPostUncheckedUpdateManyInput = {
|
|
85594
85640
|
id?: IntFieldUpdateOperationsInput | number
|
|
85641
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
85595
85642
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85596
85643
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
85597
85644
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -86510,6 +86557,7 @@ export namespace Prisma {
|
|
|
86510
86557
|
engagement?: number | null
|
|
86511
86558
|
avgViews?: number | null
|
|
86512
86559
|
verified?: boolean | null
|
|
86560
|
+
visibility?: string
|
|
86513
86561
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86514
86562
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86515
86563
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86533,6 +86581,7 @@ export namespace Prisma {
|
|
|
86533
86581
|
engagement?: number | null
|
|
86534
86582
|
avgViews?: number | null
|
|
86535
86583
|
verified?: boolean | null
|
|
86584
|
+
visibility?: string
|
|
86536
86585
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86537
86586
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86538
86587
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86553,6 +86602,7 @@ export namespace Prisma {
|
|
|
86553
86602
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
86554
86603
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86555
86604
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
86605
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
86556
86606
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86557
86607
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86558
86608
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86576,6 +86626,7 @@ export namespace Prisma {
|
|
|
86576
86626
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
86577
86627
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86578
86628
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
86629
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
86579
86630
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86580
86631
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86581
86632
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86598,6 +86649,7 @@ export namespace Prisma {
|
|
|
86598
86649
|
engagement?: number | null
|
|
86599
86650
|
avgViews?: number | null
|
|
86600
86651
|
verified?: boolean | null
|
|
86652
|
+
visibility?: string
|
|
86601
86653
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86602
86654
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86603
86655
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86616,6 +86668,7 @@ export namespace Prisma {
|
|
|
86616
86668
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
86617
86669
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86618
86670
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
86671
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
86619
86672
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86620
86673
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86621
86674
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86636,6 +86689,7 @@ export namespace Prisma {
|
|
|
86636
86689
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
86637
86690
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86638
86691
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
86692
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
86639
86693
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86640
86694
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86641
86695
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -90509,8 +90563,14 @@ export namespace Prisma {
|
|
|
90509
90563
|
search: string
|
|
90510
90564
|
}
|
|
90511
90565
|
|
|
90566
|
+
export type SocialPostPlatformExternalIdCompoundUniqueInput = {
|
|
90567
|
+
platform: string
|
|
90568
|
+
externalId: number
|
|
90569
|
+
}
|
|
90570
|
+
|
|
90512
90571
|
export type SocialPostCountOrderByAggregateInput = {
|
|
90513
90572
|
id?: SortOrder
|
|
90573
|
+
externalId?: SortOrder
|
|
90514
90574
|
phylloId?: SortOrder
|
|
90515
90575
|
metaData?: SortOrder
|
|
90516
90576
|
data?: SortOrder
|
|
@@ -90547,6 +90607,7 @@ export namespace Prisma {
|
|
|
90547
90607
|
|
|
90548
90608
|
export type SocialPostAvgOrderByAggregateInput = {
|
|
90549
90609
|
id?: SortOrder
|
|
90610
|
+
externalId?: SortOrder
|
|
90550
90611
|
views?: SortOrder
|
|
90551
90612
|
impressions?: SortOrder
|
|
90552
90613
|
impressionsOrganic?: SortOrder
|
|
@@ -90566,6 +90627,7 @@ export namespace Prisma {
|
|
|
90566
90627
|
|
|
90567
90628
|
export type SocialPostMaxOrderByAggregateInput = {
|
|
90568
90629
|
id?: SortOrder
|
|
90630
|
+
externalId?: SortOrder
|
|
90569
90631
|
phylloId?: SortOrder
|
|
90570
90632
|
lastFetched?: SortOrder
|
|
90571
90633
|
lastWebhook?: SortOrder
|
|
@@ -90600,6 +90662,7 @@ export namespace Prisma {
|
|
|
90600
90662
|
|
|
90601
90663
|
export type SocialPostMinOrderByAggregateInput = {
|
|
90602
90664
|
id?: SortOrder
|
|
90665
|
+
externalId?: SortOrder
|
|
90603
90666
|
phylloId?: SortOrder
|
|
90604
90667
|
lastFetched?: SortOrder
|
|
90605
90668
|
lastWebhook?: SortOrder
|
|
@@ -90634,6 +90697,7 @@ export namespace Prisma {
|
|
|
90634
90697
|
|
|
90635
90698
|
export type SocialPostSumOrderByAggregateInput = {
|
|
90636
90699
|
id?: SortOrder
|
|
90700
|
+
externalId?: SortOrder
|
|
90637
90701
|
views?: SortOrder
|
|
90638
90702
|
impressions?: SortOrder
|
|
90639
90703
|
impressionsOrganic?: SortOrder
|
|
@@ -91363,6 +91427,7 @@ export namespace Prisma {
|
|
|
91363
91427
|
engagement?: SortOrder
|
|
91364
91428
|
avgViews?: SortOrder
|
|
91365
91429
|
verified?: SortOrder
|
|
91430
|
+
visibility?: SortOrder
|
|
91366
91431
|
metaData?: SortOrder
|
|
91367
91432
|
audienceData?: SortOrder
|
|
91368
91433
|
phylloData?: SortOrder
|
|
@@ -91391,6 +91456,7 @@ export namespace Prisma {
|
|
|
91391
91456
|
engagement?: SortOrder
|
|
91392
91457
|
avgViews?: SortOrder
|
|
91393
91458
|
verified?: SortOrder
|
|
91459
|
+
visibility?: SortOrder
|
|
91394
91460
|
created?: SortOrder
|
|
91395
91461
|
updated?: SortOrder
|
|
91396
91462
|
}
|
|
@@ -91408,6 +91474,7 @@ export namespace Prisma {
|
|
|
91408
91474
|
engagement?: SortOrder
|
|
91409
91475
|
avgViews?: SortOrder
|
|
91410
91476
|
verified?: SortOrder
|
|
91477
|
+
visibility?: SortOrder
|
|
91411
91478
|
created?: SortOrder
|
|
91412
91479
|
updated?: SortOrder
|
|
91413
91480
|
}
|
|
@@ -98900,6 +98967,7 @@ export namespace Prisma {
|
|
|
98900
98967
|
}
|
|
98901
98968
|
|
|
98902
98969
|
export type SocialPostCreateWithoutUserInput = {
|
|
98970
|
+
externalId?: number | null
|
|
98903
98971
|
phylloId?: string | null
|
|
98904
98972
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98905
98973
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -98936,6 +99004,7 @@ export namespace Prisma {
|
|
|
98936
99004
|
|
|
98937
99005
|
export type SocialPostUncheckedCreateWithoutUserInput = {
|
|
98938
99006
|
id?: number
|
|
99007
|
+
externalId?: number | null
|
|
98939
99008
|
phylloId?: string | null
|
|
98940
99009
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
98941
99010
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -99076,6 +99145,7 @@ export namespace Prisma {
|
|
|
99076
99145
|
engagement?: number | null
|
|
99077
99146
|
avgViews?: number | null
|
|
99078
99147
|
verified?: boolean | null
|
|
99148
|
+
visibility?: string
|
|
99079
99149
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
99080
99150
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
99081
99151
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -99097,6 +99167,7 @@ export namespace Prisma {
|
|
|
99097
99167
|
engagement?: number | null
|
|
99098
99168
|
avgViews?: number | null
|
|
99099
99169
|
verified?: boolean | null
|
|
99170
|
+
visibility?: string
|
|
99100
99171
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
99101
99172
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
99102
99173
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -99846,6 +99917,7 @@ export namespace Prisma {
|
|
|
99846
99917
|
OR?: SocialPostScalarWhereInput[]
|
|
99847
99918
|
NOT?: SocialPostScalarWhereInput | SocialPostScalarWhereInput[]
|
|
99848
99919
|
id?: IntFilter<"SocialPost"> | number
|
|
99920
|
+
externalId?: IntNullableFilter<"SocialPost"> | number | null
|
|
99849
99921
|
phylloId?: StringNullableFilter<"SocialPost"> | string | null
|
|
99850
99922
|
metaData?: JsonFilter<"SocialPost">
|
|
99851
99923
|
data?: JsonFilter<"SocialPost">
|
|
@@ -99999,6 +100071,7 @@ export namespace Prisma {
|
|
|
99999
100071
|
engagement?: FloatNullableFilter<"SocialProfile"> | number | null
|
|
100000
100072
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
100001
100073
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
100074
|
+
visibility?: StringFilter<"SocialProfile"> | string
|
|
100002
100075
|
metaData?: JsonFilter<"SocialProfile">
|
|
100003
100076
|
audienceData?: JsonFilter<"SocialProfile">
|
|
100004
100077
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -106065,6 +106138,7 @@ export namespace Prisma {
|
|
|
106065
106138
|
}
|
|
106066
106139
|
|
|
106067
106140
|
export type SocialPostCreateWithoutCampaignInput = {
|
|
106141
|
+
externalId?: number | null
|
|
106068
106142
|
phylloId?: string | null
|
|
106069
106143
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106070
106144
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -106101,6 +106175,7 @@ export namespace Prisma {
|
|
|
106101
106175
|
|
|
106102
106176
|
export type SocialPostUncheckedCreateWithoutCampaignInput = {
|
|
106103
106177
|
id?: number
|
|
106178
|
+
externalId?: number | null
|
|
106104
106179
|
phylloId?: string | null
|
|
106105
106180
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
106106
106181
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -112970,6 +113045,7 @@ export namespace Prisma {
|
|
|
112970
113045
|
engagement?: number | null
|
|
112971
113046
|
avgViews?: number | null
|
|
112972
113047
|
verified?: boolean | null
|
|
113048
|
+
visibility?: string
|
|
112973
113049
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
112974
113050
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
112975
113051
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -112992,6 +113068,7 @@ export namespace Prisma {
|
|
|
112992
113068
|
engagement?: number | null
|
|
112993
113069
|
avgViews?: number | null
|
|
112994
113070
|
verified?: boolean | null
|
|
113071
|
+
visibility?: string
|
|
112995
113072
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
112996
113073
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
112997
113074
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -113315,6 +113392,7 @@ export namespace Prisma {
|
|
|
113315
113392
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
113316
113393
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
113317
113394
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
113395
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
113318
113396
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
113319
113397
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
113320
113398
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -113337,6 +113415,7 @@ export namespace Prisma {
|
|
|
113337
113415
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
113338
113416
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
113339
113417
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
113418
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
113340
113419
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
113341
113420
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
113342
113421
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -114017,6 +114096,7 @@ export namespace Prisma {
|
|
|
114017
114096
|
engagement?: number | null
|
|
114018
114097
|
avgViews?: number | null
|
|
114019
114098
|
verified?: boolean | null
|
|
114099
|
+
visibility?: string
|
|
114020
114100
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114021
114101
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
114022
114102
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -114039,6 +114119,7 @@ export namespace Prisma {
|
|
|
114039
114119
|
engagement?: number | null
|
|
114040
114120
|
avgViews?: number | null
|
|
114041
114121
|
verified?: boolean | null
|
|
114122
|
+
visibility?: string
|
|
114042
114123
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114043
114124
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
114044
114125
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -114176,6 +114257,7 @@ export namespace Prisma {
|
|
|
114176
114257
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
114177
114258
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
114178
114259
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
114260
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
114179
114261
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114180
114262
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
114181
114263
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -114198,6 +114280,7 @@ export namespace Prisma {
|
|
|
114198
114280
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
114199
114281
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
114200
114282
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
114283
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
114201
114284
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114202
114285
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
114203
114286
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -115187,6 +115270,7 @@ export namespace Prisma {
|
|
|
115187
115270
|
}
|
|
115188
115271
|
|
|
115189
115272
|
export type SocialPostCreateWithoutListsInput = {
|
|
115273
|
+
externalId?: number | null
|
|
115190
115274
|
phylloId?: string | null
|
|
115191
115275
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115192
115276
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -115223,6 +115307,7 @@ export namespace Prisma {
|
|
|
115223
115307
|
|
|
115224
115308
|
export type SocialPostUncheckedCreateWithoutListsInput = {
|
|
115225
115309
|
id?: number
|
|
115310
|
+
externalId?: number | null
|
|
115226
115311
|
phylloId?: string | null
|
|
115227
115312
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115228
115313
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -115308,6 +115393,7 @@ export namespace Prisma {
|
|
|
115308
115393
|
}
|
|
115309
115394
|
|
|
115310
115395
|
export type SocialPostUpdateWithoutListsInput = {
|
|
115396
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
115311
115397
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115312
115398
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115313
115399
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -115344,6 +115430,7 @@ export namespace Prisma {
|
|
|
115344
115430
|
|
|
115345
115431
|
export type SocialPostUncheckedUpdateWithoutListsInput = {
|
|
115346
115432
|
id?: IntFieldUpdateOperationsInput | number
|
|
115433
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
115347
115434
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115348
115435
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
115349
115436
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -118512,6 +118599,7 @@ export namespace Prisma {
|
|
|
118512
118599
|
|
|
118513
118600
|
export type SocialPostCreateManyUserInput = {
|
|
118514
118601
|
id?: number
|
|
118602
|
+
externalId?: number | null
|
|
118515
118603
|
phylloId?: string | null
|
|
118516
118604
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118517
118605
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -118584,6 +118672,7 @@ export namespace Prisma {
|
|
|
118584
118672
|
engagement?: number | null
|
|
118585
118673
|
avgViews?: number | null
|
|
118586
118674
|
verified?: boolean | null
|
|
118675
|
+
visibility?: string
|
|
118587
118676
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118588
118677
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
118589
118678
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -118941,6 +119030,7 @@ export namespace Prisma {
|
|
|
118941
119030
|
}
|
|
118942
119031
|
|
|
118943
119032
|
export type SocialPostUpdateWithoutUserInput = {
|
|
119033
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
118944
119034
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118945
119035
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118946
119036
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -118977,6 +119067,7 @@ export namespace Prisma {
|
|
|
118977
119067
|
|
|
118978
119068
|
export type SocialPostUncheckedUpdateWithoutUserInput = {
|
|
118979
119069
|
id?: IntFieldUpdateOperationsInput | number
|
|
119070
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
118980
119071
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118981
119072
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118982
119073
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -119013,6 +119104,7 @@ export namespace Prisma {
|
|
|
119013
119104
|
|
|
119014
119105
|
export type SocialPostUncheckedUpdateManyWithoutUserInput = {
|
|
119015
119106
|
id?: IntFieldUpdateOperationsInput | number
|
|
119107
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
119016
119108
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
119017
119109
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119018
119110
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -119139,6 +119231,7 @@ export namespace Prisma {
|
|
|
119139
119231
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
119140
119232
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
119141
119233
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
119234
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
119142
119235
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119143
119236
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
119144
119237
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -119160,6 +119253,7 @@ export namespace Prisma {
|
|
|
119160
119253
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
119161
119254
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
119162
119255
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
119256
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
119163
119257
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119164
119258
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
119165
119259
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -119181,6 +119275,7 @@ export namespace Prisma {
|
|
|
119181
119275
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
119182
119276
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
119183
119277
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
119278
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
119184
119279
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119185
119280
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
119186
119281
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -120363,6 +120458,7 @@ export namespace Prisma {
|
|
|
120363
120458
|
|
|
120364
120459
|
export type SocialPostCreateManyCampaignInput = {
|
|
120365
120460
|
id?: number
|
|
120461
|
+
externalId?: number | null
|
|
120366
120462
|
phylloId?: string | null
|
|
120367
120463
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120368
120464
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -120632,6 +120728,7 @@ export namespace Prisma {
|
|
|
120632
120728
|
}
|
|
120633
120729
|
|
|
120634
120730
|
export type SocialPostUpdateWithoutCampaignInput = {
|
|
120731
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120635
120732
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120636
120733
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120637
120734
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -120668,6 +120765,7 @@ export namespace Prisma {
|
|
|
120668
120765
|
|
|
120669
120766
|
export type SocialPostUncheckedUpdateWithoutCampaignInput = {
|
|
120670
120767
|
id?: IntFieldUpdateOperationsInput | number
|
|
120768
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120671
120769
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120672
120770
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120673
120771
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -120704,6 +120802,7 @@ export namespace Prisma {
|
|
|
120704
120802
|
|
|
120705
120803
|
export type SocialPostUncheckedUpdateManyWithoutCampaignInput = {
|
|
120706
120804
|
id?: IntFieldUpdateOperationsInput | number
|
|
120805
|
+
externalId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120707
120806
|
phylloId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
120708
120807
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120709
120808
|
data?: JsonNullValueInput | InputJsonValue
|