@allbluecn/database 0.5.0 → 0.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/generated/browser.ts +10 -0
  2. package/generated/client.ts +10 -0
  3. package/generated/internal/class.ts +24 -4
  4. package/generated/internal/prismaNamespace.ts +182 -1
  5. package/generated/internal/prismaNamespaceBrowser.ts +31 -0
  6. package/generated/models/KnowledgeBase.ts +158 -0
  7. package/generated/models/KnowledgeDocument.ts +176 -0
  8. package/generated/models/User.ts +634 -0
  9. package/generated/models/Workspace.ts +380 -0
  10. package/generated/models/WorkspaceKnowledgeBase.ts +1430 -0
  11. package/generated/models/WorkspaceQuickDoc.ts +2030 -0
  12. package/generated/models.ts +2 -0
  13. package/generated-sqlite/browser.ts +10 -0
  14. package/generated-sqlite/client.ts +10 -0
  15. package/generated-sqlite/internal/class.ts +24 -4
  16. package/generated-sqlite/internal/prismaNamespace.ts +182 -1
  17. package/generated-sqlite/internal/prismaNamespaceBrowser.ts +31 -0
  18. package/generated-sqlite/models/KnowledgeBase.ts +150 -0
  19. package/generated-sqlite/models/KnowledgeDocument.ts +168 -0
  20. package/generated-sqlite/models/User.ts +518 -0
  21. package/generated-sqlite/models/Workspace.ts +300 -0
  22. package/generated-sqlite/models/WorkspaceKnowledgeBase.ts +1426 -0
  23. package/generated-sqlite/models/WorkspaceQuickDoc.ts +2025 -0
  24. package/generated-sqlite/models.ts +2 -0
  25. package/migrations/20260909070745_workspace_kb_card/migration.sql +55 -0
  26. package/migrations/20260909123637_workspace_quick_doc_column_index/migration.sql +2 -0
  27. package/migrations/20260909123656_workspace_quick_doc_column_backfill/migration.sql +4 -0
  28. package/migrations/20260909144328_workspace_quick_doc_label/migration.sql +2 -0
  29. package/migrations/20260909154315_workspace_quick_doc_icon/migration.sql +2 -0
  30. package/package.json +2 -2
  31. package/schema.prisma +48 -2
  32. package/schema.sqlite.prisma +48 -2
@@ -375,6 +375,7 @@ export type UserWhereInput = {
375
375
  ssoMappings?: Prisma.SsoMappingListRelationFilter
376
376
  roleAssignments?: Prisma.RoleAssignmentListRelationFilter
377
377
  subscription?: Prisma.XOR<Prisma.SubscriptionNullableScalarRelationFilter, Prisma.SubscriptionWhereInput> | null
378
+ createdQuickDocs?: Prisma.WorkspaceQuickDocListRelationFilter
378
379
  }
379
380
 
380
381
  export type UserOrderByWithRelationInput = {
@@ -458,6 +459,7 @@ export type UserOrderByWithRelationInput = {
458
459
  ssoMappings?: Prisma.SsoMappingOrderByRelationAggregateInput
459
460
  roleAssignments?: Prisma.RoleAssignmentOrderByRelationAggregateInput
460
461
  subscription?: Prisma.SubscriptionOrderByWithRelationInput
462
+ createdQuickDocs?: Prisma.WorkspaceQuickDocOrderByRelationAggregateInput
461
463
  }
462
464
 
463
465
  export type UserWhereUniqueInput = Prisma.AtLeast<{
@@ -544,6 +546,7 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
544
546
  ssoMappings?: Prisma.SsoMappingListRelationFilter
545
547
  roleAssignments?: Prisma.RoleAssignmentListRelationFilter
546
548
  subscription?: Prisma.XOR<Prisma.SubscriptionNullableScalarRelationFilter, Prisma.SubscriptionWhereInput> | null
549
+ createdQuickDocs?: Prisma.WorkspaceQuickDocListRelationFilter
547
550
  }, "id" | "email" | "username">
548
551
 
549
552
  export type UserOrderByWithAggregationInput = {
@@ -685,6 +688,7 @@ export type UserCreateInput = {
685
688
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
686
689
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
687
690
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
691
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
688
692
  }
689
693
 
690
694
  export type UserUncheckedCreateInput = {
@@ -768,6 +772,7 @@ export type UserUncheckedCreateInput = {
768
772
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
769
773
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
770
774
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
775
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
771
776
  }
772
777
 
773
778
  export type UserUpdateInput = {
@@ -851,6 +856,7 @@ export type UserUpdateInput = {
851
856
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
852
857
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
853
858
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
859
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
854
860
  }
855
861
 
856
862
  export type UserUncheckedUpdateInput = {
@@ -934,6 +940,7 @@ export type UserUncheckedUpdateInput = {
934
940
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
935
941
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
936
942
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
943
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
937
944
  }
938
945
 
939
946
  export type UserCreateManyInput = {
@@ -1766,6 +1773,20 @@ export type UserUpdateOneRequiredWithoutCommentReactionsNestedInput = {
1766
1773
  update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutCommentReactionsInput, Prisma.UserUpdateWithoutCommentReactionsInput>, Prisma.UserUncheckedUpdateWithoutCommentReactionsInput>
1767
1774
  }
1768
1775
 
1776
+ export type UserCreateNestedOneWithoutCreatedQuickDocsInput = {
1777
+ create?: Prisma.XOR<Prisma.UserCreateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedCreateWithoutCreatedQuickDocsInput>
1778
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutCreatedQuickDocsInput
1779
+ connect?: Prisma.UserWhereUniqueInput
1780
+ }
1781
+
1782
+ export type UserUpdateOneRequiredWithoutCreatedQuickDocsNestedInput = {
1783
+ create?: Prisma.XOR<Prisma.UserCreateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedCreateWithoutCreatedQuickDocsInput>
1784
+ connectOrCreate?: Prisma.UserCreateOrConnectWithoutCreatedQuickDocsInput
1785
+ upsert?: Prisma.UserUpsertWithoutCreatedQuickDocsInput
1786
+ connect?: Prisma.UserWhereUniqueInput
1787
+ update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutCreatedQuickDocsInput, Prisma.UserUpdateWithoutCreatedQuickDocsInput>, Prisma.UserUncheckedUpdateWithoutCreatedQuickDocsInput>
1788
+ }
1789
+
1769
1790
  export type UserCreateNestedOneWithoutStoryFilterViewsInput = {
1770
1791
  create?: Prisma.XOR<Prisma.UserCreateWithoutStoryFilterViewsInput, Prisma.UserUncheckedCreateWithoutStoryFilterViewsInput>
1771
1792
  connectOrCreate?: Prisma.UserCreateOrConnectWithoutStoryFilterViewsInput
@@ -2002,6 +2023,7 @@ export type UserCreateWithoutAccountsInput = {
2002
2023
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
2003
2024
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
2004
2025
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
2026
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
2005
2027
  }
2006
2028
 
2007
2029
  export type UserUncheckedCreateWithoutAccountsInput = {
@@ -2084,6 +2106,7 @@ export type UserUncheckedCreateWithoutAccountsInput = {
2084
2106
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
2085
2107
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
2086
2108
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
2109
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
2087
2110
  }
2088
2111
 
2089
2112
  export type UserCreateOrConnectWithoutAccountsInput = {
@@ -2182,6 +2205,7 @@ export type UserUpdateWithoutAccountsInput = {
2182
2205
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
2183
2206
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
2184
2207
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
2208
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
2185
2209
  }
2186
2210
 
2187
2211
  export type UserUncheckedUpdateWithoutAccountsInput = {
@@ -2264,6 +2288,7 @@ export type UserUncheckedUpdateWithoutAccountsInput = {
2264
2288
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
2265
2289
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
2266
2290
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
2291
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
2267
2292
  }
2268
2293
 
2269
2294
  export type UserCreateWithoutOwnedProjectsInput = {
@@ -2346,6 +2371,7 @@ export type UserCreateWithoutOwnedProjectsInput = {
2346
2371
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
2347
2372
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
2348
2373
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
2374
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
2349
2375
  }
2350
2376
 
2351
2377
  export type UserUncheckedCreateWithoutOwnedProjectsInput = {
@@ -2428,6 +2454,7 @@ export type UserUncheckedCreateWithoutOwnedProjectsInput = {
2428
2454
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
2429
2455
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
2430
2456
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
2457
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
2431
2458
  }
2432
2459
 
2433
2460
  export type UserCreateOrConnectWithoutOwnedProjectsInput = {
@@ -2526,6 +2553,7 @@ export type UserUpdateWithoutOwnedProjectsInput = {
2526
2553
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
2527
2554
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
2528
2555
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
2556
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
2529
2557
  }
2530
2558
 
2531
2559
  export type UserUncheckedUpdateWithoutOwnedProjectsInput = {
@@ -2608,6 +2636,7 @@ export type UserUncheckedUpdateWithoutOwnedProjectsInput = {
2608
2636
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
2609
2637
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
2610
2638
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
2639
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
2611
2640
  }
2612
2641
 
2613
2642
  export type UserCreateWithoutProjectMembershipsInput = {
@@ -2690,6 +2719,7 @@ export type UserCreateWithoutProjectMembershipsInput = {
2690
2719
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
2691
2720
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
2692
2721
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
2722
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
2693
2723
  }
2694
2724
 
2695
2725
  export type UserUncheckedCreateWithoutProjectMembershipsInput = {
@@ -2772,6 +2802,7 @@ export type UserUncheckedCreateWithoutProjectMembershipsInput = {
2772
2802
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
2773
2803
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
2774
2804
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
2805
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
2775
2806
  }
2776
2807
 
2777
2808
  export type UserCreateOrConnectWithoutProjectMembershipsInput = {
@@ -2870,6 +2901,7 @@ export type UserUpdateWithoutProjectMembershipsInput = {
2870
2901
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
2871
2902
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
2872
2903
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
2904
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
2873
2905
  }
2874
2906
 
2875
2907
  export type UserUncheckedUpdateWithoutProjectMembershipsInput = {
@@ -2952,6 +2984,7 @@ export type UserUncheckedUpdateWithoutProjectMembershipsInput = {
2952
2984
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
2953
2985
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
2954
2986
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
2987
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
2955
2988
  }
2956
2989
 
2957
2990
  export type UserCreateWithoutOwnedWorkspacesInput = {
@@ -3034,6 +3067,7 @@ export type UserCreateWithoutOwnedWorkspacesInput = {
3034
3067
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
3035
3068
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
3036
3069
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
3070
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
3037
3071
  }
3038
3072
 
3039
3073
  export type UserUncheckedCreateWithoutOwnedWorkspacesInput = {
@@ -3116,6 +3150,7 @@ export type UserUncheckedCreateWithoutOwnedWorkspacesInput = {
3116
3150
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
3117
3151
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
3118
3152
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
3153
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
3119
3154
  }
3120
3155
 
3121
3156
  export type UserCreateOrConnectWithoutOwnedWorkspacesInput = {
@@ -3214,6 +3249,7 @@ export type UserUpdateWithoutOwnedWorkspacesInput = {
3214
3249
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
3215
3250
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
3216
3251
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
3252
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
3217
3253
  }
3218
3254
 
3219
3255
  export type UserUncheckedUpdateWithoutOwnedWorkspacesInput = {
@@ -3296,6 +3332,7 @@ export type UserUncheckedUpdateWithoutOwnedWorkspacesInput = {
3296
3332
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
3297
3333
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
3298
3334
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
3335
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
3299
3336
  }
3300
3337
 
3301
3338
  export type UserCreateWithoutWorkspaceMembersInput = {
@@ -3378,6 +3415,7 @@ export type UserCreateWithoutWorkspaceMembersInput = {
3378
3415
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
3379
3416
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
3380
3417
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
3418
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
3381
3419
  }
3382
3420
 
3383
3421
  export type UserUncheckedCreateWithoutWorkspaceMembersInput = {
@@ -3460,6 +3498,7 @@ export type UserUncheckedCreateWithoutWorkspaceMembersInput = {
3460
3498
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
3461
3499
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
3462
3500
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
3501
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
3463
3502
  }
3464
3503
 
3465
3504
  export type UserCreateOrConnectWithoutWorkspaceMembersInput = {
@@ -3558,6 +3597,7 @@ export type UserUpdateWithoutWorkspaceMembersInput = {
3558
3597
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
3559
3598
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
3560
3599
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
3600
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
3561
3601
  }
3562
3602
 
3563
3603
  export type UserUncheckedUpdateWithoutWorkspaceMembersInput = {
@@ -3640,6 +3680,7 @@ export type UserUncheckedUpdateWithoutWorkspaceMembersInput = {
3640
3680
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
3641
3681
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
3642
3682
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
3683
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
3643
3684
  }
3644
3685
 
3645
3686
  export type UserCreateWithoutWorkspaceMembershipsInput = {
@@ -3722,6 +3763,7 @@ export type UserCreateWithoutWorkspaceMembershipsInput = {
3722
3763
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
3723
3764
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
3724
3765
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
3766
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
3725
3767
  }
3726
3768
 
3727
3769
  export type UserUncheckedCreateWithoutWorkspaceMembershipsInput = {
@@ -3804,6 +3846,7 @@ export type UserUncheckedCreateWithoutWorkspaceMembershipsInput = {
3804
3846
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
3805
3847
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
3806
3848
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
3849
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
3807
3850
  }
3808
3851
 
3809
3852
  export type UserCreateOrConnectWithoutWorkspaceMembershipsInput = {
@@ -3891,6 +3934,7 @@ export type UserCreateWithoutTeamJoinedInput = {
3891
3934
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
3892
3935
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
3893
3936
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
3937
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
3894
3938
  }
3895
3939
 
3896
3940
  export type UserUncheckedCreateWithoutTeamJoinedInput = {
@@ -3973,6 +4017,7 @@ export type UserUncheckedCreateWithoutTeamJoinedInput = {
3973
4017
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
3974
4018
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
3975
4019
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
4020
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
3976
4021
  }
3977
4022
 
3978
4023
  export type UserCreateOrConnectWithoutTeamJoinedInput = {
@@ -4071,6 +4116,7 @@ export type UserUpdateWithoutWorkspaceMembershipsInput = {
4071
4116
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
4072
4117
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
4073
4118
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
4119
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
4074
4120
  }
4075
4121
 
4076
4122
  export type UserUncheckedUpdateWithoutWorkspaceMembershipsInput = {
@@ -4153,6 +4199,7 @@ export type UserUncheckedUpdateWithoutWorkspaceMembershipsInput = {
4153
4199
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
4154
4200
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
4155
4201
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
4202
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
4156
4203
  }
4157
4204
 
4158
4205
  export type UserUpsertWithoutTeamJoinedInput = {
@@ -4246,6 +4293,7 @@ export type UserUpdateWithoutTeamJoinedInput = {
4246
4293
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
4247
4294
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
4248
4295
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
4296
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
4249
4297
  }
4250
4298
 
4251
4299
  export type UserUncheckedUpdateWithoutTeamJoinedInput = {
@@ -4328,6 +4376,7 @@ export type UserUncheckedUpdateWithoutTeamJoinedInput = {
4328
4376
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
4329
4377
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
4330
4378
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
4379
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
4331
4380
  }
4332
4381
 
4333
4382
  export type UserCreateWithoutSentInvitationsInput = {
@@ -4410,6 +4459,7 @@ export type UserCreateWithoutSentInvitationsInput = {
4410
4459
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
4411
4460
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
4412
4461
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
4462
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
4413
4463
  }
4414
4464
 
4415
4465
  export type UserUncheckedCreateWithoutSentInvitationsInput = {
@@ -4492,6 +4542,7 @@ export type UserUncheckedCreateWithoutSentInvitationsInput = {
4492
4542
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
4493
4543
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
4494
4544
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
4545
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
4495
4546
  }
4496
4547
 
4497
4548
  export type UserCreateOrConnectWithoutSentInvitationsInput = {
@@ -4590,6 +4641,7 @@ export type UserUpdateWithoutSentInvitationsInput = {
4590
4641
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
4591
4642
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
4592
4643
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
4644
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
4593
4645
  }
4594
4646
 
4595
4647
  export type UserUncheckedUpdateWithoutSentInvitationsInput = {
@@ -4672,6 +4724,7 @@ export type UserUncheckedUpdateWithoutSentInvitationsInput = {
4672
4724
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
4673
4725
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
4674
4726
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
4727
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
4675
4728
  }
4676
4729
 
4677
4730
  export type UserCreateWithoutOwnedJoinRequestsInput = {
@@ -4754,6 +4807,7 @@ export type UserCreateWithoutOwnedJoinRequestsInput = {
4754
4807
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
4755
4808
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
4756
4809
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
4810
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
4757
4811
  }
4758
4812
 
4759
4813
  export type UserUncheckedCreateWithoutOwnedJoinRequestsInput = {
@@ -4836,6 +4890,7 @@ export type UserUncheckedCreateWithoutOwnedJoinRequestsInput = {
4836
4890
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
4837
4891
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
4838
4892
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
4893
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
4839
4894
  }
4840
4895
 
4841
4896
  export type UserCreateOrConnectWithoutOwnedJoinRequestsInput = {
@@ -4923,6 +4978,7 @@ export type UserCreateWithoutApplicantJoinRequestsInput = {
4923
4978
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
4924
4979
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
4925
4980
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
4981
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
4926
4982
  }
4927
4983
 
4928
4984
  export type UserUncheckedCreateWithoutApplicantJoinRequestsInput = {
@@ -5005,6 +5061,7 @@ export type UserUncheckedCreateWithoutApplicantJoinRequestsInput = {
5005
5061
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
5006
5062
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
5007
5063
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
5064
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
5008
5065
  }
5009
5066
 
5010
5067
  export type UserCreateOrConnectWithoutApplicantJoinRequestsInput = {
@@ -5103,6 +5160,7 @@ export type UserUpdateWithoutOwnedJoinRequestsInput = {
5103
5160
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
5104
5161
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
5105
5162
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
5163
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
5106
5164
  }
5107
5165
 
5108
5166
  export type UserUncheckedUpdateWithoutOwnedJoinRequestsInput = {
@@ -5185,6 +5243,7 @@ export type UserUncheckedUpdateWithoutOwnedJoinRequestsInput = {
5185
5243
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
5186
5244
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
5187
5245
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
5246
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
5188
5247
  }
5189
5248
 
5190
5249
  export type UserUpsertWithoutApplicantJoinRequestsInput = {
@@ -5278,6 +5337,7 @@ export type UserUpdateWithoutApplicantJoinRequestsInput = {
5278
5337
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
5279
5338
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
5280
5339
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
5340
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
5281
5341
  }
5282
5342
 
5283
5343
  export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
@@ -5360,6 +5420,7 @@ export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
5360
5420
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
5361
5421
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
5362
5422
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
5423
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
5363
5424
  }
5364
5425
 
5365
5426
  export type UserCreateWithoutProjectActivitiesInput = {
@@ -5442,6 +5503,7 @@ export type UserCreateWithoutProjectActivitiesInput = {
5442
5503
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
5443
5504
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
5444
5505
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
5506
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
5445
5507
  }
5446
5508
 
5447
5509
  export type UserUncheckedCreateWithoutProjectActivitiesInput = {
@@ -5524,6 +5586,7 @@ export type UserUncheckedCreateWithoutProjectActivitiesInput = {
5524
5586
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
5525
5587
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
5526
5588
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
5589
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
5527
5590
  }
5528
5591
 
5529
5592
  export type UserCreateOrConnectWithoutProjectActivitiesInput = {
@@ -5622,6 +5685,7 @@ export type UserUpdateWithoutProjectActivitiesInput = {
5622
5685
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
5623
5686
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
5624
5687
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
5688
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
5625
5689
  }
5626
5690
 
5627
5691
  export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
@@ -5704,6 +5768,7 @@ export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
5704
5768
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
5705
5769
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
5706
5770
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
5771
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
5707
5772
  }
5708
5773
 
5709
5774
  export type UserCreateWithoutChatThreadsInput = {
@@ -5786,6 +5851,7 @@ export type UserCreateWithoutChatThreadsInput = {
5786
5851
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
5787
5852
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
5788
5853
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
5854
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
5789
5855
  }
5790
5856
 
5791
5857
  export type UserUncheckedCreateWithoutChatThreadsInput = {
@@ -5868,6 +5934,7 @@ export type UserUncheckedCreateWithoutChatThreadsInput = {
5868
5934
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
5869
5935
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
5870
5936
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
5937
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
5871
5938
  }
5872
5939
 
5873
5940
  export type UserCreateOrConnectWithoutChatThreadsInput = {
@@ -5966,6 +6033,7 @@ export type UserUpdateWithoutChatThreadsInput = {
5966
6033
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
5967
6034
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
5968
6035
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
6036
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
5969
6037
  }
5970
6038
 
5971
6039
  export type UserUncheckedUpdateWithoutChatThreadsInput = {
@@ -6048,6 +6116,7 @@ export type UserUncheckedUpdateWithoutChatThreadsInput = {
6048
6116
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
6049
6117
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
6050
6118
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
6119
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
6051
6120
  }
6052
6121
 
6053
6122
  export type UserCreateWithoutLoginLogsInput = {
@@ -6130,6 +6199,7 @@ export type UserCreateWithoutLoginLogsInput = {
6130
6199
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
6131
6200
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
6132
6201
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
6202
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
6133
6203
  }
6134
6204
 
6135
6205
  export type UserUncheckedCreateWithoutLoginLogsInput = {
@@ -6212,6 +6282,7 @@ export type UserUncheckedCreateWithoutLoginLogsInput = {
6212
6282
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
6213
6283
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
6214
6284
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
6285
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
6215
6286
  }
6216
6287
 
6217
6288
  export type UserCreateOrConnectWithoutLoginLogsInput = {
@@ -6310,6 +6381,7 @@ export type UserUpdateWithoutLoginLogsInput = {
6310
6381
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
6311
6382
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
6312
6383
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
6384
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
6313
6385
  }
6314
6386
 
6315
6387
  export type UserUncheckedUpdateWithoutLoginLogsInput = {
@@ -6392,6 +6464,7 @@ export type UserUncheckedUpdateWithoutLoginLogsInput = {
6392
6464
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
6393
6465
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
6394
6466
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
6467
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
6395
6468
  }
6396
6469
 
6397
6470
  export type UserCreateWithoutInvitationUsesInput = {
@@ -6474,6 +6547,7 @@ export type UserCreateWithoutInvitationUsesInput = {
6474
6547
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
6475
6548
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
6476
6549
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
6550
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
6477
6551
  }
6478
6552
 
6479
6553
  export type UserUncheckedCreateWithoutInvitationUsesInput = {
@@ -6556,6 +6630,7 @@ export type UserUncheckedCreateWithoutInvitationUsesInput = {
6556
6630
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
6557
6631
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
6558
6632
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
6633
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
6559
6634
  }
6560
6635
 
6561
6636
  export type UserCreateOrConnectWithoutInvitationUsesInput = {
@@ -6654,6 +6729,7 @@ export type UserUpdateWithoutInvitationUsesInput = {
6654
6729
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
6655
6730
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
6656
6731
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
6732
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
6657
6733
  }
6658
6734
 
6659
6735
  export type UserUncheckedUpdateWithoutInvitationUsesInput = {
@@ -6736,6 +6812,7 @@ export type UserUncheckedUpdateWithoutInvitationUsesInput = {
6736
6812
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
6737
6813
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
6738
6814
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
6815
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
6739
6816
  }
6740
6817
 
6741
6818
  export type UserCreateWithoutPasswordResetTokensInput = {
@@ -6818,6 +6895,7 @@ export type UserCreateWithoutPasswordResetTokensInput = {
6818
6895
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
6819
6896
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
6820
6897
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
6898
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
6821
6899
  }
6822
6900
 
6823
6901
  export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
@@ -6900,6 +6978,7 @@ export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
6900
6978
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
6901
6979
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
6902
6980
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
6981
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
6903
6982
  }
6904
6983
 
6905
6984
  export type UserCreateOrConnectWithoutPasswordResetTokensInput = {
@@ -6998,6 +7077,7 @@ export type UserUpdateWithoutPasswordResetTokensInput = {
6998
7077
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
6999
7078
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
7000
7079
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
7080
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
7001
7081
  }
7002
7082
 
7003
7083
  export type UserUncheckedUpdateWithoutPasswordResetTokensInput = {
@@ -7080,6 +7160,7 @@ export type UserUncheckedUpdateWithoutPasswordResetTokensInput = {
7080
7160
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
7081
7161
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
7082
7162
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
7163
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
7083
7164
  }
7084
7165
 
7085
7166
  export type UserCreateWithoutKnowledgeBasesInput = {
@@ -7162,6 +7243,7 @@ export type UserCreateWithoutKnowledgeBasesInput = {
7162
7243
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
7163
7244
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
7164
7245
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
7246
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
7165
7247
  }
7166
7248
 
7167
7249
  export type UserUncheckedCreateWithoutKnowledgeBasesInput = {
@@ -7244,6 +7326,7 @@ export type UserUncheckedCreateWithoutKnowledgeBasesInput = {
7244
7326
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
7245
7327
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
7246
7328
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
7329
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
7247
7330
  }
7248
7331
 
7249
7332
  export type UserCreateOrConnectWithoutKnowledgeBasesInput = {
@@ -7342,6 +7425,7 @@ export type UserUpdateWithoutKnowledgeBasesInput = {
7342
7425
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
7343
7426
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
7344
7427
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
7428
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
7345
7429
  }
7346
7430
 
7347
7431
  export type UserUncheckedUpdateWithoutKnowledgeBasesInput = {
@@ -7424,6 +7508,7 @@ export type UserUncheckedUpdateWithoutKnowledgeBasesInput = {
7424
7508
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
7425
7509
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
7426
7510
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
7511
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
7427
7512
  }
7428
7513
 
7429
7514
  export type UserCreateWithoutKnowledgeDocumentsInput = {
@@ -7506,6 +7591,7 @@ export type UserCreateWithoutKnowledgeDocumentsInput = {
7506
7591
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
7507
7592
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
7508
7593
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
7594
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
7509
7595
  }
7510
7596
 
7511
7597
  export type UserUncheckedCreateWithoutKnowledgeDocumentsInput = {
@@ -7588,6 +7674,7 @@ export type UserUncheckedCreateWithoutKnowledgeDocumentsInput = {
7588
7674
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
7589
7675
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
7590
7676
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
7677
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
7591
7678
  }
7592
7679
 
7593
7680
  export type UserCreateOrConnectWithoutKnowledgeDocumentsInput = {
@@ -7686,6 +7773,7 @@ export type UserUpdateWithoutKnowledgeDocumentsInput = {
7686
7773
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
7687
7774
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
7688
7775
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
7776
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
7689
7777
  }
7690
7778
 
7691
7779
  export type UserUncheckedUpdateWithoutKnowledgeDocumentsInput = {
@@ -7768,6 +7856,7 @@ export type UserUncheckedUpdateWithoutKnowledgeDocumentsInput = {
7768
7856
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
7769
7857
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
7770
7858
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
7859
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
7771
7860
  }
7772
7861
 
7773
7862
  export type UserCreateWithoutPrdsInput = {
@@ -7850,6 +7939,7 @@ export type UserCreateWithoutPrdsInput = {
7850
7939
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
7851
7940
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
7852
7941
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
7942
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
7853
7943
  }
7854
7944
 
7855
7945
  export type UserUncheckedCreateWithoutPrdsInput = {
@@ -7932,6 +8022,7 @@ export type UserUncheckedCreateWithoutPrdsInput = {
7932
8022
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
7933
8023
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
7934
8024
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
8025
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
7935
8026
  }
7936
8027
 
7937
8028
  export type UserCreateOrConnectWithoutPrdsInput = {
@@ -8030,6 +8121,7 @@ export type UserUpdateWithoutPrdsInput = {
8030
8121
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
8031
8122
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
8032
8123
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
8124
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
8033
8125
  }
8034
8126
 
8035
8127
  export type UserUncheckedUpdateWithoutPrdsInput = {
@@ -8112,6 +8204,7 @@ export type UserUncheckedUpdateWithoutPrdsInput = {
8112
8204
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
8113
8205
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
8114
8206
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
8207
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
8115
8208
  }
8116
8209
 
8117
8210
  export type UserCreateWithoutAgentConversationsInput = {
@@ -8194,6 +8287,7 @@ export type UserCreateWithoutAgentConversationsInput = {
8194
8287
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
8195
8288
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
8196
8289
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
8290
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
8197
8291
  }
8198
8292
 
8199
8293
  export type UserUncheckedCreateWithoutAgentConversationsInput = {
@@ -8276,6 +8370,7 @@ export type UserUncheckedCreateWithoutAgentConversationsInput = {
8276
8370
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
8277
8371
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
8278
8372
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
8373
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
8279
8374
  }
8280
8375
 
8281
8376
  export type UserCreateOrConnectWithoutAgentConversationsInput = {
@@ -8374,6 +8469,7 @@ export type UserUpdateWithoutAgentConversationsInput = {
8374
8469
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
8375
8470
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
8376
8471
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
8472
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
8377
8473
  }
8378
8474
 
8379
8475
  export type UserUncheckedUpdateWithoutAgentConversationsInput = {
@@ -8456,6 +8552,7 @@ export type UserUncheckedUpdateWithoutAgentConversationsInput = {
8456
8552
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
8457
8553
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
8458
8554
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
8555
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
8459
8556
  }
8460
8557
 
8461
8558
  export type UserCreateWithoutPrdVersionsInput = {
@@ -8538,6 +8635,7 @@ export type UserCreateWithoutPrdVersionsInput = {
8538
8635
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
8539
8636
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
8540
8637
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
8638
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
8541
8639
  }
8542
8640
 
8543
8641
  export type UserUncheckedCreateWithoutPrdVersionsInput = {
@@ -8620,6 +8718,7 @@ export type UserUncheckedCreateWithoutPrdVersionsInput = {
8620
8718
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
8621
8719
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
8622
8720
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
8721
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
8623
8722
  }
8624
8723
 
8625
8724
  export type UserCreateOrConnectWithoutPrdVersionsInput = {
@@ -8718,6 +8817,7 @@ export type UserUpdateWithoutPrdVersionsInput = {
8718
8817
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
8719
8818
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
8720
8819
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
8820
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
8721
8821
  }
8722
8822
 
8723
8823
  export type UserUncheckedUpdateWithoutPrdVersionsInput = {
@@ -8800,6 +8900,7 @@ export type UserUncheckedUpdateWithoutPrdVersionsInput = {
8800
8900
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
8801
8901
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
8802
8902
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
8903
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
8803
8904
  }
8804
8905
 
8805
8906
  export type UserCreateWithoutReviewsInput = {
@@ -8882,6 +8983,7 @@ export type UserCreateWithoutReviewsInput = {
8882
8983
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
8883
8984
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
8884
8985
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
8986
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
8885
8987
  }
8886
8988
 
8887
8989
  export type UserUncheckedCreateWithoutReviewsInput = {
@@ -8964,6 +9066,7 @@ export type UserUncheckedCreateWithoutReviewsInput = {
8964
9066
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
8965
9067
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
8966
9068
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
9069
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
8967
9070
  }
8968
9071
 
8969
9072
  export type UserCreateOrConnectWithoutReviewsInput = {
@@ -9062,6 +9165,7 @@ export type UserUpdateWithoutReviewsInput = {
9062
9165
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
9063
9166
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
9064
9167
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
9168
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
9065
9169
  }
9066
9170
 
9067
9171
  export type UserUncheckedUpdateWithoutReviewsInput = {
@@ -9144,6 +9248,7 @@ export type UserUncheckedUpdateWithoutReviewsInput = {
9144
9248
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
9145
9249
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
9146
9250
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
9251
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
9147
9252
  }
9148
9253
 
9149
9254
  export type UserCreateWithoutReviewCommentsInput = {
@@ -9226,6 +9331,7 @@ export type UserCreateWithoutReviewCommentsInput = {
9226
9331
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
9227
9332
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
9228
9333
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
9334
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
9229
9335
  }
9230
9336
 
9231
9337
  export type UserUncheckedCreateWithoutReviewCommentsInput = {
@@ -9308,6 +9414,7 @@ export type UserUncheckedCreateWithoutReviewCommentsInput = {
9308
9414
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
9309
9415
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
9310
9416
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
9417
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
9311
9418
  }
9312
9419
 
9313
9420
  export type UserCreateOrConnectWithoutReviewCommentsInput = {
@@ -9406,6 +9513,7 @@ export type UserUpdateWithoutReviewCommentsInput = {
9406
9513
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
9407
9514
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
9408
9515
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
9516
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
9409
9517
  }
9410
9518
 
9411
9519
  export type UserUncheckedUpdateWithoutReviewCommentsInput = {
@@ -9488,6 +9596,7 @@ export type UserUncheckedUpdateWithoutReviewCommentsInput = {
9488
9596
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
9489
9597
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
9490
9598
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
9599
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
9491
9600
  }
9492
9601
 
9493
9602
  export type UserCreateWithoutCommentsInput = {
@@ -9570,6 +9679,7 @@ export type UserCreateWithoutCommentsInput = {
9570
9679
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
9571
9680
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
9572
9681
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
9682
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
9573
9683
  }
9574
9684
 
9575
9685
  export type UserUncheckedCreateWithoutCommentsInput = {
@@ -9652,6 +9762,7 @@ export type UserUncheckedCreateWithoutCommentsInput = {
9652
9762
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
9653
9763
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
9654
9764
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
9765
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
9655
9766
  }
9656
9767
 
9657
9768
  export type UserCreateOrConnectWithoutCommentsInput = {
@@ -9750,6 +9861,7 @@ export type UserUpdateWithoutCommentsInput = {
9750
9861
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
9751
9862
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
9752
9863
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
9864
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
9753
9865
  }
9754
9866
 
9755
9867
  export type UserUncheckedUpdateWithoutCommentsInput = {
@@ -9832,6 +9944,7 @@ export type UserUncheckedUpdateWithoutCommentsInput = {
9832
9944
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
9833
9945
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
9834
9946
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
9947
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
9835
9948
  }
9836
9949
 
9837
9950
  export type UserCreateWithoutCommentIgnoresInput = {
@@ -9914,6 +10027,7 @@ export type UserCreateWithoutCommentIgnoresInput = {
9914
10027
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
9915
10028
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
9916
10029
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
10030
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
9917
10031
  }
9918
10032
 
9919
10033
  export type UserUncheckedCreateWithoutCommentIgnoresInput = {
@@ -9996,6 +10110,7 @@ export type UserUncheckedCreateWithoutCommentIgnoresInput = {
9996
10110
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
9997
10111
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
9998
10112
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
10113
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
9999
10114
  }
10000
10115
 
10001
10116
  export type UserCreateOrConnectWithoutCommentIgnoresInput = {
@@ -10094,6 +10209,7 @@ export type UserUpdateWithoutCommentIgnoresInput = {
10094
10209
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
10095
10210
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
10096
10211
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
10212
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
10097
10213
  }
10098
10214
 
10099
10215
  export type UserUncheckedUpdateWithoutCommentIgnoresInput = {
@@ -10176,6 +10292,7 @@ export type UserUncheckedUpdateWithoutCommentIgnoresInput = {
10176
10292
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
10177
10293
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
10178
10294
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
10295
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
10179
10296
  }
10180
10297
 
10181
10298
  export type UserCreateWithoutTagsInput = {
@@ -10258,6 +10375,7 @@ export type UserCreateWithoutTagsInput = {
10258
10375
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
10259
10376
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
10260
10377
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
10378
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
10261
10379
  }
10262
10380
 
10263
10381
  export type UserUncheckedCreateWithoutTagsInput = {
@@ -10340,6 +10458,7 @@ export type UserUncheckedCreateWithoutTagsInput = {
10340
10458
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
10341
10459
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
10342
10460
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
10461
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
10343
10462
  }
10344
10463
 
10345
10464
  export type UserCreateOrConnectWithoutTagsInput = {
@@ -10438,6 +10557,7 @@ export type UserUpdateWithoutTagsInput = {
10438
10557
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
10439
10558
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
10440
10559
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
10560
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
10441
10561
  }
10442
10562
 
10443
10563
  export type UserUncheckedUpdateWithoutTagsInput = {
@@ -10520,6 +10640,7 @@ export type UserUncheckedUpdateWithoutTagsInput = {
10520
10640
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
10521
10641
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
10522
10642
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
10643
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
10523
10644
  }
10524
10645
 
10525
10646
  export type UserCreateWithoutAnyhubAppsInput = {
@@ -10602,6 +10723,7 @@ export type UserCreateWithoutAnyhubAppsInput = {
10602
10723
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
10603
10724
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
10604
10725
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
10726
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
10605
10727
  }
10606
10728
 
10607
10729
  export type UserUncheckedCreateWithoutAnyhubAppsInput = {
@@ -10684,6 +10806,7 @@ export type UserUncheckedCreateWithoutAnyhubAppsInput = {
10684
10806
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
10685
10807
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
10686
10808
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
10809
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
10687
10810
  }
10688
10811
 
10689
10812
  export type UserCreateOrConnectWithoutAnyhubAppsInput = {
@@ -10782,6 +10905,7 @@ export type UserUpdateWithoutAnyhubAppsInput = {
10782
10905
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
10783
10906
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
10784
10907
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
10908
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
10785
10909
  }
10786
10910
 
10787
10911
  export type UserUncheckedUpdateWithoutAnyhubAppsInput = {
@@ -10864,6 +10988,7 @@ export type UserUncheckedUpdateWithoutAnyhubAppsInput = {
10864
10988
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
10865
10989
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
10866
10990
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
10991
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
10867
10992
  }
10868
10993
 
10869
10994
  export type UserCreateWithoutAnyhubMarketAppsInput = {
@@ -10946,6 +11071,7 @@ export type UserCreateWithoutAnyhubMarketAppsInput = {
10946
11071
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
10947
11072
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
10948
11073
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
11074
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
10949
11075
  }
10950
11076
 
10951
11077
  export type UserUncheckedCreateWithoutAnyhubMarketAppsInput = {
@@ -11028,6 +11154,7 @@ export type UserUncheckedCreateWithoutAnyhubMarketAppsInput = {
11028
11154
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
11029
11155
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
11030
11156
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
11157
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
11031
11158
  }
11032
11159
 
11033
11160
  export type UserCreateOrConnectWithoutAnyhubMarketAppsInput = {
@@ -11126,6 +11253,7 @@ export type UserUpdateWithoutAnyhubMarketAppsInput = {
11126
11253
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
11127
11254
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
11128
11255
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
11256
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
11129
11257
  }
11130
11258
 
11131
11259
  export type UserUncheckedUpdateWithoutAnyhubMarketAppsInput = {
@@ -11208,6 +11336,7 @@ export type UserUncheckedUpdateWithoutAnyhubMarketAppsInput = {
11208
11336
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
11209
11337
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
11210
11338
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
11339
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
11211
11340
  }
11212
11341
 
11213
11342
  export type UserCreateWithoutReviewedAnyhubRecommendationsInput = {
@@ -11290,6 +11419,7 @@ export type UserCreateWithoutReviewedAnyhubRecommendationsInput = {
11290
11419
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
11291
11420
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
11292
11421
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
11422
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
11293
11423
  }
11294
11424
 
11295
11425
  export type UserUncheckedCreateWithoutReviewedAnyhubRecommendationsInput = {
@@ -11372,6 +11502,7 @@ export type UserUncheckedCreateWithoutReviewedAnyhubRecommendationsInput = {
11372
11502
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
11373
11503
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
11374
11504
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
11505
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
11375
11506
  }
11376
11507
 
11377
11508
  export type UserCreateOrConnectWithoutReviewedAnyhubRecommendationsInput = {
@@ -11470,6 +11601,7 @@ export type UserUpdateWithoutReviewedAnyhubRecommendationsInput = {
11470
11601
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
11471
11602
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
11472
11603
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
11604
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
11473
11605
  }
11474
11606
 
11475
11607
  export type UserUncheckedUpdateWithoutReviewedAnyhubRecommendationsInput = {
@@ -11552,6 +11684,7 @@ export type UserUncheckedUpdateWithoutReviewedAnyhubRecommendationsInput = {
11552
11684
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
11553
11685
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
11554
11686
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
11687
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
11555
11688
  }
11556
11689
 
11557
11690
  export type UserCreateWithoutAnyhubRecommendersInput = {
@@ -11634,6 +11767,7 @@ export type UserCreateWithoutAnyhubRecommendersInput = {
11634
11767
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
11635
11768
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
11636
11769
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
11770
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
11637
11771
  }
11638
11772
 
11639
11773
  export type UserUncheckedCreateWithoutAnyhubRecommendersInput = {
@@ -11716,6 +11850,7 @@ export type UserUncheckedCreateWithoutAnyhubRecommendersInput = {
11716
11850
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
11717
11851
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
11718
11852
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
11853
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
11719
11854
  }
11720
11855
 
11721
11856
  export type UserCreateOrConnectWithoutAnyhubRecommendersInput = {
@@ -11814,6 +11949,7 @@ export type UserUpdateWithoutAnyhubRecommendersInput = {
11814
11949
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
11815
11950
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
11816
11951
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
11952
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
11817
11953
  }
11818
11954
 
11819
11955
  export type UserUncheckedUpdateWithoutAnyhubRecommendersInput = {
@@ -11896,6 +12032,7 @@ export type UserUncheckedUpdateWithoutAnyhubRecommendersInput = {
11896
12032
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
11897
12033
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
11898
12034
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
12035
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
11899
12036
  }
11900
12037
 
11901
12038
  export type UserCreateWithoutDesignProjectsInput = {
@@ -11978,6 +12115,7 @@ export type UserCreateWithoutDesignProjectsInput = {
11978
12115
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
11979
12116
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
11980
12117
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
12118
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
11981
12119
  }
11982
12120
 
11983
12121
  export type UserUncheckedCreateWithoutDesignProjectsInput = {
@@ -12060,6 +12198,7 @@ export type UserUncheckedCreateWithoutDesignProjectsInput = {
12060
12198
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
12061
12199
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
12062
12200
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
12201
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
12063
12202
  }
12064
12203
 
12065
12204
  export type UserCreateOrConnectWithoutDesignProjectsInput = {
@@ -12158,6 +12297,7 @@ export type UserUpdateWithoutDesignProjectsInput = {
12158
12297
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
12159
12298
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
12160
12299
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
12300
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
12161
12301
  }
12162
12302
 
12163
12303
  export type UserUncheckedUpdateWithoutDesignProjectsInput = {
@@ -12240,6 +12380,7 @@ export type UserUncheckedUpdateWithoutDesignProjectsInput = {
12240
12380
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
12241
12381
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
12242
12382
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
12383
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
12243
12384
  }
12244
12385
 
12245
12386
  export type UserCreateWithoutAiProviderConfigsInput = {
@@ -12322,6 +12463,7 @@ export type UserCreateWithoutAiProviderConfigsInput = {
12322
12463
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
12323
12464
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
12324
12465
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
12466
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
12325
12467
  }
12326
12468
 
12327
12469
  export type UserUncheckedCreateWithoutAiProviderConfigsInput = {
@@ -12404,6 +12546,7 @@ export type UserUncheckedCreateWithoutAiProviderConfigsInput = {
12404
12546
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
12405
12547
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
12406
12548
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
12549
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
12407
12550
  }
12408
12551
 
12409
12552
  export type UserCreateOrConnectWithoutAiProviderConfigsInput = {
@@ -12502,6 +12645,7 @@ export type UserUpdateWithoutAiProviderConfigsInput = {
12502
12645
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
12503
12646
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
12504
12647
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
12648
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
12505
12649
  }
12506
12650
 
12507
12651
  export type UserUncheckedUpdateWithoutAiProviderConfigsInput = {
@@ -12584,6 +12728,7 @@ export type UserUncheckedUpdateWithoutAiProviderConfigsInput = {
12584
12728
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
12585
12729
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
12586
12730
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
12731
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
12587
12732
  }
12588
12733
 
12589
12734
  export type UserCreateWithoutLegalRegulationsInput = {
@@ -12666,6 +12811,7 @@ export type UserCreateWithoutLegalRegulationsInput = {
12666
12811
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
12667
12812
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
12668
12813
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
12814
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
12669
12815
  }
12670
12816
 
12671
12817
  export type UserUncheckedCreateWithoutLegalRegulationsInput = {
@@ -12748,6 +12894,7 @@ export type UserUncheckedCreateWithoutLegalRegulationsInput = {
12748
12894
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
12749
12895
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
12750
12896
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
12897
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
12751
12898
  }
12752
12899
 
12753
12900
  export type UserCreateOrConnectWithoutLegalRegulationsInput = {
@@ -12846,6 +12993,7 @@ export type UserUpdateWithoutLegalRegulationsInput = {
12846
12993
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
12847
12994
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
12848
12995
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
12996
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
12849
12997
  }
12850
12998
 
12851
12999
  export type UserUncheckedUpdateWithoutLegalRegulationsInput = {
@@ -12928,6 +13076,7 @@ export type UserUncheckedUpdateWithoutLegalRegulationsInput = {
12928
13076
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
12929
13077
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
12930
13078
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
13079
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
12931
13080
  }
12932
13081
 
12933
13082
  export type UserCreateWithoutIndustryCompliancesInput = {
@@ -13010,6 +13159,7 @@ export type UserCreateWithoutIndustryCompliancesInput = {
13010
13159
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
13011
13160
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
13012
13161
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
13162
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
13013
13163
  }
13014
13164
 
13015
13165
  export type UserUncheckedCreateWithoutIndustryCompliancesInput = {
@@ -13092,6 +13242,7 @@ export type UserUncheckedCreateWithoutIndustryCompliancesInput = {
13092
13242
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
13093
13243
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
13094
13244
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
13245
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
13095
13246
  }
13096
13247
 
13097
13248
  export type UserCreateOrConnectWithoutIndustryCompliancesInput = {
@@ -13190,6 +13341,7 @@ export type UserUpdateWithoutIndustryCompliancesInput = {
13190
13341
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
13191
13342
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
13192
13343
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
13344
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
13193
13345
  }
13194
13346
 
13195
13347
  export type UserUncheckedUpdateWithoutIndustryCompliancesInput = {
@@ -13272,6 +13424,7 @@ export type UserUncheckedUpdateWithoutIndustryCompliancesInput = {
13272
13424
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
13273
13425
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
13274
13426
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
13427
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
13275
13428
  }
13276
13429
 
13277
13430
  export type UserCreateWithoutDictionaryTermsInput = {
@@ -13354,6 +13507,7 @@ export type UserCreateWithoutDictionaryTermsInput = {
13354
13507
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
13355
13508
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
13356
13509
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
13510
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
13357
13511
  }
13358
13512
 
13359
13513
  export type UserUncheckedCreateWithoutDictionaryTermsInput = {
@@ -13436,6 +13590,7 @@ export type UserUncheckedCreateWithoutDictionaryTermsInput = {
13436
13590
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
13437
13591
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
13438
13592
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
13593
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
13439
13594
  }
13440
13595
 
13441
13596
  export type UserCreateOrConnectWithoutDictionaryTermsInput = {
@@ -13534,6 +13689,7 @@ export type UserUpdateWithoutDictionaryTermsInput = {
13534
13689
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
13535
13690
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
13536
13691
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
13692
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
13537
13693
  }
13538
13694
 
13539
13695
  export type UserUncheckedUpdateWithoutDictionaryTermsInput = {
@@ -13616,6 +13772,7 @@ export type UserUncheckedUpdateWithoutDictionaryTermsInput = {
13616
13772
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
13617
13773
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
13618
13774
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
13775
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
13619
13776
  }
13620
13777
 
13621
13778
  export type UserCreateWithoutWebsiteBookmarksInput = {
@@ -13698,6 +13855,7 @@ export type UserCreateWithoutWebsiteBookmarksInput = {
13698
13855
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
13699
13856
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
13700
13857
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
13858
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
13701
13859
  }
13702
13860
 
13703
13861
  export type UserUncheckedCreateWithoutWebsiteBookmarksInput = {
@@ -13780,6 +13938,7 @@ export type UserUncheckedCreateWithoutWebsiteBookmarksInput = {
13780
13938
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
13781
13939
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
13782
13940
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
13941
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
13783
13942
  }
13784
13943
 
13785
13944
  export type UserCreateOrConnectWithoutWebsiteBookmarksInput = {
@@ -13878,6 +14037,7 @@ export type UserUpdateWithoutWebsiteBookmarksInput = {
13878
14037
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
13879
14038
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
13880
14039
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
14040
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
13881
14041
  }
13882
14042
 
13883
14043
  export type UserUncheckedUpdateWithoutWebsiteBookmarksInput = {
@@ -13960,6 +14120,7 @@ export type UserUncheckedUpdateWithoutWebsiteBookmarksInput = {
13960
14120
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
13961
14121
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
13962
14122
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
14123
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
13963
14124
  }
13964
14125
 
13965
14126
  export type UserCreateWithoutBookmarkCategoriesInput = {
@@ -14042,6 +14203,7 @@ export type UserCreateWithoutBookmarkCategoriesInput = {
14042
14203
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
14043
14204
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
14044
14205
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
14206
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
14045
14207
  }
14046
14208
 
14047
14209
  export type UserUncheckedCreateWithoutBookmarkCategoriesInput = {
@@ -14124,6 +14286,7 @@ export type UserUncheckedCreateWithoutBookmarkCategoriesInput = {
14124
14286
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
14125
14287
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
14126
14288
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
14289
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
14127
14290
  }
14128
14291
 
14129
14292
  export type UserCreateOrConnectWithoutBookmarkCategoriesInput = {
@@ -14222,6 +14385,7 @@ export type UserUpdateWithoutBookmarkCategoriesInput = {
14222
14385
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
14223
14386
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
14224
14387
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
14388
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
14225
14389
  }
14226
14390
 
14227
14391
  export type UserUncheckedUpdateWithoutBookmarkCategoriesInput = {
@@ -14304,6 +14468,7 @@ export type UserUncheckedUpdateWithoutBookmarkCategoriesInput = {
14304
14468
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
14305
14469
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
14306
14470
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
14471
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
14307
14472
  }
14308
14473
 
14309
14474
  export type UserCreateWithoutKnowledgeSharesInput = {
@@ -14386,6 +14551,7 @@ export type UserCreateWithoutKnowledgeSharesInput = {
14386
14551
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
14387
14552
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
14388
14553
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
14554
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
14389
14555
  }
14390
14556
 
14391
14557
  export type UserUncheckedCreateWithoutKnowledgeSharesInput = {
@@ -14468,6 +14634,7 @@ export type UserUncheckedCreateWithoutKnowledgeSharesInput = {
14468
14634
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
14469
14635
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
14470
14636
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
14637
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
14471
14638
  }
14472
14639
 
14473
14640
  export type UserCreateOrConnectWithoutKnowledgeSharesInput = {
@@ -14566,6 +14733,7 @@ export type UserUpdateWithoutKnowledgeSharesInput = {
14566
14733
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
14567
14734
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
14568
14735
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
14736
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
14569
14737
  }
14570
14738
 
14571
14739
  export type UserUncheckedUpdateWithoutKnowledgeSharesInput = {
@@ -14648,6 +14816,7 @@ export type UserUncheckedUpdateWithoutKnowledgeSharesInput = {
14648
14816
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
14649
14817
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
14650
14818
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
14819
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
14651
14820
  }
14652
14821
 
14653
14822
  export type UserCreateWithoutArticleFavoritesInput = {
@@ -14730,6 +14899,7 @@ export type UserCreateWithoutArticleFavoritesInput = {
14730
14899
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
14731
14900
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
14732
14901
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
14902
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
14733
14903
  }
14734
14904
 
14735
14905
  export type UserUncheckedCreateWithoutArticleFavoritesInput = {
@@ -14812,6 +14982,7 @@ export type UserUncheckedCreateWithoutArticleFavoritesInput = {
14812
14982
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
14813
14983
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
14814
14984
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
14985
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
14815
14986
  }
14816
14987
 
14817
14988
  export type UserCreateOrConnectWithoutArticleFavoritesInput = {
@@ -14910,6 +15081,7 @@ export type UserUpdateWithoutArticleFavoritesInput = {
14910
15081
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
14911
15082
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
14912
15083
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
15084
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
14913
15085
  }
14914
15086
 
14915
15087
  export type UserUncheckedUpdateWithoutArticleFavoritesInput = {
@@ -14992,6 +15164,7 @@ export type UserUncheckedUpdateWithoutArticleFavoritesInput = {
14992
15164
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
14993
15165
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
14994
15166
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
15167
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
14995
15168
  }
14996
15169
 
14997
15170
  export type UserCreateWithoutStoriesAssignedInput = {
@@ -15074,6 +15247,7 @@ export type UserCreateWithoutStoriesAssignedInput = {
15074
15247
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
15075
15248
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
15076
15249
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
15250
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
15077
15251
  }
15078
15252
 
15079
15253
  export type UserUncheckedCreateWithoutStoriesAssignedInput = {
@@ -15156,6 +15330,7 @@ export type UserUncheckedCreateWithoutStoriesAssignedInput = {
15156
15330
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
15157
15331
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
15158
15332
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
15333
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
15159
15334
  }
15160
15335
 
15161
15336
  export type UserCreateOrConnectWithoutStoriesAssignedInput = {
@@ -15243,6 +15418,7 @@ export type UserCreateWithoutStoriesCreatedInput = {
15243
15418
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
15244
15419
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
15245
15420
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
15421
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
15246
15422
  }
15247
15423
 
15248
15424
  export type UserUncheckedCreateWithoutStoriesCreatedInput = {
@@ -15325,6 +15501,7 @@ export type UserUncheckedCreateWithoutStoriesCreatedInput = {
15325
15501
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
15326
15502
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
15327
15503
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
15504
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
15328
15505
  }
15329
15506
 
15330
15507
  export type UserCreateOrConnectWithoutStoriesCreatedInput = {
@@ -15412,6 +15589,7 @@ export type UserCreateWithoutStoriesEditedInput = {
15412
15589
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
15413
15590
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
15414
15591
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
15592
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
15415
15593
  }
15416
15594
 
15417
15595
  export type UserUncheckedCreateWithoutStoriesEditedInput = {
@@ -15494,6 +15672,7 @@ export type UserUncheckedCreateWithoutStoriesEditedInput = {
15494
15672
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
15495
15673
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
15496
15674
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
15675
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
15497
15676
  }
15498
15677
 
15499
15678
  export type UserCreateOrConnectWithoutStoriesEditedInput = {
@@ -15592,6 +15771,7 @@ export type UserUpdateWithoutStoriesAssignedInput = {
15592
15771
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
15593
15772
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
15594
15773
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
15774
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
15595
15775
  }
15596
15776
 
15597
15777
  export type UserUncheckedUpdateWithoutStoriesAssignedInput = {
@@ -15674,6 +15854,7 @@ export type UserUncheckedUpdateWithoutStoriesAssignedInput = {
15674
15854
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
15675
15855
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
15676
15856
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
15857
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
15677
15858
  }
15678
15859
 
15679
15860
  export type UserUpsertWithoutStoriesCreatedInput = {
@@ -15767,6 +15948,7 @@ export type UserUpdateWithoutStoriesCreatedInput = {
15767
15948
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
15768
15949
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
15769
15950
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
15951
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
15770
15952
  }
15771
15953
 
15772
15954
  export type UserUncheckedUpdateWithoutStoriesCreatedInput = {
@@ -15849,6 +16031,7 @@ export type UserUncheckedUpdateWithoutStoriesCreatedInput = {
15849
16031
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
15850
16032
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
15851
16033
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
16034
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
15852
16035
  }
15853
16036
 
15854
16037
  export type UserUpsertWithoutStoriesEditedInput = {
@@ -15942,6 +16125,7 @@ export type UserUpdateWithoutStoriesEditedInput = {
15942
16125
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
15943
16126
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
15944
16127
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
16128
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
15945
16129
  }
15946
16130
 
15947
16131
  export type UserUncheckedUpdateWithoutStoriesEditedInput = {
@@ -16024,6 +16208,7 @@ export type UserUncheckedUpdateWithoutStoriesEditedInput = {
16024
16208
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
16025
16209
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
16026
16210
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
16211
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
16027
16212
  }
16028
16213
 
16029
16214
  export type UserCreateWithoutLabelsCreatedInput = {
@@ -16106,6 +16291,7 @@ export type UserCreateWithoutLabelsCreatedInput = {
16106
16291
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
16107
16292
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
16108
16293
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
16294
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
16109
16295
  }
16110
16296
 
16111
16297
  export type UserUncheckedCreateWithoutLabelsCreatedInput = {
@@ -16188,6 +16374,7 @@ export type UserUncheckedCreateWithoutLabelsCreatedInput = {
16188
16374
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
16189
16375
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
16190
16376
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
16377
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
16191
16378
  }
16192
16379
 
16193
16380
  export type UserCreateOrConnectWithoutLabelsCreatedInput = {
@@ -16286,6 +16473,7 @@ export type UserUpdateWithoutLabelsCreatedInput = {
16286
16473
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
16287
16474
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
16288
16475
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
16476
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
16289
16477
  }
16290
16478
 
16291
16479
  export type UserUncheckedUpdateWithoutLabelsCreatedInput = {
@@ -16368,6 +16556,7 @@ export type UserUncheckedUpdateWithoutLabelsCreatedInput = {
16368
16556
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
16369
16557
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
16370
16558
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
16559
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
16371
16560
  }
16372
16561
 
16373
16562
  export type UserCreateWithoutStoryActivitiesInput = {
@@ -16450,6 +16639,7 @@ export type UserCreateWithoutStoryActivitiesInput = {
16450
16639
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
16451
16640
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
16452
16641
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
16642
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
16453
16643
  }
16454
16644
 
16455
16645
  export type UserUncheckedCreateWithoutStoryActivitiesInput = {
@@ -16532,6 +16722,7 @@ export type UserUncheckedCreateWithoutStoryActivitiesInput = {
16532
16722
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
16533
16723
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
16534
16724
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
16725
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
16535
16726
  }
16536
16727
 
16537
16728
  export type UserCreateOrConnectWithoutStoryActivitiesInput = {
@@ -16630,6 +16821,7 @@ export type UserUpdateWithoutStoryActivitiesInput = {
16630
16821
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
16631
16822
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
16632
16823
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
16824
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
16633
16825
  }
16634
16826
 
16635
16827
  export type UserUncheckedUpdateWithoutStoryActivitiesInput = {
@@ -16712,6 +16904,7 @@ export type UserUncheckedUpdateWithoutStoryActivitiesInput = {
16712
16904
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
16713
16905
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
16714
16906
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
16907
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
16715
16908
  }
16716
16909
 
16717
16910
  export type UserCreateWithoutStoryCommentsInput = {
@@ -16794,6 +16987,7 @@ export type UserCreateWithoutStoryCommentsInput = {
16794
16987
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
16795
16988
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
16796
16989
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
16990
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
16797
16991
  }
16798
16992
 
16799
16993
  export type UserUncheckedCreateWithoutStoryCommentsInput = {
@@ -16876,6 +17070,7 @@ export type UserUncheckedCreateWithoutStoryCommentsInput = {
16876
17070
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
16877
17071
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
16878
17072
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
17073
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
16879
17074
  }
16880
17075
 
16881
17076
  export type UserCreateOrConnectWithoutStoryCommentsInput = {
@@ -16974,6 +17169,7 @@ export type UserUpdateWithoutStoryCommentsInput = {
16974
17169
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
16975
17170
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
16976
17171
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
17172
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
16977
17173
  }
16978
17174
 
16979
17175
  export type UserUncheckedUpdateWithoutStoryCommentsInput = {
@@ -17056,6 +17252,7 @@ export type UserUncheckedUpdateWithoutStoryCommentsInput = {
17056
17252
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
17057
17253
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
17058
17254
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
17255
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
17059
17256
  }
17060
17257
 
17061
17258
  export type UserCreateWithoutStoryReactionsInput = {
@@ -17138,6 +17335,7 @@ export type UserCreateWithoutStoryReactionsInput = {
17138
17335
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
17139
17336
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
17140
17337
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
17338
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
17141
17339
  }
17142
17340
 
17143
17341
  export type UserUncheckedCreateWithoutStoryReactionsInput = {
@@ -17220,6 +17418,7 @@ export type UserUncheckedCreateWithoutStoryReactionsInput = {
17220
17418
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
17221
17419
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
17222
17420
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
17421
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
17223
17422
  }
17224
17423
 
17225
17424
  export type UserCreateOrConnectWithoutStoryReactionsInput = {
@@ -17318,6 +17517,7 @@ export type UserUpdateWithoutStoryReactionsInput = {
17318
17517
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
17319
17518
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
17320
17519
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
17520
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
17321
17521
  }
17322
17522
 
17323
17523
  export type UserUncheckedUpdateWithoutStoryReactionsInput = {
@@ -17400,6 +17600,7 @@ export type UserUncheckedUpdateWithoutStoryReactionsInput = {
17400
17600
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
17401
17601
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
17402
17602
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
17603
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
17403
17604
  }
17404
17605
 
17405
17606
  export type UserCreateWithoutCommentReactionsInput = {
@@ -17482,6 +17683,7 @@ export type UserCreateWithoutCommentReactionsInput = {
17482
17683
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
17483
17684
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
17484
17685
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
17686
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
17485
17687
  }
17486
17688
 
17487
17689
  export type UserUncheckedCreateWithoutCommentReactionsInput = {
@@ -17564,6 +17766,7 @@ export type UserUncheckedCreateWithoutCommentReactionsInput = {
17564
17766
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
17565
17767
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
17566
17768
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
17769
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
17567
17770
  }
17568
17771
 
17569
17772
  export type UserCreateOrConnectWithoutCommentReactionsInput = {
@@ -17662,6 +17865,7 @@ export type UserUpdateWithoutCommentReactionsInput = {
17662
17865
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
17663
17866
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
17664
17867
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
17868
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
17665
17869
  }
17666
17870
 
17667
17871
  export type UserUncheckedUpdateWithoutCommentReactionsInput = {
@@ -17744,6 +17948,355 @@ export type UserUncheckedUpdateWithoutCommentReactionsInput = {
17744
17948
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
17745
17949
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
17746
17950
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
17951
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
17952
+ }
17953
+
17954
+ export type UserCreateWithoutCreatedQuickDocsInput = {
17955
+ id?: string
17956
+ email: string
17957
+ username: string
17958
+ password: string
17959
+ emailVerified?: Date | string | null
17960
+ image?: string | null
17961
+ role?: $Enums.Role
17962
+ status?: $Enums.UserStatus
17963
+ createdAt?: Date | string
17964
+ updatedAt?: Date | string
17965
+ lastLoginAt?: Date | string | null
17966
+ avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
17967
+ bgShape?: string | null
17968
+ bgColor?: string | null
17969
+ aiProvider?: string | null
17970
+ aiApiKey?: string | null
17971
+ aiModel?: string | null
17972
+ locale?: string | null
17973
+ storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
17974
+ sketchApiToken?: string | null
17975
+ timezone?: string | null
17976
+ preferredCurrency?: string
17977
+ defaultWorkspaceId?: string | null
17978
+ accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
17979
+ invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
17980
+ loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
17981
+ passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
17982
+ prds?: Prisma.PRDCreateNestedManyWithoutUserInput
17983
+ tags?: Prisma.TagCreateNestedManyWithoutUserInput
17984
+ knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
17985
+ knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
17986
+ knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
17987
+ legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
17988
+ industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
17989
+ dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
17990
+ websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
17991
+ bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
17992
+ articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
17993
+ anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
17994
+ anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
17995
+ reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
17996
+ anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
17997
+ prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
17998
+ reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
17999
+ comments?: Prisma.CommentCreateNestedManyWithoutUserInput
18000
+ commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
18001
+ reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
18002
+ designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
18003
+ storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
18004
+ storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
18005
+ storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
18006
+ iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
18007
+ labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
18008
+ storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
18009
+ storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
18010
+ storyReactions?: Prisma.StoryReactionCreateNestedManyWithoutUserInput
18011
+ commentReactions?: Prisma.CommentReactionCreateNestedManyWithoutUserInput
18012
+ storyFilterViews?: Prisma.StoryFilterViewCreateNestedManyWithoutUserInput
18013
+ chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
18014
+ aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
18015
+ agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
18016
+ ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
18017
+ projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
18018
+ projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
18019
+ ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
18020
+ workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
18021
+ teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
18022
+ workspaceMembers?: Prisma.WorkspaceMemberCreateNestedManyWithoutUserInput
18023
+ sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
18024
+ ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
18025
+ applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
18026
+ aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
18027
+ agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
18028
+ skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
18029
+ notifications?: Prisma.NotificationCreateNestedManyWithoutUserInput
18030
+ notificationPreference?: Prisma.NotificationPreferenceCreateNestedOneWithoutUserInput
18031
+ issuedLicenses?: Prisma.LicenseKeyCreateNestedManyWithoutIssuedByInput
18032
+ ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
18033
+ roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
18034
+ subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
18035
+ }
18036
+
18037
+ export type UserUncheckedCreateWithoutCreatedQuickDocsInput = {
18038
+ id?: string
18039
+ email: string
18040
+ username: string
18041
+ password: string
18042
+ emailVerified?: Date | string | null
18043
+ image?: string | null
18044
+ role?: $Enums.Role
18045
+ status?: $Enums.UserStatus
18046
+ createdAt?: Date | string
18047
+ updatedAt?: Date | string
18048
+ lastLoginAt?: Date | string | null
18049
+ avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
18050
+ bgShape?: string | null
18051
+ bgColor?: string | null
18052
+ aiProvider?: string | null
18053
+ aiApiKey?: string | null
18054
+ aiModel?: string | null
18055
+ locale?: string | null
18056
+ storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
18057
+ sketchApiToken?: string | null
18058
+ timezone?: string | null
18059
+ preferredCurrency?: string
18060
+ defaultWorkspaceId?: string | null
18061
+ accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
18062
+ invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
18063
+ loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
18064
+ passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
18065
+ prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
18066
+ tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
18067
+ knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
18068
+ knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
18069
+ knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
18070
+ legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
18071
+ industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
18072
+ dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
18073
+ websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
18074
+ bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
18075
+ articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
18076
+ anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
18077
+ anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
18078
+ reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
18079
+ anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
18080
+ prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
18081
+ reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
18082
+ comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
18083
+ commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
18084
+ reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
18085
+ designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
18086
+ storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
18087
+ storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
18088
+ storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
18089
+ iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
18090
+ labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
18091
+ storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
18092
+ storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
18093
+ storyReactions?: Prisma.StoryReactionUncheckedCreateNestedManyWithoutUserInput
18094
+ commentReactions?: Prisma.CommentReactionUncheckedCreateNestedManyWithoutUserInput
18095
+ storyFilterViews?: Prisma.StoryFilterViewUncheckedCreateNestedManyWithoutUserInput
18096
+ chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
18097
+ aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
18098
+ agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
18099
+ ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
18100
+ projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
18101
+ projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
18102
+ ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
18103
+ workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
18104
+ teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
18105
+ workspaceMembers?: Prisma.WorkspaceMemberUncheckedCreateNestedManyWithoutUserInput
18106
+ sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
18107
+ ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
18108
+ applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
18109
+ aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
18110
+ agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
18111
+ skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
18112
+ notifications?: Prisma.NotificationUncheckedCreateNestedManyWithoutUserInput
18113
+ notificationPreference?: Prisma.NotificationPreferenceUncheckedCreateNestedOneWithoutUserInput
18114
+ issuedLicenses?: Prisma.LicenseKeyUncheckedCreateNestedManyWithoutIssuedByInput
18115
+ ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
18116
+ roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
18117
+ subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
18118
+ }
18119
+
18120
+ export type UserCreateOrConnectWithoutCreatedQuickDocsInput = {
18121
+ where: Prisma.UserWhereUniqueInput
18122
+ create: Prisma.XOR<Prisma.UserCreateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedCreateWithoutCreatedQuickDocsInput>
18123
+ }
18124
+
18125
+ export type UserUpsertWithoutCreatedQuickDocsInput = {
18126
+ update: Prisma.XOR<Prisma.UserUpdateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedUpdateWithoutCreatedQuickDocsInput>
18127
+ create: Prisma.XOR<Prisma.UserCreateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedCreateWithoutCreatedQuickDocsInput>
18128
+ where?: Prisma.UserWhereInput
18129
+ }
18130
+
18131
+ export type UserUpdateToOneWithWhereWithoutCreatedQuickDocsInput = {
18132
+ where?: Prisma.UserWhereInput
18133
+ data: Prisma.XOR<Prisma.UserUpdateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedUpdateWithoutCreatedQuickDocsInput>
18134
+ }
18135
+
18136
+ export type UserUpdateWithoutCreatedQuickDocsInput = {
18137
+ id?: Prisma.StringFieldUpdateOperationsInput | string
18138
+ email?: Prisma.StringFieldUpdateOperationsInput | string
18139
+ username?: Prisma.StringFieldUpdateOperationsInput | string
18140
+ password?: Prisma.StringFieldUpdateOperationsInput | string
18141
+ emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
18142
+ image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18143
+ role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
18144
+ status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
18145
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
18146
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
18147
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
18148
+ avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
18149
+ bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18150
+ bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18151
+ aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18152
+ aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18153
+ aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18154
+ locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18155
+ storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
18156
+ sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18157
+ timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18158
+ preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
18159
+ defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18160
+ accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
18161
+ invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
18162
+ loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
18163
+ passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
18164
+ prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
18165
+ tags?: Prisma.TagUpdateManyWithoutUserNestedInput
18166
+ knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
18167
+ knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
18168
+ knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
18169
+ legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
18170
+ industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
18171
+ dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
18172
+ websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
18173
+ bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
18174
+ articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
18175
+ anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
18176
+ anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
18177
+ reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
18178
+ anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
18179
+ prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
18180
+ reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
18181
+ comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
18182
+ commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
18183
+ reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
18184
+ designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
18185
+ storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
18186
+ storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
18187
+ storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
18188
+ iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
18189
+ labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
18190
+ storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
18191
+ storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
18192
+ storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
18193
+ commentReactions?: Prisma.CommentReactionUpdateManyWithoutUserNestedInput
18194
+ storyFilterViews?: Prisma.StoryFilterViewUpdateManyWithoutUserNestedInput
18195
+ chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
18196
+ aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
18197
+ agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
18198
+ ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
18199
+ projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
18200
+ projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
18201
+ ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
18202
+ workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
18203
+ teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
18204
+ workspaceMembers?: Prisma.WorkspaceMemberUpdateManyWithoutUserNestedInput
18205
+ sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
18206
+ ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
18207
+ applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
18208
+ aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
18209
+ agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
18210
+ skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
18211
+ notifications?: Prisma.NotificationUpdateManyWithoutUserNestedInput
18212
+ notificationPreference?: Prisma.NotificationPreferenceUpdateOneWithoutUserNestedInput
18213
+ issuedLicenses?: Prisma.LicenseKeyUpdateManyWithoutIssuedByNestedInput
18214
+ ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
18215
+ roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
18216
+ subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
18217
+ }
18218
+
18219
+ export type UserUncheckedUpdateWithoutCreatedQuickDocsInput = {
18220
+ id?: Prisma.StringFieldUpdateOperationsInput | string
18221
+ email?: Prisma.StringFieldUpdateOperationsInput | string
18222
+ username?: Prisma.StringFieldUpdateOperationsInput | string
18223
+ password?: Prisma.StringFieldUpdateOperationsInput | string
18224
+ emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
18225
+ image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18226
+ role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
18227
+ status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
18228
+ createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
18229
+ updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
18230
+ lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
18231
+ avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
18232
+ bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18233
+ bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18234
+ aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18235
+ aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18236
+ aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18237
+ locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18238
+ storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
18239
+ sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18240
+ timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18241
+ preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
18242
+ defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
18243
+ accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
18244
+ invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
18245
+ loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
18246
+ passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
18247
+ prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
18248
+ tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
18249
+ knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
18250
+ knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
18251
+ knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
18252
+ legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
18253
+ industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
18254
+ dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
18255
+ websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
18256
+ bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
18257
+ articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
18258
+ anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
18259
+ anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
18260
+ reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
18261
+ anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
18262
+ prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
18263
+ reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
18264
+ comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
18265
+ commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
18266
+ reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
18267
+ designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
18268
+ storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
18269
+ storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
18270
+ storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
18271
+ iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
18272
+ labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
18273
+ storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
18274
+ storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
18275
+ storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
18276
+ commentReactions?: Prisma.CommentReactionUncheckedUpdateManyWithoutUserNestedInput
18277
+ storyFilterViews?: Prisma.StoryFilterViewUncheckedUpdateManyWithoutUserNestedInput
18278
+ chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
18279
+ aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
18280
+ agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
18281
+ ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
18282
+ projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
18283
+ projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
18284
+ ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
18285
+ workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
18286
+ teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
18287
+ workspaceMembers?: Prisma.WorkspaceMemberUncheckedUpdateManyWithoutUserNestedInput
18288
+ sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
18289
+ ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
18290
+ applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
18291
+ aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
18292
+ agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
18293
+ skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
18294
+ notifications?: Prisma.NotificationUncheckedUpdateManyWithoutUserNestedInput
18295
+ notificationPreference?: Prisma.NotificationPreferenceUncheckedUpdateOneWithoutUserNestedInput
18296
+ issuedLicenses?: Prisma.LicenseKeyUncheckedUpdateManyWithoutIssuedByNestedInput
18297
+ ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
18298
+ roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
18299
+ subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
17747
18300
  }
17748
18301
 
17749
18302
  export type UserCreateWithoutStoryFilterViewsInput = {
@@ -17826,6 +18379,7 @@ export type UserCreateWithoutStoryFilterViewsInput = {
17826
18379
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
17827
18380
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
17828
18381
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
18382
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
17829
18383
  }
17830
18384
 
17831
18385
  export type UserUncheckedCreateWithoutStoryFilterViewsInput = {
@@ -17908,6 +18462,7 @@ export type UserUncheckedCreateWithoutStoryFilterViewsInput = {
17908
18462
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
17909
18463
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
17910
18464
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
18465
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
17911
18466
  }
17912
18467
 
17913
18468
  export type UserCreateOrConnectWithoutStoryFilterViewsInput = {
@@ -18006,6 +18561,7 @@ export type UserUpdateWithoutStoryFilterViewsInput = {
18006
18561
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
18007
18562
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
18008
18563
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
18564
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
18009
18565
  }
18010
18566
 
18011
18567
  export type UserUncheckedUpdateWithoutStoryFilterViewsInput = {
@@ -18088,6 +18644,7 @@ export type UserUncheckedUpdateWithoutStoryFilterViewsInput = {
18088
18644
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
18089
18645
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
18090
18646
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
18647
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
18091
18648
  }
18092
18649
 
18093
18650
  export type UserCreateWithoutSubscriptionInput = {
@@ -18170,6 +18727,7 @@ export type UserCreateWithoutSubscriptionInput = {
18170
18727
  issuedLicenses?: Prisma.LicenseKeyCreateNestedManyWithoutIssuedByInput
18171
18728
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
18172
18729
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
18730
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
18173
18731
  }
18174
18732
 
18175
18733
  export type UserUncheckedCreateWithoutSubscriptionInput = {
@@ -18252,6 +18810,7 @@ export type UserUncheckedCreateWithoutSubscriptionInput = {
18252
18810
  issuedLicenses?: Prisma.LicenseKeyUncheckedCreateNestedManyWithoutIssuedByInput
18253
18811
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
18254
18812
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
18813
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
18255
18814
  }
18256
18815
 
18257
18816
  export type UserCreateOrConnectWithoutSubscriptionInput = {
@@ -18350,6 +18909,7 @@ export type UserUpdateWithoutSubscriptionInput = {
18350
18909
  issuedLicenses?: Prisma.LicenseKeyUpdateManyWithoutIssuedByNestedInput
18351
18910
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
18352
18911
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
18912
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
18353
18913
  }
18354
18914
 
18355
18915
  export type UserUncheckedUpdateWithoutSubscriptionInput = {
@@ -18432,6 +18992,7 @@ export type UserUncheckedUpdateWithoutSubscriptionInput = {
18432
18992
  issuedLicenses?: Prisma.LicenseKeyUncheckedUpdateManyWithoutIssuedByNestedInput
18433
18993
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
18434
18994
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
18995
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
18435
18996
  }
18436
18997
 
18437
18998
  export type UserCreateWithoutAiUsageLogsInput = {
@@ -18514,6 +19075,7 @@ export type UserCreateWithoutAiUsageLogsInput = {
18514
19075
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
18515
19076
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
18516
19077
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
19078
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
18517
19079
  }
18518
19080
 
18519
19081
  export type UserUncheckedCreateWithoutAiUsageLogsInput = {
@@ -18596,6 +19158,7 @@ export type UserUncheckedCreateWithoutAiUsageLogsInput = {
18596
19158
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
18597
19159
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
18598
19160
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
19161
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
18599
19162
  }
18600
19163
 
18601
19164
  export type UserCreateOrConnectWithoutAiUsageLogsInput = {
@@ -18694,6 +19257,7 @@ export type UserUpdateWithoutAiUsageLogsInput = {
18694
19257
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
18695
19258
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
18696
19259
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
19260
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
18697
19261
  }
18698
19262
 
18699
19263
  export type UserUncheckedUpdateWithoutAiUsageLogsInput = {
@@ -18776,6 +19340,7 @@ export type UserUncheckedUpdateWithoutAiUsageLogsInput = {
18776
19340
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
18777
19341
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
18778
19342
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
19343
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
18779
19344
  }
18780
19345
 
18781
19346
  export type UserCreateWithoutIssuedLicensesInput = {
@@ -18858,6 +19423,7 @@ export type UserCreateWithoutIssuedLicensesInput = {
18858
19423
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
18859
19424
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
18860
19425
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
19426
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
18861
19427
  }
18862
19428
 
18863
19429
  export type UserUncheckedCreateWithoutIssuedLicensesInput = {
@@ -18940,6 +19506,7 @@ export type UserUncheckedCreateWithoutIssuedLicensesInput = {
18940
19506
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
18941
19507
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
18942
19508
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
19509
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
18943
19510
  }
18944
19511
 
18945
19512
  export type UserCreateOrConnectWithoutIssuedLicensesInput = {
@@ -19038,6 +19605,7 @@ export type UserUpdateWithoutIssuedLicensesInput = {
19038
19605
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
19039
19606
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
19040
19607
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
19608
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
19041
19609
  }
19042
19610
 
19043
19611
  export type UserUncheckedUpdateWithoutIssuedLicensesInput = {
@@ -19120,6 +19688,7 @@ export type UserUncheckedUpdateWithoutIssuedLicensesInput = {
19120
19688
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
19121
19689
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
19122
19690
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
19691
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
19123
19692
  }
19124
19693
 
19125
19694
  export type UserCreateWithoutSsoMappingsInput = {
@@ -19202,6 +19771,7 @@ export type UserCreateWithoutSsoMappingsInput = {
19202
19771
  issuedLicenses?: Prisma.LicenseKeyCreateNestedManyWithoutIssuedByInput
19203
19772
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
19204
19773
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
19774
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
19205
19775
  }
19206
19776
 
19207
19777
  export type UserUncheckedCreateWithoutSsoMappingsInput = {
@@ -19284,6 +19854,7 @@ export type UserUncheckedCreateWithoutSsoMappingsInput = {
19284
19854
  issuedLicenses?: Prisma.LicenseKeyUncheckedCreateNestedManyWithoutIssuedByInput
19285
19855
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
19286
19856
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
19857
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
19287
19858
  }
19288
19859
 
19289
19860
  export type UserCreateOrConnectWithoutSsoMappingsInput = {
@@ -19382,6 +19953,7 @@ export type UserUpdateWithoutSsoMappingsInput = {
19382
19953
  issuedLicenses?: Prisma.LicenseKeyUpdateManyWithoutIssuedByNestedInput
19383
19954
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
19384
19955
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
19956
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
19385
19957
  }
19386
19958
 
19387
19959
  export type UserUncheckedUpdateWithoutSsoMappingsInput = {
@@ -19464,6 +20036,7 @@ export type UserUncheckedUpdateWithoutSsoMappingsInput = {
19464
20036
  issuedLicenses?: Prisma.LicenseKeyUncheckedUpdateManyWithoutIssuedByNestedInput
19465
20037
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
19466
20038
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
20039
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
19467
20040
  }
19468
20041
 
19469
20042
  export type UserCreateWithoutRoleAssignmentsInput = {
@@ -19546,6 +20119,7 @@ export type UserCreateWithoutRoleAssignmentsInput = {
19546
20119
  issuedLicenses?: Prisma.LicenseKeyCreateNestedManyWithoutIssuedByInput
19547
20120
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
19548
20121
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
20122
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
19549
20123
  }
19550
20124
 
19551
20125
  export type UserUncheckedCreateWithoutRoleAssignmentsInput = {
@@ -19628,6 +20202,7 @@ export type UserUncheckedCreateWithoutRoleAssignmentsInput = {
19628
20202
  issuedLicenses?: Prisma.LicenseKeyUncheckedCreateNestedManyWithoutIssuedByInput
19629
20203
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
19630
20204
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
20205
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
19631
20206
  }
19632
20207
 
19633
20208
  export type UserCreateOrConnectWithoutRoleAssignmentsInput = {
@@ -19726,6 +20301,7 @@ export type UserUpdateWithoutRoleAssignmentsInput = {
19726
20301
  issuedLicenses?: Prisma.LicenseKeyUpdateManyWithoutIssuedByNestedInput
19727
20302
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
19728
20303
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
20304
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
19729
20305
  }
19730
20306
 
19731
20307
  export type UserUncheckedUpdateWithoutRoleAssignmentsInput = {
@@ -19808,6 +20384,7 @@ export type UserUncheckedUpdateWithoutRoleAssignmentsInput = {
19808
20384
  issuedLicenses?: Prisma.LicenseKeyUncheckedUpdateManyWithoutIssuedByNestedInput
19809
20385
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
19810
20386
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
20387
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
19811
20388
  }
19812
20389
 
19813
20390
  export type UserCreateWithoutAgentsInput = {
@@ -19890,6 +20467,7 @@ export type UserCreateWithoutAgentsInput = {
19890
20467
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
19891
20468
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
19892
20469
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
20470
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
19893
20471
  }
19894
20472
 
19895
20473
  export type UserUncheckedCreateWithoutAgentsInput = {
@@ -19972,6 +20550,7 @@ export type UserUncheckedCreateWithoutAgentsInput = {
19972
20550
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
19973
20551
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
19974
20552
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
20553
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
19975
20554
  }
19976
20555
 
19977
20556
  export type UserCreateOrConnectWithoutAgentsInput = {
@@ -20070,6 +20649,7 @@ export type UserUpdateWithoutAgentsInput = {
20070
20649
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
20071
20650
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
20072
20651
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
20652
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
20073
20653
  }
20074
20654
 
20075
20655
  export type UserUncheckedUpdateWithoutAgentsInput = {
@@ -20152,6 +20732,7 @@ export type UserUncheckedUpdateWithoutAgentsInput = {
20152
20732
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
20153
20733
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
20154
20734
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
20735
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
20155
20736
  }
20156
20737
 
20157
20738
  export type UserCreateWithoutSkillsInput = {
@@ -20234,6 +20815,7 @@ export type UserCreateWithoutSkillsInput = {
20234
20815
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
20235
20816
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
20236
20817
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
20818
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
20237
20819
  }
20238
20820
 
20239
20821
  export type UserUncheckedCreateWithoutSkillsInput = {
@@ -20316,6 +20898,7 @@ export type UserUncheckedCreateWithoutSkillsInput = {
20316
20898
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
20317
20899
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
20318
20900
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
20901
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
20319
20902
  }
20320
20903
 
20321
20904
  export type UserCreateOrConnectWithoutSkillsInput = {
@@ -20414,6 +20997,7 @@ export type UserUpdateWithoutSkillsInput = {
20414
20997
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
20415
20998
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
20416
20999
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
21000
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
20417
21001
  }
20418
21002
 
20419
21003
  export type UserUncheckedUpdateWithoutSkillsInput = {
@@ -20496,6 +21080,7 @@ export type UserUncheckedUpdateWithoutSkillsInput = {
20496
21080
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
20497
21081
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
20498
21082
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
21083
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
20499
21084
  }
20500
21085
 
20501
21086
  export type UserCreateWithoutNotificationsInput = {
@@ -20578,6 +21163,7 @@ export type UserCreateWithoutNotificationsInput = {
20578
21163
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
20579
21164
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
20580
21165
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
21166
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
20581
21167
  }
20582
21168
 
20583
21169
  export type UserUncheckedCreateWithoutNotificationsInput = {
@@ -20660,6 +21246,7 @@ export type UserUncheckedCreateWithoutNotificationsInput = {
20660
21246
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
20661
21247
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
20662
21248
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
21249
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
20663
21250
  }
20664
21251
 
20665
21252
  export type UserCreateOrConnectWithoutNotificationsInput = {
@@ -20758,6 +21345,7 @@ export type UserUpdateWithoutNotificationsInput = {
20758
21345
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
20759
21346
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
20760
21347
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
21348
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
20761
21349
  }
20762
21350
 
20763
21351
  export type UserUncheckedUpdateWithoutNotificationsInput = {
@@ -20840,6 +21428,7 @@ export type UserUncheckedUpdateWithoutNotificationsInput = {
20840
21428
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
20841
21429
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
20842
21430
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
21431
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
20843
21432
  }
20844
21433
 
20845
21434
  export type UserCreateWithoutNotificationPreferenceInput = {
@@ -20922,6 +21511,7 @@ export type UserCreateWithoutNotificationPreferenceInput = {
20922
21511
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
20923
21512
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
20924
21513
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
21514
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
20925
21515
  }
20926
21516
 
20927
21517
  export type UserUncheckedCreateWithoutNotificationPreferenceInput = {
@@ -21004,6 +21594,7 @@ export type UserUncheckedCreateWithoutNotificationPreferenceInput = {
21004
21594
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
21005
21595
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
21006
21596
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
21597
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
21007
21598
  }
21008
21599
 
21009
21600
  export type UserCreateOrConnectWithoutNotificationPreferenceInput = {
@@ -21102,6 +21693,7 @@ export type UserUpdateWithoutNotificationPreferenceInput = {
21102
21693
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
21103
21694
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
21104
21695
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
21696
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
21105
21697
  }
21106
21698
 
21107
21699
  export type UserUncheckedUpdateWithoutNotificationPreferenceInput = {
@@ -21184,6 +21776,7 @@ export type UserUncheckedUpdateWithoutNotificationPreferenceInput = {
21184
21776
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
21185
21777
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
21186
21778
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
21779
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
21187
21780
  }
21188
21781
 
21189
21782
  export type UserCreateWithoutIterationsCreatedInput = {
@@ -21266,6 +21859,7 @@ export type UserCreateWithoutIterationsCreatedInput = {
21266
21859
  ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
21267
21860
  roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
21268
21861
  subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
21862
+ createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
21269
21863
  }
21270
21864
 
21271
21865
  export type UserUncheckedCreateWithoutIterationsCreatedInput = {
@@ -21348,6 +21942,7 @@ export type UserUncheckedCreateWithoutIterationsCreatedInput = {
21348
21942
  ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
21349
21943
  roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
21350
21944
  subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
21945
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
21351
21946
  }
21352
21947
 
21353
21948
  export type UserCreateOrConnectWithoutIterationsCreatedInput = {
@@ -21446,6 +22041,7 @@ export type UserUpdateWithoutIterationsCreatedInput = {
21446
22041
  ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
21447
22042
  roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
21448
22043
  subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
22044
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
21449
22045
  }
21450
22046
 
21451
22047
  export type UserUncheckedUpdateWithoutIterationsCreatedInput = {
@@ -21528,6 +22124,7 @@ export type UserUncheckedUpdateWithoutIterationsCreatedInput = {
21528
22124
  ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
21529
22125
  roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
21530
22126
  subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
22127
+ createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
21531
22128
  }
21532
22129
 
21533
22130
 
@@ -21590,6 +22187,7 @@ export type UserCountOutputType = {
21590
22187
  issuedLicenses: number
21591
22188
  ssoMappings: number
21592
22189
  roleAssignments: number
22190
+ createdQuickDocs: number
21593
22191
  }
21594
22192
 
21595
22193
  export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
@@ -21647,6 +22245,7 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
21647
22245
  issuedLicenses?: boolean | UserCountOutputTypeCountIssuedLicensesArgs
21648
22246
  ssoMappings?: boolean | UserCountOutputTypeCountSsoMappingsArgs
21649
22247
  roleAssignments?: boolean | UserCountOutputTypeCountRoleAssignmentsArgs
22248
+ createdQuickDocs?: boolean | UserCountOutputTypeCountCreatedQuickDocsArgs
21650
22249
  }
21651
22250
 
21652
22251
  /**
@@ -22037,6 +22636,13 @@ export type UserCountOutputTypeCountRoleAssignmentsArgs<ExtArgs extends runtime.
22037
22636
  where?: Prisma.RoleAssignmentWhereInput
22038
22637
  }
22039
22638
 
22639
+ /**
22640
+ * UserCountOutputType without action
22641
+ */
22642
+ export type UserCountOutputTypeCountCreatedQuickDocsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
22643
+ where?: Prisma.WorkspaceQuickDocWhereInput
22644
+ }
22645
+
22040
22646
 
22041
22647
  export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
22042
22648
  id?: boolean
@@ -22119,6 +22725,7 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
22119
22725
  ssoMappings?: boolean | Prisma.User$ssoMappingsArgs<ExtArgs>
22120
22726
  roleAssignments?: boolean | Prisma.User$roleAssignmentsArgs<ExtArgs>
22121
22727
  subscription?: boolean | Prisma.User$subscriptionArgs<ExtArgs>
22728
+ createdQuickDocs?: boolean | Prisma.User$createdQuickDocsArgs<ExtArgs>
22122
22729
  _count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>
22123
22730
  }, ExtArgs["result"]["user"]>
22124
22731
 
@@ -22259,6 +22866,7 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
22259
22866
  ssoMappings?: boolean | Prisma.User$ssoMappingsArgs<ExtArgs>
22260
22867
  roleAssignments?: boolean | Prisma.User$roleAssignmentsArgs<ExtArgs>
22261
22868
  subscription?: boolean | Prisma.User$subscriptionArgs<ExtArgs>
22869
+ createdQuickDocs?: boolean | Prisma.User$createdQuickDocsArgs<ExtArgs>
22262
22870
  _count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>
22263
22871
  }
22264
22872
  export type UserIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
@@ -22324,6 +22932,7 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
22324
22932
  ssoMappings: Prisma.$SsoMappingPayload<ExtArgs>[]
22325
22933
  roleAssignments: Prisma.$RoleAssignmentPayload<ExtArgs>[]
22326
22934
  subscription: Prisma.$SubscriptionPayload<ExtArgs> | null
22935
+ createdQuickDocs: Prisma.$WorkspaceQuickDocPayload<ExtArgs>[]
22327
22936
  }
22328
22937
  scalars: runtime.Types.Extensions.GetPayloadResult<{
22329
22938
  id: string
@@ -22806,6 +23415,7 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
22806
23415
  ssoMappings<T extends Prisma.User$ssoMappingsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$ssoMappingsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SsoMappingPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
22807
23416
  roleAssignments<T extends Prisma.User$roleAssignmentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$roleAssignmentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$RoleAssignmentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
22808
23417
  subscription<T extends Prisma.User$subscriptionArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$subscriptionArgs<ExtArgs>>): Prisma.Prisma__SubscriptionClient<runtime.Types.Result.GetResult<Prisma.$SubscriptionPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
23418
+ createdQuickDocs<T extends Prisma.User$createdQuickDocsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$createdQuickDocsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$WorkspaceQuickDocPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
22809
23419
  /**
22810
23420
  * Attaches callbacks for the resolution and/or rejection of the Promise.
22811
23421
  * @param onfulfilled The callback to execute when the Promise is resolved.
@@ -24603,6 +25213,30 @@ export type User$subscriptionArgs<ExtArgs extends runtime.Types.Extensions.Inter
24603
25213
  where?: Prisma.SubscriptionWhereInput
24604
25214
  }
24605
25215
 
25216
+ /**
25217
+ * User.createdQuickDocs
25218
+ */
25219
+ export type User$createdQuickDocsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
25220
+ /**
25221
+ * Select specific fields to fetch from the WorkspaceQuickDoc
25222
+ */
25223
+ select?: Prisma.WorkspaceQuickDocSelect<ExtArgs> | null
25224
+ /**
25225
+ * Omit specific fields from the WorkspaceQuickDoc
25226
+ */
25227
+ omit?: Prisma.WorkspaceQuickDocOmit<ExtArgs> | null
25228
+ /**
25229
+ * Choose, which related nodes to fetch as well
25230
+ */
25231
+ include?: Prisma.WorkspaceQuickDocInclude<ExtArgs> | null
25232
+ where?: Prisma.WorkspaceQuickDocWhereInput
25233
+ orderBy?: Prisma.WorkspaceQuickDocOrderByWithRelationInput | Prisma.WorkspaceQuickDocOrderByWithRelationInput[]
25234
+ cursor?: Prisma.WorkspaceQuickDocWhereUniqueInput
25235
+ take?: number
25236
+ skip?: number
25237
+ distinct?: Prisma.WorkspaceQuickDocScalarFieldEnum | Prisma.WorkspaceQuickDocScalarFieldEnum[]
25238
+ }
25239
+
24606
25240
  /**
24607
25241
  * User without action
24608
25242
  */