@valentine-efagene/qshelter-common 2.0.91 → 2.0.94

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.
@@ -250,6 +250,7 @@ export type EventHandlerWhereInput = {
250
250
  eventType?: Prisma.XOR<Prisma.EventTypeScalarRelationFilter, Prisma.EventTypeWhereInput>;
251
251
  executions?: Prisma.EventHandlerExecutionListRelationFilter;
252
252
  stepAttachments?: Prisma.StepEventAttachmentListRelationFilter;
253
+ phaseAttachments?: Prisma.PhaseEventAttachmentListRelationFilter;
253
254
  };
254
255
  export type EventHandlerOrderByWithRelationInput = {
255
256
  id?: Prisma.SortOrder;
@@ -270,6 +271,7 @@ export type EventHandlerOrderByWithRelationInput = {
270
271
  eventType?: Prisma.EventTypeOrderByWithRelationInput;
271
272
  executions?: Prisma.EventHandlerExecutionOrderByRelationAggregateInput;
272
273
  stepAttachments?: Prisma.StepEventAttachmentOrderByRelationAggregateInput;
274
+ phaseAttachments?: Prisma.PhaseEventAttachmentOrderByRelationAggregateInput;
273
275
  _relevance?: Prisma.EventHandlerOrderByRelevanceInput;
274
276
  };
275
277
  export type EventHandlerWhereUniqueInput = Prisma.AtLeast<{
@@ -294,6 +296,7 @@ export type EventHandlerWhereUniqueInput = Prisma.AtLeast<{
294
296
  eventType?: Prisma.XOR<Prisma.EventTypeScalarRelationFilter, Prisma.EventTypeWhereInput>;
295
297
  executions?: Prisma.EventHandlerExecutionListRelationFilter;
296
298
  stepAttachments?: Prisma.StepEventAttachmentListRelationFilter;
299
+ phaseAttachments?: Prisma.PhaseEventAttachmentListRelationFilter;
297
300
  }, "id">;
298
301
  export type EventHandlerOrderByWithAggregationInput = {
299
302
  id?: Prisma.SortOrder;
@@ -352,6 +355,7 @@ export type EventHandlerCreateInput = {
352
355
  eventType: Prisma.EventTypeCreateNestedOneWithoutHandlersInput;
353
356
  executions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutHandlerInput;
354
357
  stepAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutHandlerInput;
358
+ phaseAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutHandlerInput;
355
359
  };
356
360
  export type EventHandlerUncheckedCreateInput = {
357
361
  id?: string;
@@ -370,6 +374,7 @@ export type EventHandlerUncheckedCreateInput = {
370
374
  updatedAt?: Date | string;
371
375
  executions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutHandlerInput;
372
376
  stepAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
377
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
373
378
  };
374
379
  export type EventHandlerUpdateInput = {
375
380
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -388,6 +393,7 @@ export type EventHandlerUpdateInput = {
388
393
  eventType?: Prisma.EventTypeUpdateOneRequiredWithoutHandlersNestedInput;
389
394
  executions?: Prisma.EventHandlerExecutionUpdateManyWithoutHandlerNestedInput;
390
395
  stepAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutHandlerNestedInput;
396
+ phaseAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutHandlerNestedInput;
391
397
  };
392
398
  export type EventHandlerUncheckedUpdateInput = {
393
399
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -406,6 +412,7 @@ export type EventHandlerUncheckedUpdateInput = {
406
412
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
407
413
  executions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutHandlerNestedInput;
408
414
  stepAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
415
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
409
416
  };
410
417
  export type EventHandlerCreateManyInput = {
411
418
  id?: string;
@@ -564,6 +571,18 @@ export type EventHandlerUncheckedUpdateManyWithoutTenantNestedInput = {
564
571
  updateMany?: Prisma.EventHandlerUpdateManyWithWhereWithoutTenantInput | Prisma.EventHandlerUpdateManyWithWhereWithoutTenantInput[];
565
572
  deleteMany?: Prisma.EventHandlerScalarWhereInput | Prisma.EventHandlerScalarWhereInput[];
566
573
  };
574
+ export type EventHandlerCreateNestedOneWithoutPhaseAttachmentsInput = {
575
+ create?: Prisma.XOR<Prisma.EventHandlerCreateWithoutPhaseAttachmentsInput, Prisma.EventHandlerUncheckedCreateWithoutPhaseAttachmentsInput>;
576
+ connectOrCreate?: Prisma.EventHandlerCreateOrConnectWithoutPhaseAttachmentsInput;
577
+ connect?: Prisma.EventHandlerWhereUniqueInput;
578
+ };
579
+ export type EventHandlerUpdateOneRequiredWithoutPhaseAttachmentsNestedInput = {
580
+ create?: Prisma.XOR<Prisma.EventHandlerCreateWithoutPhaseAttachmentsInput, Prisma.EventHandlerUncheckedCreateWithoutPhaseAttachmentsInput>;
581
+ connectOrCreate?: Prisma.EventHandlerCreateOrConnectWithoutPhaseAttachmentsInput;
582
+ upsert?: Prisma.EventHandlerUpsertWithoutPhaseAttachmentsInput;
583
+ connect?: Prisma.EventHandlerWhereUniqueInput;
584
+ update?: Prisma.XOR<Prisma.XOR<Prisma.EventHandlerUpdateToOneWithWhereWithoutPhaseAttachmentsInput, Prisma.EventHandlerUpdateWithoutPhaseAttachmentsInput>, Prisma.EventHandlerUncheckedUpdateWithoutPhaseAttachmentsInput>;
585
+ };
567
586
  export type EventHandlerCreateNestedOneWithoutStepAttachmentsInput = {
568
587
  create?: Prisma.XOR<Prisma.EventHandlerCreateWithoutStepAttachmentsInput, Prisma.EventHandlerUncheckedCreateWithoutStepAttachmentsInput>;
569
588
  connectOrCreate?: Prisma.EventHandlerCreateOrConnectWithoutStepAttachmentsInput;
@@ -645,6 +664,7 @@ export type EventHandlerCreateWithoutTenantInput = {
645
664
  eventType: Prisma.EventTypeCreateNestedOneWithoutHandlersInput;
646
665
  executions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutHandlerInput;
647
666
  stepAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutHandlerInput;
667
+ phaseAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutHandlerInput;
648
668
  };
649
669
  export type EventHandlerUncheckedCreateWithoutTenantInput = {
650
670
  id?: string;
@@ -662,6 +682,7 @@ export type EventHandlerUncheckedCreateWithoutTenantInput = {
662
682
  updatedAt?: Date | string;
663
683
  executions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutHandlerInput;
664
684
  stepAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
685
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
665
686
  };
666
687
  export type EventHandlerCreateOrConnectWithoutTenantInput = {
667
688
  where: Prisma.EventHandlerWhereUniqueInput;
@@ -703,6 +724,91 @@ export type EventHandlerScalarWhereInput = {
703
724
  createdAt?: Prisma.DateTimeFilter<"EventHandler"> | Date | string;
704
725
  updatedAt?: Prisma.DateTimeFilter<"EventHandler"> | Date | string;
705
726
  };
727
+ export type EventHandlerCreateWithoutPhaseAttachmentsInput = {
728
+ id?: string;
729
+ name: string;
730
+ description?: string | null;
731
+ handlerType: $Enums.EventHandlerType;
732
+ config: Prisma.JsonNullValueInput | runtime.InputJsonValue;
733
+ priority?: number;
734
+ enabled?: boolean;
735
+ maxRetries?: number;
736
+ retryDelayMs?: number;
737
+ filterCondition?: string | null;
738
+ createdAt?: Date | string;
739
+ updatedAt?: Date | string;
740
+ tenant: Prisma.TenantCreateNestedOneWithoutEventHandlersInput;
741
+ eventType: Prisma.EventTypeCreateNestedOneWithoutHandlersInput;
742
+ executions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutHandlerInput;
743
+ stepAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutHandlerInput;
744
+ };
745
+ export type EventHandlerUncheckedCreateWithoutPhaseAttachmentsInput = {
746
+ id?: string;
747
+ tenantId: string;
748
+ eventTypeId: string;
749
+ name: string;
750
+ description?: string | null;
751
+ handlerType: $Enums.EventHandlerType;
752
+ config: Prisma.JsonNullValueInput | runtime.InputJsonValue;
753
+ priority?: number;
754
+ enabled?: boolean;
755
+ maxRetries?: number;
756
+ retryDelayMs?: number;
757
+ filterCondition?: string | null;
758
+ createdAt?: Date | string;
759
+ updatedAt?: Date | string;
760
+ executions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutHandlerInput;
761
+ stepAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
762
+ };
763
+ export type EventHandlerCreateOrConnectWithoutPhaseAttachmentsInput = {
764
+ where: Prisma.EventHandlerWhereUniqueInput;
765
+ create: Prisma.XOR<Prisma.EventHandlerCreateWithoutPhaseAttachmentsInput, Prisma.EventHandlerUncheckedCreateWithoutPhaseAttachmentsInput>;
766
+ };
767
+ export type EventHandlerUpsertWithoutPhaseAttachmentsInput = {
768
+ update: Prisma.XOR<Prisma.EventHandlerUpdateWithoutPhaseAttachmentsInput, Prisma.EventHandlerUncheckedUpdateWithoutPhaseAttachmentsInput>;
769
+ create: Prisma.XOR<Prisma.EventHandlerCreateWithoutPhaseAttachmentsInput, Prisma.EventHandlerUncheckedCreateWithoutPhaseAttachmentsInput>;
770
+ where?: Prisma.EventHandlerWhereInput;
771
+ };
772
+ export type EventHandlerUpdateToOneWithWhereWithoutPhaseAttachmentsInput = {
773
+ where?: Prisma.EventHandlerWhereInput;
774
+ data: Prisma.XOR<Prisma.EventHandlerUpdateWithoutPhaseAttachmentsInput, Prisma.EventHandlerUncheckedUpdateWithoutPhaseAttachmentsInput>;
775
+ };
776
+ export type EventHandlerUpdateWithoutPhaseAttachmentsInput = {
777
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
778
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
779
+ description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
780
+ handlerType?: Prisma.EnumEventHandlerTypeFieldUpdateOperationsInput | $Enums.EventHandlerType;
781
+ config?: Prisma.JsonNullValueInput | runtime.InputJsonValue;
782
+ priority?: Prisma.IntFieldUpdateOperationsInput | number;
783
+ enabled?: Prisma.BoolFieldUpdateOperationsInput | boolean;
784
+ maxRetries?: Prisma.IntFieldUpdateOperationsInput | number;
785
+ retryDelayMs?: Prisma.IntFieldUpdateOperationsInput | number;
786
+ filterCondition?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
787
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
788
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
789
+ tenant?: Prisma.TenantUpdateOneRequiredWithoutEventHandlersNestedInput;
790
+ eventType?: Prisma.EventTypeUpdateOneRequiredWithoutHandlersNestedInput;
791
+ executions?: Prisma.EventHandlerExecutionUpdateManyWithoutHandlerNestedInput;
792
+ stepAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutHandlerNestedInput;
793
+ };
794
+ export type EventHandlerUncheckedUpdateWithoutPhaseAttachmentsInput = {
795
+ id?: Prisma.StringFieldUpdateOperationsInput | string;
796
+ tenantId?: Prisma.StringFieldUpdateOperationsInput | string;
797
+ eventTypeId?: Prisma.StringFieldUpdateOperationsInput | string;
798
+ name?: Prisma.StringFieldUpdateOperationsInput | string;
799
+ description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
800
+ handlerType?: Prisma.EnumEventHandlerTypeFieldUpdateOperationsInput | $Enums.EventHandlerType;
801
+ config?: Prisma.JsonNullValueInput | runtime.InputJsonValue;
802
+ priority?: Prisma.IntFieldUpdateOperationsInput | number;
803
+ enabled?: Prisma.BoolFieldUpdateOperationsInput | boolean;
804
+ maxRetries?: Prisma.IntFieldUpdateOperationsInput | number;
805
+ retryDelayMs?: Prisma.IntFieldUpdateOperationsInput | number;
806
+ filterCondition?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
807
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
808
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
809
+ executions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutHandlerNestedInput;
810
+ stepAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
811
+ };
706
812
  export type EventHandlerCreateWithoutStepAttachmentsInput = {
707
813
  id?: string;
708
814
  name: string;
@@ -719,6 +825,7 @@ export type EventHandlerCreateWithoutStepAttachmentsInput = {
719
825
  tenant: Prisma.TenantCreateNestedOneWithoutEventHandlersInput;
720
826
  eventType: Prisma.EventTypeCreateNestedOneWithoutHandlersInput;
721
827
  executions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutHandlerInput;
828
+ phaseAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutHandlerInput;
722
829
  };
723
830
  export type EventHandlerUncheckedCreateWithoutStepAttachmentsInput = {
724
831
  id?: string;
@@ -736,6 +843,7 @@ export type EventHandlerUncheckedCreateWithoutStepAttachmentsInput = {
736
843
  createdAt?: Date | string;
737
844
  updatedAt?: Date | string;
738
845
  executions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutHandlerInput;
846
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
739
847
  };
740
848
  export type EventHandlerCreateOrConnectWithoutStepAttachmentsInput = {
741
849
  where: Prisma.EventHandlerWhereUniqueInput;
@@ -766,6 +874,7 @@ export type EventHandlerUpdateWithoutStepAttachmentsInput = {
766
874
  tenant?: Prisma.TenantUpdateOneRequiredWithoutEventHandlersNestedInput;
767
875
  eventType?: Prisma.EventTypeUpdateOneRequiredWithoutHandlersNestedInput;
768
876
  executions?: Prisma.EventHandlerExecutionUpdateManyWithoutHandlerNestedInput;
877
+ phaseAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutHandlerNestedInput;
769
878
  };
770
879
  export type EventHandlerUncheckedUpdateWithoutStepAttachmentsInput = {
771
880
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -783,6 +892,7 @@ export type EventHandlerUncheckedUpdateWithoutStepAttachmentsInput = {
783
892
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
784
893
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
785
894
  executions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutHandlerNestedInput;
895
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
786
896
  };
787
897
  export type EventHandlerCreateWithoutEventTypeInput = {
788
898
  id?: string;
@@ -800,6 +910,7 @@ export type EventHandlerCreateWithoutEventTypeInput = {
800
910
  tenant: Prisma.TenantCreateNestedOneWithoutEventHandlersInput;
801
911
  executions?: Prisma.EventHandlerExecutionCreateNestedManyWithoutHandlerInput;
802
912
  stepAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutHandlerInput;
913
+ phaseAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutHandlerInput;
803
914
  };
804
915
  export type EventHandlerUncheckedCreateWithoutEventTypeInput = {
805
916
  id?: string;
@@ -817,6 +928,7 @@ export type EventHandlerUncheckedCreateWithoutEventTypeInput = {
817
928
  updatedAt?: Date | string;
818
929
  executions?: Prisma.EventHandlerExecutionUncheckedCreateNestedManyWithoutHandlerInput;
819
930
  stepAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
931
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
820
932
  };
821
933
  export type EventHandlerCreateOrConnectWithoutEventTypeInput = {
822
934
  where: Prisma.EventHandlerWhereUniqueInput;
@@ -855,6 +967,7 @@ export type EventHandlerCreateWithoutExecutionsInput = {
855
967
  tenant: Prisma.TenantCreateNestedOneWithoutEventHandlersInput;
856
968
  eventType: Prisma.EventTypeCreateNestedOneWithoutHandlersInput;
857
969
  stepAttachments?: Prisma.StepEventAttachmentCreateNestedManyWithoutHandlerInput;
970
+ phaseAttachments?: Prisma.PhaseEventAttachmentCreateNestedManyWithoutHandlerInput;
858
971
  };
859
972
  export type EventHandlerUncheckedCreateWithoutExecutionsInput = {
860
973
  id?: string;
@@ -872,6 +985,7 @@ export type EventHandlerUncheckedCreateWithoutExecutionsInput = {
872
985
  createdAt?: Date | string;
873
986
  updatedAt?: Date | string;
874
987
  stepAttachments?: Prisma.StepEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
988
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedCreateNestedManyWithoutHandlerInput;
875
989
  };
876
990
  export type EventHandlerCreateOrConnectWithoutExecutionsInput = {
877
991
  where: Prisma.EventHandlerWhereUniqueInput;
@@ -902,6 +1016,7 @@ export type EventHandlerUpdateWithoutExecutionsInput = {
902
1016
  tenant?: Prisma.TenantUpdateOneRequiredWithoutEventHandlersNestedInput;
903
1017
  eventType?: Prisma.EventTypeUpdateOneRequiredWithoutHandlersNestedInput;
904
1018
  stepAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutHandlerNestedInput;
1019
+ phaseAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutHandlerNestedInput;
905
1020
  };
906
1021
  export type EventHandlerUncheckedUpdateWithoutExecutionsInput = {
907
1022
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -919,6 +1034,7 @@ export type EventHandlerUncheckedUpdateWithoutExecutionsInput = {
919
1034
  createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
920
1035
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
921
1036
  stepAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
1037
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
922
1038
  };
923
1039
  export type EventHandlerCreateManyTenantInput = {
924
1040
  id?: string;
@@ -951,6 +1067,7 @@ export type EventHandlerUpdateWithoutTenantInput = {
951
1067
  eventType?: Prisma.EventTypeUpdateOneRequiredWithoutHandlersNestedInput;
952
1068
  executions?: Prisma.EventHandlerExecutionUpdateManyWithoutHandlerNestedInput;
953
1069
  stepAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutHandlerNestedInput;
1070
+ phaseAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutHandlerNestedInput;
954
1071
  };
955
1072
  export type EventHandlerUncheckedUpdateWithoutTenantInput = {
956
1073
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -968,6 +1085,7 @@ export type EventHandlerUncheckedUpdateWithoutTenantInput = {
968
1085
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
969
1086
  executions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutHandlerNestedInput;
970
1087
  stepAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
1088
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
971
1089
  };
972
1090
  export type EventHandlerUncheckedUpdateManyWithoutTenantInput = {
973
1091
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1015,6 +1133,7 @@ export type EventHandlerUpdateWithoutEventTypeInput = {
1015
1133
  tenant?: Prisma.TenantUpdateOneRequiredWithoutEventHandlersNestedInput;
1016
1134
  executions?: Prisma.EventHandlerExecutionUpdateManyWithoutHandlerNestedInput;
1017
1135
  stepAttachments?: Prisma.StepEventAttachmentUpdateManyWithoutHandlerNestedInput;
1136
+ phaseAttachments?: Prisma.PhaseEventAttachmentUpdateManyWithoutHandlerNestedInput;
1018
1137
  };
1019
1138
  export type EventHandlerUncheckedUpdateWithoutEventTypeInput = {
1020
1139
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1032,6 +1151,7 @@ export type EventHandlerUncheckedUpdateWithoutEventTypeInput = {
1032
1151
  updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
1033
1152
  executions?: Prisma.EventHandlerExecutionUncheckedUpdateManyWithoutHandlerNestedInput;
1034
1153
  stepAttachments?: Prisma.StepEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
1154
+ phaseAttachments?: Prisma.PhaseEventAttachmentUncheckedUpdateManyWithoutHandlerNestedInput;
1035
1155
  };
1036
1156
  export type EventHandlerUncheckedUpdateManyWithoutEventTypeInput = {
1037
1157
  id?: Prisma.StringFieldUpdateOperationsInput | string;
@@ -1054,10 +1174,12 @@ export type EventHandlerUncheckedUpdateManyWithoutEventTypeInput = {
1054
1174
  export type EventHandlerCountOutputType = {
1055
1175
  executions: number;
1056
1176
  stepAttachments: number;
1177
+ phaseAttachments: number;
1057
1178
  };
1058
1179
  export type EventHandlerCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1059
1180
  executions?: boolean | EventHandlerCountOutputTypeCountExecutionsArgs;
1060
1181
  stepAttachments?: boolean | EventHandlerCountOutputTypeCountStepAttachmentsArgs;
1182
+ phaseAttachments?: boolean | EventHandlerCountOutputTypeCountPhaseAttachmentsArgs;
1061
1183
  };
1062
1184
  /**
1063
1185
  * EventHandlerCountOutputType without action
@@ -1080,6 +1202,12 @@ export type EventHandlerCountOutputTypeCountExecutionsArgs<ExtArgs extends runti
1080
1202
  export type EventHandlerCountOutputTypeCountStepAttachmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1081
1203
  where?: Prisma.StepEventAttachmentWhereInput;
1082
1204
  };
1205
+ /**
1206
+ * EventHandlerCountOutputType without action
1207
+ */
1208
+ export type EventHandlerCountOutputTypeCountPhaseAttachmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
1209
+ where?: Prisma.PhaseEventAttachmentWhereInput;
1210
+ };
1083
1211
  export type EventHandlerSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
1084
1212
  id?: boolean;
1085
1213
  tenantId?: boolean;
@@ -1099,6 +1227,7 @@ export type EventHandlerSelect<ExtArgs extends runtime.Types.Extensions.Internal
1099
1227
  eventType?: boolean | Prisma.EventTypeDefaultArgs<ExtArgs>;
1100
1228
  executions?: boolean | Prisma.EventHandler$executionsArgs<ExtArgs>;
1101
1229
  stepAttachments?: boolean | Prisma.EventHandler$stepAttachmentsArgs<ExtArgs>;
1230
+ phaseAttachments?: boolean | Prisma.EventHandler$phaseAttachmentsArgs<ExtArgs>;
1102
1231
  _count?: boolean | Prisma.EventHandlerCountOutputTypeDefaultArgs<ExtArgs>;
1103
1232
  }, ExtArgs["result"]["eventHandler"]>;
1104
1233
  export type EventHandlerSelectScalar = {
@@ -1123,6 +1252,7 @@ export type EventHandlerInclude<ExtArgs extends runtime.Types.Extensions.Interna
1123
1252
  eventType?: boolean | Prisma.EventTypeDefaultArgs<ExtArgs>;
1124
1253
  executions?: boolean | Prisma.EventHandler$executionsArgs<ExtArgs>;
1125
1254
  stepAttachments?: boolean | Prisma.EventHandler$stepAttachmentsArgs<ExtArgs>;
1255
+ phaseAttachments?: boolean | Prisma.EventHandler$phaseAttachmentsArgs<ExtArgs>;
1126
1256
  _count?: boolean | Prisma.EventHandlerCountOutputTypeDefaultArgs<ExtArgs>;
1127
1257
  };
1128
1258
  export type $EventHandlerPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
@@ -1138,6 +1268,10 @@ export type $EventHandlerPayload<ExtArgs extends runtime.Types.Extensions.Intern
1138
1268
  * Step attachments - steps that have attached this handler
1139
1269
  */
1140
1270
  stepAttachments: Prisma.$StepEventAttachmentPayload<ExtArgs>[];
1271
+ /**
1272
+ * Phase attachments - phases that have attached this handler
1273
+ */
1274
+ phaseAttachments: Prisma.$PhaseEventAttachmentPayload<ExtArgs>[];
1141
1275
  };
1142
1276
  scalars: runtime.Types.Extensions.GetPayloadResult<{
1143
1277
  id: string;
@@ -1467,6 +1601,7 @@ export interface Prisma__EventHandlerClient<T, Null = never, ExtArgs extends run
1467
1601
  eventType<T extends Prisma.EventTypeDefaultArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.EventTypeDefaultArgs<ExtArgs>>): Prisma.Prisma__EventTypeClient<runtime.Types.Result.GetResult<Prisma.$EventTypePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>;
1468
1602
  executions<T extends Prisma.EventHandler$executionsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.EventHandler$executionsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EventHandlerExecutionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1469
1603
  stepAttachments<T extends Prisma.EventHandler$stepAttachmentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.EventHandler$stepAttachmentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StepEventAttachmentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1604
+ phaseAttachments<T extends Prisma.EventHandler$phaseAttachmentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.EventHandler$phaseAttachmentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PhaseEventAttachmentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>;
1470
1605
  /**
1471
1606
  * Attaches callbacks for the resolution and/or rejection of the Promise.
1472
1607
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -1879,6 +2014,29 @@ export type EventHandler$stepAttachmentsArgs<ExtArgs extends runtime.Types.Exten
1879
2014
  skip?: number;
1880
2015
  distinct?: Prisma.StepEventAttachmentScalarFieldEnum | Prisma.StepEventAttachmentScalarFieldEnum[];
1881
2016
  };
2017
+ /**
2018
+ * EventHandler.phaseAttachments
2019
+ */
2020
+ export type EventHandler$phaseAttachmentsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
2021
+ /**
2022
+ * Select specific fields to fetch from the PhaseEventAttachment
2023
+ */
2024
+ select?: Prisma.PhaseEventAttachmentSelect<ExtArgs> | null;
2025
+ /**
2026
+ * Omit specific fields from the PhaseEventAttachment
2027
+ */
2028
+ omit?: Prisma.PhaseEventAttachmentOmit<ExtArgs> | null;
2029
+ /**
2030
+ * Choose, which related nodes to fetch as well
2031
+ */
2032
+ include?: Prisma.PhaseEventAttachmentInclude<ExtArgs> | null;
2033
+ where?: Prisma.PhaseEventAttachmentWhereInput;
2034
+ orderBy?: Prisma.PhaseEventAttachmentOrderByWithRelationInput | Prisma.PhaseEventAttachmentOrderByWithRelationInput[];
2035
+ cursor?: Prisma.PhaseEventAttachmentWhereUniqueInput;
2036
+ take?: number;
2037
+ skip?: number;
2038
+ distinct?: Prisma.PhaseEventAttachmentScalarFieldEnum | Prisma.PhaseEventAttachmentScalarFieldEnum[];
2039
+ };
1882
2040
  /**
1883
2041
  * EventHandler without action
1884
2042
  */