@creator.co/creatorco-prisma-client 1.0.50-alpha-283f6cb → 1.0.50-alpha-73636ce

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
@@ -8900,6 +8900,7 @@ export namespace Prisma {
8900
8900
 
8901
8901
  export type UserMinAggregateOutputType = {
8902
8902
  id: number | null
8903
+ idmId: string | null
8903
8904
  role: string | null
8904
8905
  email: string | null
8905
8906
  password: string | null
@@ -8923,6 +8924,7 @@ export namespace Prisma {
8923
8924
 
8924
8925
  export type UserMaxAggregateOutputType = {
8925
8926
  id: number | null
8927
+ idmId: string | null
8926
8928
  role: string | null
8927
8929
  email: string | null
8928
8930
  password: string | null
@@ -8946,6 +8948,7 @@ export namespace Prisma {
8946
8948
 
8947
8949
  export type UserCountAggregateOutputType = {
8948
8950
  id: number
8951
+ idmId: number
8949
8952
  role: number
8950
8953
  email: number
8951
8954
  password: number
@@ -8984,6 +8987,7 @@ export namespace Prisma {
8984
8987
 
8985
8988
  export type UserMinAggregateInputType = {
8986
8989
  id?: true
8990
+ idmId?: true
8987
8991
  role?: true
8988
8992
  email?: true
8989
8993
  password?: true
@@ -9007,6 +9011,7 @@ export namespace Prisma {
9007
9011
 
9008
9012
  export type UserMaxAggregateInputType = {
9009
9013
  id?: true
9014
+ idmId?: true
9010
9015
  role?: true
9011
9016
  email?: true
9012
9017
  password?: true
@@ -9030,6 +9035,7 @@ export namespace Prisma {
9030
9035
 
9031
9036
  export type UserCountAggregateInputType = {
9032
9037
  id?: true
9038
+ idmId?: true
9033
9039
  role?: true
9034
9040
  email?: true
9035
9041
  password?: true
@@ -9141,6 +9147,7 @@ export namespace Prisma {
9141
9147
 
9142
9148
  export type UserGroupByOutputType = {
9143
9149
  id: number
9150
+ idmId: string | null
9144
9151
  role: string
9145
9152
  email: string | null
9146
9153
  password: string | null
@@ -9184,6 +9191,7 @@ export namespace Prisma {
9184
9191
 
9185
9192
  export type UserSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
9186
9193
  id?: boolean
9194
+ idmId?: boolean
9187
9195
  role?: boolean
9188
9196
  email?: boolean
9189
9197
  password?: boolean
@@ -9233,6 +9241,7 @@ export namespace Prisma {
9233
9241
 
9234
9242
  export type UserSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
9235
9243
  id?: boolean
9244
+ idmId?: boolean
9236
9245
  role?: boolean
9237
9246
  email?: boolean
9238
9247
  password?: boolean
@@ -9258,6 +9267,7 @@ export namespace Prisma {
9258
9267
 
9259
9268
  export type UserSelectScalar = {
9260
9269
  id?: boolean
9270
+ idmId?: boolean
9261
9271
  role?: boolean
9262
9272
  email?: boolean
9263
9273
  password?: boolean
@@ -9341,6 +9351,7 @@ export namespace Prisma {
9341
9351
  }
9342
9352
  scalars: $Extensions.GetPayloadResult<{
9343
9353
  id: number
9354
+ idmId: string | null
9344
9355
  role: string
9345
9356
  email: string | null
9346
9357
  password: string | null
@@ -9828,6 +9839,7 @@ export namespace Prisma {
9828
9839
  */
9829
9840
  interface UserFieldRefs {
9830
9841
  readonly id: FieldRef<"User", 'Int'>
9842
+ readonly idmId: FieldRef<"User", 'String'>
9831
9843
  readonly role: FieldRef<"User", 'String'>
9832
9844
  readonly email: FieldRef<"User", 'String'>
9833
9845
  readonly password: FieldRef<"User", 'String'>
@@ -91250,6 +91262,7 @@ export namespace Prisma {
91250
91262
 
91251
91263
  export const UserScalarFieldEnum: {
91252
91264
  id: 'id',
91265
+ idmId: 'idmId',
91253
91266
  role: 'role',
91254
91267
  email: 'email',
91255
91268
  password: 'password',
@@ -92413,6 +92426,7 @@ export namespace Prisma {
92413
92426
 
92414
92427
 
92415
92428
  export const UserOrderByRelevanceFieldEnum: {
92429
+ idmId: 'idmId',
92416
92430
  role: 'role',
92417
92431
  email: 'email',
92418
92432
  password: 'password',
@@ -93096,6 +93110,7 @@ export namespace Prisma {
93096
93110
  OR?: UserWhereInput[]
93097
93111
  NOT?: UserWhereInput | UserWhereInput[]
93098
93112
  id?: IntFilter<"User"> | number
93113
+ idmId?: StringNullableFilter<"User"> | string | null
93099
93114
  role?: StringFilter<"User"> | string
93100
93115
  email?: StringNullableFilter<"User"> | string | null
93101
93116
  password?: StringNullableFilter<"User"> | string | null
@@ -93144,6 +93159,7 @@ export namespace Prisma {
93144
93159
 
93145
93160
  export type UserOrderByWithRelationAndSearchRelevanceInput = {
93146
93161
  id?: SortOrder
93162
+ idmId?: SortOrderInput | SortOrder
93147
93163
  role?: SortOrder
93148
93164
  email?: SortOrderInput | SortOrder
93149
93165
  password?: SortOrderInput | SortOrder
@@ -93193,6 +93209,7 @@ export namespace Prisma {
93193
93209
 
93194
93210
  export type UserWhereUniqueInput = Prisma.AtLeast<{
93195
93211
  id?: number
93212
+ idmId?: string
93196
93213
  email?: string
93197
93214
  forgotPasswordKey?: string
93198
93215
  affiliateSlug?: string
@@ -93240,10 +93257,11 @@ export namespace Prisma {
93240
93257
  flagsAssigned?: CreatorFlagListRelationFilter
93241
93258
  flagsCreated?: CreatorFlagListRelationFilter
93242
93259
  flagsEdited?: CreatorFlagListRelationFilter
93243
- }, "id" | "email" | "forgotPasswordKey" | "affiliateSlug">
93260
+ }, "id" | "idmId" | "email" | "forgotPasswordKey" | "affiliateSlug">
93244
93261
 
93245
93262
  export type UserOrderByWithAggregationInput = {
93246
93263
  id?: SortOrder
93264
+ idmId?: SortOrderInput | SortOrder
93247
93265
  role?: SortOrder
93248
93266
  email?: SortOrderInput | SortOrder
93249
93267
  password?: SortOrderInput | SortOrder
@@ -93276,6 +93294,7 @@ export namespace Prisma {
93276
93294
  OR?: UserScalarWhereWithAggregatesInput[]
93277
93295
  NOT?: UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[]
93278
93296
  id?: IntWithAggregatesFilter<"User"> | number
93297
+ idmId?: StringNullableWithAggregatesFilter<"User"> | string | null
93279
93298
  role?: StringWithAggregatesFilter<"User"> | string
93280
93299
  email?: StringNullableWithAggregatesFilter<"User"> | string | null
93281
93300
  password?: StringNullableWithAggregatesFilter<"User"> | string | null
@@ -99365,6 +99384,7 @@ export namespace Prisma {
99365
99384
  }
99366
99385
 
99367
99386
  export type UserCreateInput = {
99387
+ idmId?: string | null
99368
99388
  role: string
99369
99389
  email?: string | null
99370
99390
  password?: string | null
@@ -99412,6 +99432,7 @@ export namespace Prisma {
99412
99432
 
99413
99433
  export type UserUncheckedCreateInput = {
99414
99434
  id?: number
99435
+ idmId?: string | null
99415
99436
  role: string
99416
99437
  email?: string | null
99417
99438
  password?: string | null
@@ -99458,6 +99479,7 @@ export namespace Prisma {
99458
99479
  }
99459
99480
 
99460
99481
  export type UserUpdateInput = {
99482
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
99461
99483
  role?: StringFieldUpdateOperationsInput | string
99462
99484
  email?: NullableStringFieldUpdateOperationsInput | string | null
99463
99485
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -99505,6 +99527,7 @@ export namespace Prisma {
99505
99527
 
99506
99528
  export type UserUncheckedUpdateInput = {
99507
99529
  id?: IntFieldUpdateOperationsInput | number
99530
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
99508
99531
  role?: StringFieldUpdateOperationsInput | string
99509
99532
  email?: NullableStringFieldUpdateOperationsInput | string | null
99510
99533
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -99552,6 +99575,7 @@ export namespace Prisma {
99552
99575
 
99553
99576
  export type UserCreateManyInput = {
99554
99577
  id?: number
99578
+ idmId?: string | null
99555
99579
  role: string
99556
99580
  email?: string | null
99557
99581
  password?: string | null
@@ -99575,6 +99599,7 @@ export namespace Prisma {
99575
99599
  }
99576
99600
 
99577
99601
  export type UserUpdateManyMutationInput = {
99602
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
99578
99603
  role?: StringFieldUpdateOperationsInput | string
99579
99604
  email?: NullableStringFieldUpdateOperationsInput | string | null
99580
99605
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -99598,6 +99623,7 @@ export namespace Prisma {
99598
99623
 
99599
99624
  export type UserUncheckedUpdateManyInput = {
99600
99625
  id?: IntFieldUpdateOperationsInput | number
99626
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
99601
99627
  role?: StringFieldUpdateOperationsInput | string
99602
99628
  email?: NullableStringFieldUpdateOperationsInput | string | null
99603
99629
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -105775,10 +105801,10 @@ export namespace Prisma {
105775
105801
  not?: NestedIntFilter<$PrismaModel> | number
105776
105802
  }
105777
105803
 
105778
- export type StringFilter<$PrismaModel = never> = {
105779
- equals?: string | StringFieldRefInput<$PrismaModel>
105780
- in?: string[] | ListStringFieldRefInput<$PrismaModel>
105781
- notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
105804
+ export type StringNullableFilter<$PrismaModel = never> = {
105805
+ equals?: string | StringFieldRefInput<$PrismaModel> | null
105806
+ in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
105807
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
105782
105808
  lt?: string | StringFieldRefInput<$PrismaModel>
105783
105809
  lte?: string | StringFieldRefInput<$PrismaModel>
105784
105810
  gt?: string | StringFieldRefInput<$PrismaModel>
@@ -105788,13 +105814,13 @@ export namespace Prisma {
105788
105814
  endsWith?: string | StringFieldRefInput<$PrismaModel>
105789
105815
  search?: string
105790
105816
  mode?: QueryMode
105791
- not?: NestedStringFilter<$PrismaModel> | string
105817
+ not?: NestedStringNullableFilter<$PrismaModel> | string | null
105792
105818
  }
105793
105819
 
105794
- export type StringNullableFilter<$PrismaModel = never> = {
105795
- equals?: string | StringFieldRefInput<$PrismaModel> | null
105796
- in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
105797
- notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
105820
+ export type StringFilter<$PrismaModel = never> = {
105821
+ equals?: string | StringFieldRefInput<$PrismaModel>
105822
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
105823
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
105798
105824
  lt?: string | StringFieldRefInput<$PrismaModel>
105799
105825
  lte?: string | StringFieldRefInput<$PrismaModel>
105800
105826
  gt?: string | StringFieldRefInput<$PrismaModel>
@@ -105804,7 +105830,7 @@ export namespace Prisma {
105804
105830
  endsWith?: string | StringFieldRefInput<$PrismaModel>
105805
105831
  search?: string
105806
105832
  mode?: QueryMode
105807
- not?: NestedStringNullableFilter<$PrismaModel> | string | null
105833
+ not?: NestedStringFilter<$PrismaModel> | string
105808
105834
  }
105809
105835
 
105810
105836
  export type DateTimeFilter<$PrismaModel = never> = {
@@ -106055,6 +106081,7 @@ export namespace Prisma {
106055
106081
 
106056
106082
  export type UserCountOrderByAggregateInput = {
106057
106083
  id?: SortOrder
106084
+ idmId?: SortOrder
106058
106085
  role?: SortOrder
106059
106086
  email?: SortOrder
106060
106087
  password?: SortOrder
@@ -106085,6 +106112,7 @@ export namespace Prisma {
106085
106112
 
106086
106113
  export type UserMaxOrderByAggregateInput = {
106087
106114
  id?: SortOrder
106115
+ idmId?: SortOrder
106088
106116
  role?: SortOrder
106089
106117
  email?: SortOrder
106090
106118
  password?: SortOrder
@@ -106108,6 +106136,7 @@ export namespace Prisma {
106108
106136
 
106109
106137
  export type UserMinOrderByAggregateInput = {
106110
106138
  id?: SortOrder
106139
+ idmId?: SortOrder
106111
106140
  role?: SortOrder
106112
106141
  email?: SortOrder
106113
106142
  password?: SortOrder
@@ -106151,10 +106180,10 @@ export namespace Prisma {
106151
106180
  _max?: NestedIntFilter<$PrismaModel>
106152
106181
  }
106153
106182
 
106154
- export type StringWithAggregatesFilter<$PrismaModel = never> = {
106155
- equals?: string | StringFieldRefInput<$PrismaModel>
106156
- in?: string[] | ListStringFieldRefInput<$PrismaModel>
106157
- notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
106183
+ export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
106184
+ equals?: string | StringFieldRefInput<$PrismaModel> | null
106185
+ in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
106186
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
106158
106187
  lt?: string | StringFieldRefInput<$PrismaModel>
106159
106188
  lte?: string | StringFieldRefInput<$PrismaModel>
106160
106189
  gt?: string | StringFieldRefInput<$PrismaModel>
@@ -106164,16 +106193,16 @@ export namespace Prisma {
106164
106193
  endsWith?: string | StringFieldRefInput<$PrismaModel>
106165
106194
  search?: string
106166
106195
  mode?: QueryMode
106167
- not?: NestedStringWithAggregatesFilter<$PrismaModel> | string
106168
- _count?: NestedIntFilter<$PrismaModel>
106169
- _min?: NestedStringFilter<$PrismaModel>
106170
- _max?: NestedStringFilter<$PrismaModel>
106196
+ not?: NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
106197
+ _count?: NestedIntNullableFilter<$PrismaModel>
106198
+ _min?: NestedStringNullableFilter<$PrismaModel>
106199
+ _max?: NestedStringNullableFilter<$PrismaModel>
106171
106200
  }
106172
106201
 
106173
- export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
106174
- equals?: string | StringFieldRefInput<$PrismaModel> | null
106175
- in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
106176
- notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
106202
+ export type StringWithAggregatesFilter<$PrismaModel = never> = {
106203
+ equals?: string | StringFieldRefInput<$PrismaModel>
106204
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
106205
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
106177
106206
  lt?: string | StringFieldRefInput<$PrismaModel>
106178
106207
  lte?: string | StringFieldRefInput<$PrismaModel>
106179
106208
  gt?: string | StringFieldRefInput<$PrismaModel>
@@ -106183,10 +106212,10 @@ export namespace Prisma {
106183
106212
  endsWith?: string | StringFieldRefInput<$PrismaModel>
106184
106213
  search?: string
106185
106214
  mode?: QueryMode
106186
- not?: NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
106187
- _count?: NestedIntNullableFilter<$PrismaModel>
106188
- _min?: NestedStringNullableFilter<$PrismaModel>
106189
- _max?: NestedStringNullableFilter<$PrismaModel>
106215
+ not?: NestedStringWithAggregatesFilter<$PrismaModel> | string
106216
+ _count?: NestedIntFilter<$PrismaModel>
106217
+ _min?: NestedStringFilter<$PrismaModel>
106218
+ _max?: NestedStringFilter<$PrismaModel>
106190
106219
  }
106191
106220
 
106192
106221
  export type DateTimeWithAggregatesFilter<$PrismaModel = never> = {
@@ -111371,14 +111400,14 @@ export namespace Prisma {
111371
111400
  connect?: CreatorFlagWhereUniqueInput | CreatorFlagWhereUniqueInput[]
111372
111401
  }
111373
111402
 
111374
- export type StringFieldUpdateOperationsInput = {
111375
- set?: string
111376
- }
111377
-
111378
111403
  export type NullableStringFieldUpdateOperationsInput = {
111379
111404
  set?: string | null
111380
111405
  }
111381
111406
 
111407
+ export type StringFieldUpdateOperationsInput = {
111408
+ set?: string
111409
+ }
111410
+
111382
111411
  export type DateTimeFieldUpdateOperationsInput = {
111383
111412
  set?: Date | string
111384
111413
  }
@@ -117646,10 +117675,10 @@ export namespace Prisma {
117646
117675
  not?: NestedIntFilter<$PrismaModel> | number
117647
117676
  }
117648
117677
 
117649
- export type NestedStringFilter<$PrismaModel = never> = {
117650
- equals?: string | StringFieldRefInput<$PrismaModel>
117651
- in?: string[] | ListStringFieldRefInput<$PrismaModel>
117652
- notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
117678
+ export type NestedStringNullableFilter<$PrismaModel = never> = {
117679
+ equals?: string | StringFieldRefInput<$PrismaModel> | null
117680
+ in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
117681
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
117653
117682
  lt?: string | StringFieldRefInput<$PrismaModel>
117654
117683
  lte?: string | StringFieldRefInput<$PrismaModel>
117655
117684
  gt?: string | StringFieldRefInput<$PrismaModel>
@@ -117658,13 +117687,13 @@ export namespace Prisma {
117658
117687
  startsWith?: string | StringFieldRefInput<$PrismaModel>
117659
117688
  endsWith?: string | StringFieldRefInput<$PrismaModel>
117660
117689
  search?: string
117661
- not?: NestedStringFilter<$PrismaModel> | string
117690
+ not?: NestedStringNullableFilter<$PrismaModel> | string | null
117662
117691
  }
117663
117692
 
117664
- export type NestedStringNullableFilter<$PrismaModel = never> = {
117665
- equals?: string | StringFieldRefInput<$PrismaModel> | null
117666
- in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
117667
- notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
117693
+ export type NestedStringFilter<$PrismaModel = never> = {
117694
+ equals?: string | StringFieldRefInput<$PrismaModel>
117695
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
117696
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
117668
117697
  lt?: string | StringFieldRefInput<$PrismaModel>
117669
117698
  lte?: string | StringFieldRefInput<$PrismaModel>
117670
117699
  gt?: string | StringFieldRefInput<$PrismaModel>
@@ -117673,7 +117702,7 @@ export namespace Prisma {
117673
117702
  startsWith?: string | StringFieldRefInput<$PrismaModel>
117674
117703
  endsWith?: string | StringFieldRefInput<$PrismaModel>
117675
117704
  search?: string
117676
- not?: NestedStringNullableFilter<$PrismaModel> | string | null
117705
+ not?: NestedStringFilter<$PrismaModel> | string
117677
117706
  }
117678
117707
 
117679
117708
  export type NestedDateTimeFilter<$PrismaModel = never> = {
@@ -117736,10 +117765,10 @@ export namespace Prisma {
117736
117765
  not?: NestedFloatFilter<$PrismaModel> | number
117737
117766
  }
117738
117767
 
117739
- export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
117740
- equals?: string | StringFieldRefInput<$PrismaModel>
117741
- in?: string[] | ListStringFieldRefInput<$PrismaModel>
117742
- notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
117768
+ export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
117769
+ equals?: string | StringFieldRefInput<$PrismaModel> | null
117770
+ in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
117771
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
117743
117772
  lt?: string | StringFieldRefInput<$PrismaModel>
117744
117773
  lte?: string | StringFieldRefInput<$PrismaModel>
117745
117774
  gt?: string | StringFieldRefInput<$PrismaModel>
@@ -117748,16 +117777,16 @@ export namespace Prisma {
117748
117777
  startsWith?: string | StringFieldRefInput<$PrismaModel>
117749
117778
  endsWith?: string | StringFieldRefInput<$PrismaModel>
117750
117779
  search?: string
117751
- not?: NestedStringWithAggregatesFilter<$PrismaModel> | string
117752
- _count?: NestedIntFilter<$PrismaModel>
117753
- _min?: NestedStringFilter<$PrismaModel>
117754
- _max?: NestedStringFilter<$PrismaModel>
117780
+ not?: NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
117781
+ _count?: NestedIntNullableFilter<$PrismaModel>
117782
+ _min?: NestedStringNullableFilter<$PrismaModel>
117783
+ _max?: NestedStringNullableFilter<$PrismaModel>
117755
117784
  }
117756
117785
 
117757
- export type NestedStringNullableWithAggregatesFilter<$PrismaModel = never> = {
117758
- equals?: string | StringFieldRefInput<$PrismaModel> | null
117759
- in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
117760
- notIn?: string[] | ListStringFieldRefInput<$PrismaModel> | null
117786
+ export type NestedStringWithAggregatesFilter<$PrismaModel = never> = {
117787
+ equals?: string | StringFieldRefInput<$PrismaModel>
117788
+ in?: string[] | ListStringFieldRefInput<$PrismaModel>
117789
+ notIn?: string[] | ListStringFieldRefInput<$PrismaModel>
117761
117790
  lt?: string | StringFieldRefInput<$PrismaModel>
117762
117791
  lte?: string | StringFieldRefInput<$PrismaModel>
117763
117792
  gt?: string | StringFieldRefInput<$PrismaModel>
@@ -117766,10 +117795,10 @@ export namespace Prisma {
117766
117795
  startsWith?: string | StringFieldRefInput<$PrismaModel>
117767
117796
  endsWith?: string | StringFieldRefInput<$PrismaModel>
117768
117797
  search?: string
117769
- not?: NestedStringNullableWithAggregatesFilter<$PrismaModel> | string | null
117770
- _count?: NestedIntNullableFilter<$PrismaModel>
117771
- _min?: NestedStringNullableFilter<$PrismaModel>
117772
- _max?: NestedStringNullableFilter<$PrismaModel>
117798
+ not?: NestedStringWithAggregatesFilter<$PrismaModel> | string
117799
+ _count?: NestedIntFilter<$PrismaModel>
117800
+ _min?: NestedStringFilter<$PrismaModel>
117801
+ _max?: NestedStringFilter<$PrismaModel>
117773
117802
  }
117774
117803
 
117775
117804
  export type NestedDateTimeWithAggregatesFilter<$PrismaModel = never> = {
@@ -118035,6 +118064,7 @@ export namespace Prisma {
118035
118064
  }
118036
118065
 
118037
118066
  export type UserCreateWithoutReferredUsersInput = {
118067
+ idmId?: string | null
118038
118068
  role: string
118039
118069
  email?: string | null
118040
118070
  password?: string | null
@@ -118081,6 +118111,7 @@ export namespace Prisma {
118081
118111
 
118082
118112
  export type UserUncheckedCreateWithoutReferredUsersInput = {
118083
118113
  id?: number
118114
+ idmId?: string | null
118084
118115
  role: string
118085
118116
  email?: string | null
118086
118117
  password?: string | null
@@ -118131,6 +118162,7 @@ export namespace Prisma {
118131
118162
  }
118132
118163
 
118133
118164
  export type UserCreateWithoutReferrerInput = {
118165
+ idmId?: string | null
118134
118166
  role: string
118135
118167
  email?: string | null
118136
118168
  password?: string | null
@@ -118177,6 +118209,7 @@ export namespace Prisma {
118177
118209
 
118178
118210
  export type UserUncheckedCreateWithoutReferrerInput = {
118179
118211
  id?: number
118212
+ idmId?: string | null
118180
118213
  role: string
118181
118214
  email?: string | null
118182
118215
  password?: string | null
@@ -119164,6 +119197,7 @@ export namespace Prisma {
119164
119197
  }
119165
119198
 
119166
119199
  export type UserUpdateWithoutReferredUsersInput = {
119200
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
119167
119201
  role?: StringFieldUpdateOperationsInput | string
119168
119202
  email?: NullableStringFieldUpdateOperationsInput | string | null
119169
119203
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -119210,6 +119244,7 @@ export namespace Prisma {
119210
119244
 
119211
119245
  export type UserUncheckedUpdateWithoutReferredUsersInput = {
119212
119246
  id?: IntFieldUpdateOperationsInput | number
119247
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
119213
119248
  role?: StringFieldUpdateOperationsInput | string
119214
119249
  email?: NullableStringFieldUpdateOperationsInput | string | null
119215
119250
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -119275,6 +119310,7 @@ export namespace Prisma {
119275
119310
  OR?: UserScalarWhereInput[]
119276
119311
  NOT?: UserScalarWhereInput | UserScalarWhereInput[]
119277
119312
  id?: IntFilter<"User"> | number
119313
+ idmId?: StringNullableFilter<"User"> | string | null
119278
119314
  role?: StringFilter<"User"> | string
119279
119315
  email?: StringNullableFilter<"User"> | string | null
119280
119316
  password?: StringNullableFilter<"User"> | string | null
@@ -120121,6 +120157,7 @@ export namespace Prisma {
120121
120157
  }
120122
120158
 
120123
120159
  export type UserCreateWithoutLogsInput = {
120160
+ idmId?: string | null
120124
120161
  role: string
120125
120162
  email?: string | null
120126
120163
  password?: string | null
@@ -120167,6 +120204,7 @@ export namespace Prisma {
120167
120204
 
120168
120205
  export type UserUncheckedCreateWithoutLogsInput = {
120169
120206
  id?: number
120207
+ idmId?: string | null
120170
120208
  role: string
120171
120209
  email?: string | null
120172
120210
  password?: string | null
@@ -120228,6 +120266,7 @@ export namespace Prisma {
120228
120266
  }
120229
120267
 
120230
120268
  export type UserUpdateWithoutLogsInput = {
120269
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
120231
120270
  role?: StringFieldUpdateOperationsInput | string
120232
120271
  email?: NullableStringFieldUpdateOperationsInput | string | null
120233
120272
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -120274,6 +120313,7 @@ export namespace Prisma {
120274
120313
 
120275
120314
  export type UserUncheckedUpdateWithoutLogsInput = {
120276
120315
  id?: IntFieldUpdateOperationsInput | number
120316
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
120277
120317
  role?: StringFieldUpdateOperationsInput | string
120278
120318
  email?: NullableStringFieldUpdateOperationsInput | string | null
120279
120319
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -120337,6 +120377,7 @@ export namespace Prisma {
120337
120377
  }
120338
120378
 
120339
120379
  export type UserCreateWithoutCreatorProfileInput = {
120380
+ idmId?: string | null
120340
120381
  role: string
120341
120382
  email?: string | null
120342
120383
  password?: string | null
@@ -120383,6 +120424,7 @@ export namespace Prisma {
120383
120424
 
120384
120425
  export type UserUncheckedCreateWithoutCreatorProfileInput = {
120385
120426
  id?: number
120427
+ idmId?: string | null
120386
120428
  role: string
120387
120429
  email?: string | null
120388
120430
  password?: string | null
@@ -120468,6 +120510,7 @@ export namespace Prisma {
120468
120510
  }
120469
120511
 
120470
120512
  export type UserUpdateWithoutCreatorProfileInput = {
120513
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
120471
120514
  role?: StringFieldUpdateOperationsInput | string
120472
120515
  email?: NullableStringFieldUpdateOperationsInput | string | null
120473
120516
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -120514,6 +120557,7 @@ export namespace Prisma {
120514
120557
 
120515
120558
  export type UserUncheckedUpdateWithoutCreatorProfileInput = {
120516
120559
  id?: IntFieldUpdateOperationsInput | number
120560
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
120517
120561
  role?: StringFieldUpdateOperationsInput | string
120518
120562
  email?: NullableStringFieldUpdateOperationsInput | string | null
120519
120563
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -120559,6 +120603,7 @@ export namespace Prisma {
120559
120603
  }
120560
120604
 
120561
120605
  export type UserCreateWithoutInstagramProfileInput = {
120606
+ idmId?: string | null
120562
120607
  role: string
120563
120608
  email?: string | null
120564
120609
  password?: string | null
@@ -120605,6 +120650,7 @@ export namespace Prisma {
120605
120650
 
120606
120651
  export type UserUncheckedCreateWithoutInstagramProfileInput = {
120607
120652
  id?: number
120653
+ idmId?: string | null
120608
120654
  role: string
120609
120655
  email?: string | null
120610
120656
  password?: string | null
@@ -120748,6 +120794,7 @@ export namespace Prisma {
120748
120794
  }
120749
120795
 
120750
120796
  export type UserUpdateWithoutInstagramProfileInput = {
120797
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
120751
120798
  role?: StringFieldUpdateOperationsInput | string
120752
120799
  email?: NullableStringFieldUpdateOperationsInput | string | null
120753
120800
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -120794,6 +120841,7 @@ export namespace Prisma {
120794
120841
 
120795
120842
  export type UserUncheckedUpdateWithoutInstagramProfileInput = {
120796
120843
  id?: IntFieldUpdateOperationsInput | number
120844
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
120797
120845
  role?: StringFieldUpdateOperationsInput | string
120798
120846
  email?: NullableStringFieldUpdateOperationsInput | string | null
120799
120847
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -120927,6 +120975,7 @@ export namespace Prisma {
120927
120975
  }
120928
120976
 
120929
120977
  export type UserCreateWithoutTiktokProfileInput = {
120978
+ idmId?: string | null
120930
120979
  role: string
120931
120980
  email?: string | null
120932
120981
  password?: string | null
@@ -120973,6 +121022,7 @@ export namespace Prisma {
120973
121022
 
120974
121023
  export type UserUncheckedCreateWithoutTiktokProfileInput = {
120975
121024
  id?: number
121025
+ idmId?: string | null
120976
121026
  role: string
120977
121027
  email?: string | null
120978
121028
  password?: string | null
@@ -121116,6 +121166,7 @@ export namespace Prisma {
121116
121166
  }
121117
121167
 
121118
121168
  export type UserUpdateWithoutTiktokProfileInput = {
121169
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
121119
121170
  role?: StringFieldUpdateOperationsInput | string
121120
121171
  email?: NullableStringFieldUpdateOperationsInput | string | null
121121
121172
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -121162,6 +121213,7 @@ export namespace Prisma {
121162
121213
 
121163
121214
  export type UserUncheckedUpdateWithoutTiktokProfileInput = {
121164
121215
  id?: IntFieldUpdateOperationsInput | number
121216
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
121165
121217
  role?: StringFieldUpdateOperationsInput | string
121166
121218
  email?: NullableStringFieldUpdateOperationsInput | string | null
121167
121219
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -121295,6 +121347,7 @@ export namespace Prisma {
121295
121347
  }
121296
121348
 
121297
121349
  export type UserCreateWithoutYoutubeProfileInput = {
121350
+ idmId?: string | null
121298
121351
  role: string
121299
121352
  email?: string | null
121300
121353
  password?: string | null
@@ -121341,6 +121394,7 @@ export namespace Prisma {
121341
121394
 
121342
121395
  export type UserUncheckedCreateWithoutYoutubeProfileInput = {
121343
121396
  id?: number
121397
+ idmId?: string | null
121344
121398
  role: string
121345
121399
  email?: string | null
121346
121400
  password?: string | null
@@ -121484,6 +121538,7 @@ export namespace Prisma {
121484
121538
  }
121485
121539
 
121486
121540
  export type UserUpdateWithoutYoutubeProfileInput = {
121541
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
121487
121542
  role?: StringFieldUpdateOperationsInput | string
121488
121543
  email?: NullableStringFieldUpdateOperationsInput | string | null
121489
121544
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -121530,6 +121585,7 @@ export namespace Prisma {
121530
121585
 
121531
121586
  export type UserUncheckedUpdateWithoutYoutubeProfileInput = {
121532
121587
  id?: IntFieldUpdateOperationsInput | number
121588
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
121533
121589
  role?: StringFieldUpdateOperationsInput | string
121534
121590
  email?: NullableStringFieldUpdateOperationsInput | string | null
121535
121591
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -121663,6 +121719,7 @@ export namespace Prisma {
121663
121719
  }
121664
121720
 
121665
121721
  export type UserCreateWithoutTwitchProfileInput = {
121722
+ idmId?: string | null
121666
121723
  role: string
121667
121724
  email?: string | null
121668
121725
  password?: string | null
@@ -121709,6 +121766,7 @@ export namespace Prisma {
121709
121766
 
121710
121767
  export type UserUncheckedCreateWithoutTwitchProfileInput = {
121711
121768
  id?: number
121769
+ idmId?: string | null
121712
121770
  role: string
121713
121771
  email?: string | null
121714
121772
  password?: string | null
@@ -121770,6 +121828,7 @@ export namespace Prisma {
121770
121828
  }
121771
121829
 
121772
121830
  export type UserUpdateWithoutTwitchProfileInput = {
121831
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
121773
121832
  role?: StringFieldUpdateOperationsInput | string
121774
121833
  email?: NullableStringFieldUpdateOperationsInput | string | null
121775
121834
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -121816,6 +121875,7 @@ export namespace Prisma {
121816
121875
 
121817
121876
  export type UserUncheckedUpdateWithoutTwitchProfileInput = {
121818
121877
  id?: IntFieldUpdateOperationsInput | number
121878
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
121819
121879
  role?: StringFieldUpdateOperationsInput | string
121820
121880
  email?: NullableStringFieldUpdateOperationsInput | string | null
121821
121881
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -121861,6 +121921,7 @@ export namespace Prisma {
121861
121921
  }
121862
121922
 
121863
121923
  export type UserCreateWithoutFacebookProfileInput = {
121924
+ idmId?: string | null
121864
121925
  role: string
121865
121926
  email?: string | null
121866
121927
  password?: string | null
@@ -121907,6 +121968,7 @@ export namespace Prisma {
121907
121968
 
121908
121969
  export type UserUncheckedCreateWithoutFacebookProfileInput = {
121909
121970
  id?: number
121971
+ idmId?: string | null
121910
121972
  role: string
121911
121973
  email?: string | null
121912
121974
  password?: string | null
@@ -121968,6 +122030,7 @@ export namespace Prisma {
121968
122030
  }
121969
122031
 
121970
122032
  export type UserUpdateWithoutFacebookProfileInput = {
122033
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
121971
122034
  role?: StringFieldUpdateOperationsInput | string
121972
122035
  email?: NullableStringFieldUpdateOperationsInput | string | null
121973
122036
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -122014,6 +122077,7 @@ export namespace Prisma {
122014
122077
 
122015
122078
  export type UserUncheckedUpdateWithoutFacebookProfileInput = {
122016
122079
  id?: IntFieldUpdateOperationsInput | number
122080
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
122017
122081
  role?: StringFieldUpdateOperationsInput | string
122018
122082
  email?: NullableStringFieldUpdateOperationsInput | string | null
122019
122083
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -122059,6 +122123,7 @@ export namespace Prisma {
122059
122123
  }
122060
122124
 
122061
122125
  export type UserCreateWithoutTwitterProfileInput = {
122126
+ idmId?: string | null
122062
122127
  role: string
122063
122128
  email?: string | null
122064
122129
  password?: string | null
@@ -122105,6 +122170,7 @@ export namespace Prisma {
122105
122170
 
122106
122171
  export type UserUncheckedCreateWithoutTwitterProfileInput = {
122107
122172
  id?: number
122173
+ idmId?: string | null
122108
122174
  role: string
122109
122175
  email?: string | null
122110
122176
  password?: string | null
@@ -122166,6 +122232,7 @@ export namespace Prisma {
122166
122232
  }
122167
122233
 
122168
122234
  export type UserUpdateWithoutTwitterProfileInput = {
122235
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
122169
122236
  role?: StringFieldUpdateOperationsInput | string
122170
122237
  email?: NullableStringFieldUpdateOperationsInput | string | null
122171
122238
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -122212,6 +122279,7 @@ export namespace Prisma {
122212
122279
 
122213
122280
  export type UserUncheckedUpdateWithoutTwitterProfileInput = {
122214
122281
  id?: IntFieldUpdateOperationsInput | number
122282
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
122215
122283
  role?: StringFieldUpdateOperationsInput | string
122216
122284
  email?: NullableStringFieldUpdateOperationsInput | string | null
122217
122285
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -122257,6 +122325,7 @@ export namespace Prisma {
122257
122325
  }
122258
122326
 
122259
122327
  export type UserCreateWithoutBrandProfilesInput = {
122328
+ idmId?: string | null
122260
122329
  role: string
122261
122330
  email?: string | null
122262
122331
  password?: string | null
@@ -122303,6 +122372,7 @@ export namespace Prisma {
122303
122372
 
122304
122373
  export type UserUncheckedCreateWithoutBrandProfilesInput = {
122305
122374
  id?: number
122375
+ idmId?: string | null
122306
122376
  role: string
122307
122377
  email?: string | null
122308
122378
  password?: string | null
@@ -122446,6 +122516,7 @@ export namespace Prisma {
122446
122516
  }
122447
122517
 
122448
122518
  export type UserUpdateWithoutBrandProfilesInput = {
122519
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
122449
122520
  role?: StringFieldUpdateOperationsInput | string
122450
122521
  email?: NullableStringFieldUpdateOperationsInput | string | null
122451
122522
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -122492,6 +122563,7 @@ export namespace Prisma {
122492
122563
 
122493
122564
  export type UserUncheckedUpdateWithoutBrandProfilesInput = {
122494
122565
  id?: IntFieldUpdateOperationsInput | number
122566
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
122495
122567
  role?: StringFieldUpdateOperationsInput | string
122496
122568
  email?: NullableStringFieldUpdateOperationsInput | string | null
122497
122569
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -122625,6 +122697,7 @@ export namespace Prisma {
122625
122697
  }
122626
122698
 
122627
122699
  export type UserCreateWithoutAssignedBrandsInput = {
122700
+ idmId?: string | null
122628
122701
  role: string
122629
122702
  email?: string | null
122630
122703
  password?: string | null
@@ -122671,6 +122744,7 @@ export namespace Prisma {
122671
122744
 
122672
122745
  export type UserUncheckedCreateWithoutAssignedBrandsInput = {
122673
122746
  id?: number
122747
+ idmId?: string | null
122674
122748
  role: string
122675
122749
  email?: string | null
122676
122750
  password?: string | null
@@ -123743,6 +123817,7 @@ export namespace Prisma {
123743
123817
  }
123744
123818
 
123745
123819
  export type UserUpdateWithoutAssignedBrandsInput = {
123820
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
123746
123821
  role?: StringFieldUpdateOperationsInput | string
123747
123822
  email?: NullableStringFieldUpdateOperationsInput | string | null
123748
123823
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -123789,6 +123864,7 @@ export namespace Prisma {
123789
123864
 
123790
123865
  export type UserUncheckedUpdateWithoutAssignedBrandsInput = {
123791
123866
  id?: IntFieldUpdateOperationsInput | number
123867
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
123792
123868
  role?: StringFieldUpdateOperationsInput | string
123793
123869
  email?: NullableStringFieldUpdateOperationsInput | string | null
123794
123870
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -126017,6 +126093,7 @@ export namespace Prisma {
126017
126093
  }
126018
126094
 
126019
126095
  export type UserCreateWithoutMessagesInput = {
126096
+ idmId?: string | null
126020
126097
  role: string
126021
126098
  email?: string | null
126022
126099
  password?: string | null
@@ -126063,6 +126140,7 @@ export namespace Prisma {
126063
126140
 
126064
126141
  export type UserUncheckedCreateWithoutMessagesInput = {
126065
126142
  id?: number
126143
+ idmId?: string | null
126066
126144
  role: string
126067
126145
  email?: string | null
126068
126146
  password?: string | null
@@ -126144,6 +126222,7 @@ export namespace Prisma {
126144
126222
  }
126145
126223
 
126146
126224
  export type UserUpdateWithoutMessagesInput = {
126225
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
126147
126226
  role?: StringFieldUpdateOperationsInput | string
126148
126227
  email?: NullableStringFieldUpdateOperationsInput | string | null
126149
126228
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -126190,6 +126269,7 @@ export namespace Prisma {
126190
126269
 
126191
126270
  export type UserUncheckedUpdateWithoutMessagesInput = {
126192
126271
  id?: IntFieldUpdateOperationsInput | number
126272
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
126193
126273
  role?: StringFieldUpdateOperationsInput | string
126194
126274
  email?: NullableStringFieldUpdateOperationsInput | string | null
126195
126275
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -127293,6 +127373,7 @@ export namespace Prisma {
127293
127373
  }
127294
127374
 
127295
127375
  export type UserCreateWithoutCampaignPinsInput = {
127376
+ idmId?: string | null
127296
127377
  role: string
127297
127378
  email?: string | null
127298
127379
  password?: string | null
@@ -127339,6 +127420,7 @@ export namespace Prisma {
127339
127420
 
127340
127421
  export type UserUncheckedCreateWithoutCampaignPinsInput = {
127341
127422
  id?: number
127423
+ idmId?: string | null
127342
127424
  role: string
127343
127425
  email?: string | null
127344
127426
  password?: string | null
@@ -127546,6 +127628,7 @@ export namespace Prisma {
127546
127628
  }
127547
127629
 
127548
127630
  export type UserUpdateWithoutCampaignPinsInput = {
127631
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
127549
127632
  role?: StringFieldUpdateOperationsInput | string
127550
127633
  email?: NullableStringFieldUpdateOperationsInput | string | null
127551
127634
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -127592,6 +127675,7 @@ export namespace Prisma {
127592
127675
 
127593
127676
  export type UserUncheckedUpdateWithoutCampaignPinsInput = {
127594
127677
  id?: IntFieldUpdateOperationsInput | number
127678
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
127595
127679
  role?: StringFieldUpdateOperationsInput | string
127596
127680
  email?: NullableStringFieldUpdateOperationsInput | string | null
127597
127681
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -131414,6 +131498,7 @@ export namespace Prisma {
131414
131498
  }
131415
131499
 
131416
131500
  export type UserCreateWithoutOptInsInput = {
131501
+ idmId?: string | null
131417
131502
  role: string
131418
131503
  email?: string | null
131419
131504
  password?: string | null
@@ -131460,6 +131545,7 @@ export namespace Prisma {
131460
131545
 
131461
131546
  export type UserUncheckedCreateWithoutOptInsInput = {
131462
131547
  id?: number
131548
+ idmId?: string | null
131463
131549
  role: string
131464
131550
  email?: string | null
131465
131551
  password?: string | null
@@ -131986,6 +132072,7 @@ export namespace Prisma {
131986
132072
  }
131987
132073
 
131988
132074
  export type UserUpdateWithoutOptInsInput = {
132075
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
131989
132076
  role?: StringFieldUpdateOperationsInput | string
131990
132077
  email?: NullableStringFieldUpdateOperationsInput | string | null
131991
132078
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -132032,6 +132119,7 @@ export namespace Prisma {
132032
132119
 
132033
132120
  export type UserUncheckedUpdateWithoutOptInsInput = {
132034
132121
  id?: IntFieldUpdateOperationsInput | number
132122
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
132035
132123
  role?: StringFieldUpdateOperationsInput | string
132036
132124
  email?: NullableStringFieldUpdateOperationsInput | string | null
132037
132125
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -132883,6 +132971,7 @@ export namespace Prisma {
132883
132971
  }
132884
132972
 
132885
132973
  export type UserCreateWithoutSocialPostsInput = {
132974
+ idmId?: string | null
132886
132975
  role: string
132887
132976
  email?: string | null
132888
132977
  password?: string | null
@@ -132929,6 +133018,7 @@ export namespace Prisma {
132929
133018
 
132930
133019
  export type UserUncheckedCreateWithoutSocialPostsInput = {
132931
133020
  id?: number
133021
+ idmId?: string | null
132932
133022
  role: string
132933
133023
  email?: string | null
132934
133024
  password?: string | null
@@ -133155,6 +133245,7 @@ export namespace Prisma {
133155
133245
  }
133156
133246
 
133157
133247
  export type UserUpdateWithoutSocialPostsInput = {
133248
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
133158
133249
  role?: StringFieldUpdateOperationsInput | string
133159
133250
  email?: NullableStringFieldUpdateOperationsInput | string | null
133160
133251
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -133201,6 +133292,7 @@ export namespace Prisma {
133201
133292
 
133202
133293
  export type UserUncheckedUpdateWithoutSocialPostsInput = {
133203
133294
  id?: IntFieldUpdateOperationsInput | number
133295
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
133204
133296
  role?: StringFieldUpdateOperationsInput | string
133205
133297
  email?: NullableStringFieldUpdateOperationsInput | string | null
133206
133298
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -133708,6 +133800,7 @@ export namespace Prisma {
133708
133800
  }
133709
133801
 
133710
133802
  export type UserCreateWithoutPaymentTransactionsInput = {
133803
+ idmId?: string | null
133711
133804
  role: string
133712
133805
  email?: string | null
133713
133806
  password?: string | null
@@ -133754,6 +133847,7 @@ export namespace Prisma {
133754
133847
 
133755
133848
  export type UserUncheckedCreateWithoutPaymentTransactionsInput = {
133756
133849
  id?: number
133850
+ idmId?: string | null
133757
133851
  role: string
133758
133852
  email?: string | null
133759
133853
  password?: string | null
@@ -133967,6 +134061,7 @@ export namespace Prisma {
133967
134061
  }
133968
134062
 
133969
134063
  export type UserUpdateWithoutPaymentTransactionsInput = {
134064
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
133970
134065
  role?: StringFieldUpdateOperationsInput | string
133971
134066
  email?: NullableStringFieldUpdateOperationsInput | string | null
133972
134067
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -134013,6 +134108,7 @@ export namespace Prisma {
134013
134108
 
134014
134109
  export type UserUncheckedUpdateWithoutPaymentTransactionsInput = {
134015
134110
  id?: IntFieldUpdateOperationsInput | number
134111
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
134016
134112
  role?: StringFieldUpdateOperationsInput | string
134017
134113
  email?: NullableStringFieldUpdateOperationsInput | string | null
134018
134114
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -134848,6 +134944,7 @@ export namespace Prisma {
134848
134944
  }
134849
134945
 
134850
134946
  export type UserCreateWithoutAffiliateLinksInput = {
134947
+ idmId?: string | null
134851
134948
  role: string
134852
134949
  email?: string | null
134853
134950
  password?: string | null
@@ -134894,6 +134991,7 @@ export namespace Prisma {
134894
134991
 
134895
134992
  export type UserUncheckedCreateWithoutAffiliateLinksInput = {
134896
134993
  id?: number
134994
+ idmId?: string | null
134897
134995
  role: string
134898
134996
  email?: string | null
134899
134997
  password?: string | null
@@ -134997,6 +135095,7 @@ export namespace Prisma {
134997
135095
  }
134998
135096
 
134999
135097
  export type UserUpdateWithoutAffiliateLinksInput = {
135098
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
135000
135099
  role?: StringFieldUpdateOperationsInput | string
135001
135100
  email?: NullableStringFieldUpdateOperationsInput | string | null
135002
135101
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -135043,6 +135142,7 @@ export namespace Prisma {
135043
135142
 
135044
135143
  export type UserUncheckedUpdateWithoutAffiliateLinksInput = {
135045
135144
  id?: IntFieldUpdateOperationsInput | number
135145
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
135046
135146
  role?: StringFieldUpdateOperationsInput | string
135047
135147
  email?: NullableStringFieldUpdateOperationsInput | string | null
135048
135148
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -137279,6 +137379,7 @@ export namespace Prisma {
137279
137379
  }
137280
137380
 
137281
137381
  export type UserCreateWithoutSocialProfilesInput = {
137382
+ idmId?: string | null
137282
137383
  role: string
137283
137384
  email?: string | null
137284
137385
  password?: string | null
@@ -137325,6 +137426,7 @@ export namespace Prisma {
137325
137426
 
137326
137427
  export type UserUncheckedCreateWithoutSocialProfilesInput = {
137327
137428
  id?: number
137429
+ idmId?: string | null
137328
137430
  role: string
137329
137431
  email?: string | null
137330
137432
  password?: string | null
@@ -137418,6 +137520,7 @@ export namespace Prisma {
137418
137520
  }
137419
137521
 
137420
137522
  export type UserUpdateWithoutSocialProfilesInput = {
137523
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
137421
137524
  role?: StringFieldUpdateOperationsInput | string
137422
137525
  email?: NullableStringFieldUpdateOperationsInput | string | null
137423
137526
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -137464,6 +137567,7 @@ export namespace Prisma {
137464
137567
 
137465
137568
  export type UserUncheckedUpdateWithoutSocialProfilesInput = {
137466
137569
  id?: IntFieldUpdateOperationsInput | number
137570
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
137467
137571
  role?: StringFieldUpdateOperationsInput | string
137468
137572
  email?: NullableStringFieldUpdateOperationsInput | string | null
137469
137573
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -138630,6 +138734,7 @@ export namespace Prisma {
138630
138734
  }
138631
138735
 
138632
138736
  export type UserCreateWithoutRakutenActivityInput = {
138737
+ idmId?: string | null
138633
138738
  role: string
138634
138739
  email?: string | null
138635
138740
  password?: string | null
@@ -138676,6 +138781,7 @@ export namespace Prisma {
138676
138781
 
138677
138782
  export type UserUncheckedCreateWithoutRakutenActivityInput = {
138678
138783
  id?: number
138784
+ idmId?: string | null
138679
138785
  role: string
138680
138786
  email?: string | null
138681
138787
  password?: string | null
@@ -138737,6 +138843,7 @@ export namespace Prisma {
138737
138843
  }
138738
138844
 
138739
138845
  export type UserUpdateWithoutRakutenActivityInput = {
138846
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
138740
138847
  role?: StringFieldUpdateOperationsInput | string
138741
138848
  email?: NullableStringFieldUpdateOperationsInput | string | null
138742
138849
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -138783,6 +138890,7 @@ export namespace Prisma {
138783
138890
 
138784
138891
  export type UserUncheckedUpdateWithoutRakutenActivityInput = {
138785
138892
  id?: IntFieldUpdateOperationsInput | number
138893
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
138786
138894
  role?: StringFieldUpdateOperationsInput | string
138787
138895
  email?: NullableStringFieldUpdateOperationsInput | string | null
138788
138896
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -138828,6 +138936,7 @@ export namespace Prisma {
138828
138936
  }
138829
138937
 
138830
138938
  export type UserCreateWithoutImpactRadiusEventsInput = {
138939
+ idmId?: string | null
138831
138940
  role: string
138832
138941
  email?: string | null
138833
138942
  password?: string | null
@@ -138874,6 +138983,7 @@ export namespace Prisma {
138874
138983
 
138875
138984
  export type UserUncheckedCreateWithoutImpactRadiusEventsInput = {
138876
138985
  id?: number
138986
+ idmId?: string | null
138877
138987
  role: string
138878
138988
  email?: string | null
138879
138989
  password?: string | null
@@ -139085,6 +139195,7 @@ export namespace Prisma {
139085
139195
  }
139086
139196
 
139087
139197
  export type UserUpdateWithoutImpactRadiusEventsInput = {
139198
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
139088
139199
  role?: StringFieldUpdateOperationsInput | string
139089
139200
  email?: NullableStringFieldUpdateOperationsInput | string | null
139090
139201
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -139131,6 +139242,7 @@ export namespace Prisma {
139131
139242
 
139132
139243
  export type UserUncheckedUpdateWithoutImpactRadiusEventsInput = {
139133
139244
  id?: IntFieldUpdateOperationsInput | number
139245
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
139134
139246
  role?: StringFieldUpdateOperationsInput | string
139135
139247
  email?: NullableStringFieldUpdateOperationsInput | string | null
139136
139248
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -141999,6 +142111,7 @@ export namespace Prisma {
141999
142111
  }
142000
142112
 
142001
142113
  export type UserCreateWithoutFlagsAssignedInput = {
142114
+ idmId?: string | null
142002
142115
  role: string
142003
142116
  email?: string | null
142004
142117
  password?: string | null
@@ -142045,6 +142158,7 @@ export namespace Prisma {
142045
142158
 
142046
142159
  export type UserUncheckedCreateWithoutFlagsAssignedInput = {
142047
142160
  id?: number
142161
+ idmId?: string | null
142048
142162
  role: string
142049
142163
  email?: string | null
142050
142164
  password?: string | null
@@ -142095,6 +142209,7 @@ export namespace Prisma {
142095
142209
  }
142096
142210
 
142097
142211
  export type UserCreateWithoutFlagsCreatedInput = {
142212
+ idmId?: string | null
142098
142213
  role: string
142099
142214
  email?: string | null
142100
142215
  password?: string | null
@@ -142141,6 +142256,7 @@ export namespace Prisma {
142141
142256
 
142142
142257
  export type UserUncheckedCreateWithoutFlagsCreatedInput = {
142143
142258
  id?: number
142259
+ idmId?: string | null
142144
142260
  role: string
142145
142261
  email?: string | null
142146
142262
  password?: string | null
@@ -142191,6 +142307,7 @@ export namespace Prisma {
142191
142307
  }
142192
142308
 
142193
142309
  export type UserCreateWithoutFlagsEditedInput = {
142310
+ idmId?: string | null
142194
142311
  role: string
142195
142312
  email?: string | null
142196
142313
  password?: string | null
@@ -142237,6 +142354,7 @@ export namespace Prisma {
142237
142354
 
142238
142355
  export type UserUncheckedCreateWithoutFlagsEditedInput = {
142239
142356
  id?: number
142357
+ idmId?: string | null
142240
142358
  role: string
142241
142359
  email?: string | null
142242
142360
  password?: string | null
@@ -142298,6 +142416,7 @@ export namespace Prisma {
142298
142416
  }
142299
142417
 
142300
142418
  export type UserUpdateWithoutFlagsAssignedInput = {
142419
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142301
142420
  role?: StringFieldUpdateOperationsInput | string
142302
142421
  email?: NullableStringFieldUpdateOperationsInput | string | null
142303
142422
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -142344,6 +142463,7 @@ export namespace Prisma {
142344
142463
 
142345
142464
  export type UserUncheckedUpdateWithoutFlagsAssignedInput = {
142346
142465
  id?: IntFieldUpdateOperationsInput | number
142466
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142347
142467
  role?: StringFieldUpdateOperationsInput | string
142348
142468
  email?: NullableStringFieldUpdateOperationsInput | string | null
142349
142469
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -142400,6 +142520,7 @@ export namespace Prisma {
142400
142520
  }
142401
142521
 
142402
142522
  export type UserUpdateWithoutFlagsCreatedInput = {
142523
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142403
142524
  role?: StringFieldUpdateOperationsInput | string
142404
142525
  email?: NullableStringFieldUpdateOperationsInput | string | null
142405
142526
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -142446,6 +142567,7 @@ export namespace Prisma {
142446
142567
 
142447
142568
  export type UserUncheckedUpdateWithoutFlagsCreatedInput = {
142448
142569
  id?: IntFieldUpdateOperationsInput | number
142570
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142449
142571
  role?: StringFieldUpdateOperationsInput | string
142450
142572
  email?: NullableStringFieldUpdateOperationsInput | string | null
142451
142573
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -142502,6 +142624,7 @@ export namespace Prisma {
142502
142624
  }
142503
142625
 
142504
142626
  export type UserUpdateWithoutFlagsEditedInput = {
142627
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142505
142628
  role?: StringFieldUpdateOperationsInput | string
142506
142629
  email?: NullableStringFieldUpdateOperationsInput | string | null
142507
142630
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -142548,6 +142671,7 @@ export namespace Prisma {
142548
142671
 
142549
142672
  export type UserUncheckedUpdateWithoutFlagsEditedInput = {
142550
142673
  id?: IntFieldUpdateOperationsInput | number
142674
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142551
142675
  role?: StringFieldUpdateOperationsInput | string
142552
142676
  email?: NullableStringFieldUpdateOperationsInput | string | null
142553
142677
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -142594,6 +142718,7 @@ export namespace Prisma {
142594
142718
 
142595
142719
  export type UserCreateManyReferrerInput = {
142596
142720
  id?: number
142721
+ idmId?: string | null
142597
142722
  role: string
142598
142723
  email?: string | null
142599
142724
  password?: string | null
@@ -142813,6 +142938,7 @@ export namespace Prisma {
142813
142938
  }
142814
142939
 
142815
142940
  export type UserUpdateWithoutReferrerInput = {
142941
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142816
142942
  role?: StringFieldUpdateOperationsInput | string
142817
142943
  email?: NullableStringFieldUpdateOperationsInput | string | null
142818
142944
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -142859,6 +142985,7 @@ export namespace Prisma {
142859
142985
 
142860
142986
  export type UserUncheckedUpdateWithoutReferrerInput = {
142861
142987
  id?: IntFieldUpdateOperationsInput | number
142988
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142862
142989
  role?: StringFieldUpdateOperationsInput | string
142863
142990
  email?: NullableStringFieldUpdateOperationsInput | string | null
142864
142991
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -142905,6 +143032,7 @@ export namespace Prisma {
142905
143032
 
142906
143033
  export type UserUncheckedUpdateManyWithoutReferrerInput = {
142907
143034
  id?: IntFieldUpdateOperationsInput | number
143035
+ idmId?: NullableStringFieldUpdateOperationsInput | string | null
142908
143036
  role?: StringFieldUpdateOperationsInput | string
142909
143037
  email?: NullableStringFieldUpdateOperationsInput | string | null
142910
143038
  password?: NullableStringFieldUpdateOperationsInput | string | null