@allbluecn/database 0.4.15 → 0.4.17
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/generated/browser.ts +20 -0
- package/generated/client.ts +20 -0
- package/generated/commonInputTypes.ts +34 -0
- package/generated/internal/class.ts +44 -4
- package/generated/internal/prismaNamespace.ts +378 -3
- package/generated/internal/prismaNamespaceBrowser.ts +63 -2
- package/generated/models/Iteration.ts +1878 -0
- package/generated/models/IterationAutoSchedule.ts +1485 -0
- package/generated/models/KnowledgeBase.ts +138 -0
- package/generated/models/Project.ts +484 -0
- package/generated/models/ProjectKnowledgeBase.ts +1430 -0
- package/generated/models/Story.ts +663 -3
- package/generated/models/StoryAttachment.ts +110 -1
- package/generated/models/StoryExternalLink.ts +1352 -0
- package/generated/models/User.ts +618 -0
- package/generated/models.ts +4 -0
- package/generated-sqlite/browser.ts +20 -0
- package/generated-sqlite/client.ts +20 -0
- package/generated-sqlite/internal/class.ts +44 -4
- package/generated-sqlite/internal/prismaNamespace.ts +374 -2
- package/generated-sqlite/internal/prismaNamespaceBrowser.ts +73 -1
- package/generated-sqlite/models/Iteration.ts +1874 -0
- package/generated-sqlite/models/IterationAutoSchedule.ts +1483 -0
- package/generated-sqlite/models/KnowledgeBase.ts +138 -0
- package/generated-sqlite/models/Project.ts +634 -0
- package/generated-sqlite/models/ProjectKnowledgeBase.ts +1426 -0
- package/generated-sqlite/models/Story.ts +3263 -0
- package/generated-sqlite/models/User.ts +2103 -107
- package/generated-sqlite/models.ts +4 -0
- package/index.ts +2 -2
- package/migrations/20260831063744_project_knowledge_base/migration.sql +24 -0
- package/migrations/20260831123150_story_external_link/migration.sql +19 -0
- package/migrations/20260831151740_story_attachment_bytes/migration.sql +2 -0
- package/migrations/20260831203925_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901010000_story_attachment_description/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 +12 -5
- package/schema.prisma +98 -17
- package/schema.sqlite.prisma +112 -9
package/generated/models/User.ts
CHANGED
|
@@ -346,6 +346,7 @@ export type UserWhereInput = {
|
|
|
346
346
|
storiesCreated?: Prisma.StoryListRelationFilter
|
|
347
347
|
storiesAssigned?: Prisma.StoryListRelationFilter
|
|
348
348
|
storiesEdited?: Prisma.StoryListRelationFilter
|
|
349
|
+
iterationsCreated?: Prisma.IterationListRelationFilter
|
|
349
350
|
labelsCreated?: Prisma.LabelListRelationFilter
|
|
350
351
|
storyActivities?: Prisma.StoryActivityListRelationFilter
|
|
351
352
|
storyComments?: Prisma.StoryCommentListRelationFilter
|
|
@@ -427,6 +428,7 @@ export type UserOrderByWithRelationInput = {
|
|
|
427
428
|
storiesCreated?: Prisma.StoryOrderByRelationAggregateInput
|
|
428
429
|
storiesAssigned?: Prisma.StoryOrderByRelationAggregateInput
|
|
429
430
|
storiesEdited?: Prisma.StoryOrderByRelationAggregateInput
|
|
431
|
+
iterationsCreated?: Prisma.IterationOrderByRelationAggregateInput
|
|
430
432
|
labelsCreated?: Prisma.LabelOrderByRelationAggregateInput
|
|
431
433
|
storyActivities?: Prisma.StoryActivityOrderByRelationAggregateInput
|
|
432
434
|
storyComments?: Prisma.StoryCommentOrderByRelationAggregateInput
|
|
@@ -511,6 +513,7 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
511
513
|
storiesCreated?: Prisma.StoryListRelationFilter
|
|
512
514
|
storiesAssigned?: Prisma.StoryListRelationFilter
|
|
513
515
|
storiesEdited?: Prisma.StoryListRelationFilter
|
|
516
|
+
iterationsCreated?: Prisma.IterationListRelationFilter
|
|
514
517
|
labelsCreated?: Prisma.LabelListRelationFilter
|
|
515
518
|
storyActivities?: Prisma.StoryActivityListRelationFilter
|
|
516
519
|
storyComments?: Prisma.StoryCommentListRelationFilter
|
|
@@ -650,6 +653,7 @@ export type UserCreateInput = {
|
|
|
650
653
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
651
654
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
652
655
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
656
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
653
657
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
654
658
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
655
659
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -731,6 +735,7 @@ export type UserUncheckedCreateInput = {
|
|
|
731
735
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
732
736
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
733
737
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
738
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
734
739
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
735
740
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
736
741
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -812,6 +817,7 @@ export type UserUpdateInput = {
|
|
|
812
817
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
813
818
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
814
819
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
820
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
815
821
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
816
822
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
817
823
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -893,6 +899,7 @@ export type UserUncheckedUpdateInput = {
|
|
|
893
899
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
894
900
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
895
901
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
902
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
896
903
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
897
904
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
898
905
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -1880,6 +1887,20 @@ export type UserUpdateOneRequiredWithoutNotificationPreferenceNestedInput = {
|
|
|
1880
1887
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutNotificationPreferenceInput, Prisma.UserUpdateWithoutNotificationPreferenceInput>, Prisma.UserUncheckedUpdateWithoutNotificationPreferenceInput>
|
|
1881
1888
|
}
|
|
1882
1889
|
|
|
1890
|
+
export type UserCreateNestedOneWithoutIterationsCreatedInput = {
|
|
1891
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutIterationsCreatedInput, Prisma.UserUncheckedCreateWithoutIterationsCreatedInput>
|
|
1892
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutIterationsCreatedInput
|
|
1893
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
export type UserUpdateOneRequiredWithoutIterationsCreatedNestedInput = {
|
|
1897
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutIterationsCreatedInput, Prisma.UserUncheckedCreateWithoutIterationsCreatedInput>
|
|
1898
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutIterationsCreatedInput
|
|
1899
|
+
upsert?: Prisma.UserUpsertWithoutIterationsCreatedInput
|
|
1900
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1901
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutIterationsCreatedInput, Prisma.UserUpdateWithoutIterationsCreatedInput>, Prisma.UserUncheckedUpdateWithoutIterationsCreatedInput>
|
|
1902
|
+
}
|
|
1903
|
+
|
|
1883
1904
|
export type UserCreateWithoutAccountsInput = {
|
|
1884
1905
|
id?: string
|
|
1885
1906
|
email: string
|
|
@@ -1931,6 +1952,7 @@ export type UserCreateWithoutAccountsInput = {
|
|
|
1931
1952
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
1932
1953
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
1933
1954
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
1955
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
1934
1956
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
1935
1957
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
1936
1958
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -2011,6 +2033,7 @@ export type UserUncheckedCreateWithoutAccountsInput = {
|
|
|
2011
2033
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2012
2034
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
2013
2035
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
2036
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2014
2037
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2015
2038
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
2016
2039
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -2107,6 +2130,7 @@ export type UserUpdateWithoutAccountsInput = {
|
|
|
2107
2130
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
2108
2131
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
2109
2132
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
2133
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
2110
2134
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
2111
2135
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
2112
2136
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -2187,6 +2211,7 @@ export type UserUncheckedUpdateWithoutAccountsInput = {
|
|
|
2187
2211
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2188
2212
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
2189
2213
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
2214
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2190
2215
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2191
2216
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
2192
2217
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -2268,6 +2293,7 @@ export type UserCreateWithoutOwnedProjectsInput = {
|
|
|
2268
2293
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
2269
2294
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
2270
2295
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
2296
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
2271
2297
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
2272
2298
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
2273
2299
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -2348,6 +2374,7 @@ export type UserUncheckedCreateWithoutOwnedProjectsInput = {
|
|
|
2348
2374
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2349
2375
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
2350
2376
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
2377
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2351
2378
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2352
2379
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
2353
2380
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -2444,6 +2471,7 @@ export type UserUpdateWithoutOwnedProjectsInput = {
|
|
|
2444
2471
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
2445
2472
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
2446
2473
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
2474
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
2447
2475
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
2448
2476
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
2449
2477
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -2524,6 +2552,7 @@ export type UserUncheckedUpdateWithoutOwnedProjectsInput = {
|
|
|
2524
2552
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2525
2553
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
2526
2554
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
2555
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2527
2556
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2528
2557
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
2529
2558
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -2604,6 +2633,7 @@ export type UserCreateWithoutProjectMembershipsInput = {
|
|
|
2604
2633
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
2605
2634
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
2606
2635
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
2636
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
2607
2637
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
2608
2638
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
2609
2639
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -2684,6 +2714,7 @@ export type UserUncheckedCreateWithoutProjectMembershipsInput = {
|
|
|
2684
2714
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2685
2715
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
2686
2716
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
2717
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2687
2718
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2688
2719
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
2689
2720
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -2780,6 +2811,7 @@ export type UserUpdateWithoutProjectMembershipsInput = {
|
|
|
2780
2811
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
2781
2812
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
2782
2813
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
2814
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
2783
2815
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
2784
2816
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
2785
2817
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -2860,6 +2892,7 @@ export type UserUncheckedUpdateWithoutProjectMembershipsInput = {
|
|
|
2860
2892
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2861
2893
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
2862
2894
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
2895
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2863
2896
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2864
2897
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
2865
2898
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -2940,6 +2973,7 @@ export type UserCreateWithoutOwnedWorkspacesInput = {
|
|
|
2940
2973
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
2941
2974
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
2942
2975
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
2976
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
2943
2977
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
2944
2978
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
2945
2979
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -3020,6 +3054,7 @@ export type UserUncheckedCreateWithoutOwnedWorkspacesInput = {
|
|
|
3020
3054
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3021
3055
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
3022
3056
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
3057
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3023
3058
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3024
3059
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
3025
3060
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -3116,6 +3151,7 @@ export type UserUpdateWithoutOwnedWorkspacesInput = {
|
|
|
3116
3151
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
3117
3152
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
3118
3153
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
3154
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
3119
3155
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
3120
3156
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
3121
3157
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -3196,6 +3232,7 @@ export type UserUncheckedUpdateWithoutOwnedWorkspacesInput = {
|
|
|
3196
3232
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3197
3233
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
3198
3234
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
3235
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3199
3236
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3200
3237
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
3201
3238
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -3276,6 +3313,7 @@ export type UserCreateWithoutWorkspaceMembershipsInput = {
|
|
|
3276
3313
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
3277
3314
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
3278
3315
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
3316
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
3279
3317
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
3280
3318
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
3281
3319
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -3356,6 +3394,7 @@ export type UserUncheckedCreateWithoutWorkspaceMembershipsInput = {
|
|
|
3356
3394
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3357
3395
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
3358
3396
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
3397
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3359
3398
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3360
3399
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
3361
3400
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -3441,6 +3480,7 @@ export type UserCreateWithoutTeamJoinedInput = {
|
|
|
3441
3480
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
3442
3481
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
3443
3482
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
3483
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
3444
3484
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
3445
3485
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
3446
3486
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -3521,6 +3561,7 @@ export type UserUncheckedCreateWithoutTeamJoinedInput = {
|
|
|
3521
3561
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3522
3562
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
3523
3563
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
3564
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3524
3565
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3525
3566
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
3526
3567
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -3617,6 +3658,7 @@ export type UserUpdateWithoutWorkspaceMembershipsInput = {
|
|
|
3617
3658
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
3618
3659
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
3619
3660
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
3661
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
3620
3662
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
3621
3663
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
3622
3664
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -3697,6 +3739,7 @@ export type UserUncheckedUpdateWithoutWorkspaceMembershipsInput = {
|
|
|
3697
3739
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3698
3740
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
3699
3741
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
3742
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3700
3743
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3701
3744
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
3702
3745
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -3788,6 +3831,7 @@ export type UserUpdateWithoutTeamJoinedInput = {
|
|
|
3788
3831
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
3789
3832
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
3790
3833
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
3834
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
3791
3835
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
3792
3836
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
3793
3837
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -3868,6 +3912,7 @@ export type UserUncheckedUpdateWithoutTeamJoinedInput = {
|
|
|
3868
3912
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3869
3913
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
3870
3914
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
3915
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3871
3916
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3872
3917
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
3873
3918
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -3948,6 +3993,7 @@ export type UserCreateWithoutSentInvitationsInput = {
|
|
|
3948
3993
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
3949
3994
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
3950
3995
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
3996
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
3951
3997
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
3952
3998
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
3953
3999
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -4028,6 +4074,7 @@ export type UserUncheckedCreateWithoutSentInvitationsInput = {
|
|
|
4028
4074
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4029
4075
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
4030
4076
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
4077
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4031
4078
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4032
4079
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
4033
4080
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -4124,6 +4171,7 @@ export type UserUpdateWithoutSentInvitationsInput = {
|
|
|
4124
4171
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
4125
4172
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
4126
4173
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
4174
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
4127
4175
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
4128
4176
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
4129
4177
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -4204,6 +4252,7 @@ export type UserUncheckedUpdateWithoutSentInvitationsInput = {
|
|
|
4204
4252
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4205
4253
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
4206
4254
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
4255
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4207
4256
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4208
4257
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
4209
4258
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -4284,6 +4333,7 @@ export type UserCreateWithoutOwnedJoinRequestsInput = {
|
|
|
4284
4333
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
4285
4334
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
4286
4335
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
4336
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
4287
4337
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
4288
4338
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
4289
4339
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -4364,6 +4414,7 @@ export type UserUncheckedCreateWithoutOwnedJoinRequestsInput = {
|
|
|
4364
4414
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4365
4415
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
4366
4416
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
4417
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4367
4418
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4368
4419
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
4369
4420
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -4449,6 +4500,7 @@ export type UserCreateWithoutApplicantJoinRequestsInput = {
|
|
|
4449
4500
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
4450
4501
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
4451
4502
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
4503
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
4452
4504
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
4453
4505
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
4454
4506
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -4529,6 +4581,7 @@ export type UserUncheckedCreateWithoutApplicantJoinRequestsInput = {
|
|
|
4529
4581
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4530
4582
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
4531
4583
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
4584
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4532
4585
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4533
4586
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
4534
4587
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -4625,6 +4678,7 @@ export type UserUpdateWithoutOwnedJoinRequestsInput = {
|
|
|
4625
4678
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
4626
4679
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
4627
4680
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
4681
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
4628
4682
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
4629
4683
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
4630
4684
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -4705,6 +4759,7 @@ export type UserUncheckedUpdateWithoutOwnedJoinRequestsInput = {
|
|
|
4705
4759
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4706
4760
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
4707
4761
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
4762
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4708
4763
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4709
4764
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
4710
4765
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -4796,6 +4851,7 @@ export type UserUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
4796
4851
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
4797
4852
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
4798
4853
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
4854
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
4799
4855
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
4800
4856
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
4801
4857
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -4876,6 +4932,7 @@ export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
4876
4932
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4877
4933
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
4878
4934
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
4935
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4879
4936
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4880
4937
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
4881
4938
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -4956,6 +5013,7 @@ export type UserCreateWithoutProjectActivitiesInput = {
|
|
|
4956
5013
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
4957
5014
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
4958
5015
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5016
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
4959
5017
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
4960
5018
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
4961
5019
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -5036,6 +5094,7 @@ export type UserUncheckedCreateWithoutProjectActivitiesInput = {
|
|
|
5036
5094
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5037
5095
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5038
5096
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5097
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5039
5098
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5040
5099
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5041
5100
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -5132,6 +5191,7 @@ export type UserUpdateWithoutProjectActivitiesInput = {
|
|
|
5132
5191
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5133
5192
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5134
5193
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5194
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5135
5195
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
5136
5196
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
5137
5197
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -5212,6 +5272,7 @@ export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
|
|
|
5212
5272
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5213
5273
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5214
5274
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5275
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5215
5276
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5216
5277
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5217
5278
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -5292,6 +5353,7 @@ export type UserCreateWithoutChatThreadsInput = {
|
|
|
5292
5353
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5293
5354
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5294
5355
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5356
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5295
5357
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
5296
5358
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
5297
5359
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -5372,6 +5434,7 @@ export type UserUncheckedCreateWithoutChatThreadsInput = {
|
|
|
5372
5434
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5373
5435
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5374
5436
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5437
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5375
5438
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5376
5439
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5377
5440
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -5468,6 +5531,7 @@ export type UserUpdateWithoutChatThreadsInput = {
|
|
|
5468
5531
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5469
5532
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5470
5533
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5534
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5471
5535
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
5472
5536
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
5473
5537
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -5548,6 +5612,7 @@ export type UserUncheckedUpdateWithoutChatThreadsInput = {
|
|
|
5548
5612
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5549
5613
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5550
5614
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5615
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5551
5616
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5552
5617
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5553
5618
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -5627,6 +5692,7 @@ export type UserCreateWithoutLoginLogsInput = {
|
|
|
5627
5692
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5628
5693
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5629
5694
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5695
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5630
5696
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
5631
5697
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
5632
5698
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -5707,6 +5773,7 @@ export type UserUncheckedCreateWithoutLoginLogsInput = {
|
|
|
5707
5773
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5708
5774
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5709
5775
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5776
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5710
5777
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5711
5778
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5712
5779
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -5803,6 +5870,7 @@ export type UserUpdateWithoutLoginLogsInput = {
|
|
|
5803
5870
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5804
5871
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5805
5872
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5873
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5806
5874
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
5807
5875
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
5808
5876
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -5883,6 +5951,7 @@ export type UserUncheckedUpdateWithoutLoginLogsInput = {
|
|
|
5883
5951
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5884
5952
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5885
5953
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5954
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5886
5955
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5887
5956
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5888
5957
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -5963,6 +6032,7 @@ export type UserCreateWithoutInvitationUsesInput = {
|
|
|
5963
6032
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5964
6033
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5965
6034
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
6035
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5966
6036
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
5967
6037
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
5968
6038
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -6043,6 +6113,7 @@ export type UserUncheckedCreateWithoutInvitationUsesInput = {
|
|
|
6043
6113
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6044
6114
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
6045
6115
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
6116
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6046
6117
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6047
6118
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6048
6119
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -6139,6 +6210,7 @@ export type UserUpdateWithoutInvitationUsesInput = {
|
|
|
6139
6210
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
6140
6211
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
6141
6212
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
6213
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
6142
6214
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
6143
6215
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
6144
6216
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -6219,6 +6291,7 @@ export type UserUncheckedUpdateWithoutInvitationUsesInput = {
|
|
|
6219
6291
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6220
6292
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
6221
6293
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
6294
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6222
6295
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6223
6296
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
6224
6297
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -6299,6 +6372,7 @@ export type UserCreateWithoutPasswordResetTokensInput = {
|
|
|
6299
6372
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
6300
6373
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
6301
6374
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
6375
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
6302
6376
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
6303
6377
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
6304
6378
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -6379,6 +6453,7 @@ export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
|
|
|
6379
6453
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6380
6454
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
6381
6455
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
6456
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6382
6457
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6383
6458
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6384
6459
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -6475,6 +6550,7 @@ export type UserUpdateWithoutPasswordResetTokensInput = {
|
|
|
6475
6550
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
6476
6551
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
6477
6552
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
6553
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
6478
6554
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
6479
6555
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
6480
6556
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -6555,6 +6631,7 @@ export type UserUncheckedUpdateWithoutPasswordResetTokensInput = {
|
|
|
6555
6631
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6556
6632
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
6557
6633
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
6634
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6558
6635
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6559
6636
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
6560
6637
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -6635,6 +6712,7 @@ export type UserCreateWithoutKnowledgeBasesInput = {
|
|
|
6635
6712
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
6636
6713
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
6637
6714
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
6715
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
6638
6716
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
6639
6717
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
6640
6718
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -6715,6 +6793,7 @@ export type UserUncheckedCreateWithoutKnowledgeBasesInput = {
|
|
|
6715
6793
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6716
6794
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
6717
6795
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
6796
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6718
6797
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6719
6798
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6720
6799
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -6811,6 +6890,7 @@ export type UserUpdateWithoutKnowledgeBasesInput = {
|
|
|
6811
6890
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
6812
6891
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
6813
6892
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
6893
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
6814
6894
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
6815
6895
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
6816
6896
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -6891,6 +6971,7 @@ export type UserUncheckedUpdateWithoutKnowledgeBasesInput = {
|
|
|
6891
6971
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6892
6972
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
6893
6973
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
6974
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6894
6975
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6895
6976
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
6896
6977
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -6971,6 +7052,7 @@ export type UserCreateWithoutKnowledgeDocumentsInput = {
|
|
|
6971
7052
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
6972
7053
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
6973
7054
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
7055
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
6974
7056
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
6975
7057
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
6976
7058
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -7051,6 +7133,7 @@ export type UserUncheckedCreateWithoutKnowledgeDocumentsInput = {
|
|
|
7051
7133
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7052
7134
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
7053
7135
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
7136
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7054
7137
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7055
7138
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
7056
7139
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -7147,6 +7230,7 @@ export type UserUpdateWithoutKnowledgeDocumentsInput = {
|
|
|
7147
7230
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
7148
7231
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
7149
7232
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
7233
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
7150
7234
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
7151
7235
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
7152
7236
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -7227,6 +7311,7 @@ export type UserUncheckedUpdateWithoutKnowledgeDocumentsInput = {
|
|
|
7227
7311
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7228
7312
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
7229
7313
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
7314
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7230
7315
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7231
7316
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
7232
7317
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -7307,6 +7392,7 @@ export type UserCreateWithoutPrdsInput = {
|
|
|
7307
7392
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
7308
7393
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
7309
7394
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
7395
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
7310
7396
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
7311
7397
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
7312
7398
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -7387,6 +7473,7 @@ export type UserUncheckedCreateWithoutPrdsInput = {
|
|
|
7387
7473
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7388
7474
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
7389
7475
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
7476
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7390
7477
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7391
7478
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
7392
7479
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -7483,6 +7570,7 @@ export type UserUpdateWithoutPrdsInput = {
|
|
|
7483
7570
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
7484
7571
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
7485
7572
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
7573
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
7486
7574
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
7487
7575
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
7488
7576
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -7563,6 +7651,7 @@ export type UserUncheckedUpdateWithoutPrdsInput = {
|
|
|
7563
7651
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7564
7652
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
7565
7653
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
7654
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7566
7655
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7567
7656
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
7568
7657
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -7644,6 +7733,7 @@ export type UserCreateWithoutAgentConversationsInput = {
|
|
|
7644
7733
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
7645
7734
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
7646
7735
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
7736
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
7647
7737
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
7648
7738
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
7649
7739
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -7724,6 +7814,7 @@ export type UserUncheckedCreateWithoutAgentConversationsInput = {
|
|
|
7724
7814
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7725
7815
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
7726
7816
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
7817
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7727
7818
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7728
7819
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
7729
7820
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -7820,6 +7911,7 @@ export type UserUpdateWithoutAgentConversationsInput = {
|
|
|
7820
7911
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
7821
7912
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
7822
7913
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
7914
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
7823
7915
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
7824
7916
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
7825
7917
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -7900,6 +7992,7 @@ export type UserUncheckedUpdateWithoutAgentConversationsInput = {
|
|
|
7900
7992
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7901
7993
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
7902
7994
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
7995
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7903
7996
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7904
7997
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
7905
7998
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -7979,6 +8072,7 @@ export type UserCreateWithoutPrdVersionsInput = {
|
|
|
7979
8072
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
7980
8073
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
7981
8074
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
8075
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
7982
8076
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
7983
8077
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
7984
8078
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -8059,6 +8153,7 @@ export type UserUncheckedCreateWithoutPrdVersionsInput = {
|
|
|
8059
8153
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8060
8154
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
8061
8155
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
8156
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8062
8157
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8063
8158
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
8064
8159
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -8155,6 +8250,7 @@ export type UserUpdateWithoutPrdVersionsInput = {
|
|
|
8155
8250
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
8156
8251
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
8157
8252
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
8253
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
8158
8254
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
8159
8255
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
8160
8256
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -8235,6 +8331,7 @@ export type UserUncheckedUpdateWithoutPrdVersionsInput = {
|
|
|
8235
8331
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8236
8332
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
8237
8333
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
8334
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8238
8335
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8239
8336
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
8240
8337
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -8315,6 +8412,7 @@ export type UserCreateWithoutReviewsInput = {
|
|
|
8315
8412
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
8316
8413
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
8317
8414
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
8415
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
8318
8416
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
8319
8417
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
8320
8418
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -8395,6 +8493,7 @@ export type UserUncheckedCreateWithoutReviewsInput = {
|
|
|
8395
8493
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8396
8494
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
8397
8495
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
8496
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8398
8497
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8399
8498
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
8400
8499
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -8491,6 +8590,7 @@ export type UserUpdateWithoutReviewsInput = {
|
|
|
8491
8590
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
8492
8591
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
8493
8592
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
8593
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
8494
8594
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
8495
8595
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
8496
8596
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -8571,6 +8671,7 @@ export type UserUncheckedUpdateWithoutReviewsInput = {
|
|
|
8571
8671
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8572
8672
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
8573
8673
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
8674
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8574
8675
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8575
8676
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
8576
8677
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -8651,6 +8752,7 @@ export type UserCreateWithoutReviewCommentsInput = {
|
|
|
8651
8752
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
8652
8753
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
8653
8754
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
8755
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
8654
8756
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
8655
8757
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
8656
8758
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -8731,6 +8833,7 @@ export type UserUncheckedCreateWithoutReviewCommentsInput = {
|
|
|
8731
8833
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8732
8834
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
8733
8835
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
8836
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8734
8837
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8735
8838
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
8736
8839
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -8827,6 +8930,7 @@ export type UserUpdateWithoutReviewCommentsInput = {
|
|
|
8827
8930
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
8828
8931
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
8829
8932
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
8933
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
8830
8934
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
8831
8935
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
8832
8936
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -8907,6 +9011,7 @@ export type UserUncheckedUpdateWithoutReviewCommentsInput = {
|
|
|
8907
9011
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8908
9012
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
8909
9013
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
9014
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8910
9015
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8911
9016
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
8912
9017
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -8987,6 +9092,7 @@ export type UserCreateWithoutCommentsInput = {
|
|
|
8987
9092
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
8988
9093
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
8989
9094
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
9095
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
8990
9096
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
8991
9097
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
8992
9098
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -9067,6 +9173,7 @@ export type UserUncheckedCreateWithoutCommentsInput = {
|
|
|
9067
9173
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9068
9174
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
9069
9175
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
9176
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9070
9177
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9071
9178
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
9072
9179
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -9163,6 +9270,7 @@ export type UserUpdateWithoutCommentsInput = {
|
|
|
9163
9270
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
9164
9271
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
9165
9272
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
9273
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
9166
9274
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
9167
9275
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
9168
9276
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -9243,6 +9351,7 @@ export type UserUncheckedUpdateWithoutCommentsInput = {
|
|
|
9243
9351
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9244
9352
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
9245
9353
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
9354
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9246
9355
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9247
9356
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
9248
9357
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -9323,6 +9432,7 @@ export type UserCreateWithoutCommentIgnoresInput = {
|
|
|
9323
9432
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
9324
9433
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
9325
9434
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
9435
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
9326
9436
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
9327
9437
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
9328
9438
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -9403,6 +9513,7 @@ export type UserUncheckedCreateWithoutCommentIgnoresInput = {
|
|
|
9403
9513
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9404
9514
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
9405
9515
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
9516
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9406
9517
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9407
9518
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
9408
9519
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -9499,6 +9610,7 @@ export type UserUpdateWithoutCommentIgnoresInput = {
|
|
|
9499
9610
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
9500
9611
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
9501
9612
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
9613
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
9502
9614
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
9503
9615
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
9504
9616
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -9579,6 +9691,7 @@ export type UserUncheckedUpdateWithoutCommentIgnoresInput = {
|
|
|
9579
9691
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9580
9692
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
9581
9693
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
9694
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9582
9695
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9583
9696
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
9584
9697
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -9659,6 +9772,7 @@ export type UserCreateWithoutTagsInput = {
|
|
|
9659
9772
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
9660
9773
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
9661
9774
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
9775
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
9662
9776
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
9663
9777
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
9664
9778
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -9739,6 +9853,7 @@ export type UserUncheckedCreateWithoutTagsInput = {
|
|
|
9739
9853
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9740
9854
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
9741
9855
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
9856
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9742
9857
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9743
9858
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
9744
9859
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -9835,6 +9950,7 @@ export type UserUpdateWithoutTagsInput = {
|
|
|
9835
9950
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
9836
9951
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
9837
9952
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
9953
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
9838
9954
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
9839
9955
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
9840
9956
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -9915,6 +10031,7 @@ export type UserUncheckedUpdateWithoutTagsInput = {
|
|
|
9915
10031
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9916
10032
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
9917
10033
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
10034
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9918
10035
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9919
10036
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
9920
10037
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -9995,6 +10112,7 @@ export type UserCreateWithoutAnyhubAppsInput = {
|
|
|
9995
10112
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
9996
10113
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
9997
10114
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
10115
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
9998
10116
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
9999
10117
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
10000
10118
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -10075,6 +10193,7 @@ export type UserUncheckedCreateWithoutAnyhubAppsInput = {
|
|
|
10075
10193
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10076
10194
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
10077
10195
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
10196
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10078
10197
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10079
10198
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
10080
10199
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -10171,6 +10290,7 @@ export type UserUpdateWithoutAnyhubAppsInput = {
|
|
|
10171
10290
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
10172
10291
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
10173
10292
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
10293
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
10174
10294
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
10175
10295
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
10176
10296
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -10251,6 +10371,7 @@ export type UserUncheckedUpdateWithoutAnyhubAppsInput = {
|
|
|
10251
10371
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10252
10372
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
10253
10373
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
10374
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10254
10375
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10255
10376
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
10256
10377
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -10331,6 +10452,7 @@ export type UserCreateWithoutAnyhubMarketAppsInput = {
|
|
|
10331
10452
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
10332
10453
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
10333
10454
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
10455
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
10334
10456
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
10335
10457
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
10336
10458
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -10411,6 +10533,7 @@ export type UserUncheckedCreateWithoutAnyhubMarketAppsInput = {
|
|
|
10411
10533
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10412
10534
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
10413
10535
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
10536
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10414
10537
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10415
10538
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
10416
10539
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -10507,6 +10630,7 @@ export type UserUpdateWithoutAnyhubMarketAppsInput = {
|
|
|
10507
10630
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
10508
10631
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
10509
10632
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
10633
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
10510
10634
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
10511
10635
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
10512
10636
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -10587,6 +10711,7 @@ export type UserUncheckedUpdateWithoutAnyhubMarketAppsInput = {
|
|
|
10587
10711
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10588
10712
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
10589
10713
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
10714
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10590
10715
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10591
10716
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
10592
10717
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -10667,6 +10792,7 @@ export type UserCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
10667
10792
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
10668
10793
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
10669
10794
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
10795
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
10670
10796
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
10671
10797
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
10672
10798
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -10747,6 +10873,7 @@ export type UserUncheckedCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
10747
10873
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10748
10874
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
10749
10875
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
10876
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10750
10877
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10751
10878
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
10752
10879
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -10843,6 +10970,7 @@ export type UserUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
10843
10970
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
10844
10971
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
10845
10972
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
10973
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
10846
10974
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
10847
10975
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
10848
10976
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -10923,6 +11051,7 @@ export type UserUncheckedUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
10923
11051
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10924
11052
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
10925
11053
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
11054
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10926
11055
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10927
11056
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
10928
11057
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -11003,6 +11132,7 @@ export type UserCreateWithoutAnyhubRecommendersInput = {
|
|
|
11003
11132
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
11004
11133
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
11005
11134
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
11135
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
11006
11136
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
11007
11137
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
11008
11138
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -11083,6 +11213,7 @@ export type UserUncheckedCreateWithoutAnyhubRecommendersInput = {
|
|
|
11083
11213
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11084
11214
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
11085
11215
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
11216
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11086
11217
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11087
11218
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
11088
11219
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -11179,6 +11310,7 @@ export type UserUpdateWithoutAnyhubRecommendersInput = {
|
|
|
11179
11310
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
11180
11311
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
11181
11312
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
11313
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
11182
11314
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
11183
11315
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
11184
11316
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -11259,6 +11391,7 @@ export type UserUncheckedUpdateWithoutAnyhubRecommendersInput = {
|
|
|
11259
11391
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11260
11392
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
11261
11393
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
11394
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11262
11395
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11263
11396
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
11264
11397
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -11339,6 +11472,7 @@ export type UserCreateWithoutDesignProjectsInput = {
|
|
|
11339
11472
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
11340
11473
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
11341
11474
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
11475
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
11342
11476
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
11343
11477
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
11344
11478
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -11419,6 +11553,7 @@ export type UserUncheckedCreateWithoutDesignProjectsInput = {
|
|
|
11419
11553
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11420
11554
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
11421
11555
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
11556
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11422
11557
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11423
11558
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
11424
11559
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -11515,6 +11650,7 @@ export type UserUpdateWithoutDesignProjectsInput = {
|
|
|
11515
11650
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
11516
11651
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
11517
11652
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
11653
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
11518
11654
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
11519
11655
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
11520
11656
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -11595,6 +11731,7 @@ export type UserUncheckedUpdateWithoutDesignProjectsInput = {
|
|
|
11595
11731
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11596
11732
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
11597
11733
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
11734
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11598
11735
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11599
11736
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
11600
11737
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -11676,6 +11813,7 @@ export type UserCreateWithoutAiProviderConfigsInput = {
|
|
|
11676
11813
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
11677
11814
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
11678
11815
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
11816
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
11679
11817
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
11680
11818
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
11681
11819
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -11756,6 +11894,7 @@ export type UserUncheckedCreateWithoutAiProviderConfigsInput = {
|
|
|
11756
11894
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11757
11895
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
11758
11896
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
11897
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11759
11898
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11760
11899
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
11761
11900
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -11852,6 +11991,7 @@ export type UserUpdateWithoutAiProviderConfigsInput = {
|
|
|
11852
11991
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
11853
11992
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
11854
11993
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
11994
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
11855
11995
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
11856
11996
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
11857
11997
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -11932,6 +12072,7 @@ export type UserUncheckedUpdateWithoutAiProviderConfigsInput = {
|
|
|
11932
12072
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11933
12073
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
11934
12074
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
12075
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11935
12076
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11936
12077
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
11937
12078
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -12011,6 +12152,7 @@ export type UserCreateWithoutLegalRegulationsInput = {
|
|
|
12011
12152
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
12012
12153
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
12013
12154
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
12155
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
12014
12156
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
12015
12157
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
12016
12158
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -12091,6 +12233,7 @@ export type UserUncheckedCreateWithoutLegalRegulationsInput = {
|
|
|
12091
12233
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12092
12234
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
12093
12235
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
12236
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12094
12237
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12095
12238
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
12096
12239
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -12187,6 +12330,7 @@ export type UserUpdateWithoutLegalRegulationsInput = {
|
|
|
12187
12330
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
12188
12331
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
12189
12332
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
12333
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
12190
12334
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
12191
12335
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
12192
12336
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -12267,6 +12411,7 @@ export type UserUncheckedUpdateWithoutLegalRegulationsInput = {
|
|
|
12267
12411
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12268
12412
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
12269
12413
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
12414
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12270
12415
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12271
12416
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
12272
12417
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -12347,6 +12492,7 @@ export type UserCreateWithoutIndustryCompliancesInput = {
|
|
|
12347
12492
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
12348
12493
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
12349
12494
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
12495
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
12350
12496
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
12351
12497
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
12352
12498
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -12427,6 +12573,7 @@ export type UserUncheckedCreateWithoutIndustryCompliancesInput = {
|
|
|
12427
12573
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12428
12574
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
12429
12575
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
12576
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12430
12577
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12431
12578
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
12432
12579
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -12523,6 +12670,7 @@ export type UserUpdateWithoutIndustryCompliancesInput = {
|
|
|
12523
12670
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
12524
12671
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
12525
12672
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
12673
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
12526
12674
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
12527
12675
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
12528
12676
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -12603,6 +12751,7 @@ export type UserUncheckedUpdateWithoutIndustryCompliancesInput = {
|
|
|
12603
12751
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12604
12752
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
12605
12753
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
12754
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12606
12755
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12607
12756
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
12608
12757
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -12683,6 +12832,7 @@ export type UserCreateWithoutDictionaryTermsInput = {
|
|
|
12683
12832
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
12684
12833
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
12685
12834
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
12835
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
12686
12836
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
12687
12837
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
12688
12838
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -12763,6 +12913,7 @@ export type UserUncheckedCreateWithoutDictionaryTermsInput = {
|
|
|
12763
12913
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12764
12914
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
12765
12915
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
12916
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12766
12917
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12767
12918
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
12768
12919
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -12859,6 +13010,7 @@ export type UserUpdateWithoutDictionaryTermsInput = {
|
|
|
12859
13010
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
12860
13011
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
12861
13012
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
13013
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
12862
13014
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
12863
13015
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
12864
13016
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -12939,6 +13091,7 @@ export type UserUncheckedUpdateWithoutDictionaryTermsInput = {
|
|
|
12939
13091
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12940
13092
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
12941
13093
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
13094
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12942
13095
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12943
13096
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
12944
13097
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -13019,6 +13172,7 @@ export type UserCreateWithoutWebsiteBookmarksInput = {
|
|
|
13019
13172
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
13020
13173
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
13021
13174
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
13175
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
13022
13176
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
13023
13177
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
13024
13178
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -13099,6 +13253,7 @@ export type UserUncheckedCreateWithoutWebsiteBookmarksInput = {
|
|
|
13099
13253
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13100
13254
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
13101
13255
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
13256
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13102
13257
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13103
13258
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
13104
13259
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -13195,6 +13350,7 @@ export type UserUpdateWithoutWebsiteBookmarksInput = {
|
|
|
13195
13350
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
13196
13351
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
13197
13352
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
13353
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
13198
13354
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
13199
13355
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
13200
13356
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -13275,6 +13431,7 @@ export type UserUncheckedUpdateWithoutWebsiteBookmarksInput = {
|
|
|
13275
13431
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13276
13432
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
13277
13433
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
13434
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13278
13435
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13279
13436
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
13280
13437
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -13355,6 +13512,7 @@ export type UserCreateWithoutBookmarkCategoriesInput = {
|
|
|
13355
13512
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
13356
13513
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
13357
13514
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
13515
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
13358
13516
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
13359
13517
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
13360
13518
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -13435,6 +13593,7 @@ export type UserUncheckedCreateWithoutBookmarkCategoriesInput = {
|
|
|
13435
13593
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13436
13594
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
13437
13595
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
13596
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13438
13597
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13439
13598
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
13440
13599
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -13531,6 +13690,7 @@ export type UserUpdateWithoutBookmarkCategoriesInput = {
|
|
|
13531
13690
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
13532
13691
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
13533
13692
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
13693
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
13534
13694
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
13535
13695
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
13536
13696
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -13611,6 +13771,7 @@ export type UserUncheckedUpdateWithoutBookmarkCategoriesInput = {
|
|
|
13611
13771
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13612
13772
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
13613
13773
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
13774
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13614
13775
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13615
13776
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
13616
13777
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -13691,6 +13852,7 @@ export type UserCreateWithoutKnowledgeSharesInput = {
|
|
|
13691
13852
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
13692
13853
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
13693
13854
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
13855
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
13694
13856
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
13695
13857
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
13696
13858
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -13771,6 +13933,7 @@ export type UserUncheckedCreateWithoutKnowledgeSharesInput = {
|
|
|
13771
13933
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13772
13934
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
13773
13935
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
13936
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13774
13937
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13775
13938
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
13776
13939
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -13867,6 +14030,7 @@ export type UserUpdateWithoutKnowledgeSharesInput = {
|
|
|
13867
14030
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
13868
14031
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
13869
14032
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
14033
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
13870
14034
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
13871
14035
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
13872
14036
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -13947,6 +14111,7 @@ export type UserUncheckedUpdateWithoutKnowledgeSharesInput = {
|
|
|
13947
14111
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13948
14112
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
13949
14113
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
14114
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13950
14115
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13951
14116
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
13952
14117
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -14027,6 +14192,7 @@ export type UserCreateWithoutArticleFavoritesInput = {
|
|
|
14027
14192
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
14028
14193
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
14029
14194
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
14195
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
14030
14196
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
14031
14197
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
14032
14198
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -14107,6 +14273,7 @@ export type UserUncheckedCreateWithoutArticleFavoritesInput = {
|
|
|
14107
14273
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14108
14274
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
14109
14275
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
14276
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14110
14277
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14111
14278
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
14112
14279
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -14203,6 +14370,7 @@ export type UserUpdateWithoutArticleFavoritesInput = {
|
|
|
14203
14370
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
14204
14371
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
14205
14372
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
14373
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
14206
14374
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
14207
14375
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
14208
14376
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -14283,6 +14451,7 @@ export type UserUncheckedUpdateWithoutArticleFavoritesInput = {
|
|
|
14283
14451
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
14284
14452
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
14285
14453
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
14454
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
14286
14455
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
14287
14456
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
14288
14457
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -14363,6 +14532,7 @@ export type UserCreateWithoutStoriesAssignedInput = {
|
|
|
14363
14532
|
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
14364
14533
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
14365
14534
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
14535
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
14366
14536
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
14367
14537
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
14368
14538
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -14443,6 +14613,7 @@ export type UserUncheckedCreateWithoutStoriesAssignedInput = {
|
|
|
14443
14613
|
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
14444
14614
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14445
14615
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
14616
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14446
14617
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14447
14618
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
14448
14619
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -14528,6 +14699,7 @@ export type UserCreateWithoutStoriesCreatedInput = {
|
|
|
14528
14699
|
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
14529
14700
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
14530
14701
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
14702
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
14531
14703
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
14532
14704
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
14533
14705
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -14608,6 +14780,7 @@ export type UserUncheckedCreateWithoutStoriesCreatedInput = {
|
|
|
14608
14780
|
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
14609
14781
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
14610
14782
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
14783
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14611
14784
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14612
14785
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
14613
14786
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -14693,6 +14866,7 @@ export type UserCreateWithoutStoriesEditedInput = {
|
|
|
14693
14866
|
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
14694
14867
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
14695
14868
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
14869
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
14696
14870
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
14697
14871
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
14698
14872
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -14773,6 +14947,7 @@ export type UserUncheckedCreateWithoutStoriesEditedInput = {
|
|
|
14773
14947
|
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
14774
14948
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14775
14949
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
14950
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14776
14951
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
14777
14952
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
14778
14953
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -14869,6 +15044,7 @@ export type UserUpdateWithoutStoriesAssignedInput = {
|
|
|
14869
15044
|
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
14870
15045
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
14871
15046
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
15047
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
14872
15048
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
14873
15049
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
14874
15050
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -14949,6 +15125,7 @@ export type UserUncheckedUpdateWithoutStoriesAssignedInput = {
|
|
|
14949
15125
|
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
14950
15126
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
14951
15127
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
15128
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
14952
15129
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
14953
15130
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
14954
15131
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -15040,6 +15217,7 @@ export type UserUpdateWithoutStoriesCreatedInput = {
|
|
|
15040
15217
|
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
15041
15218
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
15042
15219
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
15220
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
15043
15221
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
15044
15222
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
15045
15223
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -15120,6 +15298,7 @@ export type UserUncheckedUpdateWithoutStoriesCreatedInput = {
|
|
|
15120
15298
|
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
15121
15299
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
15122
15300
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
15301
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15123
15302
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15124
15303
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
15125
15304
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -15211,6 +15390,7 @@ export type UserUpdateWithoutStoriesEditedInput = {
|
|
|
15211
15390
|
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
15212
15391
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
15213
15392
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
15393
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
15214
15394
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
15215
15395
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
15216
15396
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -15291,6 +15471,7 @@ export type UserUncheckedUpdateWithoutStoriesEditedInput = {
|
|
|
15291
15471
|
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
15292
15472
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15293
15473
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
15474
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15294
15475
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15295
15476
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
15296
15477
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -15372,6 +15553,7 @@ export type UserCreateWithoutLabelsCreatedInput = {
|
|
|
15372
15553
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
15373
15554
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
15374
15555
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
15556
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
15375
15557
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
15376
15558
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
15377
15559
|
storyReactions?: Prisma.StoryReactionCreateNestedManyWithoutUserInput
|
|
@@ -15452,6 +15634,7 @@ export type UserUncheckedCreateWithoutLabelsCreatedInput = {
|
|
|
15452
15634
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
15453
15635
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
15454
15636
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
15637
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
15455
15638
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
15456
15639
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
15457
15640
|
storyReactions?: Prisma.StoryReactionUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -15548,6 +15731,7 @@ export type UserUpdateWithoutLabelsCreatedInput = {
|
|
|
15548
15731
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
15549
15732
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
15550
15733
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
15734
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
15551
15735
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
15552
15736
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
15553
15737
|
storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
|
|
@@ -15628,6 +15812,7 @@ export type UserUncheckedUpdateWithoutLabelsCreatedInput = {
|
|
|
15628
15812
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15629
15813
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
15630
15814
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
15815
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15631
15816
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
15632
15817
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
15633
15818
|
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -15708,6 +15893,7 @@ export type UserCreateWithoutStoryActivitiesInput = {
|
|
|
15708
15893
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
15709
15894
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
15710
15895
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
15896
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
15711
15897
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
15712
15898
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
15713
15899
|
storyReactions?: Prisma.StoryReactionCreateNestedManyWithoutUserInput
|
|
@@ -15788,6 +15974,7 @@ export type UserUncheckedCreateWithoutStoryActivitiesInput = {
|
|
|
15788
15974
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
15789
15975
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
15790
15976
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
15977
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
15791
15978
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
15792
15979
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
15793
15980
|
storyReactions?: Prisma.StoryReactionUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -15884,6 +16071,7 @@ export type UserUpdateWithoutStoryActivitiesInput = {
|
|
|
15884
16071
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
15885
16072
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
15886
16073
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
16074
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
15887
16075
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
15888
16076
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
15889
16077
|
storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
|
|
@@ -15964,6 +16152,7 @@ export type UserUncheckedUpdateWithoutStoryActivitiesInput = {
|
|
|
15964
16152
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15965
16153
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
15966
16154
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
16155
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15967
16156
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
15968
16157
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
15969
16158
|
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -16044,6 +16233,7 @@ export type UserCreateWithoutStoryCommentsInput = {
|
|
|
16044
16233
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
16045
16234
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
16046
16235
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
16236
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
16047
16237
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
16048
16238
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
16049
16239
|
storyReactions?: Prisma.StoryReactionCreateNestedManyWithoutUserInput
|
|
@@ -16124,6 +16314,7 @@ export type UserUncheckedCreateWithoutStoryCommentsInput = {
|
|
|
16124
16314
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16125
16315
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
16126
16316
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
16317
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16127
16318
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16128
16319
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
16129
16320
|
storyReactions?: Prisma.StoryReactionUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -16220,6 +16411,7 @@ export type UserUpdateWithoutStoryCommentsInput = {
|
|
|
16220
16411
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
16221
16412
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
16222
16413
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
16414
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
16223
16415
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
16224
16416
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
16225
16417
|
storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
|
|
@@ -16300,6 +16492,7 @@ export type UserUncheckedUpdateWithoutStoryCommentsInput = {
|
|
|
16300
16492
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16301
16493
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
16302
16494
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
16495
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16303
16496
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16304
16497
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
16305
16498
|
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -16380,6 +16573,7 @@ export type UserCreateWithoutStoryReactionsInput = {
|
|
|
16380
16573
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
16381
16574
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
16382
16575
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
16576
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
16383
16577
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
16384
16578
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
16385
16579
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -16460,6 +16654,7 @@ export type UserUncheckedCreateWithoutStoryReactionsInput = {
|
|
|
16460
16654
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16461
16655
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
16462
16656
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
16657
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16463
16658
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16464
16659
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
16465
16660
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -16556,6 +16751,7 @@ export type UserUpdateWithoutStoryReactionsInput = {
|
|
|
16556
16751
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
16557
16752
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
16558
16753
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
16754
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
16559
16755
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
16560
16756
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
16561
16757
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -16636,6 +16832,7 @@ export type UserUncheckedUpdateWithoutStoryReactionsInput = {
|
|
|
16636
16832
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16637
16833
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
16638
16834
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
16835
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16639
16836
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16640
16837
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
16641
16838
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -16716,6 +16913,7 @@ export type UserCreateWithoutCommentReactionsInput = {
|
|
|
16716
16913
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
16717
16914
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
16718
16915
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
16916
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
16719
16917
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
16720
16918
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
16721
16919
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -16796,6 +16994,7 @@ export type UserUncheckedCreateWithoutCommentReactionsInput = {
|
|
|
16796
16994
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16797
16995
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
16798
16996
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
16997
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16799
16998
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
16800
16999
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
16801
17000
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -16892,6 +17091,7 @@ export type UserUpdateWithoutCommentReactionsInput = {
|
|
|
16892
17091
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
16893
17092
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
16894
17093
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
17094
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
16895
17095
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
16896
17096
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
16897
17097
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -16972,6 +17172,7 @@ export type UserUncheckedUpdateWithoutCommentReactionsInput = {
|
|
|
16972
17172
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16973
17173
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
16974
17174
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
17175
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16975
17176
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
16976
17177
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
16977
17178
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -17052,6 +17253,7 @@ export type UserCreateWithoutStoryFilterViewsInput = {
|
|
|
17052
17253
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
17053
17254
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
17054
17255
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
17256
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
17055
17257
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
17056
17258
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
17057
17259
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -17132,6 +17334,7 @@ export type UserUncheckedCreateWithoutStoryFilterViewsInput = {
|
|
|
17132
17334
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17133
17335
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
17134
17336
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
17337
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17135
17338
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17136
17339
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
17137
17340
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -17228,6 +17431,7 @@ export type UserUpdateWithoutStoryFilterViewsInput = {
|
|
|
17228
17431
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
17229
17432
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
17230
17433
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
17434
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
17231
17435
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
17232
17436
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
17233
17437
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -17308,6 +17512,7 @@ export type UserUncheckedUpdateWithoutStoryFilterViewsInput = {
|
|
|
17308
17512
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17309
17513
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
17310
17514
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
17515
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17311
17516
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17312
17517
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
17313
17518
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -17388,6 +17593,7 @@ export type UserCreateWithoutSubscriptionInput = {
|
|
|
17388
17593
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
17389
17594
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
17390
17595
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
17596
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
17391
17597
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
17392
17598
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
17393
17599
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -17468,6 +17674,7 @@ export type UserUncheckedCreateWithoutSubscriptionInput = {
|
|
|
17468
17674
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17469
17675
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
17470
17676
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
17677
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17471
17678
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17472
17679
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
17473
17680
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -17564,6 +17771,7 @@ export type UserUpdateWithoutSubscriptionInput = {
|
|
|
17564
17771
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
17565
17772
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
17566
17773
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
17774
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
17567
17775
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
17568
17776
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
17569
17777
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -17644,6 +17852,7 @@ export type UserUncheckedUpdateWithoutSubscriptionInput = {
|
|
|
17644
17852
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17645
17853
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
17646
17854
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
17855
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17647
17856
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17648
17857
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
17649
17858
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -17724,6 +17933,7 @@ export type UserCreateWithoutAiUsageLogsInput = {
|
|
|
17724
17933
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
17725
17934
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
17726
17935
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
17936
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
17727
17937
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
17728
17938
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
17729
17939
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -17804,6 +18014,7 @@ export type UserUncheckedCreateWithoutAiUsageLogsInput = {
|
|
|
17804
18014
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17805
18015
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
17806
18016
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
18017
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17807
18018
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
17808
18019
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
17809
18020
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -17900,6 +18111,7 @@ export type UserUpdateWithoutAiUsageLogsInput = {
|
|
|
17900
18111
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
17901
18112
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
17902
18113
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
18114
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
17903
18115
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
17904
18116
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
17905
18117
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -17980,6 +18192,7 @@ export type UserUncheckedUpdateWithoutAiUsageLogsInput = {
|
|
|
17980
18192
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17981
18193
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
17982
18194
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
18195
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17983
18196
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
17984
18197
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
17985
18198
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -18060,6 +18273,7 @@ export type UserCreateWithoutIssuedLicensesInput = {
|
|
|
18060
18273
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
18061
18274
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
18062
18275
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
18276
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
18063
18277
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
18064
18278
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
18065
18279
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -18140,6 +18354,7 @@ export type UserUncheckedCreateWithoutIssuedLicensesInput = {
|
|
|
18140
18354
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18141
18355
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
18142
18356
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
18357
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18143
18358
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18144
18359
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
18145
18360
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -18236,6 +18451,7 @@ export type UserUpdateWithoutIssuedLicensesInput = {
|
|
|
18236
18451
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
18237
18452
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
18238
18453
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
18454
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
18239
18455
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
18240
18456
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
18241
18457
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -18316,6 +18532,7 @@ export type UserUncheckedUpdateWithoutIssuedLicensesInput = {
|
|
|
18316
18532
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18317
18533
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
18318
18534
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
18535
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18319
18536
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18320
18537
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
18321
18538
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -18396,6 +18613,7 @@ export type UserCreateWithoutSsoMappingsInput = {
|
|
|
18396
18613
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
18397
18614
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
18398
18615
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
18616
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
18399
18617
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
18400
18618
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
18401
18619
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -18476,6 +18694,7 @@ export type UserUncheckedCreateWithoutSsoMappingsInput = {
|
|
|
18476
18694
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18477
18695
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
18478
18696
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
18697
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18479
18698
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18480
18699
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
18481
18700
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -18572,6 +18791,7 @@ export type UserUpdateWithoutSsoMappingsInput = {
|
|
|
18572
18791
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
18573
18792
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
18574
18793
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
18794
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
18575
18795
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
18576
18796
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
18577
18797
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -18652,6 +18872,7 @@ export type UserUncheckedUpdateWithoutSsoMappingsInput = {
|
|
|
18652
18872
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18653
18873
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
18654
18874
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
18875
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18655
18876
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18656
18877
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
18657
18878
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -18732,6 +18953,7 @@ export type UserCreateWithoutRoleAssignmentsInput = {
|
|
|
18732
18953
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
18733
18954
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
18734
18955
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
18956
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
18735
18957
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
18736
18958
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
18737
18959
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -18812,6 +19034,7 @@ export type UserUncheckedCreateWithoutRoleAssignmentsInput = {
|
|
|
18812
19034
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18813
19035
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
18814
19036
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
19037
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18815
19038
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
18816
19039
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
18817
19040
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -18908,6 +19131,7 @@ export type UserUpdateWithoutRoleAssignmentsInput = {
|
|
|
18908
19131
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
18909
19132
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
18910
19133
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
19134
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
18911
19135
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
18912
19136
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
18913
19137
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -18988,6 +19212,7 @@ export type UserUncheckedUpdateWithoutRoleAssignmentsInput = {
|
|
|
18988
19212
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18989
19213
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
18990
19214
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
19215
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18991
19216
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
18992
19217
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
18993
19218
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -19068,6 +19293,7 @@ export type UserCreateWithoutAgentsInput = {
|
|
|
19068
19293
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
19069
19294
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
19070
19295
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
19296
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
19071
19297
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
19072
19298
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
19073
19299
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -19148,6 +19374,7 @@ export type UserUncheckedCreateWithoutAgentsInput = {
|
|
|
19148
19374
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19149
19375
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
19150
19376
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
19377
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19151
19378
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19152
19379
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
19153
19380
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -19244,6 +19471,7 @@ export type UserUpdateWithoutAgentsInput = {
|
|
|
19244
19471
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
19245
19472
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
19246
19473
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
19474
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
19247
19475
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
19248
19476
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
19249
19477
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -19324,6 +19552,7 @@ export type UserUncheckedUpdateWithoutAgentsInput = {
|
|
|
19324
19552
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
19325
19553
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
19326
19554
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
19555
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
19327
19556
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
19328
19557
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
19329
19558
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -19404,6 +19633,7 @@ export type UserCreateWithoutSkillsInput = {
|
|
|
19404
19633
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
19405
19634
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
19406
19635
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
19636
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
19407
19637
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
19408
19638
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
19409
19639
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -19484,6 +19714,7 @@ export type UserUncheckedCreateWithoutSkillsInput = {
|
|
|
19484
19714
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19485
19715
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
19486
19716
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
19717
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19487
19718
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19488
19719
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
19489
19720
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -19580,6 +19811,7 @@ export type UserUpdateWithoutSkillsInput = {
|
|
|
19580
19811
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
19581
19812
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
19582
19813
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
19814
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
19583
19815
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
19584
19816
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
19585
19817
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -19660,6 +19892,7 @@ export type UserUncheckedUpdateWithoutSkillsInput = {
|
|
|
19660
19892
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
19661
19893
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
19662
19894
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
19895
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
19663
19896
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
19664
19897
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
19665
19898
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -19740,6 +19973,7 @@ export type UserCreateWithoutNotificationsInput = {
|
|
|
19740
19973
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
19741
19974
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
19742
19975
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
19976
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
19743
19977
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
19744
19978
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
19745
19979
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -19820,6 +20054,7 @@ export type UserUncheckedCreateWithoutNotificationsInput = {
|
|
|
19820
20054
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19821
20055
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
19822
20056
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
20057
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19823
20058
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
19824
20059
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
19825
20060
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -19916,6 +20151,7 @@ export type UserUpdateWithoutNotificationsInput = {
|
|
|
19916
20151
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
19917
20152
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
19918
20153
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
20154
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
19919
20155
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
19920
20156
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
19921
20157
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -19996,6 +20232,7 @@ export type UserUncheckedUpdateWithoutNotificationsInput = {
|
|
|
19996
20232
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
19997
20233
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
19998
20234
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
20235
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
19999
20236
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
20000
20237
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
20001
20238
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -20076,6 +20313,7 @@ export type UserCreateWithoutNotificationPreferenceInput = {
|
|
|
20076
20313
|
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
20077
20314
|
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
20078
20315
|
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
20316
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
20079
20317
|
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
20080
20318
|
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
20081
20319
|
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
@@ -20156,6 +20394,7 @@ export type UserUncheckedCreateWithoutNotificationPreferenceInput = {
|
|
|
20156
20394
|
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
20157
20395
|
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
20158
20396
|
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
20397
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
20159
20398
|
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
20160
20399
|
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
20161
20400
|
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -20252,6 +20491,7 @@ export type UserUpdateWithoutNotificationPreferenceInput = {
|
|
|
20252
20491
|
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
20253
20492
|
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
20254
20493
|
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
20494
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
20255
20495
|
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
20256
20496
|
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
20257
20497
|
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
@@ -20332,6 +20572,7 @@ export type UserUncheckedUpdateWithoutNotificationPreferenceInput = {
|
|
|
20332
20572
|
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
20333
20573
|
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
20334
20574
|
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
20575
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
20335
20576
|
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
20336
20577
|
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
20337
20578
|
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -20360,6 +20601,346 @@ export type UserUncheckedUpdateWithoutNotificationPreferenceInput = {
|
|
|
20360
20601
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
20361
20602
|
}
|
|
20362
20603
|
|
|
20604
|
+
export type UserCreateWithoutIterationsCreatedInput = {
|
|
20605
|
+
id?: string
|
|
20606
|
+
email: string
|
|
20607
|
+
username: string
|
|
20608
|
+
password: string
|
|
20609
|
+
emailVerified?: Date | string | null
|
|
20610
|
+
image?: string | null
|
|
20611
|
+
role?: $Enums.Role
|
|
20612
|
+
status?: $Enums.UserStatus
|
|
20613
|
+
createdAt?: Date | string
|
|
20614
|
+
updatedAt?: Date | string
|
|
20615
|
+
lastLoginAt?: Date | string | null
|
|
20616
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
20617
|
+
bgShape?: string | null
|
|
20618
|
+
bgColor?: string | null
|
|
20619
|
+
aiProvider?: string | null
|
|
20620
|
+
aiApiKey?: string | null
|
|
20621
|
+
aiModel?: string | null
|
|
20622
|
+
locale?: string | null
|
|
20623
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
20624
|
+
sketchApiToken?: string | null
|
|
20625
|
+
timezone?: string | null
|
|
20626
|
+
preferredCurrency?: string
|
|
20627
|
+
defaultWorkspaceId?: string | null
|
|
20628
|
+
accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
|
|
20629
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
20630
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
20631
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
20632
|
+
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
20633
|
+
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
20634
|
+
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
20635
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
20636
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
|
|
20637
|
+
legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
|
|
20638
|
+
industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
|
|
20639
|
+
dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
|
|
20640
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
|
|
20641
|
+
bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
|
|
20642
|
+
articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
|
|
20643
|
+
anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
|
|
20644
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
|
|
20645
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
|
|
20646
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
|
|
20647
|
+
prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
|
|
20648
|
+
reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
|
|
20649
|
+
comments?: Prisma.CommentCreateNestedManyWithoutUserInput
|
|
20650
|
+
commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
|
|
20651
|
+
reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
|
|
20652
|
+
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
20653
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
20654
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
20655
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
20656
|
+
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
20657
|
+
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
20658
|
+
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
20659
|
+
storyReactions?: Prisma.StoryReactionCreateNestedManyWithoutUserInput
|
|
20660
|
+
commentReactions?: Prisma.CommentReactionCreateNestedManyWithoutUserInput
|
|
20661
|
+
storyFilterViews?: Prisma.StoryFilterViewCreateNestedManyWithoutUserInput
|
|
20662
|
+
chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
|
|
20663
|
+
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
20664
|
+
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
20665
|
+
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
20666
|
+
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
20667
|
+
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
20668
|
+
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
20669
|
+
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
20670
|
+
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
20671
|
+
sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
|
|
20672
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
|
|
20673
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
|
|
20674
|
+
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
20675
|
+
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
20676
|
+
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
20677
|
+
notifications?: Prisma.NotificationCreateNestedManyWithoutUserInput
|
|
20678
|
+
notificationPreference?: Prisma.NotificationPreferenceCreateNestedOneWithoutUserInput
|
|
20679
|
+
issuedLicenses?: Prisma.LicenseKeyCreateNestedManyWithoutIssuedByInput
|
|
20680
|
+
ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
|
|
20681
|
+
roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
|
|
20682
|
+
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
20683
|
+
}
|
|
20684
|
+
|
|
20685
|
+
export type UserUncheckedCreateWithoutIterationsCreatedInput = {
|
|
20686
|
+
id?: string
|
|
20687
|
+
email: string
|
|
20688
|
+
username: string
|
|
20689
|
+
password: string
|
|
20690
|
+
emailVerified?: Date | string | null
|
|
20691
|
+
image?: string | null
|
|
20692
|
+
role?: $Enums.Role
|
|
20693
|
+
status?: $Enums.UserStatus
|
|
20694
|
+
createdAt?: Date | string
|
|
20695
|
+
updatedAt?: Date | string
|
|
20696
|
+
lastLoginAt?: Date | string | null
|
|
20697
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
20698
|
+
bgShape?: string | null
|
|
20699
|
+
bgColor?: string | null
|
|
20700
|
+
aiProvider?: string | null
|
|
20701
|
+
aiApiKey?: string | null
|
|
20702
|
+
aiModel?: string | null
|
|
20703
|
+
locale?: string | null
|
|
20704
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
20705
|
+
sketchApiToken?: string | null
|
|
20706
|
+
timezone?: string | null
|
|
20707
|
+
preferredCurrency?: string
|
|
20708
|
+
defaultWorkspaceId?: string | null
|
|
20709
|
+
accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
|
|
20710
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
20711
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
20712
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
20713
|
+
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
20714
|
+
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
20715
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
20716
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
20717
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
|
|
20718
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
|
|
20719
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
|
|
20720
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
|
|
20721
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
|
|
20722
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
|
|
20723
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
|
|
20724
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
|
|
20725
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
|
|
20726
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
|
|
20727
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
|
|
20728
|
+
prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
|
|
20729
|
+
reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
|
|
20730
|
+
comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
|
|
20731
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
|
|
20732
|
+
reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
|
|
20733
|
+
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
20734
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
20735
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
20736
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
20737
|
+
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
20738
|
+
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
20739
|
+
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
20740
|
+
storyReactions?: Prisma.StoryReactionUncheckedCreateNestedManyWithoutUserInput
|
|
20741
|
+
commentReactions?: Prisma.CommentReactionUncheckedCreateNestedManyWithoutUserInput
|
|
20742
|
+
storyFilterViews?: Prisma.StoryFilterViewUncheckedCreateNestedManyWithoutUserInput
|
|
20743
|
+
chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
|
|
20744
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
20745
|
+
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
20746
|
+
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
20747
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
20748
|
+
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
20749
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
20750
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
20751
|
+
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
20752
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
|
|
20753
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
|
|
20754
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
|
|
20755
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
20756
|
+
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
20757
|
+
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
20758
|
+
notifications?: Prisma.NotificationUncheckedCreateNestedManyWithoutUserInput
|
|
20759
|
+
notificationPreference?: Prisma.NotificationPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
20760
|
+
issuedLicenses?: Prisma.LicenseKeyUncheckedCreateNestedManyWithoutIssuedByInput
|
|
20761
|
+
ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
|
|
20762
|
+
roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
|
|
20763
|
+
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
20764
|
+
}
|
|
20765
|
+
|
|
20766
|
+
export type UserCreateOrConnectWithoutIterationsCreatedInput = {
|
|
20767
|
+
where: Prisma.UserWhereUniqueInput
|
|
20768
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutIterationsCreatedInput, Prisma.UserUncheckedCreateWithoutIterationsCreatedInput>
|
|
20769
|
+
}
|
|
20770
|
+
|
|
20771
|
+
export type UserUpsertWithoutIterationsCreatedInput = {
|
|
20772
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutIterationsCreatedInput, Prisma.UserUncheckedUpdateWithoutIterationsCreatedInput>
|
|
20773
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutIterationsCreatedInput, Prisma.UserUncheckedCreateWithoutIterationsCreatedInput>
|
|
20774
|
+
where?: Prisma.UserWhereInput
|
|
20775
|
+
}
|
|
20776
|
+
|
|
20777
|
+
export type UserUpdateToOneWithWhereWithoutIterationsCreatedInput = {
|
|
20778
|
+
where?: Prisma.UserWhereInput
|
|
20779
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutIterationsCreatedInput, Prisma.UserUncheckedUpdateWithoutIterationsCreatedInput>
|
|
20780
|
+
}
|
|
20781
|
+
|
|
20782
|
+
export type UserUpdateWithoutIterationsCreatedInput = {
|
|
20783
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20784
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20785
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20786
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20787
|
+
emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
20788
|
+
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20789
|
+
role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
|
20790
|
+
status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
20791
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
20792
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
20793
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
20794
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
20795
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20796
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20797
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20798
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20799
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20800
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20801
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
20802
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20803
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20804
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20805
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20806
|
+
accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
|
|
20807
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
20808
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
20809
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
20810
|
+
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
20811
|
+
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
20812
|
+
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
20813
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
20814
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
|
|
20815
|
+
legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
|
|
20816
|
+
industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
|
|
20817
|
+
dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
|
|
20818
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
|
|
20819
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
|
|
20820
|
+
articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
|
|
20821
|
+
anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
|
|
20822
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
|
|
20823
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
|
|
20824
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
|
|
20825
|
+
prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
|
|
20826
|
+
reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
|
|
20827
|
+
comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
|
|
20828
|
+
commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
|
|
20829
|
+
reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
|
|
20830
|
+
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
20831
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
20832
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
20833
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
20834
|
+
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
20835
|
+
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
20836
|
+
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
20837
|
+
storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
|
|
20838
|
+
commentReactions?: Prisma.CommentReactionUpdateManyWithoutUserNestedInput
|
|
20839
|
+
storyFilterViews?: Prisma.StoryFilterViewUpdateManyWithoutUserNestedInput
|
|
20840
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
20841
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
20842
|
+
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
20843
|
+
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
20844
|
+
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
20845
|
+
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
20846
|
+
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
20847
|
+
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
20848
|
+
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
20849
|
+
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
20850
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
20851
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
|
|
20852
|
+
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
20853
|
+
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
20854
|
+
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
20855
|
+
notifications?: Prisma.NotificationUpdateManyWithoutUserNestedInput
|
|
20856
|
+
notificationPreference?: Prisma.NotificationPreferenceUpdateOneWithoutUserNestedInput
|
|
20857
|
+
issuedLicenses?: Prisma.LicenseKeyUpdateManyWithoutIssuedByNestedInput
|
|
20858
|
+
ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
|
|
20859
|
+
roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
|
|
20860
|
+
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
20861
|
+
}
|
|
20862
|
+
|
|
20863
|
+
export type UserUncheckedUpdateWithoutIterationsCreatedInput = {
|
|
20864
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20865
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20866
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20867
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20868
|
+
emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
20869
|
+
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20870
|
+
role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
|
20871
|
+
status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
20872
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
20873
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
20874
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
20875
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
20876
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20877
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20878
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20879
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20880
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20881
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20882
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
20883
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20884
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20885
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
20886
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
20887
|
+
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
20888
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
20889
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
20890
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
20891
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
20892
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
20893
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
20894
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
20895
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
20896
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
20897
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
20898
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
20899
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
20900
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
20901
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
20902
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
20903
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
20904
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
20905
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
20906
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
20907
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
20908
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
20909
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
20910
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
20911
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
20912
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
20913
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
20914
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
20915
|
+
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
20916
|
+
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
20917
|
+
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
20918
|
+
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
20919
|
+
commentReactions?: Prisma.CommentReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
20920
|
+
storyFilterViews?: Prisma.StoryFilterViewUncheckedUpdateManyWithoutUserNestedInput
|
|
20921
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
20922
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
20923
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
20924
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
20925
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
20926
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
20927
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
20928
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
20929
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
20930
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
20931
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
20932
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
20933
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
20934
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
20935
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
20936
|
+
notifications?: Prisma.NotificationUncheckedUpdateManyWithoutUserNestedInput
|
|
20937
|
+
notificationPreference?: Prisma.NotificationPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
20938
|
+
issuedLicenses?: Prisma.LicenseKeyUncheckedUpdateManyWithoutIssuedByNestedInput
|
|
20939
|
+
ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
|
|
20940
|
+
roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
|
|
20941
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
20942
|
+
}
|
|
20943
|
+
|
|
20363
20944
|
|
|
20364
20945
|
/**
|
|
20365
20946
|
* Count Type UserCountOutputType
|
|
@@ -20394,6 +20975,7 @@ export type UserCountOutputType = {
|
|
|
20394
20975
|
storiesCreated: number
|
|
20395
20976
|
storiesAssigned: number
|
|
20396
20977
|
storiesEdited: number
|
|
20978
|
+
iterationsCreated: number
|
|
20397
20979
|
labelsCreated: number
|
|
20398
20980
|
storyActivities: number
|
|
20399
20981
|
storyComments: number
|
|
@@ -20449,6 +21031,7 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
20449
21031
|
storiesCreated?: boolean | UserCountOutputTypeCountStoriesCreatedArgs
|
|
20450
21032
|
storiesAssigned?: boolean | UserCountOutputTypeCountStoriesAssignedArgs
|
|
20451
21033
|
storiesEdited?: boolean | UserCountOutputTypeCountStoriesEditedArgs
|
|
21034
|
+
iterationsCreated?: boolean | UserCountOutputTypeCountIterationsCreatedArgs
|
|
20452
21035
|
labelsCreated?: boolean | UserCountOutputTypeCountLabelsCreatedArgs
|
|
20453
21036
|
storyActivities?: boolean | UserCountOutputTypeCountStoryActivitiesArgs
|
|
20454
21037
|
storyComments?: boolean | UserCountOutputTypeCountStoryCommentsArgs
|
|
@@ -20681,6 +21264,13 @@ export type UserCountOutputTypeCountStoriesEditedArgs<ExtArgs extends runtime.Ty
|
|
|
20681
21264
|
where?: Prisma.StoryWhereInput
|
|
20682
21265
|
}
|
|
20683
21266
|
|
|
21267
|
+
/**
|
|
21268
|
+
* UserCountOutputType without action
|
|
21269
|
+
*/
|
|
21270
|
+
export type UserCountOutputTypeCountIterationsCreatedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
21271
|
+
where?: Prisma.IterationWhereInput
|
|
21272
|
+
}
|
|
21273
|
+
|
|
20684
21274
|
/**
|
|
20685
21275
|
* UserCountOutputType without action
|
|
20686
21276
|
*/
|
|
@@ -20902,6 +21492,7 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
20902
21492
|
storiesCreated?: boolean | Prisma.User$storiesCreatedArgs<ExtArgs>
|
|
20903
21493
|
storiesAssigned?: boolean | Prisma.User$storiesAssignedArgs<ExtArgs>
|
|
20904
21494
|
storiesEdited?: boolean | Prisma.User$storiesEditedArgs<ExtArgs>
|
|
21495
|
+
iterationsCreated?: boolean | Prisma.User$iterationsCreatedArgs<ExtArgs>
|
|
20905
21496
|
labelsCreated?: boolean | Prisma.User$labelsCreatedArgs<ExtArgs>
|
|
20906
21497
|
storyActivities?: boolean | Prisma.User$storyActivitiesArgs<ExtArgs>
|
|
20907
21498
|
storyComments?: boolean | Prisma.User$storyCommentsArgs<ExtArgs>
|
|
@@ -21040,6 +21631,7 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
21040
21631
|
storiesCreated?: boolean | Prisma.User$storiesCreatedArgs<ExtArgs>
|
|
21041
21632
|
storiesAssigned?: boolean | Prisma.User$storiesAssignedArgs<ExtArgs>
|
|
21042
21633
|
storiesEdited?: boolean | Prisma.User$storiesEditedArgs<ExtArgs>
|
|
21634
|
+
iterationsCreated?: boolean | Prisma.User$iterationsCreatedArgs<ExtArgs>
|
|
21043
21635
|
labelsCreated?: boolean | Prisma.User$labelsCreatedArgs<ExtArgs>
|
|
21044
21636
|
storyActivities?: boolean | Prisma.User$storyActivitiesArgs<ExtArgs>
|
|
21045
21637
|
storyComments?: boolean | Prisma.User$storyCommentsArgs<ExtArgs>
|
|
@@ -21103,6 +21695,7 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
21103
21695
|
storiesCreated: Prisma.$StoryPayload<ExtArgs>[]
|
|
21104
21696
|
storiesAssigned: Prisma.$StoryPayload<ExtArgs>[]
|
|
21105
21697
|
storiesEdited: Prisma.$StoryPayload<ExtArgs>[]
|
|
21698
|
+
iterationsCreated: Prisma.$IterationPayload<ExtArgs>[]
|
|
21106
21699
|
labelsCreated: Prisma.$LabelPayload<ExtArgs>[]
|
|
21107
21700
|
storyActivities: Prisma.$StoryActivityPayload<ExtArgs>[]
|
|
21108
21701
|
storyComments: Prisma.$StoryCommentPayload<ExtArgs>[]
|
|
@@ -21583,6 +22176,7 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
21583
22176
|
storiesCreated<T extends Prisma.User$storiesCreatedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$storiesCreatedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
21584
22177
|
storiesAssigned<T extends Prisma.User$storiesAssignedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$storiesAssignedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
21585
22178
|
storiesEdited<T extends Prisma.User$storiesEditedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$storiesEditedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
22179
|
+
iterationsCreated<T extends Prisma.User$iterationsCreatedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$iterationsCreatedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$IterationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
21586
22180
|
labelsCreated<T extends Prisma.User$labelsCreatedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$labelsCreatedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$LabelPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
21587
22181
|
storyActivities<T extends Prisma.User$storyActivitiesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$storyActivitiesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryActivityPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
21588
22182
|
storyComments<T extends Prisma.User$storyCommentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$storyCommentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryCommentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
@@ -22726,6 +23320,30 @@ export type User$storiesEditedArgs<ExtArgs extends runtime.Types.Extensions.Inte
|
|
|
22726
23320
|
distinct?: Prisma.StoryScalarFieldEnum | Prisma.StoryScalarFieldEnum[]
|
|
22727
23321
|
}
|
|
22728
23322
|
|
|
23323
|
+
/**
|
|
23324
|
+
* User.iterationsCreated
|
|
23325
|
+
*/
|
|
23326
|
+
export type User$iterationsCreatedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
23327
|
+
/**
|
|
23328
|
+
* Select specific fields to fetch from the Iteration
|
|
23329
|
+
*/
|
|
23330
|
+
select?: Prisma.IterationSelect<ExtArgs> | null
|
|
23331
|
+
/**
|
|
23332
|
+
* Omit specific fields from the Iteration
|
|
23333
|
+
*/
|
|
23334
|
+
omit?: Prisma.IterationOmit<ExtArgs> | null
|
|
23335
|
+
/**
|
|
23336
|
+
* Choose, which related nodes to fetch as well
|
|
23337
|
+
*/
|
|
23338
|
+
include?: Prisma.IterationInclude<ExtArgs> | null
|
|
23339
|
+
where?: Prisma.IterationWhereInput
|
|
23340
|
+
orderBy?: Prisma.IterationOrderByWithRelationInput | Prisma.IterationOrderByWithRelationInput[]
|
|
23341
|
+
cursor?: Prisma.IterationWhereUniqueInput
|
|
23342
|
+
take?: number
|
|
23343
|
+
skip?: number
|
|
23344
|
+
distinct?: Prisma.IterationScalarFieldEnum | Prisma.IterationScalarFieldEnum[]
|
|
23345
|
+
}
|
|
23346
|
+
|
|
22729
23347
|
/**
|
|
22730
23348
|
* User.labelsCreated
|
|
22731
23349
|
*/
|