@creator.co/creatorco-prisma-client 1.0.84 → 1.0.86-alpha-d17d77a

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/index-browser.js CHANGED
@@ -626,7 +626,8 @@ exports.Prisma.SocialPostScalarFieldEnum = {
626
626
  saves: 'saves',
627
627
  shares: 'shares',
628
628
  userId: 'userId',
629
- campaignId: 'campaignId'
629
+ campaignId: 'campaignId',
630
+ mediaCleanupChecked: 'mediaCleanupChecked'
630
631
  };
631
632
 
632
633
  exports.Prisma.PublicSocialPostScalarFieldEnum = {
package/index.d.ts CHANGED
@@ -51756,6 +51756,7 @@ export namespace Prisma {
51756
51756
  shares: number | null
51757
51757
  userId: number | null
51758
51758
  campaignId: number | null
51759
+ mediaCleanupChecked: boolean | null
51759
51760
  }
51760
51761
 
51761
51762
  export type SocialPostMaxAggregateOutputType = {
@@ -51791,6 +51792,7 @@ export namespace Prisma {
51791
51792
  shares: number | null
51792
51793
  userId: number | null
51793
51794
  campaignId: number | null
51795
+ mediaCleanupChecked: boolean | null
51794
51796
  }
51795
51797
 
51796
51798
  export type SocialPostCountAggregateOutputType = {
@@ -51827,6 +51829,7 @@ export namespace Prisma {
51827
51829
  shares: number
51828
51830
  userId: number
51829
51831
  campaignId: number
51832
+ mediaCleanupChecked: number
51830
51833
  _all: number
51831
51834
  }
51832
51835
 
@@ -51904,6 +51907,7 @@ export namespace Prisma {
51904
51907
  shares?: true
51905
51908
  userId?: true
51906
51909
  campaignId?: true
51910
+ mediaCleanupChecked?: true
51907
51911
  }
51908
51912
 
51909
51913
  export type SocialPostMaxAggregateInputType = {
@@ -51939,6 +51943,7 @@ export namespace Prisma {
51939
51943
  shares?: true
51940
51944
  userId?: true
51941
51945
  campaignId?: true
51946
+ mediaCleanupChecked?: true
51942
51947
  }
51943
51948
 
51944
51949
  export type SocialPostCountAggregateInputType = {
@@ -51975,6 +51980,7 @@ export namespace Prisma {
51975
51980
  shares?: true
51976
51981
  userId?: true
51977
51982
  campaignId?: true
51983
+ mediaCleanupChecked?: true
51978
51984
  _all?: true
51979
51985
  }
51980
51986
 
@@ -52098,6 +52104,7 @@ export namespace Prisma {
52098
52104
  shares: number | null
52099
52105
  userId: number | null
52100
52106
  campaignId: number | null
52107
+ mediaCleanupChecked: boolean | null
52101
52108
  _count: SocialPostCountAggregateOutputType | null
52102
52109
  _avg: SocialPostAvgAggregateOutputType | null
52103
52110
  _sum: SocialPostSumAggregateOutputType | null
@@ -52153,6 +52160,7 @@ export namespace Prisma {
52153
52160
  shares?: boolean
52154
52161
  userId?: boolean
52155
52162
  campaignId?: boolean
52163
+ mediaCleanupChecked?: boolean
52156
52164
  user?: boolean | SocialPost$userArgs<ExtArgs>
52157
52165
  campaign?: boolean | SocialPost$campaignArgs<ExtArgs>
52158
52166
  lists?: boolean | SocialPost$listsArgs<ExtArgs>
@@ -52195,6 +52203,7 @@ export namespace Prisma {
52195
52203
  shares?: boolean
52196
52204
  userId?: boolean
52197
52205
  campaignId?: boolean
52206
+ mediaCleanupChecked?: boolean
52198
52207
  user?: boolean | SocialPost$userArgs<ExtArgs>
52199
52208
  campaign?: boolean | SocialPost$campaignArgs<ExtArgs>
52200
52209
  }, ExtArgs["result"]["socialPost"]>
@@ -52233,6 +52242,7 @@ export namespace Prisma {
52233
52242
  shares?: boolean
52234
52243
  userId?: boolean
52235
52244
  campaignId?: boolean
52245
+ mediaCleanupChecked?: boolean
52236
52246
  }
52237
52247
 
52238
52248
  export type SocialPostInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -52291,6 +52301,7 @@ export namespace Prisma {
52291
52301
  shares: number | null
52292
52302
  userId: number | null
52293
52303
  campaignId: number | null
52304
+ mediaCleanupChecked: boolean | null
52294
52305
  }, ExtArgs["result"]["socialPost"]>
52295
52306
  composites: {}
52296
52307
  }
@@ -52722,6 +52733,7 @@ export namespace Prisma {
52722
52733
  readonly shares: FieldRef<"SocialPost", 'Int'>
52723
52734
  readonly userId: FieldRef<"SocialPost", 'Int'>
52724
52735
  readonly campaignId: FieldRef<"SocialPost", 'Int'>
52736
+ readonly mediaCleanupChecked: FieldRef<"SocialPost", 'Boolean'>
52725
52737
  }
52726
52738
 
52727
52739
 
@@ -107027,7 +107039,8 @@ export namespace Prisma {
107027
107039
  saves: 'saves',
107028
107040
  shares: 'shares',
107029
107041
  userId: 'userId',
107030
- campaignId: 'campaignId'
107042
+ campaignId: 'campaignId',
107043
+ mediaCleanupChecked: 'mediaCleanupChecked'
107031
107044
  };
107032
107045
 
107033
107046
  export type SocialPostScalarFieldEnum = (typeof SocialPostScalarFieldEnum)[keyof typeof SocialPostScalarFieldEnum]
@@ -112136,6 +112149,7 @@ export namespace Prisma {
112136
112149
  shares?: IntNullableFilter<"SocialPost"> | number | null
112137
112150
  userId?: IntNullableFilter<"SocialPost"> | number | null
112138
112151
  campaignId?: IntNullableFilter<"SocialPost"> | number | null
112152
+ mediaCleanupChecked?: BoolNullableFilter<"SocialPost"> | boolean | null
112139
112153
  user?: XOR<UserNullableRelationFilter, UserWhereInput> | null
112140
112154
  campaign?: XOR<CampaignNullableRelationFilter, CampaignWhereInput> | null
112141
112155
  lists?: ListToSocialPostListRelationFilter
@@ -112177,6 +112191,7 @@ export namespace Prisma {
112177
112191
  shares?: SortOrderInput | SortOrder
112178
112192
  userId?: SortOrderInput | SortOrder
112179
112193
  campaignId?: SortOrderInput | SortOrder
112194
+ mediaCleanupChecked?: SortOrderInput | SortOrder
112180
112195
  user?: UserOrderByWithRelationInput
112181
112196
  campaign?: CampaignOrderByWithRelationInput
112182
112197
  lists?: ListToSocialPostOrderByRelationAggregateInput
@@ -112223,6 +112238,7 @@ export namespace Prisma {
112223
112238
  shares?: IntNullableFilter<"SocialPost"> | number | null
112224
112239
  userId?: IntNullableFilter<"SocialPost"> | number | null
112225
112240
  campaignId?: IntNullableFilter<"SocialPost"> | number | null
112241
+ mediaCleanupChecked?: BoolNullableFilter<"SocialPost"> | boolean | null
112226
112242
  user?: XOR<UserNullableRelationFilter, UserWhereInput> | null
112227
112243
  campaign?: XOR<CampaignNullableRelationFilter, CampaignWhereInput> | null
112228
112244
  lists?: ListToSocialPostListRelationFilter
@@ -112264,6 +112280,7 @@ export namespace Prisma {
112264
112280
  shares?: SortOrderInput | SortOrder
112265
112281
  userId?: SortOrderInput | SortOrder
112266
112282
  campaignId?: SortOrderInput | SortOrder
112283
+ mediaCleanupChecked?: SortOrderInput | SortOrder
112267
112284
  _count?: SocialPostCountOrderByAggregateInput
112268
112285
  _avg?: SocialPostAvgOrderByAggregateInput
112269
112286
  _max?: SocialPostMaxOrderByAggregateInput
@@ -112308,6 +112325,7 @@ export namespace Prisma {
112308
112325
  shares?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
112309
112326
  userId?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
112310
112327
  campaignId?: IntNullableWithAggregatesFilter<"SocialPost"> | number | null
112328
+ mediaCleanupChecked?: BoolNullableWithAggregatesFilter<"SocialPost"> | boolean | null
112311
112329
  }
112312
112330
 
112313
112331
  export type PublicSocialPostWhereInput = {
@@ -119978,6 +119996,7 @@ export namespace Prisma {
119978
119996
  comments?: number | null
119979
119997
  saves?: number | null
119980
119998
  shares?: number | null
119999
+ mediaCleanupChecked?: boolean | null
119981
120000
  user?: UserCreateNestedOneWithoutSocialPostsInput
119982
120001
  campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
119983
120002
  lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
@@ -120019,6 +120038,7 @@ export namespace Prisma {
120019
120038
  shares?: number | null
120020
120039
  userId?: number | null
120021
120040
  campaignId?: number | null
120041
+ mediaCleanupChecked?: boolean | null
120022
120042
  lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
120023
120043
  campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
120024
120044
  publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
@@ -120055,6 +120075,7 @@ export namespace Prisma {
120055
120075
  comments?: NullableIntFieldUpdateOperationsInput | number | null
120056
120076
  saves?: NullableIntFieldUpdateOperationsInput | number | null
120057
120077
  shares?: NullableIntFieldUpdateOperationsInput | number | null
120078
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
120058
120079
  user?: UserUpdateOneWithoutSocialPostsNestedInput
120059
120080
  campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
120060
120081
  lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
@@ -120096,6 +120117,7 @@ export namespace Prisma {
120096
120117
  shares?: NullableIntFieldUpdateOperationsInput | number | null
120097
120118
  userId?: NullableIntFieldUpdateOperationsInput | number | null
120098
120119
  campaignId?: NullableIntFieldUpdateOperationsInput | number | null
120120
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
120099
120121
  lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
120100
120122
  campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
120101
120123
  publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
@@ -120135,6 +120157,7 @@ export namespace Prisma {
120135
120157
  shares?: number | null
120136
120158
  userId?: number | null
120137
120159
  campaignId?: number | null
120160
+ mediaCleanupChecked?: boolean | null
120138
120161
  }
120139
120162
 
120140
120163
  export type SocialPostUpdateManyMutationInput = {
@@ -120168,6 +120191,7 @@ export namespace Prisma {
120168
120191
  comments?: NullableIntFieldUpdateOperationsInput | number | null
120169
120192
  saves?: NullableIntFieldUpdateOperationsInput | number | null
120170
120193
  shares?: NullableIntFieldUpdateOperationsInput | number | null
120194
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
120171
120195
  }
120172
120196
 
120173
120197
  export type SocialPostUncheckedUpdateManyInput = {
@@ -120204,6 +120228,7 @@ export namespace Prisma {
120204
120228
  shares?: NullableIntFieldUpdateOperationsInput | number | null
120205
120229
  userId?: NullableIntFieldUpdateOperationsInput | number | null
120206
120230
  campaignId?: NullableIntFieldUpdateOperationsInput | number | null
120231
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
120207
120232
  }
120208
120233
 
120209
120234
  export type PublicSocialPostCreateInput = {
@@ -127498,6 +127523,7 @@ export namespace Prisma {
127498
127523
  shares?: SortOrder
127499
127524
  userId?: SortOrder
127500
127525
  campaignId?: SortOrder
127526
+ mediaCleanupChecked?: SortOrder
127501
127527
  }
127502
127528
 
127503
127529
  export type SocialPostAvgOrderByAggregateInput = {
@@ -127553,6 +127579,7 @@ export namespace Prisma {
127553
127579
  shares?: SortOrder
127554
127580
  userId?: SortOrder
127555
127581
  campaignId?: SortOrder
127582
+ mediaCleanupChecked?: SortOrder
127556
127583
  }
127557
127584
 
127558
127585
  export type SocialPostMinOrderByAggregateInput = {
@@ -127588,6 +127615,7 @@ export namespace Prisma {
127588
127615
  shares?: SortOrder
127589
127616
  userId?: SortOrder
127590
127617
  campaignId?: SortOrder
127618
+ mediaCleanupChecked?: SortOrder
127591
127619
  }
127592
127620
 
127593
127621
  export type SocialPostSumOrderByAggregateInput = {
@@ -140210,6 +140238,7 @@ export namespace Prisma {
140210
140238
  comments?: number | null
140211
140239
  saves?: number | null
140212
140240
  shares?: number | null
140241
+ mediaCleanupChecked?: boolean | null
140213
140242
  campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
140214
140243
  lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
140215
140244
  campaigns?: CampaignToSocialPostCreateNestedManyWithoutSocialPostInput
@@ -140249,6 +140278,7 @@ export namespace Prisma {
140249
140278
  saves?: number | null
140250
140279
  shares?: number | null
140251
140280
  campaignId?: number | null
140281
+ mediaCleanupChecked?: boolean | null
140252
140282
  lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
140253
140283
  campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
140254
140284
  publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
@@ -141710,6 +141740,7 @@ export namespace Prisma {
141710
141740
  shares?: IntNullableFilter<"SocialPost"> | number | null
141711
141741
  userId?: IntNullableFilter<"SocialPost"> | number | null
141712
141742
  campaignId?: IntNullableFilter<"SocialPost"> | number | null
141743
+ mediaCleanupChecked?: BoolNullableFilter<"SocialPost"> | boolean | null
141713
141744
  }
141714
141745
 
141715
141746
  export type PaymentTransactionUpsertWithWhereUniqueWithoutCreatorInput = {
@@ -149923,6 +149954,7 @@ export namespace Prisma {
149923
149954
  comments?: number | null
149924
149955
  saves?: number | null
149925
149956
  shares?: number | null
149957
+ mediaCleanupChecked?: boolean | null
149926
149958
  user?: UserCreateNestedOneWithoutSocialPostsInput
149927
149959
  lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
149928
149960
  campaigns?: CampaignToSocialPostCreateNestedManyWithoutSocialPostInput
@@ -149962,6 +149994,7 @@ export namespace Prisma {
149962
149994
  saves?: number | null
149963
149995
  shares?: number | null
149964
149996
  userId?: number | null
149997
+ mediaCleanupChecked?: boolean | null
149965
149998
  lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
149966
149999
  campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
149967
150000
  publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
@@ -157745,6 +157778,7 @@ export namespace Prisma {
157745
157778
  comments?: number | null
157746
157779
  saves?: number | null
157747
157780
  shares?: number | null
157781
+ mediaCleanupChecked?: boolean | null
157748
157782
  user?: UserCreateNestedOneWithoutSocialPostsInput
157749
157783
  campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
157750
157784
  lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
@@ -157785,6 +157819,7 @@ export namespace Prisma {
157785
157819
  shares?: number | null
157786
157820
  userId?: number | null
157787
157821
  campaignId?: number | null
157822
+ mediaCleanupChecked?: boolean | null
157788
157823
  lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
157789
157824
  campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
157790
157825
  }
@@ -157836,6 +157871,7 @@ export namespace Prisma {
157836
157871
  comments?: NullableIntFieldUpdateOperationsInput | number | null
157837
157872
  saves?: NullableIntFieldUpdateOperationsInput | number | null
157838
157873
  shares?: NullableIntFieldUpdateOperationsInput | number | null
157874
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
157839
157875
  user?: UserUpdateOneWithoutSocialPostsNestedInput
157840
157876
  campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
157841
157877
  lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
@@ -157876,6 +157912,7 @@ export namespace Prisma {
157876
157912
  shares?: NullableIntFieldUpdateOperationsInput | number | null
157877
157913
  userId?: NullableIntFieldUpdateOperationsInput | number | null
157878
157914
  campaignId?: NullableIntFieldUpdateOperationsInput | number | null
157915
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
157879
157916
  lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
157880
157917
  campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
157881
157918
  }
@@ -158059,6 +158096,7 @@ export namespace Prisma {
158059
158096
  comments?: number | null
158060
158097
  saves?: number | null
158061
158098
  shares?: number | null
158099
+ mediaCleanupChecked?: boolean | null
158062
158100
  user?: UserCreateNestedOneWithoutSocialPostsInput
158063
158101
  campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
158064
158102
  lists?: ListToSocialPostCreateNestedManyWithoutSocialPostInput
@@ -158099,6 +158137,7 @@ export namespace Prisma {
158099
158137
  shares?: number | null
158100
158138
  userId?: number | null
158101
158139
  campaignId?: number | null
158140
+ mediaCleanupChecked?: boolean | null
158102
158141
  lists?: ListToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
158103
158142
  publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
158104
158143
  }
@@ -158304,6 +158343,7 @@ export namespace Prisma {
158304
158343
  comments?: NullableIntFieldUpdateOperationsInput | number | null
158305
158344
  saves?: NullableIntFieldUpdateOperationsInput | number | null
158306
158345
  shares?: NullableIntFieldUpdateOperationsInput | number | null
158346
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
158307
158347
  user?: UserUpdateOneWithoutSocialPostsNestedInput
158308
158348
  campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
158309
158349
  lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
@@ -158344,6 +158384,7 @@ export namespace Prisma {
158344
158384
  shares?: NullableIntFieldUpdateOperationsInput | number | null
158345
158385
  userId?: NullableIntFieldUpdateOperationsInput | number | null
158346
158386
  campaignId?: NullableIntFieldUpdateOperationsInput | number | null
158387
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
158347
158388
  lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
158348
158389
  publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
158349
158390
  }
@@ -164619,6 +164660,7 @@ export namespace Prisma {
164619
164660
  comments?: number | null
164620
164661
  saves?: number | null
164621
164662
  shares?: number | null
164663
+ mediaCleanupChecked?: boolean | null
164622
164664
  user?: UserCreateNestedOneWithoutSocialPostsInput
164623
164665
  campaign?: CampaignCreateNestedOneWithoutSocialPostsInput
164624
164666
  campaigns?: CampaignToSocialPostCreateNestedManyWithoutSocialPostInput
@@ -164659,6 +164701,7 @@ export namespace Prisma {
164659
164701
  shares?: number | null
164660
164702
  userId?: number | null
164661
164703
  campaignId?: number | null
164704
+ mediaCleanupChecked?: boolean | null
164662
164705
  campaigns?: CampaignToSocialPostUncheckedCreateNestedManyWithoutSocialPostInput
164663
164706
  publicPost?: PublicSocialPostUncheckedCreateNestedOneWithoutSocialPostInput
164664
164707
  }
@@ -164744,6 +164787,7 @@ export namespace Prisma {
164744
164787
  comments?: NullableIntFieldUpdateOperationsInput | number | null
164745
164788
  saves?: NullableIntFieldUpdateOperationsInput | number | null
164746
164789
  shares?: NullableIntFieldUpdateOperationsInput | number | null
164790
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
164747
164791
  user?: UserUpdateOneWithoutSocialPostsNestedInput
164748
164792
  campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
164749
164793
  campaigns?: CampaignToSocialPostUpdateManyWithoutSocialPostNestedInput
@@ -164784,6 +164828,7 @@ export namespace Prisma {
164784
164828
  shares?: NullableIntFieldUpdateOperationsInput | number | null
164785
164829
  userId?: NullableIntFieldUpdateOperationsInput | number | null
164786
164830
  campaignId?: NullableIntFieldUpdateOperationsInput | number | null
164831
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
164787
164832
  campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
164788
164833
  publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
164789
164834
  }
@@ -173191,6 +173236,7 @@ export namespace Prisma {
173191
173236
  saves?: number | null
173192
173237
  shares?: number | null
173193
173238
  campaignId?: number | null
173239
+ mediaCleanupChecked?: boolean | null
173194
173240
  }
173195
173241
 
173196
173242
  export type PaymentTransactionCreateManyCreatorInput = {
@@ -173886,6 +173932,7 @@ export namespace Prisma {
173886
173932
  comments?: NullableIntFieldUpdateOperationsInput | number | null
173887
173933
  saves?: NullableIntFieldUpdateOperationsInput | number | null
173888
173934
  shares?: NullableIntFieldUpdateOperationsInput | number | null
173935
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
173889
173936
  campaign?: CampaignUpdateOneWithoutSocialPostsNestedInput
173890
173937
  lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
173891
173938
  campaigns?: CampaignToSocialPostUpdateManyWithoutSocialPostNestedInput
@@ -173925,6 +173972,7 @@ export namespace Prisma {
173925
173972
  saves?: NullableIntFieldUpdateOperationsInput | number | null
173926
173973
  shares?: NullableIntFieldUpdateOperationsInput | number | null
173927
173974
  campaignId?: NullableIntFieldUpdateOperationsInput | number | null
173975
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
173928
173976
  lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
173929
173977
  campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
173930
173978
  publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
@@ -173963,6 +174011,7 @@ export namespace Prisma {
173963
174011
  saves?: NullableIntFieldUpdateOperationsInput | number | null
173964
174012
  shares?: NullableIntFieldUpdateOperationsInput | number | null
173965
174013
  campaignId?: NullableIntFieldUpdateOperationsInput | number | null
174014
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
173966
174015
  }
173967
174016
 
173968
174017
  export type PaymentTransactionUpdateWithoutCreatorInput = {
@@ -176408,6 +176457,7 @@ export namespace Prisma {
176408
176457
  saves?: number | null
176409
176458
  shares?: number | null
176410
176459
  userId?: number | null
176460
+ mediaCleanupChecked?: boolean | null
176411
176461
  }
176412
176462
 
176413
176463
  export type CampaignInviteCreateManyCampaignInput = {
@@ -176734,6 +176784,7 @@ export namespace Prisma {
176734
176784
  comments?: NullableIntFieldUpdateOperationsInput | number | null
176735
176785
  saves?: NullableIntFieldUpdateOperationsInput | number | null
176736
176786
  shares?: NullableIntFieldUpdateOperationsInput | number | null
176787
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
176737
176788
  user?: UserUpdateOneWithoutSocialPostsNestedInput
176738
176789
  lists?: ListToSocialPostUpdateManyWithoutSocialPostNestedInput
176739
176790
  campaigns?: CampaignToSocialPostUpdateManyWithoutSocialPostNestedInput
@@ -176773,6 +176824,7 @@ export namespace Prisma {
176773
176824
  saves?: NullableIntFieldUpdateOperationsInput | number | null
176774
176825
  shares?: NullableIntFieldUpdateOperationsInput | number | null
176775
176826
  userId?: NullableIntFieldUpdateOperationsInput | number | null
176827
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
176776
176828
  lists?: ListToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
176777
176829
  campaigns?: CampaignToSocialPostUncheckedUpdateManyWithoutSocialPostNestedInput
176778
176830
  publicPost?: PublicSocialPostUncheckedUpdateOneWithoutSocialPostNestedInput
@@ -176811,6 +176863,7 @@ export namespace Prisma {
176811
176863
  saves?: NullableIntFieldUpdateOperationsInput | number | null
176812
176864
  shares?: NullableIntFieldUpdateOperationsInput | number | null
176813
176865
  userId?: NullableIntFieldUpdateOperationsInput | number | null
176866
+ mediaCleanupChecked?: NullableBoolFieldUpdateOperationsInput | boolean | null
176814
176867
  }
176815
176868
 
176816
176869
  export type CampaignInviteUpdateWithoutCampaignInput = {