expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.11 → 0.34.0-EXPO-319-ver-eventos-disponibles.13

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.
Files changed (45) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -4
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -8
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -4
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -8
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
  8. package/dist/src/i18n/es.d.ts +3 -0
  9. package/dist/src/i18n/es.js +3 -0
  10. package/dist/src/i18n/es.js.map +1 -1
  11. package/dist/src/mi-expo/dto/get-me.dto.d.ts +16 -0
  12. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +20 -0
  13. package/dist/src/mi-expo/dto/login.dto.d.ts +21 -0
  14. package/dist/src/mi-expo/dto/update-me.dto.d.ts +16 -0
  15. package/dist/src/otp/dto/verify-otp.dto.d.ts +20 -0
  16. package/dist/src/profile/dto/create-profile.dto.d.ts +24 -0
  17. package/dist/src/profile/dto/delete-profile.dto.d.ts +16 -0
  18. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
  19. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -0
  20. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +16 -0
  21. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +16 -0
  22. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
  23. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -0
  24. package/dist/src/profile/dto/find-trash.dto.d.ts +6 -0
  25. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
  26. package/dist/src/profile/dto/profile.dto.d.ts +8 -0
  27. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -0
  28. package/dist/src/schema/profile.schema.d.ts +8 -0
  29. package/dist/src/schema/profile.schema.js +2 -0
  30. package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
  31. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
  32. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
  33. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
  34. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
  35. package/dist/types/prisma-schema/edge.js +6 -4
  36. package/dist/types/prisma-schema/index-browser.js +3 -1
  37. package/dist/types/prisma-schema/index.d.ts +66 -2
  38. package/dist/types/prisma-schema/index.js +6 -4
  39. package/dist/types/prisma-schema/package.json +1 -1
  40. package/dist/types/prisma-schema/schema.prisma +3 -0
  41. package/dist/types/prisma-schema/wasm.js +3 -1
  42. package/dist/types/schema.d.ts +30 -76
  43. package/package.json +1 -1
  44. package/dist/src/mi-expo/dto/emit-ticket.dto.d.ts +0 -281
  45. package/dist/src/mi-expo/dto/emit-ticket.dto.js +0 -23
@@ -91,7 +91,8 @@ export namespace $Enums {
91
91
  export const Role: {
92
92
  USER: 'USER',
93
93
  ADMIN: 'ADMIN',
94
- FORM: 'FORM'
94
+ FORM: 'FORM',
95
+ MI_EXPO: 'MI_EXPO'
95
96
  };
96
97
 
97
98
  export type Role = (typeof Role)[keyof typeof Role]
@@ -3700,6 +3701,7 @@ export namespace Prisma {
3700
3701
  export type ProfileMinAggregateOutputType = {
3701
3702
  id: string | null
3702
3703
  shortId: number | null
3704
+ role: $Enums.Role | null
3703
3705
  firstTimeMiExpo: boolean | null
3704
3706
  username: string | null
3705
3707
  password: string | null
@@ -3725,6 +3727,7 @@ export namespace Prisma {
3725
3727
  export type ProfileMaxAggregateOutputType = {
3726
3728
  id: string | null
3727
3729
  shortId: number | null
3730
+ role: $Enums.Role | null
3728
3731
  firstTimeMiExpo: boolean | null
3729
3732
  username: string | null
3730
3733
  password: string | null
@@ -3750,6 +3753,7 @@ export namespace Prisma {
3750
3753
  export type ProfileCountAggregateOutputType = {
3751
3754
  id: number
3752
3755
  shortId: number
3756
+ role: number
3753
3757
  firstTimeMiExpo: number
3754
3758
  username: number
3755
3759
  password: number
@@ -3786,6 +3790,7 @@ export namespace Prisma {
3786
3790
  export type ProfileMinAggregateInputType = {
3787
3791
  id?: true
3788
3792
  shortId?: true
3793
+ role?: true
3789
3794
  firstTimeMiExpo?: true
3790
3795
  username?: true
3791
3796
  password?: true
@@ -3811,6 +3816,7 @@ export namespace Prisma {
3811
3816
  export type ProfileMaxAggregateInputType = {
3812
3817
  id?: true
3813
3818
  shortId?: true
3819
+ role?: true
3814
3820
  firstTimeMiExpo?: true
3815
3821
  username?: true
3816
3822
  password?: true
@@ -3836,6 +3842,7 @@ export namespace Prisma {
3836
3842
  export type ProfileCountAggregateInputType = {
3837
3843
  id?: true
3838
3844
  shortId?: true
3845
+ role?: true
3839
3846
  firstTimeMiExpo?: true
3840
3847
  username?: true
3841
3848
  password?: true
@@ -3949,6 +3956,7 @@ export namespace Prisma {
3949
3956
  export type ProfileGroupByOutputType = {
3950
3957
  id: string
3951
3958
  shortId: number
3959
+ role: $Enums.Role
3952
3960
  firstTimeMiExpo: boolean
3953
3961
  username: string | null
3954
3962
  password: string | null
@@ -3994,6 +4002,7 @@ export namespace Prisma {
3994
4002
  export type ProfileSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
3995
4003
  id?: boolean
3996
4004
  shortId?: boolean
4005
+ role?: boolean
3997
4006
  firstTimeMiExpo?: boolean
3998
4007
  username?: boolean
3999
4008
  password?: boolean
@@ -4028,6 +4037,7 @@ export namespace Prisma {
4028
4037
  export type ProfileSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
4029
4038
  id?: boolean
4030
4039
  shortId?: boolean
4040
+ role?: boolean
4031
4041
  firstTimeMiExpo?: boolean
4032
4042
  username?: boolean
4033
4043
  password?: boolean
@@ -4056,6 +4066,7 @@ export namespace Prisma {
4056
4066
  export type ProfileSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
4057
4067
  id?: boolean
4058
4068
  shortId?: boolean
4069
+ role?: boolean
4059
4070
  firstTimeMiExpo?: boolean
4060
4071
  username?: boolean
4061
4072
  password?: boolean
@@ -4084,6 +4095,7 @@ export namespace Prisma {
4084
4095
  export type ProfileSelectScalar = {
4085
4096
  id?: boolean
4086
4097
  shortId?: boolean
4098
+ role?: boolean
4087
4099
  firstTimeMiExpo?: boolean
4088
4100
  username?: boolean
4089
4101
  password?: boolean
@@ -4107,7 +4119,7 @@ export namespace Prisma {
4107
4119
  updated_at?: boolean
4108
4120
  }
4109
4121
 
4110
- export type ProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "shortId" | "firstTimeMiExpo" | "username" | "password" | "phoneNumber" | "isPhoneVerified" | "secondaryPhoneNumber" | "fullName" | "firstName" | "gender" | "birthDate" | "profilePictureUrl" | "instagram" | "mail" | "dni" | "alternativeNames" | "birthLocationId" | "residenceLocationId" | "isInTrash" | "movedToTrashDate" | "created_at" | "updated_at", ExtArgs["result"]["profile"]>
4122
+ export type ProfileOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "shortId" | "role" | "firstTimeMiExpo" | "username" | "password" | "phoneNumber" | "isPhoneVerified" | "secondaryPhoneNumber" | "fullName" | "firstName" | "gender" | "birthDate" | "profilePictureUrl" | "instagram" | "mail" | "dni" | "alternativeNames" | "birthLocationId" | "residenceLocationId" | "isInTrash" | "movedToTrashDate" | "created_at" | "updated_at", ExtArgs["result"]["profile"]>
4111
4123
  export type ProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
4112
4124
  otp?: boolean | Profile$otpArgs<ExtArgs>
4113
4125
  comments?: boolean | Profile$commentsArgs<ExtArgs>
@@ -4141,6 +4153,7 @@ export namespace Prisma {
4141
4153
  scalars: $Extensions.GetPayloadResult<{
4142
4154
  id: string
4143
4155
  shortId: number
4156
+ role: $Enums.Role
4144
4157
  firstTimeMiExpo: boolean
4145
4158
  username: string | null
4146
4159
  password: string | null
@@ -4594,6 +4607,7 @@ export namespace Prisma {
4594
4607
  interface ProfileFieldRefs {
4595
4608
  readonly id: FieldRef<"Profile", 'String'>
4596
4609
  readonly shortId: FieldRef<"Profile", 'Int'>
4610
+ readonly role: FieldRef<"Profile", 'Role'>
4597
4611
  readonly firstTimeMiExpo: FieldRef<"Profile", 'Boolean'>
4598
4612
  readonly username: FieldRef<"Profile", 'String'>
4599
4613
  readonly password: FieldRef<"Profile", 'String'>
@@ -18647,6 +18661,7 @@ export namespace Prisma {
18647
18661
  export const ProfileScalarFieldEnum: {
18648
18662
  id: 'id',
18649
18663
  shortId: 'shortId',
18664
+ role: 'role',
18650
18665
  firstTimeMiExpo: 'firstTimeMiExpo',
18651
18666
  username: 'username',
18652
18667
  password: 'password',
@@ -19138,6 +19153,7 @@ export namespace Prisma {
19138
19153
  NOT?: ProfileWhereInput | ProfileWhereInput[]
19139
19154
  id?: StringFilter<"Profile"> | string
19140
19155
  shortId?: IntFilter<"Profile"> | number
19156
+ role?: EnumRoleFilter<"Profile"> | $Enums.Role
19141
19157
  firstTimeMiExpo?: BoolFilter<"Profile"> | boolean
19142
19158
  username?: StringNullableFilter<"Profile"> | string | null
19143
19159
  password?: StringNullableFilter<"Profile"> | string | null
@@ -19171,6 +19187,7 @@ export namespace Prisma {
19171
19187
  export type ProfileOrderByWithRelationInput = {
19172
19188
  id?: SortOrder
19173
19189
  shortId?: SortOrder
19190
+ role?: SortOrder
19174
19191
  firstTimeMiExpo?: SortOrder
19175
19192
  username?: SortOrderInput | SortOrder
19176
19193
  password?: SortOrderInput | SortOrder
@@ -19210,6 +19227,7 @@ export namespace Prisma {
19210
19227
  OR?: ProfileWhereInput[]
19211
19228
  NOT?: ProfileWhereInput | ProfileWhereInput[]
19212
19229
  shortId?: IntFilter<"Profile"> | number
19230
+ role?: EnumRoleFilter<"Profile"> | $Enums.Role
19213
19231
  firstTimeMiExpo?: BoolFilter<"Profile"> | boolean
19214
19232
  password?: StringNullableFilter<"Profile"> | string | null
19215
19233
  isPhoneVerified?: BoolFilter<"Profile"> | boolean
@@ -19240,6 +19258,7 @@ export namespace Prisma {
19240
19258
  export type ProfileOrderByWithAggregationInput = {
19241
19259
  id?: SortOrder
19242
19260
  shortId?: SortOrder
19261
+ role?: SortOrder
19243
19262
  firstTimeMiExpo?: SortOrder
19244
19263
  username?: SortOrderInput | SortOrder
19245
19264
  password?: SortOrderInput | SortOrder
@@ -19274,6 +19293,7 @@ export namespace Prisma {
19274
19293
  NOT?: ProfileScalarWhereWithAggregatesInput | ProfileScalarWhereWithAggregatesInput[]
19275
19294
  id?: StringWithAggregatesFilter<"Profile"> | string
19276
19295
  shortId?: IntWithAggregatesFilter<"Profile"> | number
19296
+ role?: EnumRoleWithAggregatesFilter<"Profile"> | $Enums.Role
19277
19297
  firstTimeMiExpo?: BoolWithAggregatesFilter<"Profile"> | boolean
19278
19298
  username?: StringNullableWithAggregatesFilter<"Profile"> | string | null
19279
19299
  password?: StringNullableWithAggregatesFilter<"Profile"> | string | null
@@ -20228,6 +20248,7 @@ export namespace Prisma {
20228
20248
  export type ProfileCreateInput = {
20229
20249
  id?: string
20230
20250
  shortId: number
20251
+ role?: $Enums.Role
20231
20252
  firstTimeMiExpo?: boolean
20232
20253
  username?: string | null
20233
20254
  password?: string | null
@@ -20259,6 +20280,7 @@ export namespace Prisma {
20259
20280
  export type ProfileUncheckedCreateInput = {
20260
20281
  id?: string
20261
20282
  shortId: number
20283
+ role?: $Enums.Role
20262
20284
  firstTimeMiExpo?: boolean
20263
20285
  username?: string | null
20264
20286
  password?: string | null
@@ -20290,6 +20312,7 @@ export namespace Prisma {
20290
20312
  export type ProfileUpdateInput = {
20291
20313
  id?: StringFieldUpdateOperationsInput | string
20292
20314
  shortId?: IntFieldUpdateOperationsInput | number
20315
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
20293
20316
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
20294
20317
  username?: NullableStringFieldUpdateOperationsInput | string | null
20295
20318
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -20321,6 +20344,7 @@ export namespace Prisma {
20321
20344
  export type ProfileUncheckedUpdateInput = {
20322
20345
  id?: StringFieldUpdateOperationsInput | string
20323
20346
  shortId?: IntFieldUpdateOperationsInput | number
20347
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
20324
20348
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
20325
20349
  username?: NullableStringFieldUpdateOperationsInput | string | null
20326
20350
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -20352,6 +20376,7 @@ export namespace Prisma {
20352
20376
  export type ProfileCreateManyInput = {
20353
20377
  id?: string
20354
20378
  shortId: number
20379
+ role?: $Enums.Role
20355
20380
  firstTimeMiExpo?: boolean
20356
20381
  username?: string | null
20357
20382
  password?: string | null
@@ -20378,6 +20403,7 @@ export namespace Prisma {
20378
20403
  export type ProfileUpdateManyMutationInput = {
20379
20404
  id?: StringFieldUpdateOperationsInput | string
20380
20405
  shortId?: IntFieldUpdateOperationsInput | number
20406
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
20381
20407
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
20382
20408
  username?: NullableStringFieldUpdateOperationsInput | string | null
20383
20409
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -20402,6 +20428,7 @@ export namespace Prisma {
20402
20428
  export type ProfileUncheckedUpdateManyInput = {
20403
20429
  id?: StringFieldUpdateOperationsInput | string
20404
20430
  shortId?: IntFieldUpdateOperationsInput | number
20431
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
20405
20432
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
20406
20433
  username?: NullableStringFieldUpdateOperationsInput | string | null
20407
20434
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -21542,6 +21569,7 @@ export namespace Prisma {
21542
21569
  export type ProfileCountOrderByAggregateInput = {
21543
21570
  id?: SortOrder
21544
21571
  shortId?: SortOrder
21572
+ role?: SortOrder
21545
21573
  firstTimeMiExpo?: SortOrder
21546
21574
  username?: SortOrder
21547
21575
  password?: SortOrder
@@ -21572,6 +21600,7 @@ export namespace Prisma {
21572
21600
  export type ProfileMaxOrderByAggregateInput = {
21573
21601
  id?: SortOrder
21574
21602
  shortId?: SortOrder
21603
+ role?: SortOrder
21575
21604
  firstTimeMiExpo?: SortOrder
21576
21605
  username?: SortOrder
21577
21606
  password?: SortOrder
@@ -21597,6 +21626,7 @@ export namespace Prisma {
21597
21626
  export type ProfileMinOrderByAggregateInput = {
21598
21627
  id?: SortOrder
21599
21628
  shortId?: SortOrder
21629
+ role?: SortOrder
21600
21630
  firstTimeMiExpo?: SortOrder
21601
21631
  username?: SortOrder
21602
21632
  password?: SortOrder
@@ -24562,6 +24592,7 @@ export namespace Prisma {
24562
24592
  export type ProfileCreateWithoutOtpInput = {
24563
24593
  id?: string
24564
24594
  shortId: number
24595
+ role?: $Enums.Role
24565
24596
  firstTimeMiExpo?: boolean
24566
24597
  username?: string | null
24567
24598
  password?: string | null
@@ -24592,6 +24623,7 @@ export namespace Prisma {
24592
24623
  export type ProfileUncheckedCreateWithoutOtpInput = {
24593
24624
  id?: string
24594
24625
  shortId: number
24626
+ role?: $Enums.Role
24595
24627
  firstTimeMiExpo?: boolean
24596
24628
  username?: string | null
24597
24629
  password?: string | null
@@ -24638,6 +24670,7 @@ export namespace Prisma {
24638
24670
  export type ProfileUpdateWithoutOtpInput = {
24639
24671
  id?: StringFieldUpdateOperationsInput | string
24640
24672
  shortId?: IntFieldUpdateOperationsInput | number
24673
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
24641
24674
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
24642
24675
  username?: NullableStringFieldUpdateOperationsInput | string | null
24643
24676
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -24668,6 +24701,7 @@ export namespace Prisma {
24668
24701
  export type ProfileUncheckedUpdateWithoutOtpInput = {
24669
24702
  id?: StringFieldUpdateOperationsInput | string
24670
24703
  shortId?: IntFieldUpdateOperationsInput | number
24704
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
24671
24705
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
24672
24706
  username?: NullableStringFieldUpdateOperationsInput | string | null
24673
24707
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -24698,6 +24732,7 @@ export namespace Prisma {
24698
24732
  export type ProfileCreateWithoutBirthLocationInput = {
24699
24733
  id?: string
24700
24734
  shortId: number
24735
+ role?: $Enums.Role
24701
24736
  firstTimeMiExpo?: boolean
24702
24737
  username?: string | null
24703
24738
  password?: string | null
@@ -24728,6 +24763,7 @@ export namespace Prisma {
24728
24763
  export type ProfileUncheckedCreateWithoutBirthLocationInput = {
24729
24764
  id?: string
24730
24765
  shortId: number
24766
+ role?: $Enums.Role
24731
24767
  firstTimeMiExpo?: boolean
24732
24768
  username?: string | null
24733
24769
  password?: string | null
@@ -24768,6 +24804,7 @@ export namespace Prisma {
24768
24804
  export type ProfileCreateWithoutResidenceLocationInput = {
24769
24805
  id?: string
24770
24806
  shortId: number
24807
+ role?: $Enums.Role
24771
24808
  firstTimeMiExpo?: boolean
24772
24809
  username?: string | null
24773
24810
  password?: string | null
@@ -24798,6 +24835,7 @@ export namespace Prisma {
24798
24835
  export type ProfileUncheckedCreateWithoutResidenceLocationInput = {
24799
24836
  id?: string
24800
24837
  shortId: number
24838
+ role?: $Enums.Role
24801
24839
  firstTimeMiExpo?: boolean
24802
24840
  username?: string | null
24803
24841
  password?: string | null
@@ -24857,6 +24895,7 @@ export namespace Prisma {
24857
24895
  NOT?: ProfileScalarWhereInput | ProfileScalarWhereInput[]
24858
24896
  id?: StringFilter<"Profile"> | string
24859
24897
  shortId?: IntFilter<"Profile"> | number
24898
+ role?: EnumRoleFilter<"Profile"> | $Enums.Role
24860
24899
  firstTimeMiExpo?: BoolFilter<"Profile"> | boolean
24861
24900
  username?: StringNullableFilter<"Profile"> | string | null
24862
24901
  password?: StringNullableFilter<"Profile"> | string | null
@@ -24932,6 +24971,7 @@ export namespace Prisma {
24932
24971
  export type ProfileCreateWithoutCommentsInput = {
24933
24972
  id?: string
24934
24973
  shortId: number
24974
+ role?: $Enums.Role
24935
24975
  firstTimeMiExpo?: boolean
24936
24976
  username?: string | null
24937
24977
  password?: string | null
@@ -24962,6 +25002,7 @@ export namespace Prisma {
24962
25002
  export type ProfileUncheckedCreateWithoutCommentsInput = {
24963
25003
  id?: string
24964
25004
  shortId: number
25005
+ role?: $Enums.Role
24965
25006
  firstTimeMiExpo?: boolean
24966
25007
  username?: string | null
24967
25008
  password?: string | null
@@ -25080,6 +25121,7 @@ export namespace Prisma {
25080
25121
  export type ProfileUpdateWithoutCommentsInput = {
25081
25122
  id?: StringFieldUpdateOperationsInput | string
25082
25123
  shortId?: IntFieldUpdateOperationsInput | number
25124
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
25083
25125
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
25084
25126
  username?: NullableStringFieldUpdateOperationsInput | string | null
25085
25127
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -25110,6 +25152,7 @@ export namespace Prisma {
25110
25152
  export type ProfileUncheckedUpdateWithoutCommentsInput = {
25111
25153
  id?: StringFieldUpdateOperationsInput | string
25112
25154
  shortId?: IntFieldUpdateOperationsInput | number
25155
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
25113
25156
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
25114
25157
  username?: NullableStringFieldUpdateOperationsInput | string | null
25115
25158
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -25321,6 +25364,7 @@ export namespace Prisma {
25321
25364
  export type ProfileCreateWithoutTagsInput = {
25322
25365
  id?: string
25323
25366
  shortId: number
25367
+ role?: $Enums.Role
25324
25368
  firstTimeMiExpo?: boolean
25325
25369
  username?: string | null
25326
25370
  password?: string | null
@@ -25351,6 +25395,7 @@ export namespace Prisma {
25351
25395
  export type ProfileUncheckedCreateWithoutTagsInput = {
25352
25396
  id?: string
25353
25397
  shortId: number
25398
+ role?: $Enums.Role
25354
25399
  firstTimeMiExpo?: boolean
25355
25400
  username?: string | null
25356
25401
  password?: string | null
@@ -26306,6 +26351,7 @@ export namespace Prisma {
26306
26351
  export type ProfileCreateWithoutMessagesInput = {
26307
26352
  id?: string
26308
26353
  shortId: number
26354
+ role?: $Enums.Role
26309
26355
  firstTimeMiExpo?: boolean
26310
26356
  username?: string | null
26311
26357
  password?: string | null
@@ -26336,6 +26382,7 @@ export namespace Prisma {
26336
26382
  export type ProfileUncheckedCreateWithoutMessagesInput = {
26337
26383
  id?: string
26338
26384
  shortId: number
26385
+ role?: $Enums.Role
26339
26386
  firstTimeMiExpo?: boolean
26340
26387
  username?: string | null
26341
26388
  password?: string | null
@@ -26382,6 +26429,7 @@ export namespace Prisma {
26382
26429
  export type ProfileUpdateWithoutMessagesInput = {
26383
26430
  id?: StringFieldUpdateOperationsInput | string
26384
26431
  shortId?: IntFieldUpdateOperationsInput | number
26432
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26385
26433
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26386
26434
  username?: NullableStringFieldUpdateOperationsInput | string | null
26387
26435
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26412,6 +26460,7 @@ export namespace Prisma {
26412
26460
  export type ProfileUncheckedUpdateWithoutMessagesInput = {
26413
26461
  id?: StringFieldUpdateOperationsInput | string
26414
26462
  shortId?: IntFieldUpdateOperationsInput | number
26463
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26415
26464
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26416
26465
  username?: NullableStringFieldUpdateOperationsInput | string | null
26417
26466
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26485,6 +26534,7 @@ export namespace Prisma {
26485
26534
  export type ProfileCreateWithoutTicketInput = {
26486
26535
  id?: string
26487
26536
  shortId: number
26537
+ role?: $Enums.Role
26488
26538
  firstTimeMiExpo?: boolean
26489
26539
  username?: string | null
26490
26540
  password?: string | null
@@ -26515,6 +26565,7 @@ export namespace Prisma {
26515
26565
  export type ProfileUncheckedCreateWithoutTicketInput = {
26516
26566
  id?: string
26517
26567
  shortId: number
26568
+ role?: $Enums.Role
26518
26569
  firstTimeMiExpo?: boolean
26519
26570
  username?: string | null
26520
26571
  password?: string | null
@@ -26610,6 +26661,7 @@ export namespace Prisma {
26610
26661
  export type ProfileUpdateWithoutTicketInput = {
26611
26662
  id?: StringFieldUpdateOperationsInput | string
26612
26663
  shortId?: IntFieldUpdateOperationsInput | number
26664
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26613
26665
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26614
26666
  username?: NullableStringFieldUpdateOperationsInput | string | null
26615
26667
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -26640,6 +26692,7 @@ export namespace Prisma {
26640
26692
  export type ProfileUncheckedUpdateWithoutTicketInput = {
26641
26693
  id?: StringFieldUpdateOperationsInput | string
26642
26694
  shortId?: IntFieldUpdateOperationsInput | number
26695
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
26643
26696
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
26644
26697
  username?: NullableStringFieldUpdateOperationsInput | string | null
26645
26698
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27129,6 +27182,7 @@ export namespace Prisma {
27129
27182
  export type ProfileCreateManyBirthLocationInput = {
27130
27183
  id?: string
27131
27184
  shortId: number
27185
+ role?: $Enums.Role
27132
27186
  firstTimeMiExpo?: boolean
27133
27187
  username?: string | null
27134
27188
  password?: string | null
@@ -27154,6 +27208,7 @@ export namespace Prisma {
27154
27208
  export type ProfileCreateManyResidenceLocationInput = {
27155
27209
  id?: string
27156
27210
  shortId: number
27211
+ role?: $Enums.Role
27157
27212
  firstTimeMiExpo?: boolean
27158
27213
  username?: string | null
27159
27214
  password?: string | null
@@ -27179,6 +27234,7 @@ export namespace Prisma {
27179
27234
  export type ProfileUpdateWithoutBirthLocationInput = {
27180
27235
  id?: StringFieldUpdateOperationsInput | string
27181
27236
  shortId?: IntFieldUpdateOperationsInput | number
27237
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27182
27238
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27183
27239
  username?: NullableStringFieldUpdateOperationsInput | string | null
27184
27240
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27209,6 +27265,7 @@ export namespace Prisma {
27209
27265
  export type ProfileUncheckedUpdateWithoutBirthLocationInput = {
27210
27266
  id?: StringFieldUpdateOperationsInput | string
27211
27267
  shortId?: IntFieldUpdateOperationsInput | number
27268
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27212
27269
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27213
27270
  username?: NullableStringFieldUpdateOperationsInput | string | null
27214
27271
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27239,6 +27296,7 @@ export namespace Prisma {
27239
27296
  export type ProfileUncheckedUpdateManyWithoutBirthLocationInput = {
27240
27297
  id?: StringFieldUpdateOperationsInput | string
27241
27298
  shortId?: IntFieldUpdateOperationsInput | number
27299
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27242
27300
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27243
27301
  username?: NullableStringFieldUpdateOperationsInput | string | null
27244
27302
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27264,6 +27322,7 @@ export namespace Prisma {
27264
27322
  export type ProfileUpdateWithoutResidenceLocationInput = {
27265
27323
  id?: StringFieldUpdateOperationsInput | string
27266
27324
  shortId?: IntFieldUpdateOperationsInput | number
27325
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27267
27326
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27268
27327
  username?: NullableStringFieldUpdateOperationsInput | string | null
27269
27328
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27294,6 +27353,7 @@ export namespace Prisma {
27294
27353
  export type ProfileUncheckedUpdateWithoutResidenceLocationInput = {
27295
27354
  id?: StringFieldUpdateOperationsInput | string
27296
27355
  shortId?: IntFieldUpdateOperationsInput | number
27356
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27297
27357
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27298
27358
  username?: NullableStringFieldUpdateOperationsInput | string | null
27299
27359
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27324,6 +27384,7 @@ export namespace Prisma {
27324
27384
  export type ProfileUncheckedUpdateManyWithoutResidenceLocationInput = {
27325
27385
  id?: StringFieldUpdateOperationsInput | string
27326
27386
  shortId?: IntFieldUpdateOperationsInput | number
27387
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27327
27388
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27328
27389
  username?: NullableStringFieldUpdateOperationsInput | string | null
27329
27390
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27388,6 +27449,7 @@ export namespace Prisma {
27388
27449
  export type ProfileUpdateWithoutTagsInput = {
27389
27450
  id?: StringFieldUpdateOperationsInput | string
27390
27451
  shortId?: IntFieldUpdateOperationsInput | number
27452
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27391
27453
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27392
27454
  username?: NullableStringFieldUpdateOperationsInput | string | null
27393
27455
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27418,6 +27480,7 @@ export namespace Prisma {
27418
27480
  export type ProfileUncheckedUpdateWithoutTagsInput = {
27419
27481
  id?: StringFieldUpdateOperationsInput | string
27420
27482
  shortId?: IntFieldUpdateOperationsInput | number
27483
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27421
27484
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27422
27485
  username?: NullableStringFieldUpdateOperationsInput | string | null
27423
27486
  password?: NullableStringFieldUpdateOperationsInput | string | null
@@ -27448,6 +27511,7 @@ export namespace Prisma {
27448
27511
  export type ProfileUncheckedUpdateManyWithoutTagsInput = {
27449
27512
  id?: StringFieldUpdateOperationsInput | string
27450
27513
  shortId?: IntFieldUpdateOperationsInput | number
27514
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
27451
27515
  firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
27452
27516
  username?: NullableStringFieldUpdateOperationsInput | string | null
27453
27517
  password?: NullableStringFieldUpdateOperationsInput | string | null