expo-backend-types 0.51.0 → 0.52.0

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.
@@ -2499,6 +2499,7 @@ export namespace Prisma {
2499
2499
  tags: number
2500
2500
  tickets: number
2501
2501
  productionsAdministrated: number
2502
+ productionsParticipated: number
2502
2503
  productionRequestsSent: number
2503
2504
  }
2504
2505
 
@@ -2509,6 +2510,7 @@ export namespace Prisma {
2509
2510
  tags?: boolean | ProfileCountOutputTypeCountTagsArgs
2510
2511
  tickets?: boolean | ProfileCountOutputTypeCountTicketsArgs
2511
2512
  productionsAdministrated?: boolean | ProfileCountOutputTypeCountProductionsAdministratedArgs
2513
+ productionsParticipated?: boolean | ProfileCountOutputTypeCountProductionsParticipatedArgs
2512
2514
  productionRequestsSent?: boolean | ProfileCountOutputTypeCountProductionRequestsSentArgs
2513
2515
  }
2514
2516
 
@@ -2565,6 +2567,13 @@ export namespace Prisma {
2565
2567
  where?: ProductionWhereInput
2566
2568
  }
2567
2569
 
2570
+ /**
2571
+ * ProfileCountOutputType without action
2572
+ */
2573
+ export type ProfileCountOutputTypeCountProductionsParticipatedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2574
+ where?: ProductionWhereInput
2575
+ }
2576
+
2568
2577
  /**
2569
2578
  * ProfileCountOutputType without action
2570
2579
  */
@@ -2863,11 +2872,13 @@ export namespace Prisma {
2863
2872
  */
2864
2873
 
2865
2874
  export type ProductionCountOutputType = {
2875
+ participants: number
2866
2876
  events: number
2867
2877
  affiliationRequests: number
2868
2878
  }
2869
2879
 
2870
2880
  export type ProductionCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2881
+ participants?: boolean | ProductionCountOutputTypeCountParticipantsArgs
2871
2882
  events?: boolean | ProductionCountOutputTypeCountEventsArgs
2872
2883
  affiliationRequests?: boolean | ProductionCountOutputTypeCountAffiliationRequestsArgs
2873
2884
  }
@@ -2883,6 +2894,13 @@ export namespace Prisma {
2883
2894
  select?: ProductionCountOutputTypeSelect<ExtArgs> | null
2884
2895
  }
2885
2896
 
2897
+ /**
2898
+ * ProductionCountOutputType without action
2899
+ */
2900
+ export type ProductionCountOutputTypeCountParticipantsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
2901
+ where?: ProfileWhereInput
2902
+ }
2903
+
2886
2904
  /**
2887
2905
  * ProductionCountOutputType without action
2888
2906
  */
@@ -4445,6 +4463,7 @@ export namespace Prisma {
4445
4463
  residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
4446
4464
  tickets?: boolean | Profile$ticketsArgs<ExtArgs>
4447
4465
  productionsAdministrated?: boolean | Profile$productionsAdministratedArgs<ExtArgs>
4466
+ productionsParticipated?: boolean | Profile$productionsParticipatedArgs<ExtArgs>
4448
4467
  productionRequestsSent?: boolean | Profile$productionRequestsSentArgs<ExtArgs>
4449
4468
  _count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
4450
4469
  }, ExtArgs["result"]["profile"]>
@@ -4544,6 +4563,7 @@ export namespace Prisma {
4544
4563
  residenceLocation?: boolean | Profile$residenceLocationArgs<ExtArgs>
4545
4564
  tickets?: boolean | Profile$ticketsArgs<ExtArgs>
4546
4565
  productionsAdministrated?: boolean | Profile$productionsAdministratedArgs<ExtArgs>
4566
+ productionsParticipated?: boolean | Profile$productionsParticipatedArgs<ExtArgs>
4547
4567
  productionRequestsSent?: boolean | Profile$productionRequestsSentArgs<ExtArgs>
4548
4568
  _count?: boolean | ProfileCountOutputTypeDefaultArgs<ExtArgs>
4549
4569
  }
@@ -4567,6 +4587,7 @@ export namespace Prisma {
4567
4587
  residenceLocation: Prisma.$LocationPayload<ExtArgs> | null
4568
4588
  tickets: Prisma.$TicketPayload<ExtArgs>[]
4569
4589
  productionsAdministrated: Prisma.$ProductionPayload<ExtArgs>[]
4590
+ productionsParticipated: Prisma.$ProductionPayload<ExtArgs>[]
4570
4591
  productionRequestsSent: Prisma.$ProductionAffiliationRequestPayload<ExtArgs>[]
4571
4592
  }
4572
4593
  scalars: $Extensions.GetPayloadResult<{
@@ -4996,6 +5017,7 @@ export namespace Prisma {
4996
5017
  residenceLocation<T extends Profile$residenceLocationArgs<ExtArgs> = {}>(args?: Subset<T, Profile$residenceLocationArgs<ExtArgs>>): Prisma__LocationClient<$Result.GetResult<Prisma.$LocationPayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
4997
5018
  tickets<T extends Profile$ticketsArgs<ExtArgs> = {}>(args?: Subset<T, Profile$ticketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TicketPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
4998
5019
  productionsAdministrated<T extends Profile$productionsAdministratedArgs<ExtArgs> = {}>(args?: Subset<T, Profile$productionsAdministratedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
5020
+ productionsParticipated<T extends Profile$productionsParticipatedArgs<ExtArgs> = {}>(args?: Subset<T, Profile$productionsParticipatedArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
4999
5021
  productionRequestsSent<T extends Profile$productionRequestsSentArgs<ExtArgs> = {}>(args?: Subset<T, Profile$productionRequestsSentArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionAffiliationRequestPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
5000
5022
  /**
5001
5023
  * Attaches callbacks for the resolution and/or rejection of the Promise.
@@ -5627,6 +5649,30 @@ export namespace Prisma {
5627
5649
  distinct?: ProductionScalarFieldEnum | ProductionScalarFieldEnum[]
5628
5650
  }
5629
5651
 
5652
+ /**
5653
+ * Profile.productionsParticipated
5654
+ */
5655
+ export type Profile$productionsParticipatedArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
5656
+ /**
5657
+ * Select specific fields to fetch from the Production
5658
+ */
5659
+ select?: ProductionSelect<ExtArgs> | null
5660
+ /**
5661
+ * Omit specific fields from the Production
5662
+ */
5663
+ omit?: ProductionOmit<ExtArgs> | null
5664
+ /**
5665
+ * Choose, which related nodes to fetch as well
5666
+ */
5667
+ include?: ProductionInclude<ExtArgs> | null
5668
+ where?: ProductionWhereInput
5669
+ orderBy?: ProductionOrderByWithRelationInput | ProductionOrderByWithRelationInput[]
5670
+ cursor?: ProductionWhereUniqueInput
5671
+ take?: number
5672
+ skip?: number
5673
+ distinct?: ProductionScalarFieldEnum | ProductionScalarFieldEnum[]
5674
+ }
5675
+
5630
5676
  /**
5631
5677
  * Profile.productionRequestsSent
5632
5678
  */
@@ -20624,6 +20670,7 @@ export namespace Prisma {
20624
20670
  created_at?: boolean
20625
20671
  updated_at?: boolean
20626
20672
  administrator?: boolean | Production$administratorArgs<ExtArgs>
20673
+ participants?: boolean | Production$participantsArgs<ExtArgs>
20627
20674
  events?: boolean | Production$eventsArgs<ExtArgs>
20628
20675
  affiliationRequests?: boolean | Production$affiliationRequestsArgs<ExtArgs>
20629
20676
  _count?: boolean | ProductionCountOutputTypeDefaultArgs<ExtArgs>
@@ -20658,6 +20705,7 @@ export namespace Prisma {
20658
20705
  export type ProductionOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "administratorId" | "created_at" | "updated_at", ExtArgs["result"]["production"]>
20659
20706
  export type ProductionInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
20660
20707
  administrator?: boolean | Production$administratorArgs<ExtArgs>
20708
+ participants?: boolean | Production$participantsArgs<ExtArgs>
20661
20709
  events?: boolean | Production$eventsArgs<ExtArgs>
20662
20710
  affiliationRequests?: boolean | Production$affiliationRequestsArgs<ExtArgs>
20663
20711
  _count?: boolean | ProductionCountOutputTypeDefaultArgs<ExtArgs>
@@ -20673,6 +20721,7 @@ export namespace Prisma {
20673
20721
  name: "Production"
20674
20722
  objects: {
20675
20723
  administrator: Prisma.$ProfilePayload<ExtArgs> | null
20724
+ participants: Prisma.$ProfilePayload<ExtArgs>[]
20676
20725
  events: Prisma.$EventPayload<ExtArgs>[]
20677
20726
  affiliationRequests: Prisma.$ProductionAffiliationRequestPayload<ExtArgs>[]
20678
20727
  }
@@ -21077,6 +21126,7 @@ export namespace Prisma {
21077
21126
  export interface Prisma__ProductionClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> extends Prisma.PrismaPromise<T> {
21078
21127
  readonly [Symbol.toStringTag]: "PrismaPromise"
21079
21128
  administrator<T extends Production$administratorArgs<ExtArgs> = {}>(args?: Subset<T, Production$administratorArgs<ExtArgs>>): Prisma__ProfileClient<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findUniqueOrThrow", ClientOptions> | null, null, ExtArgs, ClientOptions>
21129
+ participants<T extends Production$participantsArgs<ExtArgs> = {}>(args?: Subset<T, Production$participantsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProfilePayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
21080
21130
  events<T extends Production$eventsArgs<ExtArgs> = {}>(args?: Subset<T, Production$eventsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EventPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
21081
21131
  affiliationRequests<T extends Production$affiliationRequestsArgs<ExtArgs> = {}>(args?: Subset<T, Production$affiliationRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProductionAffiliationRequestPayload<ExtArgs>, T, "findMany", ClientOptions> | Null>
21082
21132
  /**
@@ -21527,6 +21577,30 @@ export namespace Prisma {
21527
21577
  where?: ProfileWhereInput
21528
21578
  }
21529
21579
 
21580
+ /**
21581
+ * Production.participants
21582
+ */
21583
+ export type Production$participantsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
21584
+ /**
21585
+ * Select specific fields to fetch from the Profile
21586
+ */
21587
+ select?: ProfileSelect<ExtArgs> | null
21588
+ /**
21589
+ * Omit specific fields from the Profile
21590
+ */
21591
+ omit?: ProfileOmit<ExtArgs> | null
21592
+ /**
21593
+ * Choose, which related nodes to fetch as well
21594
+ */
21595
+ include?: ProfileInclude<ExtArgs> | null
21596
+ where?: ProfileWhereInput
21597
+ orderBy?: ProfileOrderByWithRelationInput | ProfileOrderByWithRelationInput[]
21598
+ cursor?: ProfileWhereUniqueInput
21599
+ take?: number
21600
+ skip?: number
21601
+ distinct?: ProfileScalarFieldEnum | ProfileScalarFieldEnum[]
21602
+ }
21603
+
21530
21604
  /**
21531
21605
  * Production.events
21532
21606
  */
@@ -23293,6 +23367,7 @@ export namespace Prisma {
23293
23367
  residenceLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
23294
23368
  tickets?: TicketListRelationFilter
23295
23369
  productionsAdministrated?: ProductionListRelationFilter
23370
+ productionsParticipated?: ProductionListRelationFilter
23296
23371
  productionRequestsSent?: ProductionAffiliationRequestListRelationFilter
23297
23372
  }
23298
23373
 
@@ -23329,6 +23404,7 @@ export namespace Prisma {
23329
23404
  residenceLocation?: LocationOrderByWithRelationInput
23330
23405
  tickets?: TicketOrderByRelationAggregateInput
23331
23406
  productionsAdministrated?: ProductionOrderByRelationAggregateInput
23407
+ productionsParticipated?: ProductionOrderByRelationAggregateInput
23332
23408
  productionRequestsSent?: ProductionAffiliationRequestOrderByRelationAggregateInput
23333
23409
  }
23334
23410
 
@@ -23368,6 +23444,7 @@ export namespace Prisma {
23368
23444
  residenceLocation?: XOR<LocationNullableScalarRelationFilter, LocationWhereInput> | null
23369
23445
  tickets?: TicketListRelationFilter
23370
23446
  productionsAdministrated?: ProductionListRelationFilter
23447
+ productionsParticipated?: ProductionListRelationFilter
23371
23448
  productionRequestsSent?: ProductionAffiliationRequestListRelationFilter
23372
23449
  }, "id" | "username" | "phoneNumber" | "secondaryPhoneNumber">
23373
23450
 
@@ -24380,6 +24457,7 @@ export namespace Prisma {
24380
24457
  created_at?: DateTimeFilter<"Production"> | Date | string
24381
24458
  updated_at?: DateTimeFilter<"Production"> | Date | string
24382
24459
  administrator?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
24460
+ participants?: ProfileListRelationFilter
24383
24461
  events?: EventListRelationFilter
24384
24462
  affiliationRequests?: ProductionAffiliationRequestListRelationFilter
24385
24463
  }
@@ -24391,6 +24469,7 @@ export namespace Prisma {
24391
24469
  created_at?: SortOrder
24392
24470
  updated_at?: SortOrder
24393
24471
  administrator?: ProfileOrderByWithRelationInput
24472
+ participants?: ProfileOrderByRelationAggregateInput
24394
24473
  events?: EventOrderByRelationAggregateInput
24395
24474
  affiliationRequests?: ProductionAffiliationRequestOrderByRelationAggregateInput
24396
24475
  }
@@ -24405,6 +24484,7 @@ export namespace Prisma {
24405
24484
  created_at?: DateTimeFilter<"Production"> | Date | string
24406
24485
  updated_at?: DateTimeFilter<"Production"> | Date | string
24407
24486
  administrator?: XOR<ProfileNullableScalarRelationFilter, ProfileWhereInput> | null
24487
+ participants?: ProfileListRelationFilter
24408
24488
  events?: EventListRelationFilter
24409
24489
  affiliationRequests?: ProductionAffiliationRequestListRelationFilter
24410
24490
  }, "id" | "name">
@@ -24623,6 +24703,7 @@ export namespace Prisma {
24623
24703
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
24624
24704
  tickets?: TicketCreateNestedManyWithoutProfileInput
24625
24705
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
24706
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
24626
24707
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
24627
24708
  }
24628
24709
 
@@ -24657,6 +24738,7 @@ export namespace Prisma {
24657
24738
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
24658
24739
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
24659
24740
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
24741
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
24660
24742
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
24661
24743
  }
24662
24744
 
@@ -24691,6 +24773,7 @@ export namespace Prisma {
24691
24773
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
24692
24774
  tickets?: TicketUpdateManyWithoutProfileNestedInput
24693
24775
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
24776
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
24694
24777
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
24695
24778
  }
24696
24779
 
@@ -24725,6 +24808,7 @@ export namespace Prisma {
24725
24808
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
24726
24809
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
24727
24810
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
24811
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
24728
24812
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
24729
24813
  }
24730
24814
 
@@ -25812,6 +25896,7 @@ export namespace Prisma {
25812
25896
  created_at?: Date | string
25813
25897
  updated_at?: Date | string
25814
25898
  administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
25899
+ participants?: ProfileCreateNestedManyWithoutProductionsParticipatedInput
25815
25900
  events?: EventCreateNestedManyWithoutProductionsInput
25816
25901
  affiliationRequests?: ProductionAffiliationRequestCreateNestedManyWithoutProductionInput
25817
25902
  }
@@ -25822,6 +25907,7 @@ export namespace Prisma {
25822
25907
  administratorId?: string | null
25823
25908
  created_at?: Date | string
25824
25909
  updated_at?: Date | string
25910
+ participants?: ProfileUncheckedCreateNestedManyWithoutProductionsParticipatedInput
25825
25911
  events?: EventUncheckedCreateNestedManyWithoutProductionsInput
25826
25912
  affiliationRequests?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProductionInput
25827
25913
  }
@@ -25832,6 +25918,7 @@ export namespace Prisma {
25832
25918
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
25833
25919
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
25834
25920
  administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
25921
+ participants?: ProfileUpdateManyWithoutProductionsParticipatedNestedInput
25835
25922
  events?: EventUpdateManyWithoutProductionsNestedInput
25836
25923
  affiliationRequests?: ProductionAffiliationRequestUpdateManyWithoutProductionNestedInput
25837
25924
  }
@@ -25842,6 +25929,7 @@ export namespace Prisma {
25842
25929
  administratorId?: NullableStringFieldUpdateOperationsInput | string | null
25843
25930
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
25844
25931
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
25932
+ participants?: ProfileUncheckedUpdateManyWithoutProductionsParticipatedNestedInput
25845
25933
  events?: EventUncheckedUpdateManyWithoutProductionsNestedInput
25846
25934
  affiliationRequests?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProductionNestedInput
25847
25935
  }
@@ -27407,6 +27495,12 @@ export namespace Prisma {
27407
27495
  connect?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27408
27496
  }
27409
27497
 
27498
+ export type ProductionCreateNestedManyWithoutParticipantsInput = {
27499
+ create?: XOR<ProductionCreateWithoutParticipantsInput, ProductionUncheckedCreateWithoutParticipantsInput> | ProductionCreateWithoutParticipantsInput[] | ProductionUncheckedCreateWithoutParticipantsInput[]
27500
+ connectOrCreate?: ProductionCreateOrConnectWithoutParticipantsInput | ProductionCreateOrConnectWithoutParticipantsInput[]
27501
+ connect?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27502
+ }
27503
+
27410
27504
  export type ProductionAffiliationRequestCreateNestedManyWithoutProfileInput = {
27411
27505
  create?: XOR<ProductionAffiliationRequestCreateWithoutProfileInput, ProductionAffiliationRequestUncheckedCreateWithoutProfileInput> | ProductionAffiliationRequestCreateWithoutProfileInput[] | ProductionAffiliationRequestUncheckedCreateWithoutProfileInput[]
27412
27506
  connectOrCreate?: ProductionAffiliationRequestCreateOrConnectWithoutProfileInput | ProductionAffiliationRequestCreateOrConnectWithoutProfileInput[]
@@ -27455,6 +27549,12 @@ export namespace Prisma {
27455
27549
  connect?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27456
27550
  }
27457
27551
 
27552
+ export type ProductionUncheckedCreateNestedManyWithoutParticipantsInput = {
27553
+ create?: XOR<ProductionCreateWithoutParticipantsInput, ProductionUncheckedCreateWithoutParticipantsInput> | ProductionCreateWithoutParticipantsInput[] | ProductionUncheckedCreateWithoutParticipantsInput[]
27554
+ connectOrCreate?: ProductionCreateOrConnectWithoutParticipantsInput | ProductionCreateOrConnectWithoutParticipantsInput[]
27555
+ connect?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27556
+ }
27557
+
27458
27558
  export type ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput = {
27459
27559
  create?: XOR<ProductionAffiliationRequestCreateWithoutProfileInput, ProductionAffiliationRequestUncheckedCreateWithoutProfileInput> | ProductionAffiliationRequestCreateWithoutProfileInput[] | ProductionAffiliationRequestUncheckedCreateWithoutProfileInput[]
27460
27560
  connectOrCreate?: ProductionAffiliationRequestCreateOrConnectWithoutProfileInput | ProductionAffiliationRequestCreateOrConnectWithoutProfileInput[]
@@ -27586,6 +27686,19 @@ export namespace Prisma {
27586
27686
  deleteMany?: ProductionScalarWhereInput | ProductionScalarWhereInput[]
27587
27687
  }
27588
27688
 
27689
+ export type ProductionUpdateManyWithoutParticipantsNestedInput = {
27690
+ create?: XOR<ProductionCreateWithoutParticipantsInput, ProductionUncheckedCreateWithoutParticipantsInput> | ProductionCreateWithoutParticipantsInput[] | ProductionUncheckedCreateWithoutParticipantsInput[]
27691
+ connectOrCreate?: ProductionCreateOrConnectWithoutParticipantsInput | ProductionCreateOrConnectWithoutParticipantsInput[]
27692
+ upsert?: ProductionUpsertWithWhereUniqueWithoutParticipantsInput | ProductionUpsertWithWhereUniqueWithoutParticipantsInput[]
27693
+ set?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27694
+ disconnect?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27695
+ delete?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27696
+ connect?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27697
+ update?: ProductionUpdateWithWhereUniqueWithoutParticipantsInput | ProductionUpdateWithWhereUniqueWithoutParticipantsInput[]
27698
+ updateMany?: ProductionUpdateManyWithWhereWithoutParticipantsInput | ProductionUpdateManyWithWhereWithoutParticipantsInput[]
27699
+ deleteMany?: ProductionScalarWhereInput | ProductionScalarWhereInput[]
27700
+ }
27701
+
27589
27702
  export type ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput = {
27590
27703
  create?: XOR<ProductionAffiliationRequestCreateWithoutProfileInput, ProductionAffiliationRequestUncheckedCreateWithoutProfileInput> | ProductionAffiliationRequestCreateWithoutProfileInput[] | ProductionAffiliationRequestUncheckedCreateWithoutProfileInput[]
27591
27704
  connectOrCreate?: ProductionAffiliationRequestCreateOrConnectWithoutProfileInput | ProductionAffiliationRequestCreateOrConnectWithoutProfileInput[]
@@ -27683,6 +27796,19 @@ export namespace Prisma {
27683
27796
  deleteMany?: ProductionScalarWhereInput | ProductionScalarWhereInput[]
27684
27797
  }
27685
27798
 
27799
+ export type ProductionUncheckedUpdateManyWithoutParticipantsNestedInput = {
27800
+ create?: XOR<ProductionCreateWithoutParticipantsInput, ProductionUncheckedCreateWithoutParticipantsInput> | ProductionCreateWithoutParticipantsInput[] | ProductionUncheckedCreateWithoutParticipantsInput[]
27801
+ connectOrCreate?: ProductionCreateOrConnectWithoutParticipantsInput | ProductionCreateOrConnectWithoutParticipantsInput[]
27802
+ upsert?: ProductionUpsertWithWhereUniqueWithoutParticipantsInput | ProductionUpsertWithWhereUniqueWithoutParticipantsInput[]
27803
+ set?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27804
+ disconnect?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27805
+ delete?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27806
+ connect?: ProductionWhereUniqueInput | ProductionWhereUniqueInput[]
27807
+ update?: ProductionUpdateWithWhereUniqueWithoutParticipantsInput | ProductionUpdateWithWhereUniqueWithoutParticipantsInput[]
27808
+ updateMany?: ProductionUpdateManyWithWhereWithoutParticipantsInput | ProductionUpdateManyWithWhereWithoutParticipantsInput[]
27809
+ deleteMany?: ProductionScalarWhereInput | ProductionScalarWhereInput[]
27810
+ }
27811
+
27686
27812
  export type ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput = {
27687
27813
  create?: XOR<ProductionAffiliationRequestCreateWithoutProfileInput, ProductionAffiliationRequestUncheckedCreateWithoutProfileInput> | ProductionAffiliationRequestCreateWithoutProfileInput[] | ProductionAffiliationRequestUncheckedCreateWithoutProfileInput[]
27688
27814
  connectOrCreate?: ProductionAffiliationRequestCreateOrConnectWithoutProfileInput | ProductionAffiliationRequestCreateOrConnectWithoutProfileInput[]
@@ -28717,6 +28843,12 @@ export namespace Prisma {
28717
28843
  connect?: ProfileWhereUniqueInput
28718
28844
  }
28719
28845
 
28846
+ export type ProfileCreateNestedManyWithoutProductionsParticipatedInput = {
28847
+ create?: XOR<ProfileCreateWithoutProductionsParticipatedInput, ProfileUncheckedCreateWithoutProductionsParticipatedInput> | ProfileCreateWithoutProductionsParticipatedInput[] | ProfileUncheckedCreateWithoutProductionsParticipatedInput[]
28848
+ connectOrCreate?: ProfileCreateOrConnectWithoutProductionsParticipatedInput | ProfileCreateOrConnectWithoutProductionsParticipatedInput[]
28849
+ connect?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28850
+ }
28851
+
28720
28852
  export type EventCreateNestedManyWithoutProductionsInput = {
28721
28853
  create?: XOR<EventCreateWithoutProductionsInput, EventUncheckedCreateWithoutProductionsInput> | EventCreateWithoutProductionsInput[] | EventUncheckedCreateWithoutProductionsInput[]
28722
28854
  connectOrCreate?: EventCreateOrConnectWithoutProductionsInput | EventCreateOrConnectWithoutProductionsInput[]
@@ -28730,6 +28862,12 @@ export namespace Prisma {
28730
28862
  connect?: ProductionAffiliationRequestWhereUniqueInput | ProductionAffiliationRequestWhereUniqueInput[]
28731
28863
  }
28732
28864
 
28865
+ export type ProfileUncheckedCreateNestedManyWithoutProductionsParticipatedInput = {
28866
+ create?: XOR<ProfileCreateWithoutProductionsParticipatedInput, ProfileUncheckedCreateWithoutProductionsParticipatedInput> | ProfileCreateWithoutProductionsParticipatedInput[] | ProfileUncheckedCreateWithoutProductionsParticipatedInput[]
28867
+ connectOrCreate?: ProfileCreateOrConnectWithoutProductionsParticipatedInput | ProfileCreateOrConnectWithoutProductionsParticipatedInput[]
28868
+ connect?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28869
+ }
28870
+
28733
28871
  export type EventUncheckedCreateNestedManyWithoutProductionsInput = {
28734
28872
  create?: XOR<EventCreateWithoutProductionsInput, EventUncheckedCreateWithoutProductionsInput> | EventCreateWithoutProductionsInput[] | EventUncheckedCreateWithoutProductionsInput[]
28735
28873
  connectOrCreate?: EventCreateOrConnectWithoutProductionsInput | EventCreateOrConnectWithoutProductionsInput[]
@@ -28753,6 +28891,19 @@ export namespace Prisma {
28753
28891
  update?: XOR<XOR<ProfileUpdateToOneWithWhereWithoutProductionsAdministratedInput, ProfileUpdateWithoutProductionsAdministratedInput>, ProfileUncheckedUpdateWithoutProductionsAdministratedInput>
28754
28892
  }
28755
28893
 
28894
+ export type ProfileUpdateManyWithoutProductionsParticipatedNestedInput = {
28895
+ create?: XOR<ProfileCreateWithoutProductionsParticipatedInput, ProfileUncheckedCreateWithoutProductionsParticipatedInput> | ProfileCreateWithoutProductionsParticipatedInput[] | ProfileUncheckedCreateWithoutProductionsParticipatedInput[]
28896
+ connectOrCreate?: ProfileCreateOrConnectWithoutProductionsParticipatedInput | ProfileCreateOrConnectWithoutProductionsParticipatedInput[]
28897
+ upsert?: ProfileUpsertWithWhereUniqueWithoutProductionsParticipatedInput | ProfileUpsertWithWhereUniqueWithoutProductionsParticipatedInput[]
28898
+ set?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28899
+ disconnect?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28900
+ delete?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28901
+ connect?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28902
+ update?: ProfileUpdateWithWhereUniqueWithoutProductionsParticipatedInput | ProfileUpdateWithWhereUniqueWithoutProductionsParticipatedInput[]
28903
+ updateMany?: ProfileUpdateManyWithWhereWithoutProductionsParticipatedInput | ProfileUpdateManyWithWhereWithoutProductionsParticipatedInput[]
28904
+ deleteMany?: ProfileScalarWhereInput | ProfileScalarWhereInput[]
28905
+ }
28906
+
28756
28907
  export type EventUpdateManyWithoutProductionsNestedInput = {
28757
28908
  create?: XOR<EventCreateWithoutProductionsInput, EventUncheckedCreateWithoutProductionsInput> | EventCreateWithoutProductionsInput[] | EventUncheckedCreateWithoutProductionsInput[]
28758
28909
  connectOrCreate?: EventCreateOrConnectWithoutProductionsInput | EventCreateOrConnectWithoutProductionsInput[]
@@ -28780,6 +28931,19 @@ export namespace Prisma {
28780
28931
  deleteMany?: ProductionAffiliationRequestScalarWhereInput | ProductionAffiliationRequestScalarWhereInput[]
28781
28932
  }
28782
28933
 
28934
+ export type ProfileUncheckedUpdateManyWithoutProductionsParticipatedNestedInput = {
28935
+ create?: XOR<ProfileCreateWithoutProductionsParticipatedInput, ProfileUncheckedCreateWithoutProductionsParticipatedInput> | ProfileCreateWithoutProductionsParticipatedInput[] | ProfileUncheckedCreateWithoutProductionsParticipatedInput[]
28936
+ connectOrCreate?: ProfileCreateOrConnectWithoutProductionsParticipatedInput | ProfileCreateOrConnectWithoutProductionsParticipatedInput[]
28937
+ upsert?: ProfileUpsertWithWhereUniqueWithoutProductionsParticipatedInput | ProfileUpsertWithWhereUniqueWithoutProductionsParticipatedInput[]
28938
+ set?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28939
+ disconnect?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28940
+ delete?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28941
+ connect?: ProfileWhereUniqueInput | ProfileWhereUniqueInput[]
28942
+ update?: ProfileUpdateWithWhereUniqueWithoutProductionsParticipatedInput | ProfileUpdateWithWhereUniqueWithoutProductionsParticipatedInput[]
28943
+ updateMany?: ProfileUpdateManyWithWhereWithoutProductionsParticipatedInput | ProfileUpdateManyWithWhereWithoutProductionsParticipatedInput[]
28944
+ deleteMany?: ProfileScalarWhereInput | ProfileScalarWhereInput[]
28945
+ }
28946
+
28783
28947
  export type EventUncheckedUpdateManyWithoutProductionsNestedInput = {
28784
28948
  create?: XOR<EventCreateWithoutProductionsInput, EventUncheckedCreateWithoutProductionsInput> | EventCreateWithoutProductionsInput[] | EventUncheckedCreateWithoutProductionsInput[]
28785
28949
  connectOrCreate?: EventCreateOrConnectWithoutProductionsInput | EventCreateOrConnectWithoutProductionsInput[]
@@ -29687,6 +29851,7 @@ export namespace Prisma {
29687
29851
  name: string
29688
29852
  created_at?: Date | string
29689
29853
  updated_at?: Date | string
29854
+ participants?: ProfileCreateNestedManyWithoutProductionsParticipatedInput
29690
29855
  events?: EventCreateNestedManyWithoutProductionsInput
29691
29856
  affiliationRequests?: ProductionAffiliationRequestCreateNestedManyWithoutProductionInput
29692
29857
  }
@@ -29696,6 +29861,7 @@ export namespace Prisma {
29696
29861
  name: string
29697
29862
  created_at?: Date | string
29698
29863
  updated_at?: Date | string
29864
+ participants?: ProfileUncheckedCreateNestedManyWithoutProductionsParticipatedInput
29699
29865
  events?: EventUncheckedCreateNestedManyWithoutProductionsInput
29700
29866
  affiliationRequests?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProductionInput
29701
29867
  }
@@ -29710,6 +29876,31 @@ export namespace Prisma {
29710
29876
  skipDuplicates?: boolean
29711
29877
  }
29712
29878
 
29879
+ export type ProductionCreateWithoutParticipantsInput = {
29880
+ id?: string
29881
+ name: string
29882
+ created_at?: Date | string
29883
+ updated_at?: Date | string
29884
+ administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
29885
+ events?: EventCreateNestedManyWithoutProductionsInput
29886
+ affiliationRequests?: ProductionAffiliationRequestCreateNestedManyWithoutProductionInput
29887
+ }
29888
+
29889
+ export type ProductionUncheckedCreateWithoutParticipantsInput = {
29890
+ id?: string
29891
+ name: string
29892
+ administratorId?: string | null
29893
+ created_at?: Date | string
29894
+ updated_at?: Date | string
29895
+ events?: EventUncheckedCreateNestedManyWithoutProductionsInput
29896
+ affiliationRequests?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProductionInput
29897
+ }
29898
+
29899
+ export type ProductionCreateOrConnectWithoutParticipantsInput = {
29900
+ where: ProductionWhereUniqueInput
29901
+ create: XOR<ProductionCreateWithoutParticipantsInput, ProductionUncheckedCreateWithoutParticipantsInput>
29902
+ }
29903
+
29713
29904
  export type ProductionAffiliationRequestCreateWithoutProfileInput = {
29714
29905
  id?: string
29715
29906
  status?: $Enums.AffiliationStatus
@@ -29959,6 +30150,22 @@ export namespace Prisma {
29959
30150
  updated_at?: DateTimeFilter<"Production"> | Date | string
29960
30151
  }
29961
30152
 
30153
+ export type ProductionUpsertWithWhereUniqueWithoutParticipantsInput = {
30154
+ where: ProductionWhereUniqueInput
30155
+ update: XOR<ProductionUpdateWithoutParticipantsInput, ProductionUncheckedUpdateWithoutParticipantsInput>
30156
+ create: XOR<ProductionCreateWithoutParticipantsInput, ProductionUncheckedCreateWithoutParticipantsInput>
30157
+ }
30158
+
30159
+ export type ProductionUpdateWithWhereUniqueWithoutParticipantsInput = {
30160
+ where: ProductionWhereUniqueInput
30161
+ data: XOR<ProductionUpdateWithoutParticipantsInput, ProductionUncheckedUpdateWithoutParticipantsInput>
30162
+ }
30163
+
30164
+ export type ProductionUpdateManyWithWhereWithoutParticipantsInput = {
30165
+ where: ProductionScalarWhereInput
30166
+ data: XOR<ProductionUpdateManyMutationInput, ProductionUncheckedUpdateManyWithoutParticipantsInput>
30167
+ }
30168
+
29962
30169
  export type ProductionAffiliationRequestUpsertWithWhereUniqueWithoutProfileInput = {
29963
30170
  where: ProductionAffiliationRequestWhereUniqueInput
29964
30171
  update: XOR<ProductionAffiliationRequestUpdateWithoutProfileInput, ProductionAffiliationRequestUncheckedUpdateWithoutProfileInput>
@@ -30018,6 +30225,7 @@ export namespace Prisma {
30018
30225
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
30019
30226
  tickets?: TicketCreateNestedManyWithoutProfileInput
30020
30227
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
30228
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
30021
30229
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
30022
30230
  }
30023
30231
 
@@ -30051,6 +30259,7 @@ export namespace Prisma {
30051
30259
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
30052
30260
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
30053
30261
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
30262
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
30054
30263
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
30055
30264
  }
30056
30265
 
@@ -30100,6 +30309,7 @@ export namespace Prisma {
30100
30309
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
30101
30310
  tickets?: TicketUpdateManyWithoutProfileNestedInput
30102
30311
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
30312
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
30103
30313
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
30104
30314
  }
30105
30315
 
@@ -30133,6 +30343,7 @@ export namespace Prisma {
30133
30343
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
30134
30344
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
30135
30345
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
30346
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
30136
30347
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
30137
30348
  }
30138
30349
 
@@ -30166,6 +30377,7 @@ export namespace Prisma {
30166
30377
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
30167
30378
  tickets?: TicketCreateNestedManyWithoutProfileInput
30168
30379
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
30380
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
30169
30381
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
30170
30382
  }
30171
30383
 
@@ -30199,6 +30411,7 @@ export namespace Prisma {
30199
30411
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
30200
30412
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
30201
30413
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
30414
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
30202
30415
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
30203
30416
  }
30204
30417
 
@@ -30242,6 +30455,7 @@ export namespace Prisma {
30242
30455
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
30243
30456
  tickets?: TicketCreateNestedManyWithoutProfileInput
30244
30457
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
30458
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
30245
30459
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
30246
30460
  }
30247
30461
 
@@ -30275,6 +30489,7 @@ export namespace Prisma {
30275
30489
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
30276
30490
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
30277
30491
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
30492
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
30278
30493
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
30279
30494
  }
30280
30495
 
@@ -30413,6 +30628,7 @@ export namespace Prisma {
30413
30628
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
30414
30629
  tickets?: TicketCreateNestedManyWithoutProfileInput
30415
30630
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
30631
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
30416
30632
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
30417
30633
  }
30418
30634
 
@@ -30446,6 +30662,7 @@ export namespace Prisma {
30446
30662
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
30447
30663
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
30448
30664
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
30665
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
30449
30666
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
30450
30667
  }
30451
30668
 
@@ -30567,6 +30784,7 @@ export namespace Prisma {
30567
30784
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
30568
30785
  tickets?: TicketUpdateManyWithoutProfileNestedInput
30569
30786
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
30787
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
30570
30788
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
30571
30789
  }
30572
30790
 
@@ -30600,6 +30818,7 @@ export namespace Prisma {
30600
30818
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
30601
30819
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
30602
30820
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
30821
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
30603
30822
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
30604
30823
  }
30605
30824
 
@@ -30826,6 +31045,7 @@ export namespace Prisma {
30826
31045
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
30827
31046
  tickets?: TicketCreateNestedManyWithoutProfileInput
30828
31047
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
31048
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
30829
31049
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
30830
31050
  }
30831
31051
 
@@ -30859,6 +31079,7 @@ export namespace Prisma {
30859
31079
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
30860
31080
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
30861
31081
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
31082
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
30862
31083
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
30863
31084
  }
30864
31085
 
@@ -31637,6 +31858,7 @@ export namespace Prisma {
31637
31858
  created_at?: Date | string
31638
31859
  updated_at?: Date | string
31639
31860
  administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
31861
+ participants?: ProfileCreateNestedManyWithoutProductionsParticipatedInput
31640
31862
  affiliationRequests?: ProductionAffiliationRequestCreateNestedManyWithoutProductionInput
31641
31863
  }
31642
31864
 
@@ -31646,6 +31868,7 @@ export namespace Prisma {
31646
31868
  administratorId?: string | null
31647
31869
  created_at?: Date | string
31648
31870
  updated_at?: Date | string
31871
+ participants?: ProfileUncheckedCreateNestedManyWithoutProductionsParticipatedInput
31649
31872
  affiliationRequests?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProductionInput
31650
31873
  }
31651
31874
 
@@ -32090,6 +32313,7 @@ export namespace Prisma {
32090
32313
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
32091
32314
  tickets?: TicketCreateNestedManyWithoutProfileInput
32092
32315
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
32316
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
32093
32317
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
32094
32318
  }
32095
32319
 
@@ -32123,6 +32347,7 @@ export namespace Prisma {
32123
32347
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
32124
32348
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
32125
32349
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
32350
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
32126
32351
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
32127
32352
  }
32128
32353
 
@@ -32172,6 +32397,7 @@ export namespace Prisma {
32172
32397
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
32173
32398
  tickets?: TicketUpdateManyWithoutProfileNestedInput
32174
32399
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
32400
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
32175
32401
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
32176
32402
  }
32177
32403
 
@@ -32205,6 +32431,7 @@ export namespace Prisma {
32205
32431
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
32206
32432
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
32207
32433
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
32434
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
32208
32435
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
32209
32436
  }
32210
32437
 
@@ -32287,6 +32514,7 @@ export namespace Prisma {
32287
32514
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
32288
32515
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
32289
32516
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
32517
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
32290
32518
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
32291
32519
  }
32292
32520
 
@@ -32320,6 +32548,7 @@ export namespace Prisma {
32320
32548
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
32321
32549
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
32322
32550
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
32551
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
32323
32552
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
32324
32553
  }
32325
32554
 
@@ -32447,6 +32676,7 @@ export namespace Prisma {
32447
32676
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
32448
32677
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
32449
32678
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
32679
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
32450
32680
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
32451
32681
  }
32452
32682
 
@@ -32480,6 +32710,7 @@ export namespace Prisma {
32480
32710
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
32481
32711
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
32482
32712
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
32713
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
32483
32714
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
32484
32715
  }
32485
32716
 
@@ -32806,6 +33037,7 @@ export namespace Prisma {
32806
33037
  birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
32807
33038
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
32808
33039
  tickets?: TicketCreateNestedManyWithoutProfileInput
33040
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
32809
33041
  productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
32810
33042
  }
32811
33043
 
@@ -32839,6 +33071,7 @@ export namespace Prisma {
32839
33071
  messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
32840
33072
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
32841
33073
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
33074
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
32842
33075
  productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
32843
33076
  }
32844
33077
 
@@ -32847,6 +33080,79 @@ export namespace Prisma {
32847
33080
  create: XOR<ProfileCreateWithoutProductionsAdministratedInput, ProfileUncheckedCreateWithoutProductionsAdministratedInput>
32848
33081
  }
32849
33082
 
33083
+ export type ProfileCreateWithoutProductionsParticipatedInput = {
33084
+ id?: string
33085
+ shortId: number
33086
+ role?: $Enums.Role
33087
+ firstTimeMiExpo?: boolean
33088
+ username?: string | null
33089
+ password?: string | null
33090
+ phoneNumber: string
33091
+ isPhoneVerified?: boolean
33092
+ secondaryPhoneNumber?: string | null
33093
+ fullName: string
33094
+ firstName?: string | null
33095
+ gender?: string | null
33096
+ birthDate?: Date | string | null
33097
+ profilePictureUrl?: string | null
33098
+ instagram?: string | null
33099
+ mail?: string | null
33100
+ dni?: string | null
33101
+ alternativeNames?: ProfileCreatealternativeNamesInput | string[]
33102
+ isInTrash?: boolean
33103
+ movedToTrashDate?: Date | string | null
33104
+ created_at?: Date | string
33105
+ updated_at?: Date | string
33106
+ otp?: OtpCreateNestedManyWithoutOwnerInput
33107
+ comments?: CommentCreateNestedManyWithoutProfileInput
33108
+ messages?: MessageCreateNestedManyWithoutProfileInput
33109
+ tags?: TagCreateNestedManyWithoutProfilesInput
33110
+ birthLocation?: LocationCreateNestedOneWithoutBirthProfilesInput
33111
+ residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
33112
+ tickets?: TicketCreateNestedManyWithoutProfileInput
33113
+ productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
33114
+ productionRequestsSent?: ProductionAffiliationRequestCreateNestedManyWithoutProfileInput
33115
+ }
33116
+
33117
+ export type ProfileUncheckedCreateWithoutProductionsParticipatedInput = {
33118
+ id?: string
33119
+ shortId: number
33120
+ role?: $Enums.Role
33121
+ firstTimeMiExpo?: boolean
33122
+ username?: string | null
33123
+ password?: string | null
33124
+ phoneNumber: string
33125
+ isPhoneVerified?: boolean
33126
+ secondaryPhoneNumber?: string | null
33127
+ fullName: string
33128
+ firstName?: string | null
33129
+ gender?: string | null
33130
+ birthDate?: Date | string | null
33131
+ profilePictureUrl?: string | null
33132
+ instagram?: string | null
33133
+ mail?: string | null
33134
+ dni?: string | null
33135
+ alternativeNames?: ProfileCreatealternativeNamesInput | string[]
33136
+ birthLocationId?: string | null
33137
+ residenceLocationId?: string | null
33138
+ isInTrash?: boolean
33139
+ movedToTrashDate?: Date | string | null
33140
+ created_at?: Date | string
33141
+ updated_at?: Date | string
33142
+ otp?: OtpUncheckedCreateNestedManyWithoutOwnerInput
33143
+ comments?: CommentUncheckedCreateNestedManyWithoutProfileInput
33144
+ messages?: MessageUncheckedCreateNestedManyWithoutProfileInput
33145
+ tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
33146
+ tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
33147
+ productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
33148
+ productionRequestsSent?: ProductionAffiliationRequestUncheckedCreateNestedManyWithoutProfileInput
33149
+ }
33150
+
33151
+ export type ProfileCreateOrConnectWithoutProductionsParticipatedInput = {
33152
+ where: ProfileWhereUniqueInput
33153
+ create: XOR<ProfileCreateWithoutProductionsParticipatedInput, ProfileUncheckedCreateWithoutProductionsParticipatedInput>
33154
+ }
33155
+
32850
33156
  export type EventCreateWithoutProductionsInput = {
32851
33157
  id?: string
32852
33158
  name: string
@@ -32965,6 +33271,7 @@ export namespace Prisma {
32965
33271
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
32966
33272
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
32967
33273
  tickets?: TicketUpdateManyWithoutProfileNestedInput
33274
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
32968
33275
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
32969
33276
  }
32970
33277
 
@@ -32998,9 +33305,26 @@ export namespace Prisma {
32998
33305
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
32999
33306
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
33000
33307
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
33308
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
33001
33309
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
33002
33310
  }
33003
33311
 
33312
+ export type ProfileUpsertWithWhereUniqueWithoutProductionsParticipatedInput = {
33313
+ where: ProfileWhereUniqueInput
33314
+ update: XOR<ProfileUpdateWithoutProductionsParticipatedInput, ProfileUncheckedUpdateWithoutProductionsParticipatedInput>
33315
+ create: XOR<ProfileCreateWithoutProductionsParticipatedInput, ProfileUncheckedCreateWithoutProductionsParticipatedInput>
33316
+ }
33317
+
33318
+ export type ProfileUpdateWithWhereUniqueWithoutProductionsParticipatedInput = {
33319
+ where: ProfileWhereUniqueInput
33320
+ data: XOR<ProfileUpdateWithoutProductionsParticipatedInput, ProfileUncheckedUpdateWithoutProductionsParticipatedInput>
33321
+ }
33322
+
33323
+ export type ProfileUpdateManyWithWhereWithoutProductionsParticipatedInput = {
33324
+ where: ProfileScalarWhereInput
33325
+ data: XOR<ProfileUpdateManyMutationInput, ProfileUncheckedUpdateManyWithoutProductionsParticipatedInput>
33326
+ }
33327
+
33004
33328
  export type EventUpsertWithWhereUniqueWithoutProductionsInput = {
33005
33329
  where: EventWhereUniqueInput
33006
33330
  update: XOR<EventUpdateWithoutProductionsInput, EventUncheckedUpdateWithoutProductionsInput>
@@ -33039,6 +33363,7 @@ export namespace Prisma {
33039
33363
  created_at?: Date | string
33040
33364
  updated_at?: Date | string
33041
33365
  administrator?: ProfileCreateNestedOneWithoutProductionsAdministratedInput
33366
+ participants?: ProfileCreateNestedManyWithoutProductionsParticipatedInput
33042
33367
  events?: EventCreateNestedManyWithoutProductionsInput
33043
33368
  }
33044
33369
 
@@ -33048,6 +33373,7 @@ export namespace Prisma {
33048
33373
  administratorId?: string | null
33049
33374
  created_at?: Date | string
33050
33375
  updated_at?: Date | string
33376
+ participants?: ProfileUncheckedCreateNestedManyWithoutProductionsParticipatedInput
33051
33377
  events?: EventUncheckedCreateNestedManyWithoutProductionsInput
33052
33378
  }
33053
33379
 
@@ -33087,6 +33413,7 @@ export namespace Prisma {
33087
33413
  residenceLocation?: LocationCreateNestedOneWithoutResidenceProfilesInput
33088
33414
  tickets?: TicketCreateNestedManyWithoutProfileInput
33089
33415
  productionsAdministrated?: ProductionCreateNestedManyWithoutAdministratorInput
33416
+ productionsParticipated?: ProductionCreateNestedManyWithoutParticipantsInput
33090
33417
  }
33091
33418
 
33092
33419
  export type ProfileUncheckedCreateWithoutProductionRequestsSentInput = {
@@ -33120,6 +33447,7 @@ export namespace Prisma {
33120
33447
  tags?: TagUncheckedCreateNestedManyWithoutProfilesInput
33121
33448
  tickets?: TicketUncheckedCreateNestedManyWithoutProfileInput
33122
33449
  productionsAdministrated?: ProductionUncheckedCreateNestedManyWithoutAdministratorInput
33450
+ productionsParticipated?: ProductionUncheckedCreateNestedManyWithoutParticipantsInput
33123
33451
  }
33124
33452
 
33125
33453
  export type ProfileCreateOrConnectWithoutProductionRequestsSentInput = {
@@ -33144,6 +33472,7 @@ export namespace Prisma {
33144
33472
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
33145
33473
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
33146
33474
  administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
33475
+ participants?: ProfileUpdateManyWithoutProductionsParticipatedNestedInput
33147
33476
  events?: EventUpdateManyWithoutProductionsNestedInput
33148
33477
  }
33149
33478
 
@@ -33153,6 +33482,7 @@ export namespace Prisma {
33153
33482
  administratorId?: NullableStringFieldUpdateOperationsInput | string | null
33154
33483
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
33155
33484
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
33485
+ participants?: ProfileUncheckedUpdateManyWithoutProductionsParticipatedNestedInput
33156
33486
  events?: EventUncheckedUpdateManyWithoutProductionsNestedInput
33157
33487
  }
33158
33488
 
@@ -33198,6 +33528,7 @@ export namespace Prisma {
33198
33528
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
33199
33529
  tickets?: TicketUpdateManyWithoutProfileNestedInput
33200
33530
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
33531
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
33201
33532
  }
33202
33533
 
33203
33534
  export type ProfileUncheckedUpdateWithoutProductionRequestsSentInput = {
@@ -33231,6 +33562,7 @@ export namespace Prisma {
33231
33562
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
33232
33563
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
33233
33564
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
33565
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
33234
33566
  }
33235
33567
 
33236
33568
  export type CommentCreateManyAccountInput = {
@@ -33643,6 +33975,7 @@ export namespace Prisma {
33643
33975
  name?: StringFieldUpdateOperationsInput | string
33644
33976
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
33645
33977
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
33978
+ participants?: ProfileUpdateManyWithoutProductionsParticipatedNestedInput
33646
33979
  events?: EventUpdateManyWithoutProductionsNestedInput
33647
33980
  affiliationRequests?: ProductionAffiliationRequestUpdateManyWithoutProductionNestedInput
33648
33981
  }
@@ -33652,6 +33985,7 @@ export namespace Prisma {
33652
33985
  name?: StringFieldUpdateOperationsInput | string
33653
33986
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
33654
33987
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
33988
+ participants?: ProfileUncheckedUpdateManyWithoutProductionsParticipatedNestedInput
33655
33989
  events?: EventUncheckedUpdateManyWithoutProductionsNestedInput
33656
33990
  affiliationRequests?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProductionNestedInput
33657
33991
  }
@@ -33663,6 +33997,34 @@ export namespace Prisma {
33663
33997
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
33664
33998
  }
33665
33999
 
34000
+ export type ProductionUpdateWithoutParticipantsInput = {
34001
+ id?: StringFieldUpdateOperationsInput | string
34002
+ name?: StringFieldUpdateOperationsInput | string
34003
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
34004
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
34005
+ administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
34006
+ events?: EventUpdateManyWithoutProductionsNestedInput
34007
+ affiliationRequests?: ProductionAffiliationRequestUpdateManyWithoutProductionNestedInput
34008
+ }
34009
+
34010
+ export type ProductionUncheckedUpdateWithoutParticipantsInput = {
34011
+ id?: StringFieldUpdateOperationsInput | string
34012
+ name?: StringFieldUpdateOperationsInput | string
34013
+ administratorId?: NullableStringFieldUpdateOperationsInput | string | null
34014
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
34015
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
34016
+ events?: EventUncheckedUpdateManyWithoutProductionsNestedInput
34017
+ affiliationRequests?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProductionNestedInput
34018
+ }
34019
+
34020
+ export type ProductionUncheckedUpdateManyWithoutParticipantsInput = {
34021
+ id?: StringFieldUpdateOperationsInput | string
34022
+ name?: StringFieldUpdateOperationsInput | string
34023
+ administratorId?: NullableStringFieldUpdateOperationsInput | string | null
34024
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
34025
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
34026
+ }
34027
+
33666
34028
  export type ProductionAffiliationRequestUpdateWithoutProfileInput = {
33667
34029
  id?: StringFieldUpdateOperationsInput | string
33668
34030
  status?: EnumAffiliationStatusFieldUpdateOperationsInput | $Enums.AffiliationStatus
@@ -33772,6 +34134,7 @@ export namespace Prisma {
33772
34134
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
33773
34135
  tickets?: TicketUpdateManyWithoutProfileNestedInput
33774
34136
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
34137
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
33775
34138
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
33776
34139
  }
33777
34140
 
@@ -33805,6 +34168,7 @@ export namespace Prisma {
33805
34168
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
33806
34169
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
33807
34170
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
34171
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
33808
34172
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
33809
34173
  }
33810
34174
 
@@ -33864,6 +34228,7 @@ export namespace Prisma {
33864
34228
  birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
33865
34229
  tickets?: TicketUpdateManyWithoutProfileNestedInput
33866
34230
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
34231
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
33867
34232
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
33868
34233
  }
33869
34234
 
@@ -33897,6 +34262,7 @@ export namespace Prisma {
33897
34262
  tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
33898
34263
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
33899
34264
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
34265
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
33900
34266
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
33901
34267
  }
33902
34268
 
@@ -33995,6 +34361,7 @@ export namespace Prisma {
33995
34361
  residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
33996
34362
  tickets?: TicketUpdateManyWithoutProfileNestedInput
33997
34363
  productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
34364
+ productionsParticipated?: ProductionUpdateManyWithoutParticipantsNestedInput
33998
34365
  productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
33999
34366
  }
34000
34367
 
@@ -34028,6 +34395,7 @@ export namespace Prisma {
34028
34395
  messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
34029
34396
  tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
34030
34397
  productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
34398
+ productionsParticipated?: ProductionUncheckedUpdateManyWithoutParticipantsNestedInput
34031
34399
  productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
34032
34400
  }
34033
34401
 
@@ -34512,6 +34880,7 @@ export namespace Prisma {
34512
34880
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
34513
34881
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
34514
34882
  administrator?: ProfileUpdateOneWithoutProductionsAdministratedNestedInput
34883
+ participants?: ProfileUpdateManyWithoutProductionsParticipatedNestedInput
34515
34884
  affiliationRequests?: ProductionAffiliationRequestUpdateManyWithoutProductionNestedInput
34516
34885
  }
34517
34886
 
@@ -34521,6 +34890,7 @@ export namespace Prisma {
34521
34890
  administratorId?: NullableStringFieldUpdateOperationsInput | string | null
34522
34891
  created_at?: DateTimeFieldUpdateOperationsInput | Date | string
34523
34892
  updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
34893
+ participants?: ProfileUncheckedUpdateManyWithoutProductionsParticipatedNestedInput
34524
34894
  affiliationRequests?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProductionNestedInput
34525
34895
  }
34526
34896
 
@@ -34714,6 +35084,101 @@ export namespace Prisma {
34714
35084
  updated_at?: Date | string
34715
35085
  }
34716
35086
 
35087
+ export type ProfileUpdateWithoutProductionsParticipatedInput = {
35088
+ id?: StringFieldUpdateOperationsInput | string
35089
+ shortId?: IntFieldUpdateOperationsInput | number
35090
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
35091
+ firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
35092
+ username?: NullableStringFieldUpdateOperationsInput | string | null
35093
+ password?: NullableStringFieldUpdateOperationsInput | string | null
35094
+ phoneNumber?: StringFieldUpdateOperationsInput | string
35095
+ isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
35096
+ secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
35097
+ fullName?: StringFieldUpdateOperationsInput | string
35098
+ firstName?: NullableStringFieldUpdateOperationsInput | string | null
35099
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
35100
+ birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
35101
+ profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
35102
+ instagram?: NullableStringFieldUpdateOperationsInput | string | null
35103
+ mail?: NullableStringFieldUpdateOperationsInput | string | null
35104
+ dni?: NullableStringFieldUpdateOperationsInput | string | null
35105
+ alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
35106
+ isInTrash?: BoolFieldUpdateOperationsInput | boolean
35107
+ movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
35108
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
35109
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
35110
+ otp?: OtpUpdateManyWithoutOwnerNestedInput
35111
+ comments?: CommentUpdateManyWithoutProfileNestedInput
35112
+ messages?: MessageUpdateManyWithoutProfileNestedInput
35113
+ tags?: TagUpdateManyWithoutProfilesNestedInput
35114
+ birthLocation?: LocationUpdateOneWithoutBirthProfilesNestedInput
35115
+ residenceLocation?: LocationUpdateOneWithoutResidenceProfilesNestedInput
35116
+ tickets?: TicketUpdateManyWithoutProfileNestedInput
35117
+ productionsAdministrated?: ProductionUpdateManyWithoutAdministratorNestedInput
35118
+ productionRequestsSent?: ProductionAffiliationRequestUpdateManyWithoutProfileNestedInput
35119
+ }
35120
+
35121
+ export type ProfileUncheckedUpdateWithoutProductionsParticipatedInput = {
35122
+ id?: StringFieldUpdateOperationsInput | string
35123
+ shortId?: IntFieldUpdateOperationsInput | number
35124
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
35125
+ firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
35126
+ username?: NullableStringFieldUpdateOperationsInput | string | null
35127
+ password?: NullableStringFieldUpdateOperationsInput | string | null
35128
+ phoneNumber?: StringFieldUpdateOperationsInput | string
35129
+ isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
35130
+ secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
35131
+ fullName?: StringFieldUpdateOperationsInput | string
35132
+ firstName?: NullableStringFieldUpdateOperationsInput | string | null
35133
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
35134
+ birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
35135
+ profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
35136
+ instagram?: NullableStringFieldUpdateOperationsInput | string | null
35137
+ mail?: NullableStringFieldUpdateOperationsInput | string | null
35138
+ dni?: NullableStringFieldUpdateOperationsInput | string | null
35139
+ alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
35140
+ birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
35141
+ residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
35142
+ isInTrash?: BoolFieldUpdateOperationsInput | boolean
35143
+ movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
35144
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
35145
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
35146
+ otp?: OtpUncheckedUpdateManyWithoutOwnerNestedInput
35147
+ comments?: CommentUncheckedUpdateManyWithoutProfileNestedInput
35148
+ messages?: MessageUncheckedUpdateManyWithoutProfileNestedInput
35149
+ tags?: TagUncheckedUpdateManyWithoutProfilesNestedInput
35150
+ tickets?: TicketUncheckedUpdateManyWithoutProfileNestedInput
35151
+ productionsAdministrated?: ProductionUncheckedUpdateManyWithoutAdministratorNestedInput
35152
+ productionRequestsSent?: ProductionAffiliationRequestUncheckedUpdateManyWithoutProfileNestedInput
35153
+ }
35154
+
35155
+ export type ProfileUncheckedUpdateManyWithoutProductionsParticipatedInput = {
35156
+ id?: StringFieldUpdateOperationsInput | string
35157
+ shortId?: IntFieldUpdateOperationsInput | number
35158
+ role?: EnumRoleFieldUpdateOperationsInput | $Enums.Role
35159
+ firstTimeMiExpo?: BoolFieldUpdateOperationsInput | boolean
35160
+ username?: NullableStringFieldUpdateOperationsInput | string | null
35161
+ password?: NullableStringFieldUpdateOperationsInput | string | null
35162
+ phoneNumber?: StringFieldUpdateOperationsInput | string
35163
+ isPhoneVerified?: BoolFieldUpdateOperationsInput | boolean
35164
+ secondaryPhoneNumber?: NullableStringFieldUpdateOperationsInput | string | null
35165
+ fullName?: StringFieldUpdateOperationsInput | string
35166
+ firstName?: NullableStringFieldUpdateOperationsInput | string | null
35167
+ gender?: NullableStringFieldUpdateOperationsInput | string | null
35168
+ birthDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
35169
+ profilePictureUrl?: NullableStringFieldUpdateOperationsInput | string | null
35170
+ instagram?: NullableStringFieldUpdateOperationsInput | string | null
35171
+ mail?: NullableStringFieldUpdateOperationsInput | string | null
35172
+ dni?: NullableStringFieldUpdateOperationsInput | string | null
35173
+ alternativeNames?: ProfileUpdatealternativeNamesInput | string[]
35174
+ birthLocationId?: NullableStringFieldUpdateOperationsInput | string | null
35175
+ residenceLocationId?: NullableStringFieldUpdateOperationsInput | string | null
35176
+ isInTrash?: BoolFieldUpdateOperationsInput | boolean
35177
+ movedToTrashDate?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
35178
+ created_at?: DateTimeFieldUpdateOperationsInput | Date | string
35179
+ updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
35180
+ }
35181
+
34717
35182
  export type EventUpdateWithoutProductionsInput = {
34718
35183
  id?: StringFieldUpdateOperationsInput | string
34719
35184
  name?: StringFieldUpdateOperationsInput | string