@creator.co/creatorco-prisma-client 1.0.43 → 1.0.44-alpha-49cbfe3

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.d.ts CHANGED
@@ -8488,6 +8488,7 @@ export namespace Prisma {
8488
8488
  closedReason: string | null
8489
8489
  usercomLastSynced: Date | null
8490
8490
  referrerId: number | null
8491
+ fullName: string | null
8491
8492
  }
8492
8493
 
8493
8494
  export type UserMaxAggregateOutputType = {
@@ -8509,6 +8510,7 @@ export namespace Prisma {
8509
8510
  closedReason: string | null
8510
8511
  usercomLastSynced: Date | null
8511
8512
  referrerId: number | null
8513
+ fullName: string | null
8512
8514
  }
8513
8515
 
8514
8516
  export type UserCountAggregateOutputType = {
@@ -8531,6 +8533,7 @@ export namespace Prisma {
8531
8533
  usercomLastSynced: number
8532
8534
  extraData: number
8533
8535
  referrerId: number
8536
+ fullName: number
8534
8537
  _all: number
8535
8538
  }
8536
8539
 
@@ -8566,6 +8569,7 @@ export namespace Prisma {
8566
8569
  closedReason?: true
8567
8570
  usercomLastSynced?: true
8568
8571
  referrerId?: true
8572
+ fullName?: true
8569
8573
  }
8570
8574
 
8571
8575
  export type UserMaxAggregateInputType = {
@@ -8587,6 +8591,7 @@ export namespace Prisma {
8587
8591
  closedReason?: true
8588
8592
  usercomLastSynced?: true
8589
8593
  referrerId?: true
8594
+ fullName?: true
8590
8595
  }
8591
8596
 
8592
8597
  export type UserCountAggregateInputType = {
@@ -8609,6 +8614,7 @@ export namespace Prisma {
8609
8614
  usercomLastSynced?: true
8610
8615
  extraData?: true
8611
8616
  referrerId?: true
8617
+ fullName?: true
8612
8618
  _all?: true
8613
8619
  }
8614
8620
 
@@ -8718,6 +8724,7 @@ export namespace Prisma {
8718
8724
  usercomLastSynced: Date | null
8719
8725
  extraData: JsonValue
8720
8726
  referrerId: number | null
8727
+ fullName: string | null
8721
8728
  _count: UserCountAggregateOutputType | null
8722
8729
  _avg: UserAvgAggregateOutputType | null
8723
8730
  _sum: UserSumAggregateOutputType | null
@@ -8759,6 +8766,7 @@ export namespace Prisma {
8759
8766
  usercomLastSynced?: boolean
8760
8767
  extraData?: boolean
8761
8768
  referrerId?: boolean
8769
+ fullName?: boolean
8762
8770
  referrer?: boolean | User$referrerArgs<ExtArgs>
8763
8771
  referredUsers?: boolean | User$referredUsersArgs<ExtArgs>
8764
8772
  logs?: boolean | User$logsArgs<ExtArgs>
@@ -8803,6 +8811,7 @@ export namespace Prisma {
8803
8811
  usercomLastSynced?: boolean
8804
8812
  extraData?: boolean
8805
8813
  referrerId?: boolean
8814
+ fullName?: boolean
8806
8815
  referrer?: boolean | User$referrerArgs<ExtArgs>
8807
8816
  }, ExtArgs["result"]["user"]>
8808
8817
 
@@ -8826,6 +8835,7 @@ export namespace Prisma {
8826
8835
  usercomLastSynced?: boolean
8827
8836
  extraData?: boolean
8828
8837
  referrerId?: boolean
8838
+ fullName?: boolean
8829
8839
  }
8830
8840
 
8831
8841
  export type UserInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -8901,6 +8911,7 @@ export namespace Prisma {
8901
8911
  usercomLastSynced: Date | null
8902
8912
  extraData: Prisma.JsonValue
8903
8913
  referrerId: number | null
8914
+ fullName: string | null
8904
8915
  }, ExtArgs["result"]["user"]>
8905
8916
  composites: {}
8906
8917
  }
@@ -9380,6 +9391,7 @@ export namespace Prisma {
9380
9391
  readonly usercomLastSynced: FieldRef<"User", 'DateTime'>
9381
9392
  readonly extraData: FieldRef<"User", 'Json'>
9382
9393
  readonly referrerId: FieldRef<"User", 'Int'>
9394
+ readonly fullName: FieldRef<"User", 'String'>
9383
9395
  }
9384
9396
 
9385
9397
 
@@ -86467,7 +86479,8 @@ export namespace Prisma {
86467
86479
  closedReason: 'closedReason',
86468
86480
  usercomLastSynced: 'usercomLastSynced',
86469
86481
  extraData: 'extraData',
86470
- referrerId: 'referrerId'
86482
+ referrerId: 'referrerId',
86483
+ fullName: 'fullName'
86471
86484
  };
86472
86485
 
86473
86486
  export type UserScalarFieldEnum = (typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum]
@@ -87569,7 +87582,8 @@ export namespace Prisma {
87569
87582
  profilePicUrl: 'profilePicUrl',
87570
87583
  forgotPasswordKey: 'forgotPasswordKey',
87571
87584
  affiliateSlug: 'affiliateSlug',
87572
- closedReason: 'closedReason'
87585
+ closedReason: 'closedReason',
87586
+ fullName: 'fullName'
87573
87587
  };
87574
87588
 
87575
87589
  export type UserOrderByRelevanceFieldEnum = (typeof UserOrderByRelevanceFieldEnum)[keyof typeof UserOrderByRelevanceFieldEnum]
@@ -88207,6 +88221,7 @@ export namespace Prisma {
88207
88221
  usercomLastSynced?: DateTimeNullableFilter<"User"> | Date | string | null
88208
88222
  extraData?: JsonFilter<"User">
88209
88223
  referrerId?: IntNullableFilter<"User"> | number | null
88224
+ fullName?: StringNullableFilter<"User"> | string | null
88210
88225
  referrer?: XOR<UserNullableRelationFilter, UserWhereInput> | null
88211
88226
  referredUsers?: UserListRelationFilter
88212
88227
  logs?: LogListRelationFilter
@@ -88250,6 +88265,7 @@ export namespace Prisma {
88250
88265
  usercomLastSynced?: SortOrderInput | SortOrder
88251
88266
  extraData?: SortOrder
88252
88267
  referrerId?: SortOrderInput | SortOrder
88268
+ fullName?: SortOrderInput | SortOrder
88253
88269
  referrer?: UserOrderByWithRelationAndSearchRelevanceInput
88254
88270
  referredUsers?: UserOrderByRelationAggregateInput
88255
88271
  logs?: LogOrderByRelationAggregateInput
@@ -88297,6 +88313,7 @@ export namespace Prisma {
88297
88313
  usercomLastSynced?: DateTimeNullableFilter<"User"> | Date | string | null
88298
88314
  extraData?: JsonFilter<"User">
88299
88315
  referrerId?: IntNullableFilter<"User"> | number | null
88316
+ fullName?: StringNullableFilter<"User"> | string | null
88300
88317
  referrer?: XOR<UserNullableRelationFilter, UserWhereInput> | null
88301
88318
  referredUsers?: UserListRelationFilter
88302
88319
  logs?: LogListRelationFilter
@@ -88340,6 +88357,7 @@ export namespace Prisma {
88340
88357
  usercomLastSynced?: SortOrderInput | SortOrder
88341
88358
  extraData?: SortOrder
88342
88359
  referrerId?: SortOrderInput | SortOrder
88360
+ fullName?: SortOrderInput | SortOrder
88343
88361
  _count?: UserCountOrderByAggregateInput
88344
88362
  _avg?: UserAvgOrderByAggregateInput
88345
88363
  _max?: UserMaxOrderByAggregateInput
@@ -88370,6 +88388,7 @@ export namespace Prisma {
88370
88388
  usercomLastSynced?: DateTimeNullableWithAggregatesFilter<"User"> | Date | string | null
88371
88389
  extraData?: JsonWithAggregatesFilter<"User">
88372
88390
  referrerId?: IntNullableWithAggregatesFilter<"User"> | number | null
88391
+ fullName?: StringNullableWithAggregatesFilter<"User"> | string | null
88373
88392
  }
88374
88393
 
88375
88394
  export type LogWhereInput = {
@@ -94164,6 +94183,7 @@ export namespace Prisma {
94164
94183
  closedReason?: string | null
94165
94184
  usercomLastSynced?: Date | string | null
94166
94185
  extraData?: JsonNullValueInput | InputJsonValue
94186
+ fullName?: string | null
94167
94187
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
94168
94188
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
94169
94189
  logs?: LogCreateNestedManyWithoutUserInput
@@ -94207,6 +94227,7 @@ export namespace Prisma {
94207
94227
  usercomLastSynced?: Date | string | null
94208
94228
  extraData?: JsonNullValueInput | InputJsonValue
94209
94229
  referrerId?: number | null
94230
+ fullName?: string | null
94210
94231
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
94211
94232
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
94212
94233
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -94247,6 +94268,7 @@ export namespace Prisma {
94247
94268
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
94248
94269
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
94249
94270
  extraData?: JsonNullValueInput | InputJsonValue
94271
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
94250
94272
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
94251
94273
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
94252
94274
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -94290,6 +94312,7 @@ export namespace Prisma {
94290
94312
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
94291
94313
  extraData?: JsonNullValueInput | InputJsonValue
94292
94314
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
94315
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
94293
94316
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
94294
94317
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
94295
94318
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -94332,6 +94355,7 @@ export namespace Prisma {
94332
94355
  usercomLastSynced?: Date | string | null
94333
94356
  extraData?: JsonNullValueInput | InputJsonValue
94334
94357
  referrerId?: number | null
94358
+ fullName?: string | null
94335
94359
  }
94336
94360
 
94337
94361
  export type UserUpdateManyMutationInput = {
@@ -94352,6 +94376,7 @@ export namespace Prisma {
94352
94376
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
94353
94377
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
94354
94378
  extraData?: JsonNullValueInput | InputJsonValue
94379
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
94355
94380
  }
94356
94381
 
94357
94382
  export type UserUncheckedUpdateManyInput = {
@@ -94374,6 +94399,7 @@ export namespace Prisma {
94374
94399
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
94375
94400
  extraData?: JsonNullValueInput | InputJsonValue
94376
94401
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
94402
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
94377
94403
  }
94378
94404
 
94379
94405
  export type LogCreateInput = {
@@ -100542,6 +100568,7 @@ export namespace Prisma {
100542
100568
  usercomLastSynced?: SortOrder
100543
100569
  extraData?: SortOrder
100544
100570
  referrerId?: SortOrder
100571
+ fullName?: SortOrder
100545
100572
  }
100546
100573
 
100547
100574
  export type UserAvgOrderByAggregateInput = {
@@ -100569,6 +100596,7 @@ export namespace Prisma {
100569
100596
  closedReason?: SortOrder
100570
100597
  usercomLastSynced?: SortOrder
100571
100598
  referrerId?: SortOrder
100599
+ fullName?: SortOrder
100572
100600
  }
100573
100601
 
100574
100602
  export type UserMinOrderByAggregateInput = {
@@ -100590,6 +100618,7 @@ export namespace Prisma {
100590
100618
  closedReason?: SortOrder
100591
100619
  usercomLastSynced?: SortOrder
100592
100620
  referrerId?: SortOrder
100621
+ fullName?: SortOrder
100593
100622
  }
100594
100623
 
100595
100624
  export type UserSumOrderByAggregateInput = {
@@ -111770,6 +111799,7 @@ export namespace Prisma {
111770
111799
  closedReason?: string | null
111771
111800
  usercomLastSynced?: Date | string | null
111772
111801
  extraData?: JsonNullValueInput | InputJsonValue
111802
+ fullName?: string | null
111773
111803
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
111774
111804
  logs?: LogCreateNestedManyWithoutUserInput
111775
111805
  creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
@@ -111812,6 +111842,7 @@ export namespace Prisma {
111812
111842
  usercomLastSynced?: Date | string | null
111813
111843
  extraData?: JsonNullValueInput | InputJsonValue
111814
111844
  referrerId?: number | null
111845
+ fullName?: string | null
111815
111846
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
111816
111847
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
111817
111848
  instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
@@ -111856,6 +111887,7 @@ export namespace Prisma {
111856
111887
  closedReason?: string | null
111857
111888
  usercomLastSynced?: Date | string | null
111858
111889
  extraData?: JsonNullValueInput | InputJsonValue
111890
+ fullName?: string | null
111859
111891
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
111860
111892
  logs?: LogCreateNestedManyWithoutUserInput
111861
111893
  creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
@@ -111897,6 +111929,7 @@ export namespace Prisma {
111897
111929
  closedReason?: string | null
111898
111930
  usercomLastSynced?: Date | string | null
111899
111931
  extraData?: JsonNullValueInput | InputJsonValue
111932
+ fullName?: string | null
111900
111933
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
111901
111934
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
111902
111935
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -112776,6 +112809,7 @@ export namespace Prisma {
112776
112809
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
112777
112810
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
112778
112811
  extraData?: JsonNullValueInput | InputJsonValue
112812
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
112779
112813
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
112780
112814
  logs?: LogUpdateManyWithoutUserNestedInput
112781
112815
  creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
@@ -112818,6 +112852,7 @@ export namespace Prisma {
112818
112852
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
112819
112853
  extraData?: JsonNullValueInput | InputJsonValue
112820
112854
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
112855
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
112821
112856
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
112822
112857
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
112823
112858
  instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -112878,6 +112913,7 @@ export namespace Prisma {
112878
112913
  usercomLastSynced?: DateTimeNullableFilter<"User"> | Date | string | null
112879
112914
  extraData?: JsonFilter<"User">
112880
112915
  referrerId?: IntNullableFilter<"User"> | number | null
112916
+ fullName?: StringNullableFilter<"User"> | string | null
112881
112917
  }
112882
112918
 
112883
112919
  export type LogUpsertWithWhereUniqueWithoutUserInput = {
@@ -113656,6 +113692,7 @@ export namespace Prisma {
113656
113692
  closedReason?: string | null
113657
113693
  usercomLastSynced?: Date | string | null
113658
113694
  extraData?: JsonNullValueInput | InputJsonValue
113695
+ fullName?: string | null
113659
113696
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
113660
113697
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
113661
113698
  creatorProfile?: CreatorProfileCreateNestedOneWithoutUserInput
@@ -113698,6 +113735,7 @@ export namespace Prisma {
113698
113735
  usercomLastSynced?: Date | string | null
113699
113736
  extraData?: JsonNullValueInput | InputJsonValue
113700
113737
  referrerId?: number | null
113738
+ fullName?: string | null
113701
113739
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
113702
113740
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
113703
113741
  instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
@@ -113753,6 +113791,7 @@ export namespace Prisma {
113753
113791
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
113754
113792
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
113755
113793
  extraData?: JsonNullValueInput | InputJsonValue
113794
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
113756
113795
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
113757
113796
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
113758
113797
  creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
@@ -113795,6 +113834,7 @@ export namespace Prisma {
113795
113834
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
113796
113835
  extraData?: JsonNullValueInput | InputJsonValue
113797
113836
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
113837
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
113798
113838
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
113799
113839
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
113800
113840
  instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -113852,6 +113892,7 @@ export namespace Prisma {
113852
113892
  closedReason?: string | null
113853
113893
  usercomLastSynced?: Date | string | null
113854
113894
  extraData?: JsonNullValueInput | InputJsonValue
113895
+ fullName?: string | null
113855
113896
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
113856
113897
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
113857
113898
  logs?: LogCreateNestedManyWithoutUserInput
@@ -113894,6 +113935,7 @@ export namespace Prisma {
113894
113935
  usercomLastSynced?: Date | string | null
113895
113936
  extraData?: JsonNullValueInput | InputJsonValue
113896
113937
  referrerId?: number | null
113938
+ fullName?: string | null
113897
113939
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
113898
113940
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
113899
113941
  instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutUserInput
@@ -113973,6 +114015,7 @@ export namespace Prisma {
113973
114015
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
113974
114016
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
113975
114017
  extraData?: JsonNullValueInput | InputJsonValue
114018
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
113976
114019
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
113977
114020
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
113978
114021
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -114015,6 +114058,7 @@ export namespace Prisma {
114015
114058
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114016
114059
  extraData?: JsonNullValueInput | InputJsonValue
114017
114060
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
114061
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
114018
114062
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
114019
114063
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
114020
114064
  instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -114054,6 +114098,7 @@ export namespace Prisma {
114054
114098
  closedReason?: string | null
114055
114099
  usercomLastSynced?: Date | string | null
114056
114100
  extraData?: JsonNullValueInput | InputJsonValue
114101
+ fullName?: string | null
114057
114102
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
114058
114103
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
114059
114104
  logs?: LogCreateNestedManyWithoutUserInput
@@ -114096,6 +114141,7 @@ export namespace Prisma {
114096
114141
  usercomLastSynced?: Date | string | null
114097
114142
  extraData?: JsonNullValueInput | InputJsonValue
114098
114143
  referrerId?: number | null
114144
+ fullName?: string | null
114099
114145
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
114100
114146
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
114101
114147
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -114233,6 +114279,7 @@ export namespace Prisma {
114233
114279
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
114234
114280
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114235
114281
  extraData?: JsonNullValueInput | InputJsonValue
114282
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
114236
114283
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
114237
114284
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
114238
114285
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -114275,6 +114322,7 @@ export namespace Prisma {
114275
114322
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114276
114323
  extraData?: JsonNullValueInput | InputJsonValue
114277
114324
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
114325
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
114278
114326
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
114279
114327
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
114280
114328
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -114402,6 +114450,7 @@ export namespace Prisma {
114402
114450
  closedReason?: string | null
114403
114451
  usercomLastSynced?: Date | string | null
114404
114452
  extraData?: JsonNullValueInput | InputJsonValue
114453
+ fullName?: string | null
114405
114454
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
114406
114455
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
114407
114456
  logs?: LogCreateNestedManyWithoutUserInput
@@ -114444,6 +114493,7 @@ export namespace Prisma {
114444
114493
  usercomLastSynced?: Date | string | null
114445
114494
  extraData?: JsonNullValueInput | InputJsonValue
114446
114495
  referrerId?: number | null
114496
+ fullName?: string | null
114447
114497
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
114448
114498
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
114449
114499
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -114581,6 +114631,7 @@ export namespace Prisma {
114581
114631
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
114582
114632
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114583
114633
  extraData?: JsonNullValueInput | InputJsonValue
114634
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
114584
114635
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
114585
114636
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
114586
114637
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -114623,6 +114674,7 @@ export namespace Prisma {
114623
114674
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114624
114675
  extraData?: JsonNullValueInput | InputJsonValue
114625
114676
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
114677
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
114626
114678
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
114627
114679
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
114628
114680
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -114750,6 +114802,7 @@ export namespace Prisma {
114750
114802
  closedReason?: string | null
114751
114803
  usercomLastSynced?: Date | string | null
114752
114804
  extraData?: JsonNullValueInput | InputJsonValue
114805
+ fullName?: string | null
114753
114806
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
114754
114807
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
114755
114808
  logs?: LogCreateNestedManyWithoutUserInput
@@ -114792,6 +114845,7 @@ export namespace Prisma {
114792
114845
  usercomLastSynced?: Date | string | null
114793
114846
  extraData?: JsonNullValueInput | InputJsonValue
114794
114847
  referrerId?: number | null
114848
+ fullName?: string | null
114795
114849
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
114796
114850
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
114797
114851
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -114929,6 +114983,7 @@ export namespace Prisma {
114929
114983
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
114930
114984
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114931
114985
  extraData?: JsonNullValueInput | InputJsonValue
114986
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
114932
114987
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
114933
114988
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
114934
114989
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -114971,6 +115026,7 @@ export namespace Prisma {
114971
115026
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114972
115027
  extraData?: JsonNullValueInput | InputJsonValue
114973
115028
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
115029
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
114974
115030
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
114975
115031
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
114976
115032
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -115098,6 +115154,7 @@ export namespace Prisma {
115098
115154
  closedReason?: string | null
115099
115155
  usercomLastSynced?: Date | string | null
115100
115156
  extraData?: JsonNullValueInput | InputJsonValue
115157
+ fullName?: string | null
115101
115158
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
115102
115159
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
115103
115160
  logs?: LogCreateNestedManyWithoutUserInput
@@ -115140,6 +115197,7 @@ export namespace Prisma {
115140
115197
  usercomLastSynced?: Date | string | null
115141
115198
  extraData?: JsonNullValueInput | InputJsonValue
115142
115199
  referrerId?: number | null
115200
+ fullName?: string | null
115143
115201
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
115144
115202
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
115145
115203
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -115195,6 +115253,7 @@ export namespace Prisma {
115195
115253
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
115196
115254
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
115197
115255
  extraData?: JsonNullValueInput | InputJsonValue
115256
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
115198
115257
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
115199
115258
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
115200
115259
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -115237,6 +115296,7 @@ export namespace Prisma {
115237
115296
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
115238
115297
  extraData?: JsonNullValueInput | InputJsonValue
115239
115298
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
115299
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
115240
115300
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
115241
115301
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
115242
115302
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -115276,6 +115336,7 @@ export namespace Prisma {
115276
115336
  closedReason?: string | null
115277
115337
  usercomLastSynced?: Date | string | null
115278
115338
  extraData?: JsonNullValueInput | InputJsonValue
115339
+ fullName?: string | null
115279
115340
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
115280
115341
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
115281
115342
  logs?: LogCreateNestedManyWithoutUserInput
@@ -115318,6 +115379,7 @@ export namespace Prisma {
115318
115379
  usercomLastSynced?: Date | string | null
115319
115380
  extraData?: JsonNullValueInput | InputJsonValue
115320
115381
  referrerId?: number | null
115382
+ fullName?: string | null
115321
115383
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
115322
115384
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
115323
115385
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -115373,6 +115435,7 @@ export namespace Prisma {
115373
115435
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
115374
115436
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
115375
115437
  extraData?: JsonNullValueInput | InputJsonValue
115438
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
115376
115439
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
115377
115440
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
115378
115441
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -115415,6 +115478,7 @@ export namespace Prisma {
115415
115478
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
115416
115479
  extraData?: JsonNullValueInput | InputJsonValue
115417
115480
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
115481
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
115418
115482
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
115419
115483
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
115420
115484
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -115454,6 +115518,7 @@ export namespace Prisma {
115454
115518
  closedReason?: string | null
115455
115519
  usercomLastSynced?: Date | string | null
115456
115520
  extraData?: JsonNullValueInput | InputJsonValue
115521
+ fullName?: string | null
115457
115522
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
115458
115523
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
115459
115524
  logs?: LogCreateNestedManyWithoutUserInput
@@ -115496,6 +115561,7 @@ export namespace Prisma {
115496
115561
  usercomLastSynced?: Date | string | null
115497
115562
  extraData?: JsonNullValueInput | InputJsonValue
115498
115563
  referrerId?: number | null
115564
+ fullName?: string | null
115499
115565
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
115500
115566
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
115501
115567
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -115551,6 +115617,7 @@ export namespace Prisma {
115551
115617
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
115552
115618
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
115553
115619
  extraData?: JsonNullValueInput | InputJsonValue
115620
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
115554
115621
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
115555
115622
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
115556
115623
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -115593,6 +115660,7 @@ export namespace Prisma {
115593
115660
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
115594
115661
  extraData?: JsonNullValueInput | InputJsonValue
115595
115662
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
115663
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
115596
115664
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
115597
115665
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
115598
115666
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -115632,6 +115700,7 @@ export namespace Prisma {
115632
115700
  closedReason?: string | null
115633
115701
  usercomLastSynced?: Date | string | null
115634
115702
  extraData?: JsonNullValueInput | InputJsonValue
115703
+ fullName?: string | null
115635
115704
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
115636
115705
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
115637
115706
  logs?: LogCreateNestedManyWithoutUserInput
@@ -115674,6 +115743,7 @@ export namespace Prisma {
115674
115743
  usercomLastSynced?: Date | string | null
115675
115744
  extraData?: JsonNullValueInput | InputJsonValue
115676
115745
  referrerId?: number | null
115746
+ fullName?: string | null
115677
115747
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
115678
115748
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
115679
115749
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -115811,6 +115881,7 @@ export namespace Prisma {
115811
115881
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
115812
115882
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
115813
115883
  extraData?: JsonNullValueInput | InputJsonValue
115884
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
115814
115885
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
115815
115886
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
115816
115887
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -115853,6 +115924,7 @@ export namespace Prisma {
115853
115924
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
115854
115925
  extraData?: JsonNullValueInput | InputJsonValue
115855
115926
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
115927
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
115856
115928
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
115857
115929
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
115858
115930
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -115980,6 +116052,7 @@ export namespace Prisma {
115980
116052
  closedReason?: string | null
115981
116053
  usercomLastSynced?: Date | string | null
115982
116054
  extraData?: JsonNullValueInput | InputJsonValue
116055
+ fullName?: string | null
115983
116056
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
115984
116057
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
115985
116058
  logs?: LogCreateNestedManyWithoutUserInput
@@ -116022,6 +116095,7 @@ export namespace Prisma {
116022
116095
  usercomLastSynced?: Date | string | null
116023
116096
  extraData?: JsonNullValueInput | InputJsonValue
116024
116097
  referrerId?: number | null
116098
+ fullName?: string | null
116025
116099
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
116026
116100
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
116027
116101
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -117086,6 +117160,7 @@ export namespace Prisma {
117086
117160
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
117087
117161
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
117088
117162
  extraData?: JsonNullValueInput | InputJsonValue
117163
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
117089
117164
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
117090
117165
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
117091
117166
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -117128,6 +117203,7 @@ export namespace Prisma {
117128
117203
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
117129
117204
  extraData?: JsonNullValueInput | InputJsonValue
117130
117205
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
117206
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
117131
117207
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
117132
117208
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
117133
117209
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -119334,6 +119410,7 @@ export namespace Prisma {
119334
119410
  closedReason?: string | null
119335
119411
  usercomLastSynced?: Date | string | null
119336
119412
  extraData?: JsonNullValueInput | InputJsonValue
119413
+ fullName?: string | null
119337
119414
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
119338
119415
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
119339
119416
  logs?: LogCreateNestedManyWithoutUserInput
@@ -119376,6 +119453,7 @@ export namespace Prisma {
119376
119453
  usercomLastSynced?: Date | string | null
119377
119454
  extraData?: JsonNullValueInput | InputJsonValue
119378
119455
  referrerId?: number | null
119456
+ fullName?: string | null
119379
119457
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
119380
119458
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
119381
119459
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -119451,6 +119529,7 @@ export namespace Prisma {
119451
119529
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
119452
119530
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
119453
119531
  extraData?: JsonNullValueInput | InputJsonValue
119532
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
119454
119533
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
119455
119534
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
119456
119535
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -119493,6 +119572,7 @@ export namespace Prisma {
119493
119572
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
119494
119573
  extraData?: JsonNullValueInput | InputJsonValue
119495
119574
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
119575
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
119496
119576
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
119497
119577
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
119498
119578
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -120582,6 +120662,7 @@ export namespace Prisma {
120582
120662
  closedReason?: string | null
120583
120663
  usercomLastSynced?: Date | string | null
120584
120664
  extraData?: JsonNullValueInput | InputJsonValue
120665
+ fullName?: string | null
120585
120666
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
120586
120667
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
120587
120668
  logs?: LogCreateNestedManyWithoutUserInput
@@ -120624,6 +120705,7 @@ export namespace Prisma {
120624
120705
  usercomLastSynced?: Date | string | null
120625
120706
  extraData?: JsonNullValueInput | InputJsonValue
120626
120707
  referrerId?: number | null
120708
+ fullName?: string | null
120627
120709
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
120628
120710
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
120629
120711
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -120825,6 +120907,7 @@ export namespace Prisma {
120825
120907
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
120826
120908
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
120827
120909
  extraData?: JsonNullValueInput | InputJsonValue
120910
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
120828
120911
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
120829
120912
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
120830
120913
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -120867,6 +120950,7 @@ export namespace Prisma {
120867
120950
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
120868
120951
  extraData?: JsonNullValueInput | InputJsonValue
120869
120952
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
120953
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
120870
120954
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
120871
120955
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
120872
120956
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -124643,6 +124727,7 @@ export namespace Prisma {
124643
124727
  closedReason?: string | null
124644
124728
  usercomLastSynced?: Date | string | null
124645
124729
  extraData?: JsonNullValueInput | InputJsonValue
124730
+ fullName?: string | null
124646
124731
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
124647
124732
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
124648
124733
  logs?: LogCreateNestedManyWithoutUserInput
@@ -124685,6 +124770,7 @@ export namespace Prisma {
124685
124770
  usercomLastSynced?: Date | string | null
124686
124771
  extraData?: JsonNullValueInput | InputJsonValue
124687
124772
  referrerId?: number | null
124773
+ fullName?: string | null
124688
124774
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
124689
124775
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
124690
124776
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -125122,6 +125208,7 @@ export namespace Prisma {
125122
125208
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
125123
125209
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
125124
125210
  extraData?: JsonNullValueInput | InputJsonValue
125211
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
125125
125212
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
125126
125213
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
125127
125214
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -125164,6 +125251,7 @@ export namespace Prisma {
125164
125251
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
125165
125252
  extraData?: JsonNullValueInput | InputJsonValue
125166
125253
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
125254
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
125167
125255
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
125168
125256
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
125169
125257
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -125905,6 +125993,7 @@ export namespace Prisma {
125905
125993
  closedReason?: string | null
125906
125994
  usercomLastSynced?: Date | string | null
125907
125995
  extraData?: JsonNullValueInput | InputJsonValue
125996
+ fullName?: string | null
125908
125997
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
125909
125998
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
125910
125999
  logs?: LogCreateNestedManyWithoutUserInput
@@ -125947,6 +126036,7 @@ export namespace Prisma {
125947
126036
  usercomLastSynced?: Date | string | null
125948
126037
  extraData?: JsonNullValueInput | InputJsonValue
125949
126038
  referrerId?: number | null
126039
+ fullName?: string | null
125950
126040
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
125951
126041
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
125952
126042
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -126167,6 +126257,7 @@ export namespace Prisma {
126167
126257
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
126168
126258
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
126169
126259
  extraData?: JsonNullValueInput | InputJsonValue
126260
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
126170
126261
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
126171
126262
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
126172
126263
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -126209,6 +126300,7 @@ export namespace Prisma {
126209
126300
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
126210
126301
  extraData?: JsonNullValueInput | InputJsonValue
126211
126302
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
126303
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
126212
126304
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
126213
126305
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
126214
126306
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -126710,6 +126802,7 @@ export namespace Prisma {
126710
126802
  closedReason?: string | null
126711
126803
  usercomLastSynced?: Date | string | null
126712
126804
  extraData?: JsonNullValueInput | InputJsonValue
126805
+ fullName?: string | null
126713
126806
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
126714
126807
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
126715
126808
  logs?: LogCreateNestedManyWithoutUserInput
@@ -126752,6 +126845,7 @@ export namespace Prisma {
126752
126845
  usercomLastSynced?: Date | string | null
126753
126846
  extraData?: JsonNullValueInput | InputJsonValue
126754
126847
  referrerId?: number | null
126848
+ fullName?: string | null
126755
126849
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
126756
126850
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
126757
126851
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -126959,6 +127053,7 @@ export namespace Prisma {
126959
127053
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
126960
127054
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
126961
127055
  extraData?: JsonNullValueInput | InputJsonValue
127056
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
126962
127057
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
126963
127058
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
126964
127059
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -127001,6 +127096,7 @@ export namespace Prisma {
127001
127096
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
127002
127097
  extraData?: JsonNullValueInput | InputJsonValue
127003
127098
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
127099
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
127004
127100
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
127005
127101
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
127006
127102
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -127814,6 +127910,7 @@ export namespace Prisma {
127814
127910
  closedReason?: string | null
127815
127911
  usercomLastSynced?: Date | string | null
127816
127912
  extraData?: JsonNullValueInput | InputJsonValue
127913
+ fullName?: string | null
127817
127914
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
127818
127915
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
127819
127916
  logs?: LogCreateNestedManyWithoutUserInput
@@ -127856,6 +127953,7 @@ export namespace Prisma {
127856
127953
  usercomLastSynced?: Date | string | null
127857
127954
  extraData?: JsonNullValueInput | InputJsonValue
127858
127955
  referrerId?: number | null
127956
+ fullName?: string | null
127859
127957
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
127860
127958
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
127861
127959
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -127953,6 +128051,7 @@ export namespace Prisma {
127953
128051
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
127954
128052
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
127955
128053
  extraData?: JsonNullValueInput | InputJsonValue
128054
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
127956
128055
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
127957
128056
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
127958
128057
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -127995,6 +128094,7 @@ export namespace Prisma {
127995
128094
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
127996
128095
  extraData?: JsonNullValueInput | InputJsonValue
127997
128096
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
128097
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
127998
128098
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
127999
128099
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
128000
128100
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -130193,6 +130293,7 @@ export namespace Prisma {
130193
130293
  closedReason?: string | null
130194
130294
  usercomLastSynced?: Date | string | null
130195
130295
  extraData?: JsonNullValueInput | InputJsonValue
130296
+ fullName?: string | null
130196
130297
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
130197
130298
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
130198
130299
  logs?: LogCreateNestedManyWithoutUserInput
@@ -130235,6 +130336,7 @@ export namespace Prisma {
130235
130336
  usercomLastSynced?: Date | string | null
130236
130337
  extraData?: JsonNullValueInput | InputJsonValue
130237
130338
  referrerId?: number | null
130339
+ fullName?: string | null
130238
130340
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
130239
130341
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
130240
130342
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -130322,6 +130424,7 @@ export namespace Prisma {
130322
130424
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
130323
130425
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
130324
130426
  extraData?: JsonNullValueInput | InputJsonValue
130427
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
130325
130428
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
130326
130429
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
130327
130430
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -130364,6 +130467,7 @@ export namespace Prisma {
130364
130467
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
130365
130468
  extraData?: JsonNullValueInput | InputJsonValue
130366
130469
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
130470
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
130367
130471
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
130368
130472
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
130369
130473
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -131524,6 +131628,7 @@ export namespace Prisma {
131524
131628
  closedReason?: string | null
131525
131629
  usercomLastSynced?: Date | string | null
131526
131630
  extraData?: JsonNullValueInput | InputJsonValue
131631
+ fullName?: string | null
131527
131632
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
131528
131633
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
131529
131634
  logs?: LogCreateNestedManyWithoutUserInput
@@ -131566,6 +131671,7 @@ export namespace Prisma {
131566
131671
  usercomLastSynced?: Date | string | null
131567
131672
  extraData?: JsonNullValueInput | InputJsonValue
131568
131673
  referrerId?: number | null
131674
+ fullName?: string | null
131569
131675
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
131570
131676
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
131571
131677
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -131621,6 +131727,7 @@ export namespace Prisma {
131621
131727
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
131622
131728
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131623
131729
  extraData?: JsonNullValueInput | InputJsonValue
131730
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
131624
131731
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
131625
131732
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
131626
131733
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -131663,6 +131770,7 @@ export namespace Prisma {
131663
131770
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131664
131771
  extraData?: JsonNullValueInput | InputJsonValue
131665
131772
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
131773
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
131666
131774
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
131667
131775
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
131668
131776
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -131702,6 +131810,7 @@ export namespace Prisma {
131702
131810
  closedReason?: string | null
131703
131811
  usercomLastSynced?: Date | string | null
131704
131812
  extraData?: JsonNullValueInput | InputJsonValue
131813
+ fullName?: string | null
131705
131814
  referrer?: UserCreateNestedOneWithoutReferredUsersInput
131706
131815
  referredUsers?: UserCreateNestedManyWithoutReferrerInput
131707
131816
  logs?: LogCreateNestedManyWithoutUserInput
@@ -131744,6 +131853,7 @@ export namespace Prisma {
131744
131853
  usercomLastSynced?: Date | string | null
131745
131854
  extraData?: JsonNullValueInput | InputJsonValue
131746
131855
  referrerId?: number | null
131856
+ fullName?: string | null
131747
131857
  referredUsers?: UserUncheckedCreateNestedManyWithoutReferrerInput
131748
131858
  logs?: LogUncheckedCreateNestedManyWithoutUserInput
131749
131859
  creatorProfile?: CreatorProfileUncheckedCreateNestedOneWithoutUserInput
@@ -131881,6 +131991,7 @@ export namespace Prisma {
131881
131991
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
131882
131992
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131883
131993
  extraData?: JsonNullValueInput | InputJsonValue
131994
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
131884
131995
  referrer?: UserUpdateOneWithoutReferredUsersNestedInput
131885
131996
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
131886
131997
  logs?: LogUpdateManyWithoutUserNestedInput
@@ -131923,6 +132034,7 @@ export namespace Prisma {
131923
132034
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131924
132035
  extraData?: JsonNullValueInput | InputJsonValue
131925
132036
  referrerId?: NullableIntFieldUpdateOperationsInput | number | null
132037
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
131926
132038
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
131927
132039
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
131928
132040
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -134332,6 +134444,7 @@ export namespace Prisma {
134332
134444
  closedReason?: string | null
134333
134445
  usercomLastSynced?: Date | string | null
134334
134446
  extraData?: JsonNullValueInput | InputJsonValue
134447
+ fullName?: string | null
134335
134448
  }
134336
134449
 
134337
134450
  export type LogCreateManyUserInput = {
@@ -134514,6 +134627,7 @@ export namespace Prisma {
134514
134627
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
134515
134628
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
134516
134629
  extraData?: JsonNullValueInput | InputJsonValue
134630
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
134517
134631
  referredUsers?: UserUpdateManyWithoutReferrerNestedInput
134518
134632
  logs?: LogUpdateManyWithoutUserNestedInput
134519
134633
  creatorProfile?: CreatorProfileUpdateOneWithoutUserNestedInput
@@ -134555,6 +134669,7 @@ export namespace Prisma {
134555
134669
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
134556
134670
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
134557
134671
  extraData?: JsonNullValueInput | InputJsonValue
134672
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
134558
134673
  referredUsers?: UserUncheckedUpdateManyWithoutReferrerNestedInput
134559
134674
  logs?: LogUncheckedUpdateManyWithoutUserNestedInput
134560
134675
  creatorProfile?: CreatorProfileUncheckedUpdateOneWithoutUserNestedInput
@@ -134596,6 +134711,7 @@ export namespace Prisma {
134596
134711
  closedReason?: NullableStringFieldUpdateOperationsInput | string | null
134597
134712
  usercomLastSynced?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
134598
134713
  extraData?: JsonNullValueInput | InputJsonValue
134714
+ fullName?: NullableStringFieldUpdateOperationsInput | string | null
134599
134715
  }
134600
134716
 
134601
134717
  export type LogUpdateWithoutUserInput = {