@creator.co/creatorco-prisma-client 1.0.83 → 1.0.85
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 +15 -6
- package/index-browser.js +10 -1
- package/index.d.ts +172 -1
- package/index.js +15 -6
- package/package.json +1 -1
- package/schema.prisma +24 -13
- package/wasm.js +10 -1
package/index.d.ts
CHANGED
|
@@ -493,6 +493,16 @@ export const CampaignToSocialPostStatus: {
|
|
|
493
493
|
export type CampaignToSocialPostStatus = (typeof CampaignToSocialPostStatus)[keyof typeof CampaignToSocialPostStatus]
|
|
494
494
|
|
|
495
495
|
|
|
496
|
+
export const ConnectionStatus: {
|
|
497
|
+
CONNECTED: 'CONNECTED',
|
|
498
|
+
ERROR: 'ERROR',
|
|
499
|
+
NOT_CONNECTED: 'NOT_CONNECTED',
|
|
500
|
+
SESSION_EXPIRED: 'SESSION_EXPIRED'
|
|
501
|
+
};
|
|
502
|
+
|
|
503
|
+
export type ConnectionStatus = (typeof ConnectionStatus)[keyof typeof ConnectionStatus]
|
|
504
|
+
|
|
505
|
+
|
|
496
506
|
export const SocialProfileContactSource: {
|
|
497
507
|
MANUAL: 'MANUAL',
|
|
498
508
|
IMAI: 'IMAI'
|
|
@@ -539,6 +549,10 @@ export type CampaignToSocialPostStatus = $Enums.CampaignToSocialPostStatus
|
|
|
539
549
|
|
|
540
550
|
export const CampaignToSocialPostStatus: typeof $Enums.CampaignToSocialPostStatus
|
|
541
551
|
|
|
552
|
+
export type ConnectionStatus = $Enums.ConnectionStatus
|
|
553
|
+
|
|
554
|
+
export const ConnectionStatus: typeof $Enums.ConnectionStatus
|
|
555
|
+
|
|
542
556
|
export type SocialProfileContactSource = $Enums.SocialProfileContactSource
|
|
543
557
|
|
|
544
558
|
export const SocialProfileContactSource: typeof $Enums.SocialProfileContactSource
|
|
@@ -51742,6 +51756,7 @@ export namespace Prisma {
|
|
|
51742
51756
|
shares: number | null
|
|
51743
51757
|
userId: number | null
|
|
51744
51758
|
campaignId: number | null
|
|
51759
|
+
mediaCleanupChecked: boolean | null
|
|
51745
51760
|
}
|
|
51746
51761
|
|
|
51747
51762
|
export type SocialPostMaxAggregateOutputType = {
|
|
@@ -51777,6 +51792,7 @@ export namespace Prisma {
|
|
|
51777
51792
|
shares: number | null
|
|
51778
51793
|
userId: number | null
|
|
51779
51794
|
campaignId: number | null
|
|
51795
|
+
mediaCleanupChecked: boolean | null
|
|
51780
51796
|
}
|
|
51781
51797
|
|
|
51782
51798
|
export type SocialPostCountAggregateOutputType = {
|
|
@@ -51813,6 +51829,7 @@ export namespace Prisma {
|
|
|
51813
51829
|
shares: number
|
|
51814
51830
|
userId: number
|
|
51815
51831
|
campaignId: number
|
|
51832
|
+
mediaCleanupChecked: number
|
|
51816
51833
|
_all: number
|
|
51817
51834
|
}
|
|
51818
51835
|
|
|
@@ -51890,6 +51907,7 @@ export namespace Prisma {
|
|
|
51890
51907
|
shares?: true
|
|
51891
51908
|
userId?: true
|
|
51892
51909
|
campaignId?: true
|
|
51910
|
+
mediaCleanupChecked?: true
|
|
51893
51911
|
}
|
|
51894
51912
|
|
|
51895
51913
|
export type SocialPostMaxAggregateInputType = {
|
|
@@ -51925,6 +51943,7 @@ export namespace Prisma {
|
|
|
51925
51943
|
shares?: true
|
|
51926
51944
|
userId?: true
|
|
51927
51945
|
campaignId?: true
|
|
51946
|
+
mediaCleanupChecked?: true
|
|
51928
51947
|
}
|
|
51929
51948
|
|
|
51930
51949
|
export type SocialPostCountAggregateInputType = {
|
|
@@ -51961,6 +51980,7 @@ export namespace Prisma {
|
|
|
51961
51980
|
shares?: true
|
|
51962
51981
|
userId?: true
|
|
51963
51982
|
campaignId?: true
|
|
51983
|
+
mediaCleanupChecked?: true
|
|
51964
51984
|
_all?: true
|
|
51965
51985
|
}
|
|
51966
51986
|
|
|
@@ -52084,6 +52104,7 @@ export namespace Prisma {
|
|
|
52084
52104
|
shares: number | null
|
|
52085
52105
|
userId: number | null
|
|
52086
52106
|
campaignId: number | null
|
|
52107
|
+
mediaCleanupChecked: boolean | null
|
|
52087
52108
|
_count: SocialPostCountAggregateOutputType | null
|
|
52088
52109
|
_avg: SocialPostAvgAggregateOutputType | null
|
|
52089
52110
|
_sum: SocialPostSumAggregateOutputType | null
|
|
@@ -52139,6 +52160,7 @@ export namespace Prisma {
|
|
|
52139
52160
|
shares?: boolean
|
|
52140
52161
|
userId?: boolean
|
|
52141
52162
|
campaignId?: boolean
|
|
52163
|
+
mediaCleanupChecked?: boolean
|
|
52142
52164
|
user?: boolean | SocialPost$userArgs<ExtArgs>
|
|
52143
52165
|
campaign?: boolean | SocialPost$campaignArgs<ExtArgs>
|
|
52144
52166
|
lists?: boolean | SocialPost$listsArgs<ExtArgs>
|
|
@@ -52181,6 +52203,7 @@ export namespace Prisma {
|
|
|
52181
52203
|
shares?: boolean
|
|
52182
52204
|
userId?: boolean
|
|
52183
52205
|
campaignId?: boolean
|
|
52206
|
+
mediaCleanupChecked?: boolean
|
|
52184
52207
|
user?: boolean | SocialPost$userArgs<ExtArgs>
|
|
52185
52208
|
campaign?: boolean | SocialPost$campaignArgs<ExtArgs>
|
|
52186
52209
|
}, ExtArgs["result"]["socialPost"]>
|
|
@@ -52219,6 +52242,7 @@ export namespace Prisma {
|
|
|
52219
52242
|
shares?: boolean
|
|
52220
52243
|
userId?: boolean
|
|
52221
52244
|
campaignId?: boolean
|
|
52245
|
+
mediaCleanupChecked?: boolean
|
|
52222
52246
|
}
|
|
52223
52247
|
|
|
52224
52248
|
export type SocialPostInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -52277,6 +52301,7 @@ export namespace Prisma {
|
|
|
52277
52301
|
shares: number | null
|
|
52278
52302
|
userId: number | null
|
|
52279
52303
|
campaignId: number | null
|
|
52304
|
+
mediaCleanupChecked: boolean | null
|
|
52280
52305
|
}, ExtArgs["result"]["socialPost"]>
|
|
52281
52306
|
composites: {}
|
|
52282
52307
|
}
|
|
@@ -52708,6 +52733,7 @@ export namespace Prisma {
|
|
|
52708
52733
|
readonly shares: FieldRef<"SocialPost", 'Int'>
|
|
52709
52734
|
readonly userId: FieldRef<"SocialPost", 'Int'>
|
|
52710
52735
|
readonly campaignId: FieldRef<"SocialPost", 'Int'>
|
|
52736
|
+
readonly mediaCleanupChecked: FieldRef<"SocialPost", 'Boolean'>
|
|
52711
52737
|
}
|
|
52712
52738
|
|
|
52713
52739
|
|
|
@@ -73081,6 +73107,7 @@ export namespace Prisma {
|
|
|
73081
73107
|
avgViews: number | null
|
|
73082
73108
|
verified: boolean | null
|
|
73083
73109
|
visibility: string | null
|
|
73110
|
+
connectionStatus: $Enums.ConnectionStatus | null
|
|
73084
73111
|
created: Date | null
|
|
73085
73112
|
updated: Date | null
|
|
73086
73113
|
}
|
|
@@ -73099,6 +73126,7 @@ export namespace Prisma {
|
|
|
73099
73126
|
avgViews: number | null
|
|
73100
73127
|
verified: boolean | null
|
|
73101
73128
|
visibility: string | null
|
|
73129
|
+
connectionStatus: $Enums.ConnectionStatus | null
|
|
73102
73130
|
created: Date | null
|
|
73103
73131
|
updated: Date | null
|
|
73104
73132
|
}
|
|
@@ -73117,6 +73145,7 @@ export namespace Prisma {
|
|
|
73117
73145
|
avgViews: number
|
|
73118
73146
|
verified: number
|
|
73119
73147
|
visibility: number
|
|
73148
|
+
connectionStatus: number
|
|
73120
73149
|
metaData: number
|
|
73121
73150
|
audienceData: number
|
|
73122
73151
|
phylloData: number
|
|
@@ -73156,6 +73185,7 @@ export namespace Prisma {
|
|
|
73156
73185
|
avgViews?: true
|
|
73157
73186
|
verified?: true
|
|
73158
73187
|
visibility?: true
|
|
73188
|
+
connectionStatus?: true
|
|
73159
73189
|
created?: true
|
|
73160
73190
|
updated?: true
|
|
73161
73191
|
}
|
|
@@ -73174,6 +73204,7 @@ export namespace Prisma {
|
|
|
73174
73204
|
avgViews?: true
|
|
73175
73205
|
verified?: true
|
|
73176
73206
|
visibility?: true
|
|
73207
|
+
connectionStatus?: true
|
|
73177
73208
|
created?: true
|
|
73178
73209
|
updated?: true
|
|
73179
73210
|
}
|
|
@@ -73192,6 +73223,7 @@ export namespace Prisma {
|
|
|
73192
73223
|
avgViews?: true
|
|
73193
73224
|
verified?: true
|
|
73194
73225
|
visibility?: true
|
|
73226
|
+
connectionStatus?: true
|
|
73195
73227
|
metaData?: true
|
|
73196
73228
|
audienceData?: true
|
|
73197
73229
|
phylloData?: true
|
|
@@ -73300,6 +73332,7 @@ export namespace Prisma {
|
|
|
73300
73332
|
avgViews: number | null
|
|
73301
73333
|
verified: boolean | null
|
|
73302
73334
|
visibility: string
|
|
73335
|
+
connectionStatus: $Enums.ConnectionStatus | null
|
|
73303
73336
|
metaData: JsonValue
|
|
73304
73337
|
audienceData: JsonValue
|
|
73305
73338
|
phylloData: JsonValue
|
|
@@ -73340,6 +73373,7 @@ export namespace Prisma {
|
|
|
73340
73373
|
avgViews?: boolean
|
|
73341
73374
|
verified?: boolean
|
|
73342
73375
|
visibility?: boolean
|
|
73376
|
+
connectionStatus?: boolean
|
|
73343
73377
|
metaData?: boolean
|
|
73344
73378
|
audienceData?: boolean
|
|
73345
73379
|
phylloData?: boolean
|
|
@@ -73367,6 +73401,7 @@ export namespace Prisma {
|
|
|
73367
73401
|
avgViews?: boolean
|
|
73368
73402
|
verified?: boolean
|
|
73369
73403
|
visibility?: boolean
|
|
73404
|
+
connectionStatus?: boolean
|
|
73370
73405
|
metaData?: boolean
|
|
73371
73406
|
audienceData?: boolean
|
|
73372
73407
|
phylloData?: boolean
|
|
@@ -73389,6 +73424,7 @@ export namespace Prisma {
|
|
|
73389
73424
|
avgViews?: boolean
|
|
73390
73425
|
verified?: boolean
|
|
73391
73426
|
visibility?: boolean
|
|
73427
|
+
connectionStatus?: boolean
|
|
73392
73428
|
metaData?: boolean
|
|
73393
73429
|
audienceData?: boolean
|
|
73394
73430
|
phylloData?: boolean
|
|
@@ -73431,6 +73467,7 @@ export namespace Prisma {
|
|
|
73431
73467
|
avgViews: number | null
|
|
73432
73468
|
verified: boolean | null
|
|
73433
73469
|
visibility: string
|
|
73470
|
+
connectionStatus: $Enums.ConnectionStatus | null
|
|
73434
73471
|
metaData: Prisma.JsonValue
|
|
73435
73472
|
audienceData: Prisma.JsonValue
|
|
73436
73473
|
phylloData: Prisma.JsonValue
|
|
@@ -73847,6 +73884,7 @@ export namespace Prisma {
|
|
|
73847
73884
|
readonly avgViews: FieldRef<"SocialProfile", 'Int'>
|
|
73848
73885
|
readonly verified: FieldRef<"SocialProfile", 'Boolean'>
|
|
73849
73886
|
readonly visibility: FieldRef<"SocialProfile", 'String'>
|
|
73887
|
+
readonly connectionStatus: FieldRef<"SocialProfile", 'ConnectionStatus'>
|
|
73850
73888
|
readonly metaData: FieldRef<"SocialProfile", 'Json'>
|
|
73851
73889
|
readonly audienceData: FieldRef<"SocialProfile", 'Json'>
|
|
73852
73890
|
readonly phylloData: FieldRef<"SocialProfile", 'Json'>
|
|
@@ -107001,7 +107039,8 @@ export namespace Prisma {
|
|
|
107001
107039
|
saves: 'saves',
|
|
107002
107040
|
shares: 'shares',
|
|
107003
107041
|
userId: 'userId',
|
|
107004
|
-
campaignId: 'campaignId'
|
|
107042
|
+
campaignId: 'campaignId',
|
|
107043
|
+
mediaCleanupChecked: 'mediaCleanupChecked'
|
|
107005
107044
|
};
|
|
107006
107045
|
|
|
107007
107046
|
export type SocialPostScalarFieldEnum = (typeof SocialPostScalarFieldEnum)[keyof typeof SocialPostScalarFieldEnum]
|
|
@@ -107298,6 +107337,7 @@ export namespace Prisma {
|
|
|
107298
107337
|
avgViews: 'avgViews',
|
|
107299
107338
|
verified: 'verified',
|
|
107300
107339
|
visibility: 'visibility',
|
|
107340
|
+
connectionStatus: 'connectionStatus',
|
|
107301
107341
|
metaData: 'metaData',
|
|
107302
107342
|
audienceData: 'audienceData',
|
|
107303
107343
|
phylloData: 'phylloData',
|
|
@@ -108556,6 +108596,20 @@ export namespace Prisma {
|
|
|
108556
108596
|
|
|
108557
108597
|
|
|
108558
108598
|
|
|
108599
|
+
/**
|
|
108600
|
+
* Reference to a field of type 'ConnectionStatus'
|
|
108601
|
+
*/
|
|
108602
|
+
export type EnumConnectionStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ConnectionStatus'>
|
|
108603
|
+
|
|
108604
|
+
|
|
108605
|
+
|
|
108606
|
+
/**
|
|
108607
|
+
* Reference to a field of type 'ConnectionStatus[]'
|
|
108608
|
+
*/
|
|
108609
|
+
export type ListEnumConnectionStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ConnectionStatus[]'>
|
|
108610
|
+
|
|
108611
|
+
|
|
108612
|
+
|
|
108559
108613
|
/**
|
|
108560
108614
|
* Reference to a field of type 'SocialProfileContactSource'
|
|
108561
108615
|
*/
|
|
@@ -112095,6 +112149,7 @@ export namespace Prisma {
|
|
|
112095
112149
|
shares?: IntNullableFilter<"SocialPost"> | number | null
|
|
112096
112150
|
userId?: IntNullableFilter<"SocialPost"> | number | null
|
|
112097
112151
|
campaignId?: IntNullableFilter<"SocialPost"> | number | null
|
|
112152
|
+
mediaCleanupChecked?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
112098
112153
|
user?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
112099
112154
|
campaign?: XOR<CampaignNullableRelationFilter, CampaignWhereInput> | null
|
|
112100
112155
|
lists?: ListToSocialPostListRelationFilter
|
|
@@ -112136,6 +112191,7 @@ export namespace Prisma {
|
|
|
112136
112191
|
shares?: SortOrderInput | SortOrder
|
|
112137
112192
|
userId?: SortOrderInput | SortOrder
|
|
112138
112193
|
campaignId?: SortOrderInput | SortOrder
|
|
112194
|
+
mediaCleanupChecked?: SortOrderInput | SortOrder
|
|
112139
112195
|
user?: UserOrderByWithRelationInput
|
|
112140
112196
|
campaign?: CampaignOrderByWithRelationInput
|
|
112141
112197
|
lists?: ListToSocialPostOrderByRelationAggregateInput
|
|
@@ -112182,6 +112238,7 @@ export namespace Prisma {
|
|
|
112182
112238
|
shares?: IntNullableFilter<"SocialPost"> | number | null
|
|
112183
112239
|
userId?: IntNullableFilter<"SocialPost"> | number | null
|
|
112184
112240
|
campaignId?: IntNullableFilter<"SocialPost"> | number | null
|
|
112241
|
+
mediaCleanupChecked?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
112185
112242
|
user?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
112186
112243
|
campaign?: XOR<CampaignNullableRelationFilter, CampaignWhereInput> | null
|
|
112187
112244
|
lists?: ListToSocialPostListRelationFilter
|
|
@@ -112223,6 +112280,7 @@ export namespace Prisma {
|
|
|
112223
112280
|
shares?: SortOrderInput | SortOrder
|
|
112224
112281
|
userId?: SortOrderInput | SortOrder
|
|
112225
112282
|
campaignId?: SortOrderInput | SortOrder
|
|
112283
|
+
mediaCleanupChecked?: SortOrderInput | SortOrder
|
|
112226
112284
|
_count?: SocialPostCountOrderByAggregateInput
|
|
112227
112285
|
_avg?: SocialPostAvgOrderByAggregateInput
|
|
112228
112286
|
_max?: SocialPostMaxOrderByAggregateInput
|
|
@@ -112267,6 +112325,7 @@ export namespace Prisma {
|
|
|
112267
112325
|
shares?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
112268
112326
|
userId?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
112269
112327
|
campaignId?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
|
|
112328
|
+
mediaCleanupChecked?: BoolNullableWithAggregatesFilter<"SocialPost"> | boolean | null
|
|
112270
112329
|
}
|
|
112271
112330
|
|
|
112272
112331
|
export type PublicSocialPostWhereInput = {
|
|
@@ -113803,6 +113862,7 @@ export namespace Prisma {
|
|
|
113803
113862
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
113804
113863
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
113805
113864
|
visibility?: StringFilter<"SocialProfile"> | string
|
|
113865
|
+
connectionStatus?: EnumConnectionStatusNullableFilter<"SocialProfile"> | $Enums.ConnectionStatus | null
|
|
113806
113866
|
metaData?: JsonFilter<"SocialProfile">
|
|
113807
113867
|
audienceData?: JsonFilter<"SocialProfile">
|
|
113808
113868
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -113829,6 +113889,7 @@ export namespace Prisma {
|
|
|
113829
113889
|
avgViews?: SortOrderInput | SortOrder
|
|
113830
113890
|
verified?: SortOrderInput | SortOrder
|
|
113831
113891
|
visibility?: SortOrder
|
|
113892
|
+
connectionStatus?: SortOrderInput | SortOrder
|
|
113832
113893
|
metaData?: SortOrder
|
|
113833
113894
|
audienceData?: SortOrder
|
|
113834
113895
|
phylloData?: SortOrder
|
|
@@ -113859,6 +113920,7 @@ export namespace Prisma {
|
|
|
113859
113920
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
113860
113921
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
113861
113922
|
visibility?: StringFilter<"SocialProfile"> | string
|
|
113923
|
+
connectionStatus?: EnumConnectionStatusNullableFilter<"SocialProfile"> | $Enums.ConnectionStatus | null
|
|
113862
113924
|
metaData?: JsonFilter<"SocialProfile">
|
|
113863
113925
|
audienceData?: JsonFilter<"SocialProfile">
|
|
113864
113926
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -113885,6 +113947,7 @@ export namespace Prisma {
|
|
|
113885
113947
|
avgViews?: SortOrderInput | SortOrder
|
|
113886
113948
|
verified?: SortOrderInput | SortOrder
|
|
113887
113949
|
visibility?: SortOrder
|
|
113950
|
+
connectionStatus?: SortOrderInput | SortOrder
|
|
113888
113951
|
metaData?: SortOrder
|
|
113889
113952
|
audienceData?: SortOrder
|
|
113890
113953
|
phylloData?: SortOrder
|
|
@@ -113914,6 +113977,7 @@ export namespace Prisma {
|
|
|
113914
113977
|
avgViews?: IntNullableWithAggregatesFilter<"SocialProfile"> | number | null
|
|
113915
113978
|
verified?: BoolNullableWithAggregatesFilter<"SocialProfile"> | boolean | null
|
|
113916
113979
|
visibility?: StringWithAggregatesFilter<"SocialProfile"> | string
|
|
113980
|
+
connectionStatus?: EnumConnectionStatusNullableWithAggregatesFilter<"SocialProfile"> | $Enums.ConnectionStatus | null
|
|
113917
113981
|
metaData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
113918
113982
|
audienceData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
113919
113983
|
phylloData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
@@ -119932,6 +119996,7 @@ export namespace Prisma {
|
|
|
119932
119996
|
comments?: number | null
|
|
119933
119997
|
saves?: number | null
|
|
119934
119998
|
shares?: number | null
|
|
119999
|
+
mediaCleanupChecked?: boolean | null
|
|
119935
120000
|
user?: UserCreateNestedOneWithoutSocialPostsInput
|
|
119936
120001
|
campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
|
|
119937
120002
|
lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
|
|
@@ -119973,6 +120038,7 @@ export namespace Prisma {
|
|
|
119973
120038
|
shares?: number | null
|
|
119974
120039
|
userId?: number | null
|
|
119975
120040
|
campaignId?: number | null
|
|
120041
|
+
mediaCleanupChecked?: boolean | null
|
|
119976
120042
|
lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
119977
120043
|
campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
119978
120044
|
publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
|
|
@@ -120009,6 +120075,7 @@ export namespace Prisma {
|
|
|
120009
120075
|
comments?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120010
120076
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120011
120077
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120078
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120012
120079
|
user?: UserUpdateOneWithoutSocialPostsNestedInput
|
|
120013
120080
|
campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
|
|
120014
120081
|
lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
|
|
@@ -120050,6 +120117,7 @@ export namespace Prisma {
|
|
|
120050
120117
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120051
120118
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120052
120119
|
campaignId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120120
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120053
120121
|
lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
120054
120122
|
campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
120055
120123
|
publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
|
|
@@ -120089,6 +120157,7 @@ export namespace Prisma {
|
|
|
120089
120157
|
shares?: number | null
|
|
120090
120158
|
userId?: number | null
|
|
120091
120159
|
campaignId?: number | null
|
|
120160
|
+
mediaCleanupChecked?: boolean | null
|
|
120092
120161
|
}
|
|
120093
120162
|
|
|
120094
120163
|
export type SocialPostUpdateManyMutationInput = {
|
|
@@ -120122,6 +120191,7 @@ export namespace Prisma {
|
|
|
120122
120191
|
comments?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120123
120192
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120124
120193
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120194
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120125
120195
|
}
|
|
120126
120196
|
|
|
120127
120197
|
export type SocialPostUncheckedUpdateManyInput = {
|
|
@@ -120158,6 +120228,7 @@ export namespace Prisma {
|
|
|
120158
120228
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120159
120229
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120160
120230
|
campaignId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
120231
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
120161
120232
|
}
|
|
120162
120233
|
|
|
120163
120234
|
export type PublicSocialPostCreateInput = {
|
|
@@ -121684,6 +121755,7 @@ export namespace Prisma {
|
|
|
121684
121755
|
avgViews?: number | null
|
|
121685
121756
|
verified?: boolean | null
|
|
121686
121757
|
visibility?: string
|
|
121758
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
121687
121759
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
121688
121760
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
121689
121761
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -121710,6 +121782,7 @@ export namespace Prisma {
|
|
|
121710
121782
|
avgViews?: number | null
|
|
121711
121783
|
verified?: boolean | null
|
|
121712
121784
|
visibility?: string
|
|
121785
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
121713
121786
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
121714
121787
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
121715
121788
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -121733,6 +121806,7 @@ export namespace Prisma {
|
|
|
121733
121806
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121734
121807
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121735
121808
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
121809
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
121736
121810
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
121737
121811
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
121738
121812
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -121759,6 +121833,7 @@ export namespace Prisma {
|
|
|
121759
121833
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121760
121834
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121761
121835
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
121836
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
121762
121837
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
121763
121838
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
121764
121839
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -121784,6 +121859,7 @@ export namespace Prisma {
|
|
|
121784
121859
|
avgViews?: number | null
|
|
121785
121860
|
verified?: boolean | null
|
|
121786
121861
|
visibility?: string
|
|
121862
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
121787
121863
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
121788
121864
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
121789
121865
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -121803,6 +121879,7 @@ export namespace Prisma {
|
|
|
121803
121879
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121804
121880
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121805
121881
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
121882
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
121806
121883
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
121807
121884
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
121808
121885
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -121824,6 +121901,7 @@ export namespace Prisma {
|
|
|
121824
121901
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
121825
121902
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
121826
121903
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
121904
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
121827
121905
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
121828
121906
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
121829
121907
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -127445,6 +127523,7 @@ export namespace Prisma {
|
|
|
127445
127523
|
shares?: SortOrder
|
|
127446
127524
|
userId?: SortOrder
|
|
127447
127525
|
campaignId?: SortOrder
|
|
127526
|
+
mediaCleanupChecked?: SortOrder
|
|
127448
127527
|
}
|
|
127449
127528
|
|
|
127450
127529
|
export type SocialPostAvgOrderByAggregateInput = {
|
|
@@ -127500,6 +127579,7 @@ export namespace Prisma {
|
|
|
127500
127579
|
shares?: SortOrder
|
|
127501
127580
|
userId?: SortOrder
|
|
127502
127581
|
campaignId?: SortOrder
|
|
127582
|
+
mediaCleanupChecked?: SortOrder
|
|
127503
127583
|
}
|
|
127504
127584
|
|
|
127505
127585
|
export type SocialPostMinOrderByAggregateInput = {
|
|
@@ -127535,6 +127615,7 @@ export namespace Prisma {
|
|
|
127535
127615
|
shares?: SortOrder
|
|
127536
127616
|
userId?: SortOrder
|
|
127537
127617
|
campaignId?: SortOrder
|
|
127618
|
+
mediaCleanupChecked?: SortOrder
|
|
127538
127619
|
}
|
|
127539
127620
|
|
|
127540
127621
|
export type SocialPostSumOrderByAggregateInput = {
|
|
@@ -128681,6 +128762,13 @@ export namespace Prisma {
|
|
|
128681
128762
|
creatorListId?: SortOrder
|
|
128682
128763
|
}
|
|
128683
128764
|
|
|
128765
|
+
export type EnumConnectionStatusNullableFilter<$PrismaModel = never> = {
|
|
128766
|
+
equals?: $Enums.ConnectionStatus | EnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
128767
|
+
in?: $Enums.ConnectionStatus[] | ListEnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
128768
|
+
notIn?: $Enums.ConnectionStatus[] | ListEnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
128769
|
+
not?: NestedEnumConnectionStatusNullableFilter<$PrismaModel> | $Enums.ConnectionStatus | null
|
|
128770
|
+
}
|
|
128771
|
+
|
|
128684
128772
|
export type SocialProfileContactListRelationFilter = {
|
|
128685
128773
|
every?: SocialProfileContactWhereInput
|
|
128686
128774
|
some?: SocialProfileContactWhereInput
|
|
@@ -128711,6 +128799,7 @@ export namespace Prisma {
|
|
|
128711
128799
|
avgViews?: SortOrder
|
|
128712
128800
|
verified?: SortOrder
|
|
128713
128801
|
visibility?: SortOrder
|
|
128802
|
+
connectionStatus?: SortOrder
|
|
128714
128803
|
metaData?: SortOrder
|
|
128715
128804
|
audienceData?: SortOrder
|
|
128716
128805
|
phylloData?: SortOrder
|
|
@@ -128740,6 +128829,7 @@ export namespace Prisma {
|
|
|
128740
128829
|
avgViews?: SortOrder
|
|
128741
128830
|
verified?: SortOrder
|
|
128742
128831
|
visibility?: SortOrder
|
|
128832
|
+
connectionStatus?: SortOrder
|
|
128743
128833
|
created?: SortOrder
|
|
128744
128834
|
updated?: SortOrder
|
|
128745
128835
|
}
|
|
@@ -128758,6 +128848,7 @@ export namespace Prisma {
|
|
|
128758
128848
|
avgViews?: SortOrder
|
|
128759
128849
|
verified?: SortOrder
|
|
128760
128850
|
visibility?: SortOrder
|
|
128851
|
+
connectionStatus?: SortOrder
|
|
128761
128852
|
created?: SortOrder
|
|
128762
128853
|
updated?: SortOrder
|
|
128763
128854
|
}
|
|
@@ -128770,6 +128861,16 @@ export namespace Prisma {
|
|
|
128770
128861
|
avgViews?: SortOrder
|
|
128771
128862
|
}
|
|
128772
128863
|
|
|
128864
|
+
export type EnumConnectionStatusNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
128865
|
+
equals?: $Enums.ConnectionStatus | EnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
128866
|
+
in?: $Enums.ConnectionStatus[] | ListEnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
128867
|
+
notIn?: $Enums.ConnectionStatus[] | ListEnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
128868
|
+
not?: NestedEnumConnectionStatusNullableWithAggregatesFilter<$PrismaModel> | $Enums.ConnectionStatus | null
|
|
128869
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
128870
|
+
_min?: NestedEnumConnectionStatusNullableFilter<$PrismaModel>
|
|
128871
|
+
_max?: NestedEnumConnectionStatusNullableFilter<$PrismaModel>
|
|
128872
|
+
}
|
|
128873
|
+
|
|
128773
128874
|
export type EnumSocialProfileContactSourceFilter<$PrismaModel = never> = {
|
|
128774
128875
|
equals?: $Enums.SocialProfileContactSource | EnumSocialProfileContactSourceFieldRefInput<$PrismaModel>
|
|
128775
128876
|
in?: $Enums.SocialProfileContactSource[] | ListEnumSocialProfileContactSourceFieldRefInput<$PrismaModel>
|
|
@@ -137246,6 +137347,10 @@ export namespace Prisma {
|
|
|
137246
137347
|
connect?: SocialProfileContactWhereUniqueInput | SocialProfileContactWhereUniqueInput[]
|
|
137247
137348
|
}
|
|
137248
137349
|
|
|
137350
|
+
export type NullableEnumConnectionStatusFieldUpdateOperationsInput = {
|
|
137351
|
+
set?: $Enums.ConnectionStatus | null
|
|
137352
|
+
}
|
|
137353
|
+
|
|
137249
137354
|
export type CreatorListItemUpdateManyWithoutSocialProfileNestedInput = {
|
|
137250
137355
|
create?: XOR<CreatorListItemCreateWithoutSocialProfileInput, CreatorListItemUncheckedCreateWithoutSocialProfileInput> | CreatorListItemCreateWithoutSocialProfileInput[] | CreatorListItemUncheckedCreateWithoutSocialProfileInput[]
|
|
137251
137356
|
connectOrCreate?: CreatorListItemCreateOrConnectWithoutSocialProfileInput | CreatorListItemCreateOrConnectWithoutSocialProfileInput[]
|
|
@@ -139155,6 +139260,23 @@ export namespace Prisma {
|
|
|
139155
139260
|
_max?: NestedEnumCampaignToSocialPostStatusFilter<$PrismaModel>
|
|
139156
139261
|
}
|
|
139157
139262
|
|
|
139263
|
+
export type NestedEnumConnectionStatusNullableFilter<$PrismaModel = never> = {
|
|
139264
|
+
equals?: $Enums.ConnectionStatus | EnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
139265
|
+
in?: $Enums.ConnectionStatus[] | ListEnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
139266
|
+
notIn?: $Enums.ConnectionStatus[] | ListEnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
139267
|
+
not?: NestedEnumConnectionStatusNullableFilter<$PrismaModel> | $Enums.ConnectionStatus | null
|
|
139268
|
+
}
|
|
139269
|
+
|
|
139270
|
+
export type NestedEnumConnectionStatusNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
139271
|
+
equals?: $Enums.ConnectionStatus | EnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
139272
|
+
in?: $Enums.ConnectionStatus[] | ListEnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
139273
|
+
notIn?: $Enums.ConnectionStatus[] | ListEnumConnectionStatusFieldRefInput<$PrismaModel> | null
|
|
139274
|
+
not?: NestedEnumConnectionStatusNullableWithAggregatesFilter<$PrismaModel> | $Enums.ConnectionStatus | null
|
|
139275
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
139276
|
+
_min?: NestedEnumConnectionStatusNullableFilter<$PrismaModel>
|
|
139277
|
+
_max?: NestedEnumConnectionStatusNullableFilter<$PrismaModel>
|
|
139278
|
+
}
|
|
139279
|
+
|
|
139158
139280
|
export type NestedEnumSocialProfileContactSourceFilter<$PrismaModel = never> = {
|
|
139159
139281
|
equals?: $Enums.SocialProfileContactSource | EnumSocialProfileContactSourceFieldRefInput<$PrismaModel>
|
|
139160
139282
|
in?: $Enums.SocialProfileContactSource[] | ListEnumSocialProfileContactSourceFieldRefInput<$PrismaModel>
|
|
@@ -140116,6 +140238,7 @@ export namespace Prisma {
|
|
|
140116
140238
|
comments?: number | null
|
|
140117
140239
|
saves?: number | null
|
|
140118
140240
|
shares?: number | null
|
|
140241
|
+
mediaCleanupChecked?: boolean | null
|
|
140119
140242
|
campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
|
|
140120
140243
|
lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
|
|
140121
140244
|
campaigns?: CampaignToSocialPostCreateNestedManyWithoutSocialPostInput
|
|
@@ -140155,6 +140278,7 @@ export namespace Prisma {
|
|
|
140155
140278
|
saves?: number | null
|
|
140156
140279
|
shares?: number | null
|
|
140157
140280
|
campaignId?: number | null
|
|
140281
|
+
mediaCleanupChecked?: boolean | null
|
|
140158
140282
|
lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
140159
140283
|
campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
140160
140284
|
publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
|
|
@@ -140269,6 +140393,7 @@ export namespace Prisma {
|
|
|
140269
140393
|
avgViews?: number | null
|
|
140270
140394
|
verified?: boolean | null
|
|
140271
140395
|
visibility?: string
|
|
140396
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
140272
140397
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
140273
140398
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
140274
140399
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -140293,6 +140418,7 @@ export namespace Prisma {
|
|
|
140293
140418
|
avgViews?: number | null
|
|
140294
140419
|
verified?: boolean | null
|
|
140295
140420
|
visibility?: string
|
|
140421
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
140296
140422
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
140297
140423
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
140298
140424
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -141614,6 +141740,7 @@ export namespace Prisma {
|
|
|
141614
141740
|
shares?: IntNullableFilter<"SocialPost"> | number | null
|
|
141615
141741
|
userId?: IntNullableFilter<"SocialPost"> | number | null
|
|
141616
141742
|
campaignId?: IntNullableFilter<"SocialPost"> | number | null
|
|
141743
|
+
mediaCleanupChecked?: BoolNullableFilter<"SocialPost"> | boolean | null
|
|
141617
141744
|
}
|
|
141618
141745
|
|
|
141619
141746
|
export type PaymentTransactionUpsertWithWhereUniqueWithoutCreatorInput = {
|
|
@@ -141736,6 +141863,7 @@ export namespace Prisma {
|
|
|
141736
141863
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
141737
141864
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
141738
141865
|
visibility?: StringFilter<"SocialProfile"> | string
|
|
141866
|
+
connectionStatus?: EnumConnectionStatusNullableFilter<"SocialProfile"> | $Enums.ConnectionStatus | null
|
|
141739
141867
|
metaData?: JsonFilter<"SocialProfile">
|
|
141740
141868
|
audienceData?: JsonFilter<"SocialProfile">
|
|
141741
141869
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -149826,6 +149954,7 @@ export namespace Prisma {
|
|
|
149826
149954
|
comments?: number | null
|
|
149827
149955
|
saves?: number | null
|
|
149828
149956
|
shares?: number | null
|
|
149957
|
+
mediaCleanupChecked?: boolean | null
|
|
149829
149958
|
user?: UserCreateNestedOneWithoutSocialPostsInput
|
|
149830
149959
|
lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
|
|
149831
149960
|
campaigns?: CampaignToSocialPostCreateNestedManyWithoutSocialPostInput
|
|
@@ -149865,6 +149994,7 @@ export namespace Prisma {
|
|
|
149865
149994
|
saves?: number | null
|
|
149866
149995
|
shares?: number | null
|
|
149867
149996
|
userId?: number | null
|
|
149997
|
+
mediaCleanupChecked?: boolean | null
|
|
149868
149998
|
lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
149869
149999
|
campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
149870
150000
|
publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
|
|
@@ -157648,6 +157778,7 @@ export namespace Prisma {
|
|
|
157648
157778
|
comments?: number | null
|
|
157649
157779
|
saves?: number | null
|
|
157650
157780
|
shares?: number | null
|
|
157781
|
+
mediaCleanupChecked?: boolean | null
|
|
157651
157782
|
user?: UserCreateNestedOneWithoutSocialPostsInput
|
|
157652
157783
|
campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
|
|
157653
157784
|
lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
|
|
@@ -157688,6 +157819,7 @@ export namespace Prisma {
|
|
|
157688
157819
|
shares?: number | null
|
|
157689
157820
|
userId?: number | null
|
|
157690
157821
|
campaignId?: number | null
|
|
157822
|
+
mediaCleanupChecked?: boolean | null
|
|
157691
157823
|
lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
157692
157824
|
campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
157693
157825
|
}
|
|
@@ -157739,6 +157871,7 @@ export namespace Prisma {
|
|
|
157739
157871
|
comments?: NullableIntFieldUpdateOperationsInput | number | null
|
|
157740
157872
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
157741
157873
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
157874
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
157742
157875
|
user?: UserUpdateOneWithoutSocialPostsNestedInput
|
|
157743
157876
|
campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
|
|
157744
157877
|
lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
|
|
@@ -157779,6 +157912,7 @@ export namespace Prisma {
|
|
|
157779
157912
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
157780
157913
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
157781
157914
|
campaignId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
157915
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
157782
157916
|
lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
157783
157917
|
campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
157784
157918
|
}
|
|
@@ -157962,6 +158096,7 @@ export namespace Prisma {
|
|
|
157962
158096
|
comments?: number | null
|
|
157963
158097
|
saves?: number | null
|
|
157964
158098
|
shares?: number | null
|
|
158099
|
+
mediaCleanupChecked?: boolean | null
|
|
157965
158100
|
user?: UserCreateNestedOneWithoutSocialPostsInput
|
|
157966
158101
|
campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
|
|
157967
158102
|
lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
|
|
@@ -158002,6 +158137,7 @@ export namespace Prisma {
|
|
|
158002
158137
|
shares?: number | null
|
|
158003
158138
|
userId?: number | null
|
|
158004
158139
|
campaignId?: number | null
|
|
158140
|
+
mediaCleanupChecked?: boolean | null
|
|
158005
158141
|
lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
158006
158142
|
publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
|
|
158007
158143
|
}
|
|
@@ -158207,6 +158343,7 @@ export namespace Prisma {
|
|
|
158207
158343
|
comments?: NullableIntFieldUpdateOperationsInput | number | null
|
|
158208
158344
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
158209
158345
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
158346
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
158210
158347
|
user?: UserUpdateOneWithoutSocialPostsNestedInput
|
|
158211
158348
|
campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
|
|
158212
158349
|
lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
|
|
@@ -158247,6 +158384,7 @@ export namespace Prisma {
|
|
|
158247
158384
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
158248
158385
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
158249
158386
|
campaignId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
158387
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
158250
158388
|
lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
158251
158389
|
publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
|
|
158252
158390
|
}
|
|
@@ -161507,6 +161645,7 @@ export namespace Prisma {
|
|
|
161507
161645
|
avgViews?: number | null
|
|
161508
161646
|
verified?: boolean | null
|
|
161509
161647
|
visibility?: string
|
|
161648
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
161510
161649
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
161511
161650
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
161512
161651
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -161532,6 +161671,7 @@ export namespace Prisma {
|
|
|
161532
161671
|
avgViews?: number | null
|
|
161533
161672
|
verified?: boolean | null
|
|
161534
161673
|
visibility?: string
|
|
161674
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
161535
161675
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
161536
161676
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
161537
161677
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -161904,6 +162044,7 @@ export namespace Prisma {
|
|
|
161904
162044
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
161905
162045
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
161906
162046
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
162047
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
161907
162048
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
161908
162049
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
161909
162050
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -161929,6 +162070,7 @@ export namespace Prisma {
|
|
|
161929
162070
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
161930
162071
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
161931
162072
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
162073
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
161932
162074
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
161933
162075
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
161934
162076
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -162928,6 +163070,7 @@ export namespace Prisma {
|
|
|
162928
163070
|
avgViews?: number | null
|
|
162929
163071
|
verified?: boolean | null
|
|
162930
163072
|
visibility?: string
|
|
163073
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
162931
163074
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
162932
163075
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
162933
163076
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -162953,6 +163096,7 @@ export namespace Prisma {
|
|
|
162953
163096
|
avgViews?: number | null
|
|
162954
163097
|
verified?: boolean | null
|
|
162955
163098
|
visibility?: string
|
|
163099
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
162956
163100
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
162957
163101
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
162958
163102
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -163095,6 +163239,7 @@ export namespace Prisma {
|
|
|
163095
163239
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
163096
163240
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
163097
163241
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
163242
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
163098
163243
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
163099
163244
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
163100
163245
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -163120,6 +163265,7 @@ export namespace Prisma {
|
|
|
163120
163265
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
163121
163266
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
163122
163267
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
163268
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
163123
163269
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
163124
163270
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
163125
163271
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -163654,6 +163800,7 @@ export namespace Prisma {
|
|
|
163654
163800
|
avgViews?: number | null
|
|
163655
163801
|
verified?: boolean | null
|
|
163656
163802
|
visibility?: string
|
|
163803
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
163657
163804
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
163658
163805
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
163659
163806
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -163679,6 +163826,7 @@ export namespace Prisma {
|
|
|
163679
163826
|
avgViews?: number | null
|
|
163680
163827
|
verified?: boolean | null
|
|
163681
163828
|
visibility?: string
|
|
163829
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
163682
163830
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
163683
163831
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
163684
163832
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -163717,6 +163865,7 @@ export namespace Prisma {
|
|
|
163717
163865
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
163718
163866
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
163719
163867
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
163868
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
163720
163869
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
163721
163870
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
163722
163871
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -163742,6 +163891,7 @@ export namespace Prisma {
|
|
|
163742
163891
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
163743
163892
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
163744
163893
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
163894
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
163745
163895
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
163746
163896
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
163747
163897
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -164510,6 +164660,7 @@ export namespace Prisma {
|
|
|
164510
164660
|
comments?: number | null
|
|
164511
164661
|
saves?: number | null
|
|
164512
164662
|
shares?: number | null
|
|
164663
|
+
mediaCleanupChecked?: boolean | null
|
|
164513
164664
|
user?: UserCreateNestedOneWithoutSocialPostsInput
|
|
164514
164665
|
campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
|
|
164515
164666
|
campaigns?: CampaignToSocialPostCreateNestedManyWithoutSocialPostInput
|
|
@@ -164550,6 +164701,7 @@ export namespace Prisma {
|
|
|
164550
164701
|
shares?: number | null
|
|
164551
164702
|
userId?: number | null
|
|
164552
164703
|
campaignId?: number | null
|
|
164704
|
+
mediaCleanupChecked?: boolean | null
|
|
164553
164705
|
campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
|
|
164554
164706
|
publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
|
|
164555
164707
|
}
|
|
@@ -164635,6 +164787,7 @@ export namespace Prisma {
|
|
|
164635
164787
|
comments?: NullableIntFieldUpdateOperationsInput | number | null
|
|
164636
164788
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
164637
164789
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
164790
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
164638
164791
|
user?: UserUpdateOneWithoutSocialPostsNestedInput
|
|
164639
164792
|
campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
|
|
164640
164793
|
campaigns?: CampaignToSocialPostUpdateManyWithoutSocialPostNestedInput
|
|
@@ -164675,6 +164828,7 @@ export namespace Prisma {
|
|
|
164675
164828
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
164676
164829
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
164677
164830
|
campaignId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
164831
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
164678
164832
|
campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
164679
164833
|
publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
|
|
164680
164834
|
}
|
|
@@ -171764,6 +171918,7 @@ export namespace Prisma {
|
|
|
171764
171918
|
avgViews?: number | null
|
|
171765
171919
|
verified?: boolean | null
|
|
171766
171920
|
visibility?: string
|
|
171921
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
171767
171922
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
171768
171923
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
171769
171924
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -171789,6 +171944,7 @@ export namespace Prisma {
|
|
|
171789
171944
|
avgViews?: number | null
|
|
171790
171945
|
verified?: boolean | null
|
|
171791
171946
|
visibility?: string
|
|
171947
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
171792
171948
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
171793
171949
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
171794
171950
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -173080,6 +173236,7 @@ export namespace Prisma {
|
|
|
173080
173236
|
saves?: number | null
|
|
173081
173237
|
shares?: number | null
|
|
173082
173238
|
campaignId?: number | null
|
|
173239
|
+
mediaCleanupChecked?: boolean | null
|
|
173083
173240
|
}
|
|
173084
173241
|
|
|
173085
173242
|
export type PaymentTransactionCreateManyCreatorInput = {
|
|
@@ -173122,6 +173279,7 @@ export namespace Prisma {
|
|
|
173122
173279
|
avgViews?: number | null
|
|
173123
173280
|
verified?: boolean | null
|
|
173124
173281
|
visibility?: string
|
|
173282
|
+
connectionStatus?: $Enums.ConnectionStatus | null
|
|
173125
173283
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
173126
173284
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
173127
173285
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -173774,6 +173932,7 @@ export namespace Prisma {
|
|
|
173774
173932
|
comments?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173775
173933
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173776
173934
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173935
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
173777
173936
|
campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
|
|
173778
173937
|
lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
|
|
173779
173938
|
campaigns?: CampaignToSocialPostUpdateManyWithoutSocialPostNestedInput
|
|
@@ -173813,6 +173972,7 @@ export namespace Prisma {
|
|
|
173813
173972
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173814
173973
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173815
173974
|
campaignId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173975
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
173816
173976
|
lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
173817
173977
|
campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
173818
173978
|
publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
|
|
@@ -173851,6 +174011,7 @@ export namespace Prisma {
|
|
|
173851
174011
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173852
174012
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173853
174013
|
campaignId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
174014
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
173854
174015
|
}
|
|
173855
174016
|
|
|
173856
174017
|
export type PaymentTransactionUpdateWithoutCreatorInput = {
|
|
@@ -173949,6 +174110,7 @@ export namespace Prisma {
|
|
|
173949
174110
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173950
174111
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
173951
174112
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
174113
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
173952
174114
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
173953
174115
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
173954
174116
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -173973,6 +174135,7 @@ export namespace Prisma {
|
|
|
173973
174135
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173974
174136
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
173975
174137
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
174138
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
173976
174139
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
173977
174140
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
173978
174141
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -173997,6 +174160,7 @@ export namespace Prisma {
|
|
|
173997
174160
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
173998
174161
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
173999
174162
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
174163
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
174000
174164
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
174001
174165
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
174002
174166
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -176293,6 +176457,7 @@ export namespace Prisma {
|
|
|
176293
176457
|
saves?: number | null
|
|
176294
176458
|
shares?: number | null
|
|
176295
176459
|
userId?: number | null
|
|
176460
|
+
mediaCleanupChecked?: boolean | null
|
|
176296
176461
|
}
|
|
176297
176462
|
|
|
176298
176463
|
export type CampaignInviteCreateManyCampaignInput = {
|
|
@@ -176619,6 +176784,7 @@ export namespace Prisma {
|
|
|
176619
176784
|
comments?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176620
176785
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176621
176786
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176787
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
176622
176788
|
user?: UserUpdateOneWithoutSocialPostsNestedInput
|
|
176623
176789
|
lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
|
|
176624
176790
|
campaigns?: CampaignToSocialPostUpdateManyWithoutSocialPostNestedInput
|
|
@@ -176658,6 +176824,7 @@ export namespace Prisma {
|
|
|
176658
176824
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176659
176825
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176660
176826
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176827
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
176661
176828
|
lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
176662
176829
|
campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
|
|
176663
176830
|
publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
|
|
@@ -176696,6 +176863,7 @@ export namespace Prisma {
|
|
|
176696
176863
|
saves?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176697
176864
|
shares?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176698
176865
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
176866
|
+
mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
176699
176867
|
}
|
|
176700
176868
|
|
|
176701
176869
|
export type CampaignInviteUpdateWithoutCampaignInput = {
|
|
@@ -178786,6 +178954,7 @@ export namespace Prisma {
|
|
|
178786
178954
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178787
178955
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
178788
178956
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
178957
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
178789
178958
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
178790
178959
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
178791
178960
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -178811,6 +178980,7 @@ export namespace Prisma {
|
|
|
178811
178980
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178812
178981
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
178813
178982
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
178983
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
178814
178984
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
178815
178985
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
178816
178986
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -178835,6 +179005,7 @@ export namespace Prisma {
|
|
|
178835
179005
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
178836
179006
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
178837
179007
|
visibility?: StringFieldUpdateOperationsInput | string
|
|
179008
|
+
connectionStatus?: NullableEnumConnectionStatusFieldUpdateOperationsInput | $Enums.ConnectionStatus | null
|
|
178838
179009
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
178839
179010
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
178840
179011
|
phylloData?: JsonNullValueInput | InputJsonValue
|