@allbluecn/database 0.4.16 → 0.4.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/lib/share-utils.d.ts +2 -0
- package/dist/lib/share-utils.js +17 -0
- package/generated/browser.ts +10 -0
- package/generated/client.ts +10 -0
- package/generated/internal/class.ts +24 -4
- package/generated/internal/prismaNamespace.ts +188 -3
- package/generated/internal/prismaNamespaceBrowser.ts +37 -2
- package/generated/models/Iteration.ts +1878 -0
- package/generated/models/IterationAutoSchedule.ts +1485 -0
- package/generated/models/Project.ts +326 -0
- package/generated/models/Story.ts +393 -3
- package/generated/models/User.ts +618 -0
- package/generated/models.ts +2 -0
- package/generated-sqlite/browser.ts +15 -0
- package/generated-sqlite/client.ts +15 -0
- package/generated-sqlite/internal/class.ts +34 -4
- package/generated-sqlite/internal/prismaNamespace.ts +288 -2
- package/generated-sqlite/internal/prismaNamespaceBrowser.ts +62 -1
- package/generated-sqlite/models/Iteration.ts +1874 -0
- package/generated-sqlite/models/IterationAutoSchedule.ts +1483 -0
- package/generated-sqlite/models/Project.ts +484 -0
- package/generated-sqlite/models/Story.ts +3263 -0
- package/generated-sqlite/models/User.ts +2103 -107
- package/generated-sqlite/models.ts +3 -0
- package/index.ts +2 -2
- package/migrations/20260831203925_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901020000_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901134601_iterations/migration.sql +52 -0
- package/migrations/20260902000000_story_identifier_per_project/migration.sql +37 -0
- package/migrations/20260902000100_story_identifier_counter_init/migration.sql +11 -0
- package/package.json +14 -5
- package/schema.prisma +47 -4
- package/schema.sqlite.prisma +89 -4
|
@@ -227,6 +227,8 @@ export type ProjectWhereInput = {
|
|
|
227
227
|
members?: Prisma.ProjectMemberListRelationFilter
|
|
228
228
|
activities?: Prisma.ProjectActivityListRelationFilter
|
|
229
229
|
stories?: Prisma.StoryListRelationFilter
|
|
230
|
+
iterations?: Prisma.IterationListRelationFilter
|
|
231
|
+
iterationAutoSchedule?: Prisma.XOR<Prisma.IterationAutoScheduleNullableScalarRelationFilter, Prisma.IterationAutoScheduleWhereInput> | null
|
|
230
232
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseListRelationFilter
|
|
231
233
|
}
|
|
232
234
|
|
|
@@ -246,6 +248,8 @@ export type ProjectOrderByWithRelationInput = {
|
|
|
246
248
|
members?: Prisma.ProjectMemberOrderByRelationAggregateInput
|
|
247
249
|
activities?: Prisma.ProjectActivityOrderByRelationAggregateInput
|
|
248
250
|
stories?: Prisma.StoryOrderByRelationAggregateInput
|
|
251
|
+
iterations?: Prisma.IterationOrderByRelationAggregateInput
|
|
252
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleOrderByWithRelationInput
|
|
249
253
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseOrderByRelationAggregateInput
|
|
250
254
|
}
|
|
251
255
|
|
|
@@ -269,6 +273,8 @@ export type ProjectWhereUniqueInput = Prisma.AtLeast<{
|
|
|
269
273
|
members?: Prisma.ProjectMemberListRelationFilter
|
|
270
274
|
activities?: Prisma.ProjectActivityListRelationFilter
|
|
271
275
|
stories?: Prisma.StoryListRelationFilter
|
|
276
|
+
iterations?: Prisma.IterationListRelationFilter
|
|
277
|
+
iterationAutoSchedule?: Prisma.XOR<Prisma.IterationAutoScheduleNullableScalarRelationFilter, Prisma.IterationAutoScheduleWhereInput> | null
|
|
272
278
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseListRelationFilter
|
|
273
279
|
}, "id" | "ownerId_displayId">
|
|
274
280
|
|
|
@@ -318,6 +324,8 @@ export type ProjectCreateInput = {
|
|
|
318
324
|
members?: Prisma.ProjectMemberCreateNestedManyWithoutProjectInput
|
|
319
325
|
activities?: Prisma.ProjectActivityCreateNestedManyWithoutProjectInput
|
|
320
326
|
stories?: Prisma.StoryCreateNestedManyWithoutProjectInput
|
|
327
|
+
iterations?: Prisma.IterationCreateNestedManyWithoutProjectInput
|
|
328
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleCreateNestedOneWithoutProjectInput
|
|
321
329
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput
|
|
322
330
|
}
|
|
323
331
|
|
|
@@ -335,6 +343,8 @@ export type ProjectUncheckedCreateInput = {
|
|
|
335
343
|
members?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutProjectInput
|
|
336
344
|
activities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutProjectInput
|
|
337
345
|
stories?: Prisma.StoryUncheckedCreateNestedManyWithoutProjectInput
|
|
346
|
+
iterations?: Prisma.IterationUncheckedCreateNestedManyWithoutProjectInput
|
|
347
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedCreateNestedOneWithoutProjectInput
|
|
338
348
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput
|
|
339
349
|
}
|
|
340
350
|
|
|
@@ -352,6 +362,8 @@ export type ProjectUpdateInput = {
|
|
|
352
362
|
members?: Prisma.ProjectMemberUpdateManyWithoutProjectNestedInput
|
|
353
363
|
activities?: Prisma.ProjectActivityUpdateManyWithoutProjectNestedInput
|
|
354
364
|
stories?: Prisma.StoryUpdateManyWithoutProjectNestedInput
|
|
365
|
+
iterations?: Prisma.IterationUpdateManyWithoutProjectNestedInput
|
|
366
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUpdateOneWithoutProjectNestedInput
|
|
355
367
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput
|
|
356
368
|
}
|
|
357
369
|
|
|
@@ -369,6 +381,8 @@ export type ProjectUncheckedUpdateInput = {
|
|
|
369
381
|
members?: Prisma.ProjectMemberUncheckedUpdateManyWithoutProjectNestedInput
|
|
370
382
|
activities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutProjectNestedInput
|
|
371
383
|
stories?: Prisma.StoryUncheckedUpdateManyWithoutProjectNestedInput
|
|
384
|
+
iterations?: Prisma.IterationUncheckedUpdateManyWithoutProjectNestedInput
|
|
385
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedUpdateOneWithoutProjectNestedInput
|
|
372
386
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput
|
|
373
387
|
}
|
|
374
388
|
|
|
@@ -608,6 +622,34 @@ export type ProjectUpdateOneRequiredWithoutKnowledgeBasesNestedInput = {
|
|
|
608
622
|
update?: Prisma.XOR<Prisma.XOR<Prisma.ProjectUpdateToOneWithWhereWithoutKnowledgeBasesInput, Prisma.ProjectUpdateWithoutKnowledgeBasesInput>, Prisma.ProjectUncheckedUpdateWithoutKnowledgeBasesInput>
|
|
609
623
|
}
|
|
610
624
|
|
|
625
|
+
export type ProjectCreateNestedOneWithoutIterationsInput = {
|
|
626
|
+
create?: Prisma.XOR<Prisma.ProjectCreateWithoutIterationsInput, Prisma.ProjectUncheckedCreateWithoutIterationsInput>
|
|
627
|
+
connectOrCreate?: Prisma.ProjectCreateOrConnectWithoutIterationsInput
|
|
628
|
+
connect?: Prisma.ProjectWhereUniqueInput
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
export type ProjectUpdateOneRequiredWithoutIterationsNestedInput = {
|
|
632
|
+
create?: Prisma.XOR<Prisma.ProjectCreateWithoutIterationsInput, Prisma.ProjectUncheckedCreateWithoutIterationsInput>
|
|
633
|
+
connectOrCreate?: Prisma.ProjectCreateOrConnectWithoutIterationsInput
|
|
634
|
+
upsert?: Prisma.ProjectUpsertWithoutIterationsInput
|
|
635
|
+
connect?: Prisma.ProjectWhereUniqueInput
|
|
636
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.ProjectUpdateToOneWithWhereWithoutIterationsInput, Prisma.ProjectUpdateWithoutIterationsInput>, Prisma.ProjectUncheckedUpdateWithoutIterationsInput>
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
export type ProjectCreateNestedOneWithoutIterationAutoScheduleInput = {
|
|
640
|
+
create?: Prisma.XOR<Prisma.ProjectCreateWithoutIterationAutoScheduleInput, Prisma.ProjectUncheckedCreateWithoutIterationAutoScheduleInput>
|
|
641
|
+
connectOrCreate?: Prisma.ProjectCreateOrConnectWithoutIterationAutoScheduleInput
|
|
642
|
+
connect?: Prisma.ProjectWhereUniqueInput
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
export type ProjectUpdateOneRequiredWithoutIterationAutoScheduleNestedInput = {
|
|
646
|
+
create?: Prisma.XOR<Prisma.ProjectCreateWithoutIterationAutoScheduleInput, Prisma.ProjectUncheckedCreateWithoutIterationAutoScheduleInput>
|
|
647
|
+
connectOrCreate?: Prisma.ProjectCreateOrConnectWithoutIterationAutoScheduleInput
|
|
648
|
+
upsert?: Prisma.ProjectUpsertWithoutIterationAutoScheduleInput
|
|
649
|
+
connect?: Prisma.ProjectWhereUniqueInput
|
|
650
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.ProjectUpdateToOneWithWhereWithoutIterationAutoScheduleInput, Prisma.ProjectUpdateWithoutIterationAutoScheduleInput>, Prisma.ProjectUncheckedUpdateWithoutIterationAutoScheduleInput>
|
|
651
|
+
}
|
|
652
|
+
|
|
611
653
|
export type ProjectCreateWithoutOwnerInput = {
|
|
612
654
|
id?: string
|
|
613
655
|
displayId?: string | null
|
|
@@ -621,6 +663,8 @@ export type ProjectCreateWithoutOwnerInput = {
|
|
|
621
663
|
members?: Prisma.ProjectMemberCreateNestedManyWithoutProjectInput
|
|
622
664
|
activities?: Prisma.ProjectActivityCreateNestedManyWithoutProjectInput
|
|
623
665
|
stories?: Prisma.StoryCreateNestedManyWithoutProjectInput
|
|
666
|
+
iterations?: Prisma.IterationCreateNestedManyWithoutProjectInput
|
|
667
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleCreateNestedOneWithoutProjectInput
|
|
624
668
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput
|
|
625
669
|
}
|
|
626
670
|
|
|
@@ -637,6 +681,8 @@ export type ProjectUncheckedCreateWithoutOwnerInput = {
|
|
|
637
681
|
members?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutProjectInput
|
|
638
682
|
activities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutProjectInput
|
|
639
683
|
stories?: Prisma.StoryUncheckedCreateNestedManyWithoutProjectInput
|
|
684
|
+
iterations?: Prisma.IterationUncheckedCreateNestedManyWithoutProjectInput
|
|
685
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedCreateNestedOneWithoutProjectInput
|
|
640
686
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput
|
|
641
687
|
}
|
|
642
688
|
|
|
@@ -695,6 +741,8 @@ export type ProjectCreateWithoutMembersInput = {
|
|
|
695
741
|
workspace?: Prisma.WorkspaceCreateNestedOneWithoutProjectsInput
|
|
696
742
|
activities?: Prisma.ProjectActivityCreateNestedManyWithoutProjectInput
|
|
697
743
|
stories?: Prisma.StoryCreateNestedManyWithoutProjectInput
|
|
744
|
+
iterations?: Prisma.IterationCreateNestedManyWithoutProjectInput
|
|
745
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleCreateNestedOneWithoutProjectInput
|
|
698
746
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput
|
|
699
747
|
}
|
|
700
748
|
|
|
@@ -711,6 +759,8 @@ export type ProjectUncheckedCreateWithoutMembersInput = {
|
|
|
711
759
|
updatedAt?: Date | string
|
|
712
760
|
activities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutProjectInput
|
|
713
761
|
stories?: Prisma.StoryUncheckedCreateNestedManyWithoutProjectInput
|
|
762
|
+
iterations?: Prisma.IterationUncheckedCreateNestedManyWithoutProjectInput
|
|
763
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedCreateNestedOneWithoutProjectInput
|
|
714
764
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput
|
|
715
765
|
}
|
|
716
766
|
|
|
@@ -743,6 +793,8 @@ export type ProjectUpdateWithoutMembersInput = {
|
|
|
743
793
|
workspace?: Prisma.WorkspaceUpdateOneWithoutProjectsNestedInput
|
|
744
794
|
activities?: Prisma.ProjectActivityUpdateManyWithoutProjectNestedInput
|
|
745
795
|
stories?: Prisma.StoryUpdateManyWithoutProjectNestedInput
|
|
796
|
+
iterations?: Prisma.IterationUpdateManyWithoutProjectNestedInput
|
|
797
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUpdateOneWithoutProjectNestedInput
|
|
746
798
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput
|
|
747
799
|
}
|
|
748
800
|
|
|
@@ -759,6 +811,8 @@ export type ProjectUncheckedUpdateWithoutMembersInput = {
|
|
|
759
811
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
760
812
|
activities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutProjectNestedInput
|
|
761
813
|
stories?: Prisma.StoryUncheckedUpdateManyWithoutProjectNestedInput
|
|
814
|
+
iterations?: Prisma.IterationUncheckedUpdateManyWithoutProjectNestedInput
|
|
815
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedUpdateOneWithoutProjectNestedInput
|
|
762
816
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput
|
|
763
817
|
}
|
|
764
818
|
|
|
@@ -775,6 +829,8 @@ export type ProjectCreateWithoutWorkspaceInput = {
|
|
|
775
829
|
members?: Prisma.ProjectMemberCreateNestedManyWithoutProjectInput
|
|
776
830
|
activities?: Prisma.ProjectActivityCreateNestedManyWithoutProjectInput
|
|
777
831
|
stories?: Prisma.StoryCreateNestedManyWithoutProjectInput
|
|
832
|
+
iterations?: Prisma.IterationCreateNestedManyWithoutProjectInput
|
|
833
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleCreateNestedOneWithoutProjectInput
|
|
778
834
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput
|
|
779
835
|
}
|
|
780
836
|
|
|
@@ -791,6 +847,8 @@ export type ProjectUncheckedCreateWithoutWorkspaceInput = {
|
|
|
791
847
|
members?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutProjectInput
|
|
792
848
|
activities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutProjectInput
|
|
793
849
|
stories?: Prisma.StoryUncheckedCreateNestedManyWithoutProjectInput
|
|
850
|
+
iterations?: Prisma.IterationUncheckedCreateNestedManyWithoutProjectInput
|
|
851
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedCreateNestedOneWithoutProjectInput
|
|
794
852
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput
|
|
795
853
|
}
|
|
796
854
|
|
|
@@ -833,6 +891,8 @@ export type ProjectCreateWithoutActivitiesInput = {
|
|
|
833
891
|
workspace?: Prisma.WorkspaceCreateNestedOneWithoutProjectsInput
|
|
834
892
|
members?: Prisma.ProjectMemberCreateNestedManyWithoutProjectInput
|
|
835
893
|
stories?: Prisma.StoryCreateNestedManyWithoutProjectInput
|
|
894
|
+
iterations?: Prisma.IterationCreateNestedManyWithoutProjectInput
|
|
895
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleCreateNestedOneWithoutProjectInput
|
|
836
896
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput
|
|
837
897
|
}
|
|
838
898
|
|
|
@@ -849,6 +909,8 @@ export type ProjectUncheckedCreateWithoutActivitiesInput = {
|
|
|
849
909
|
updatedAt?: Date | string
|
|
850
910
|
members?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutProjectInput
|
|
851
911
|
stories?: Prisma.StoryUncheckedCreateNestedManyWithoutProjectInput
|
|
912
|
+
iterations?: Prisma.IterationUncheckedCreateNestedManyWithoutProjectInput
|
|
913
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedCreateNestedOneWithoutProjectInput
|
|
852
914
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput
|
|
853
915
|
}
|
|
854
916
|
|
|
@@ -881,6 +943,8 @@ export type ProjectUpdateWithoutActivitiesInput = {
|
|
|
881
943
|
workspace?: Prisma.WorkspaceUpdateOneWithoutProjectsNestedInput
|
|
882
944
|
members?: Prisma.ProjectMemberUpdateManyWithoutProjectNestedInput
|
|
883
945
|
stories?: Prisma.StoryUpdateManyWithoutProjectNestedInput
|
|
946
|
+
iterations?: Prisma.IterationUpdateManyWithoutProjectNestedInput
|
|
947
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUpdateOneWithoutProjectNestedInput
|
|
884
948
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput
|
|
885
949
|
}
|
|
886
950
|
|
|
@@ -897,6 +961,8 @@ export type ProjectUncheckedUpdateWithoutActivitiesInput = {
|
|
|
897
961
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
898
962
|
members?: Prisma.ProjectMemberUncheckedUpdateManyWithoutProjectNestedInput
|
|
899
963
|
stories?: Prisma.StoryUncheckedUpdateManyWithoutProjectNestedInput
|
|
964
|
+
iterations?: Prisma.IterationUncheckedUpdateManyWithoutProjectNestedInput
|
|
965
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedUpdateOneWithoutProjectNestedInput
|
|
900
966
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput
|
|
901
967
|
}
|
|
902
968
|
|
|
@@ -913,6 +979,8 @@ export type ProjectCreateWithoutStoriesInput = {
|
|
|
913
979
|
workspace?: Prisma.WorkspaceCreateNestedOneWithoutProjectsInput
|
|
914
980
|
members?: Prisma.ProjectMemberCreateNestedManyWithoutProjectInput
|
|
915
981
|
activities?: Prisma.ProjectActivityCreateNestedManyWithoutProjectInput
|
|
982
|
+
iterations?: Prisma.IterationCreateNestedManyWithoutProjectInput
|
|
983
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleCreateNestedOneWithoutProjectInput
|
|
916
984
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput
|
|
917
985
|
}
|
|
918
986
|
|
|
@@ -929,6 +997,8 @@ export type ProjectUncheckedCreateWithoutStoriesInput = {
|
|
|
929
997
|
updatedAt?: Date | string
|
|
930
998
|
members?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutProjectInput
|
|
931
999
|
activities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutProjectInput
|
|
1000
|
+
iterations?: Prisma.IterationUncheckedCreateNestedManyWithoutProjectInput
|
|
1001
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedCreateNestedOneWithoutProjectInput
|
|
932
1002
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput
|
|
933
1003
|
}
|
|
934
1004
|
|
|
@@ -961,6 +1031,8 @@ export type ProjectUpdateWithoutStoriesInput = {
|
|
|
961
1031
|
workspace?: Prisma.WorkspaceUpdateOneWithoutProjectsNestedInput
|
|
962
1032
|
members?: Prisma.ProjectMemberUpdateManyWithoutProjectNestedInput
|
|
963
1033
|
activities?: Prisma.ProjectActivityUpdateManyWithoutProjectNestedInput
|
|
1034
|
+
iterations?: Prisma.IterationUpdateManyWithoutProjectNestedInput
|
|
1035
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUpdateOneWithoutProjectNestedInput
|
|
964
1036
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput
|
|
965
1037
|
}
|
|
966
1038
|
|
|
@@ -977,6 +1049,8 @@ export type ProjectUncheckedUpdateWithoutStoriesInput = {
|
|
|
977
1049
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
978
1050
|
members?: Prisma.ProjectMemberUncheckedUpdateManyWithoutProjectNestedInput
|
|
979
1051
|
activities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutProjectNestedInput
|
|
1052
|
+
iterations?: Prisma.IterationUncheckedUpdateManyWithoutProjectNestedInput
|
|
1053
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedUpdateOneWithoutProjectNestedInput
|
|
980
1054
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput
|
|
981
1055
|
}
|
|
982
1056
|
|
|
@@ -994,6 +1068,8 @@ export type ProjectCreateWithoutKnowledgeBasesInput = {
|
|
|
994
1068
|
members?: Prisma.ProjectMemberCreateNestedManyWithoutProjectInput
|
|
995
1069
|
activities?: Prisma.ProjectActivityCreateNestedManyWithoutProjectInput
|
|
996
1070
|
stories?: Prisma.StoryCreateNestedManyWithoutProjectInput
|
|
1071
|
+
iterations?: Prisma.IterationCreateNestedManyWithoutProjectInput
|
|
1072
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleCreateNestedOneWithoutProjectInput
|
|
997
1073
|
}
|
|
998
1074
|
|
|
999
1075
|
export type ProjectUncheckedCreateWithoutKnowledgeBasesInput = {
|
|
@@ -1010,6 +1086,8 @@ export type ProjectUncheckedCreateWithoutKnowledgeBasesInput = {
|
|
|
1010
1086
|
members?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutProjectInput
|
|
1011
1087
|
activities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutProjectInput
|
|
1012
1088
|
stories?: Prisma.StoryUncheckedCreateNestedManyWithoutProjectInput
|
|
1089
|
+
iterations?: Prisma.IterationUncheckedCreateNestedManyWithoutProjectInput
|
|
1090
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedCreateNestedOneWithoutProjectInput
|
|
1013
1091
|
}
|
|
1014
1092
|
|
|
1015
1093
|
export type ProjectCreateOrConnectWithoutKnowledgeBasesInput = {
|
|
@@ -1042,6 +1120,8 @@ export type ProjectUpdateWithoutKnowledgeBasesInput = {
|
|
|
1042
1120
|
members?: Prisma.ProjectMemberUpdateManyWithoutProjectNestedInput
|
|
1043
1121
|
activities?: Prisma.ProjectActivityUpdateManyWithoutProjectNestedInput
|
|
1044
1122
|
stories?: Prisma.StoryUpdateManyWithoutProjectNestedInput
|
|
1123
|
+
iterations?: Prisma.IterationUpdateManyWithoutProjectNestedInput
|
|
1124
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUpdateOneWithoutProjectNestedInput
|
|
1045
1125
|
}
|
|
1046
1126
|
|
|
1047
1127
|
export type ProjectUncheckedUpdateWithoutKnowledgeBasesInput = {
|
|
@@ -1058,6 +1138,184 @@ export type ProjectUncheckedUpdateWithoutKnowledgeBasesInput = {
|
|
|
1058
1138
|
members?: Prisma.ProjectMemberUncheckedUpdateManyWithoutProjectNestedInput
|
|
1059
1139
|
activities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutProjectNestedInput
|
|
1060
1140
|
stories?: Prisma.StoryUncheckedUpdateManyWithoutProjectNestedInput
|
|
1141
|
+
iterations?: Prisma.IterationUncheckedUpdateManyWithoutProjectNestedInput
|
|
1142
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedUpdateOneWithoutProjectNestedInput
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
export type ProjectCreateWithoutIterationsInput = {
|
|
1146
|
+
id?: string
|
|
1147
|
+
displayId?: string | null
|
|
1148
|
+
name: string
|
|
1149
|
+
description?: string | null
|
|
1150
|
+
icon?: string
|
|
1151
|
+
timezone?: string | null
|
|
1152
|
+
createdAt?: Date | string
|
|
1153
|
+
updatedAt?: Date | string
|
|
1154
|
+
owner: Prisma.UserCreateNestedOneWithoutOwnedProjectsInput
|
|
1155
|
+
workspace?: Prisma.WorkspaceCreateNestedOneWithoutProjectsInput
|
|
1156
|
+
members?: Prisma.ProjectMemberCreateNestedManyWithoutProjectInput
|
|
1157
|
+
activities?: Prisma.ProjectActivityCreateNestedManyWithoutProjectInput
|
|
1158
|
+
stories?: Prisma.StoryCreateNestedManyWithoutProjectInput
|
|
1159
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleCreateNestedOneWithoutProjectInput
|
|
1160
|
+
knowledgeBases?: Prisma.ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
export type ProjectUncheckedCreateWithoutIterationsInput = {
|
|
1164
|
+
id?: string
|
|
1165
|
+
displayId?: string | null
|
|
1166
|
+
name: string
|
|
1167
|
+
description?: string | null
|
|
1168
|
+
icon?: string
|
|
1169
|
+
timezone?: string | null
|
|
1170
|
+
ownerId: string
|
|
1171
|
+
workspaceId?: string | null
|
|
1172
|
+
createdAt?: Date | string
|
|
1173
|
+
updatedAt?: Date | string
|
|
1174
|
+
members?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutProjectInput
|
|
1175
|
+
activities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutProjectInput
|
|
1176
|
+
stories?: Prisma.StoryUncheckedCreateNestedManyWithoutProjectInput
|
|
1177
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedCreateNestedOneWithoutProjectInput
|
|
1178
|
+
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
export type ProjectCreateOrConnectWithoutIterationsInput = {
|
|
1182
|
+
where: Prisma.ProjectWhereUniqueInput
|
|
1183
|
+
create: Prisma.XOR<Prisma.ProjectCreateWithoutIterationsInput, Prisma.ProjectUncheckedCreateWithoutIterationsInput>
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
export type ProjectUpsertWithoutIterationsInput = {
|
|
1187
|
+
update: Prisma.XOR<Prisma.ProjectUpdateWithoutIterationsInput, Prisma.ProjectUncheckedUpdateWithoutIterationsInput>
|
|
1188
|
+
create: Prisma.XOR<Prisma.ProjectCreateWithoutIterationsInput, Prisma.ProjectUncheckedCreateWithoutIterationsInput>
|
|
1189
|
+
where?: Prisma.ProjectWhereInput
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
export type ProjectUpdateToOneWithWhereWithoutIterationsInput = {
|
|
1193
|
+
where?: Prisma.ProjectWhereInput
|
|
1194
|
+
data: Prisma.XOR<Prisma.ProjectUpdateWithoutIterationsInput, Prisma.ProjectUncheckedUpdateWithoutIterationsInput>
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
export type ProjectUpdateWithoutIterationsInput = {
|
|
1198
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1199
|
+
displayId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1200
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1201
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1202
|
+
icon?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1203
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1204
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1205
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1206
|
+
owner?: Prisma.UserUpdateOneRequiredWithoutOwnedProjectsNestedInput
|
|
1207
|
+
workspace?: Prisma.WorkspaceUpdateOneWithoutProjectsNestedInput
|
|
1208
|
+
members?: Prisma.ProjectMemberUpdateManyWithoutProjectNestedInput
|
|
1209
|
+
activities?: Prisma.ProjectActivityUpdateManyWithoutProjectNestedInput
|
|
1210
|
+
stories?: Prisma.StoryUpdateManyWithoutProjectNestedInput
|
|
1211
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUpdateOneWithoutProjectNestedInput
|
|
1212
|
+
knowledgeBases?: Prisma.ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
export type ProjectUncheckedUpdateWithoutIterationsInput = {
|
|
1216
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1217
|
+
displayId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1218
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1219
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1220
|
+
icon?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1221
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1222
|
+
ownerId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1223
|
+
workspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1224
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1225
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1226
|
+
members?: Prisma.ProjectMemberUncheckedUpdateManyWithoutProjectNestedInput
|
|
1227
|
+
activities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutProjectNestedInput
|
|
1228
|
+
stories?: Prisma.StoryUncheckedUpdateManyWithoutProjectNestedInput
|
|
1229
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedUpdateOneWithoutProjectNestedInput
|
|
1230
|
+
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
export type ProjectCreateWithoutIterationAutoScheduleInput = {
|
|
1234
|
+
id?: string
|
|
1235
|
+
displayId?: string | null
|
|
1236
|
+
name: string
|
|
1237
|
+
description?: string | null
|
|
1238
|
+
icon?: string
|
|
1239
|
+
timezone?: string | null
|
|
1240
|
+
createdAt?: Date | string
|
|
1241
|
+
updatedAt?: Date | string
|
|
1242
|
+
owner: Prisma.UserCreateNestedOneWithoutOwnedProjectsInput
|
|
1243
|
+
workspace?: Prisma.WorkspaceCreateNestedOneWithoutProjectsInput
|
|
1244
|
+
members?: Prisma.ProjectMemberCreateNestedManyWithoutProjectInput
|
|
1245
|
+
activities?: Prisma.ProjectActivityCreateNestedManyWithoutProjectInput
|
|
1246
|
+
stories?: Prisma.StoryCreateNestedManyWithoutProjectInput
|
|
1247
|
+
iterations?: Prisma.IterationCreateNestedManyWithoutProjectInput
|
|
1248
|
+
knowledgeBases?: Prisma.ProjectKnowledgeBaseCreateNestedManyWithoutProjectInput
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1251
|
+
export type ProjectUncheckedCreateWithoutIterationAutoScheduleInput = {
|
|
1252
|
+
id?: string
|
|
1253
|
+
displayId?: string | null
|
|
1254
|
+
name: string
|
|
1255
|
+
description?: string | null
|
|
1256
|
+
icon?: string
|
|
1257
|
+
timezone?: string | null
|
|
1258
|
+
ownerId: string
|
|
1259
|
+
workspaceId?: string | null
|
|
1260
|
+
createdAt?: Date | string
|
|
1261
|
+
updatedAt?: Date | string
|
|
1262
|
+
members?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutProjectInput
|
|
1263
|
+
activities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutProjectInput
|
|
1264
|
+
stories?: Prisma.StoryUncheckedCreateNestedManyWithoutProjectInput
|
|
1265
|
+
iterations?: Prisma.IterationUncheckedCreateNestedManyWithoutProjectInput
|
|
1266
|
+
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedCreateNestedManyWithoutProjectInput
|
|
1267
|
+
}
|
|
1268
|
+
|
|
1269
|
+
export type ProjectCreateOrConnectWithoutIterationAutoScheduleInput = {
|
|
1270
|
+
where: Prisma.ProjectWhereUniqueInput
|
|
1271
|
+
create: Prisma.XOR<Prisma.ProjectCreateWithoutIterationAutoScheduleInput, Prisma.ProjectUncheckedCreateWithoutIterationAutoScheduleInput>
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1274
|
+
export type ProjectUpsertWithoutIterationAutoScheduleInput = {
|
|
1275
|
+
update: Prisma.XOR<Prisma.ProjectUpdateWithoutIterationAutoScheduleInput, Prisma.ProjectUncheckedUpdateWithoutIterationAutoScheduleInput>
|
|
1276
|
+
create: Prisma.XOR<Prisma.ProjectCreateWithoutIterationAutoScheduleInput, Prisma.ProjectUncheckedCreateWithoutIterationAutoScheduleInput>
|
|
1277
|
+
where?: Prisma.ProjectWhereInput
|
|
1278
|
+
}
|
|
1279
|
+
|
|
1280
|
+
export type ProjectUpdateToOneWithWhereWithoutIterationAutoScheduleInput = {
|
|
1281
|
+
where?: Prisma.ProjectWhereInput
|
|
1282
|
+
data: Prisma.XOR<Prisma.ProjectUpdateWithoutIterationAutoScheduleInput, Prisma.ProjectUncheckedUpdateWithoutIterationAutoScheduleInput>
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
export type ProjectUpdateWithoutIterationAutoScheduleInput = {
|
|
1286
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1287
|
+
displayId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1288
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1289
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1290
|
+
icon?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1291
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1292
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1293
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1294
|
+
owner?: Prisma.UserUpdateOneRequiredWithoutOwnedProjectsNestedInput
|
|
1295
|
+
workspace?: Prisma.WorkspaceUpdateOneWithoutProjectsNestedInput
|
|
1296
|
+
members?: Prisma.ProjectMemberUpdateManyWithoutProjectNestedInput
|
|
1297
|
+
activities?: Prisma.ProjectActivityUpdateManyWithoutProjectNestedInput
|
|
1298
|
+
stories?: Prisma.StoryUpdateManyWithoutProjectNestedInput
|
|
1299
|
+
iterations?: Prisma.IterationUpdateManyWithoutProjectNestedInput
|
|
1300
|
+
knowledgeBases?: Prisma.ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
export type ProjectUncheckedUpdateWithoutIterationAutoScheduleInput = {
|
|
1304
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1305
|
+
displayId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1306
|
+
name?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1307
|
+
description?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1308
|
+
icon?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1309
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1310
|
+
ownerId?: Prisma.StringFieldUpdateOperationsInput | string
|
|
1311
|
+
workspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1312
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1313
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
1314
|
+
members?: Prisma.ProjectMemberUncheckedUpdateManyWithoutProjectNestedInput
|
|
1315
|
+
activities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutProjectNestedInput
|
|
1316
|
+
stories?: Prisma.StoryUncheckedUpdateManyWithoutProjectNestedInput
|
|
1317
|
+
iterations?: Prisma.IterationUncheckedUpdateManyWithoutProjectNestedInput
|
|
1318
|
+
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput
|
|
1061
1319
|
}
|
|
1062
1320
|
|
|
1063
1321
|
export type ProjectCreateManyOwnerInput = {
|
|
@@ -1085,6 +1343,8 @@ export type ProjectUpdateWithoutOwnerInput = {
|
|
|
1085
1343
|
members?: Prisma.ProjectMemberUpdateManyWithoutProjectNestedInput
|
|
1086
1344
|
activities?: Prisma.ProjectActivityUpdateManyWithoutProjectNestedInput
|
|
1087
1345
|
stories?: Prisma.StoryUpdateManyWithoutProjectNestedInput
|
|
1346
|
+
iterations?: Prisma.IterationUpdateManyWithoutProjectNestedInput
|
|
1347
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUpdateOneWithoutProjectNestedInput
|
|
1088
1348
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput
|
|
1089
1349
|
}
|
|
1090
1350
|
|
|
@@ -1101,6 +1361,8 @@ export type ProjectUncheckedUpdateWithoutOwnerInput = {
|
|
|
1101
1361
|
members?: Prisma.ProjectMemberUncheckedUpdateManyWithoutProjectNestedInput
|
|
1102
1362
|
activities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutProjectNestedInput
|
|
1103
1363
|
stories?: Prisma.StoryUncheckedUpdateManyWithoutProjectNestedInput
|
|
1364
|
+
iterations?: Prisma.IterationUncheckedUpdateManyWithoutProjectNestedInput
|
|
1365
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedUpdateOneWithoutProjectNestedInput
|
|
1104
1366
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput
|
|
1105
1367
|
}
|
|
1106
1368
|
|
|
@@ -1141,6 +1403,8 @@ export type ProjectUpdateWithoutWorkspaceInput = {
|
|
|
1141
1403
|
members?: Prisma.ProjectMemberUpdateManyWithoutProjectNestedInput
|
|
1142
1404
|
activities?: Prisma.ProjectActivityUpdateManyWithoutProjectNestedInput
|
|
1143
1405
|
stories?: Prisma.StoryUpdateManyWithoutProjectNestedInput
|
|
1406
|
+
iterations?: Prisma.IterationUpdateManyWithoutProjectNestedInput
|
|
1407
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUpdateOneWithoutProjectNestedInput
|
|
1144
1408
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUpdateManyWithoutProjectNestedInput
|
|
1145
1409
|
}
|
|
1146
1410
|
|
|
@@ -1157,6 +1421,8 @@ export type ProjectUncheckedUpdateWithoutWorkspaceInput = {
|
|
|
1157
1421
|
members?: Prisma.ProjectMemberUncheckedUpdateManyWithoutProjectNestedInput
|
|
1158
1422
|
activities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutProjectNestedInput
|
|
1159
1423
|
stories?: Prisma.StoryUncheckedUpdateManyWithoutProjectNestedInput
|
|
1424
|
+
iterations?: Prisma.IterationUncheckedUpdateManyWithoutProjectNestedInput
|
|
1425
|
+
iterationAutoSchedule?: Prisma.IterationAutoScheduleUncheckedUpdateOneWithoutProjectNestedInput
|
|
1160
1426
|
knowledgeBases?: Prisma.ProjectKnowledgeBaseUncheckedUpdateManyWithoutProjectNestedInput
|
|
1161
1427
|
}
|
|
1162
1428
|
|
|
@@ -1181,6 +1447,7 @@ export type ProjectCountOutputType = {
|
|
|
1181
1447
|
members: number
|
|
1182
1448
|
activities: number
|
|
1183
1449
|
stories: number
|
|
1450
|
+
iterations: number
|
|
1184
1451
|
knowledgeBases: number
|
|
1185
1452
|
}
|
|
1186
1453
|
|
|
@@ -1188,6 +1455,7 @@ export type ProjectCountOutputTypeSelect<ExtArgs extends runtime.Types.Extension
|
|
|
1188
1455
|
members?: boolean | ProjectCountOutputTypeCountMembersArgs
|
|
1189
1456
|
activities?: boolean | ProjectCountOutputTypeCountActivitiesArgs
|
|
1190
1457
|
stories?: boolean | ProjectCountOutputTypeCountStoriesArgs
|
|
1458
|
+
iterations?: boolean | ProjectCountOutputTypeCountIterationsArgs
|
|
1191
1459
|
knowledgeBases?: boolean | ProjectCountOutputTypeCountKnowledgeBasesArgs
|
|
1192
1460
|
}
|
|
1193
1461
|
|
|
@@ -1222,6 +1490,13 @@ export type ProjectCountOutputTypeCountStoriesArgs<ExtArgs extends runtime.Types
|
|
|
1222
1490
|
where?: Prisma.StoryWhereInput
|
|
1223
1491
|
}
|
|
1224
1492
|
|
|
1493
|
+
/**
|
|
1494
|
+
* ProjectCountOutputType without action
|
|
1495
|
+
*/
|
|
1496
|
+
export type ProjectCountOutputTypeCountIterationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1497
|
+
where?: Prisma.IterationWhereInput
|
|
1498
|
+
}
|
|
1499
|
+
|
|
1225
1500
|
/**
|
|
1226
1501
|
* ProjectCountOutputType without action
|
|
1227
1502
|
*/
|
|
@@ -1246,6 +1521,8 @@ export type ProjectSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
1246
1521
|
members?: boolean | Prisma.Project$membersArgs<ExtArgs>
|
|
1247
1522
|
activities?: boolean | Prisma.Project$activitiesArgs<ExtArgs>
|
|
1248
1523
|
stories?: boolean | Prisma.Project$storiesArgs<ExtArgs>
|
|
1524
|
+
iterations?: boolean | Prisma.Project$iterationsArgs<ExtArgs>
|
|
1525
|
+
iterationAutoSchedule?: boolean | Prisma.Project$iterationAutoScheduleArgs<ExtArgs>
|
|
1249
1526
|
knowledgeBases?: boolean | Prisma.Project$knowledgeBasesArgs<ExtArgs>
|
|
1250
1527
|
_count?: boolean | Prisma.ProjectCountOutputTypeDefaultArgs<ExtArgs>
|
|
1251
1528
|
}, ExtArgs["result"]["project"]>
|
|
@@ -1300,6 +1577,8 @@ export type ProjectInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs
|
|
|
1300
1577
|
members?: boolean | Prisma.Project$membersArgs<ExtArgs>
|
|
1301
1578
|
activities?: boolean | Prisma.Project$activitiesArgs<ExtArgs>
|
|
1302
1579
|
stories?: boolean | Prisma.Project$storiesArgs<ExtArgs>
|
|
1580
|
+
iterations?: boolean | Prisma.Project$iterationsArgs<ExtArgs>
|
|
1581
|
+
iterationAutoSchedule?: boolean | Prisma.Project$iterationAutoScheduleArgs<ExtArgs>
|
|
1303
1582
|
knowledgeBases?: boolean | Prisma.Project$knowledgeBasesArgs<ExtArgs>
|
|
1304
1583
|
_count?: boolean | Prisma.ProjectCountOutputTypeDefaultArgs<ExtArgs>
|
|
1305
1584
|
}
|
|
@@ -1320,6 +1599,8 @@ export type $ProjectPayload<ExtArgs extends runtime.Types.Extensions.InternalArg
|
|
|
1320
1599
|
members: Prisma.$ProjectMemberPayload<ExtArgs>[]
|
|
1321
1600
|
activities: Prisma.$ProjectActivityPayload<ExtArgs>[]
|
|
1322
1601
|
stories: Prisma.$StoryPayload<ExtArgs>[]
|
|
1602
|
+
iterations: Prisma.$IterationPayload<ExtArgs>[]
|
|
1603
|
+
iterationAutoSchedule: Prisma.$IterationAutoSchedulePayload<ExtArgs> | null
|
|
1323
1604
|
knowledgeBases: Prisma.$ProjectKnowledgeBasePayload<ExtArgs>[]
|
|
1324
1605
|
}
|
|
1325
1606
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
@@ -1732,6 +2013,8 @@ export interface Prisma__ProjectClient<T, Null = never, ExtArgs extends runtime.
|
|
|
1732
2013
|
members<T extends Prisma.Project$membersArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Project$membersArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectMemberPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
1733
2014
|
activities<T extends Prisma.Project$activitiesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Project$activitiesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectActivityPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
1734
2015
|
stories<T extends Prisma.Project$storiesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Project$storiesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
2016
|
+
iterations<T extends Prisma.Project$iterationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Project$iterationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$IterationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
2017
|
+
iterationAutoSchedule<T extends Prisma.Project$iterationAutoScheduleArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Project$iterationAutoScheduleArgs<ExtArgs>>): Prisma.Prisma__IterationAutoScheduleClient<runtime.Types.Result.GetResult<Prisma.$IterationAutoSchedulePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
1735
2018
|
knowledgeBases<T extends Prisma.Project$knowledgeBasesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Project$knowledgeBasesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectKnowledgeBasePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
1736
2019
|
/**
|
|
1737
2020
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -2263,6 +2546,49 @@ export type Project$storiesArgs<ExtArgs extends runtime.Types.Extensions.Interna
|
|
|
2263
2546
|
distinct?: Prisma.StoryScalarFieldEnum | Prisma.StoryScalarFieldEnum[]
|
|
2264
2547
|
}
|
|
2265
2548
|
|
|
2549
|
+
/**
|
|
2550
|
+
* Project.iterations
|
|
2551
|
+
*/
|
|
2552
|
+
export type Project$iterationsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2553
|
+
/**
|
|
2554
|
+
* Select specific fields to fetch from the Iteration
|
|
2555
|
+
*/
|
|
2556
|
+
select?: Prisma.IterationSelect<ExtArgs> | null
|
|
2557
|
+
/**
|
|
2558
|
+
* Omit specific fields from the Iteration
|
|
2559
|
+
*/
|
|
2560
|
+
omit?: Prisma.IterationOmit<ExtArgs> | null
|
|
2561
|
+
/**
|
|
2562
|
+
* Choose, which related nodes to fetch as well
|
|
2563
|
+
*/
|
|
2564
|
+
include?: Prisma.IterationInclude<ExtArgs> | null
|
|
2565
|
+
where?: Prisma.IterationWhereInput
|
|
2566
|
+
orderBy?: Prisma.IterationOrderByWithRelationInput | Prisma.IterationOrderByWithRelationInput[]
|
|
2567
|
+
cursor?: Prisma.IterationWhereUniqueInput
|
|
2568
|
+
take?: number
|
|
2569
|
+
skip?: number
|
|
2570
|
+
distinct?: Prisma.IterationScalarFieldEnum | Prisma.IterationScalarFieldEnum[]
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
/**
|
|
2574
|
+
* Project.iterationAutoSchedule
|
|
2575
|
+
*/
|
|
2576
|
+
export type Project$iterationAutoScheduleArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
2577
|
+
/**
|
|
2578
|
+
* Select specific fields to fetch from the IterationAutoSchedule
|
|
2579
|
+
*/
|
|
2580
|
+
select?: Prisma.IterationAutoScheduleSelect<ExtArgs> | null
|
|
2581
|
+
/**
|
|
2582
|
+
* Omit specific fields from the IterationAutoSchedule
|
|
2583
|
+
*/
|
|
2584
|
+
omit?: Prisma.IterationAutoScheduleOmit<ExtArgs> | null
|
|
2585
|
+
/**
|
|
2586
|
+
* Choose, which related nodes to fetch as well
|
|
2587
|
+
*/
|
|
2588
|
+
include?: Prisma.IterationAutoScheduleInclude<ExtArgs> | null
|
|
2589
|
+
where?: Prisma.IterationAutoScheduleWhereInput
|
|
2590
|
+
}
|
|
2591
|
+
|
|
2266
2592
|
/**
|
|
2267
2593
|
* Project.knowledgeBases
|
|
2268
2594
|
*/
|