@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.
- package/generated/browser.ts +10 -0
- package/generated/client.ts +10 -0
- package/generated/internal/class.ts +24 -4
- package/generated/internal/prismaNamespace.ts +182 -1
- package/generated/internal/prismaNamespaceBrowser.ts +31 -0
- package/generated/models/KnowledgeBase.ts +158 -0
- package/generated/models/KnowledgeDocument.ts +176 -0
- package/generated/models/User.ts +634 -0
- package/generated/models/Workspace.ts +380 -0
- package/generated/models/WorkspaceKnowledgeBase.ts +1430 -0
- package/generated/models/WorkspaceQuickDoc.ts +2030 -0
- package/generated/models.ts +2 -0
- package/generated-sqlite/browser.ts +10 -0
- package/generated-sqlite/client.ts +10 -0
- package/generated-sqlite/internal/class.ts +24 -4
- package/generated-sqlite/internal/prismaNamespace.ts +182 -1
- package/generated-sqlite/internal/prismaNamespaceBrowser.ts +31 -0
- package/generated-sqlite/models/KnowledgeBase.ts +150 -0
- package/generated-sqlite/models/KnowledgeDocument.ts +168 -0
- package/generated-sqlite/models/User.ts +518 -0
- package/generated-sqlite/models/Workspace.ts +300 -0
- package/generated-sqlite/models/WorkspaceKnowledgeBase.ts +1426 -0
- package/generated-sqlite/models/WorkspaceQuickDoc.ts +2025 -0
- package/generated-sqlite/models.ts +2 -0
- package/migrations/20260909070745_workspace_kb_card/migration.sql +55 -0
- package/migrations/20260909123637_workspace_quick_doc_column_index/migration.sql +2 -0
- package/migrations/20260909123656_workspace_quick_doc_column_backfill/migration.sql +4 -0
- package/migrations/20260909144328_workspace_quick_doc_label/migration.sql +2 -0
- package/migrations/20260909154315_workspace_quick_doc_icon/migration.sql +2 -0
- package/package.json +2 -2
- package/schema.prisma +48 -2
- package/schema.sqlite.prisma +48 -2
|
@@ -342,6 +342,7 @@ export type UserWhereInput = {
|
|
|
342
342
|
agents?: Prisma.UserAgentListRelationFilter
|
|
343
343
|
skills?: Prisma.UserSkillListRelationFilter
|
|
344
344
|
subscription?: Prisma.XOR<Prisma.SubscriptionNullableScalarRelationFilter, Prisma.SubscriptionWhereInput> | null
|
|
345
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocListRelationFilter
|
|
345
346
|
}
|
|
346
347
|
|
|
347
348
|
export type UserOrderByWithRelationInput = {
|
|
@@ -409,6 +410,7 @@ export type UserOrderByWithRelationInput = {
|
|
|
409
410
|
agents?: Prisma.UserAgentOrderByRelationAggregateInput
|
|
410
411
|
skills?: Prisma.UserSkillOrderByRelationAggregateInput
|
|
411
412
|
subscription?: Prisma.SubscriptionOrderByWithRelationInput
|
|
413
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocOrderByRelationAggregateInput
|
|
412
414
|
}
|
|
413
415
|
|
|
414
416
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -479,6 +481,7 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
479
481
|
agents?: Prisma.UserAgentListRelationFilter
|
|
480
482
|
skills?: Prisma.UserSkillListRelationFilter
|
|
481
483
|
subscription?: Prisma.XOR<Prisma.SubscriptionNullableScalarRelationFilter, Prisma.SubscriptionWhereInput> | null
|
|
484
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocListRelationFilter
|
|
482
485
|
}, "id" | "email" | "username">
|
|
483
486
|
|
|
484
487
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -598,6 +601,7 @@ export type UserCreateInput = {
|
|
|
598
601
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
599
602
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
600
603
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
604
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
601
605
|
}
|
|
602
606
|
|
|
603
607
|
export type UserUncheckedCreateInput = {
|
|
@@ -665,6 +669,7 @@ export type UserUncheckedCreateInput = {
|
|
|
665
669
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
666
670
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
667
671
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
672
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
668
673
|
}
|
|
669
674
|
|
|
670
675
|
export type UserUpdateInput = {
|
|
@@ -732,6 +737,7 @@ export type UserUpdateInput = {
|
|
|
732
737
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
733
738
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
734
739
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
740
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
735
741
|
}
|
|
736
742
|
|
|
737
743
|
export type UserUncheckedUpdateInput = {
|
|
@@ -799,6 +805,7 @@ export type UserUncheckedUpdateInput = {
|
|
|
799
805
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
800
806
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
801
807
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
808
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
802
809
|
}
|
|
803
810
|
|
|
804
811
|
export type UserCreateManyInput = {
|
|
@@ -1149,6 +1156,20 @@ export type UserUpdateOneRequiredWithoutKnowledgeBasesNestedInput = {
|
|
|
1149
1156
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutKnowledgeBasesInput, Prisma.UserUpdateWithoutKnowledgeBasesInput>, Prisma.UserUncheckedUpdateWithoutKnowledgeBasesInput>
|
|
1150
1157
|
}
|
|
1151
1158
|
|
|
1159
|
+
export type UserCreateNestedOneWithoutCreatedQuickDocsInput = {
|
|
1160
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedCreateWithoutCreatedQuickDocsInput>
|
|
1161
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutCreatedQuickDocsInput
|
|
1162
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
export type UserUpdateOneRequiredWithoutCreatedQuickDocsNestedInput = {
|
|
1166
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedCreateWithoutCreatedQuickDocsInput>
|
|
1167
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutCreatedQuickDocsInput
|
|
1168
|
+
upsert?: Prisma.UserUpsertWithoutCreatedQuickDocsInput
|
|
1169
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1170
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutCreatedQuickDocsInput, Prisma.UserUpdateWithoutCreatedQuickDocsInput>, Prisma.UserUncheckedUpdateWithoutCreatedQuickDocsInput>
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1152
1173
|
export type UserCreateNestedOneWithoutKnowledgeDocumentsInput = {
|
|
1153
1174
|
create?: Prisma.XOR<Prisma.UserCreateWithoutKnowledgeDocumentsInput, Prisma.UserUncheckedCreateWithoutKnowledgeDocumentsInput>
|
|
1154
1175
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutKnowledgeDocumentsInput
|
|
@@ -1643,6 +1664,7 @@ export type UserCreateWithoutOwnedProjectsInput = {
|
|
|
1643
1664
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
1644
1665
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
1645
1666
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
1667
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
1646
1668
|
}
|
|
1647
1669
|
|
|
1648
1670
|
export type UserUncheckedCreateWithoutOwnedProjectsInput = {
|
|
@@ -1709,6 +1731,7 @@ export type UserUncheckedCreateWithoutOwnedProjectsInput = {
|
|
|
1709
1731
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
1710
1732
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
1711
1733
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
1734
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
1712
1735
|
}
|
|
1713
1736
|
|
|
1714
1737
|
export type UserCreateOrConnectWithoutOwnedProjectsInput = {
|
|
@@ -1791,6 +1814,7 @@ export type UserUpdateWithoutOwnedProjectsInput = {
|
|
|
1791
1814
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
1792
1815
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
1793
1816
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
1817
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
1794
1818
|
}
|
|
1795
1819
|
|
|
1796
1820
|
export type UserUncheckedUpdateWithoutOwnedProjectsInput = {
|
|
@@ -1857,6 +1881,7 @@ export type UserUncheckedUpdateWithoutOwnedProjectsInput = {
|
|
|
1857
1881
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
1858
1882
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
1859
1883
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
1884
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
1860
1885
|
}
|
|
1861
1886
|
|
|
1862
1887
|
export type UserCreateWithoutProjectMembershipsInput = {
|
|
@@ -1923,6 +1948,7 @@ export type UserCreateWithoutProjectMembershipsInput = {
|
|
|
1923
1948
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
1924
1949
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
1925
1950
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
1951
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
1926
1952
|
}
|
|
1927
1953
|
|
|
1928
1954
|
export type UserUncheckedCreateWithoutProjectMembershipsInput = {
|
|
@@ -1989,6 +2015,7 @@ export type UserUncheckedCreateWithoutProjectMembershipsInput = {
|
|
|
1989
2015
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
1990
2016
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
1991
2017
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
2018
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
1992
2019
|
}
|
|
1993
2020
|
|
|
1994
2021
|
export type UserCreateOrConnectWithoutProjectMembershipsInput = {
|
|
@@ -2071,6 +2098,7 @@ export type UserUpdateWithoutProjectMembershipsInput = {
|
|
|
2071
2098
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
2072
2099
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
2073
2100
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
2101
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
2074
2102
|
}
|
|
2075
2103
|
|
|
2076
2104
|
export type UserUncheckedUpdateWithoutProjectMembershipsInput = {
|
|
@@ -2137,6 +2165,7 @@ export type UserUncheckedUpdateWithoutProjectMembershipsInput = {
|
|
|
2137
2165
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
2138
2166
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
2139
2167
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
2168
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
2140
2169
|
}
|
|
2141
2170
|
|
|
2142
2171
|
export type UserCreateWithoutOwnedWorkspacesInput = {
|
|
@@ -2203,6 +2232,7 @@ export type UserCreateWithoutOwnedWorkspacesInput = {
|
|
|
2203
2232
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
2204
2233
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
2205
2234
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
2235
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
2206
2236
|
}
|
|
2207
2237
|
|
|
2208
2238
|
export type UserUncheckedCreateWithoutOwnedWorkspacesInput = {
|
|
@@ -2269,6 +2299,7 @@ export type UserUncheckedCreateWithoutOwnedWorkspacesInput = {
|
|
|
2269
2299
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
2270
2300
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
2271
2301
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
2302
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
2272
2303
|
}
|
|
2273
2304
|
|
|
2274
2305
|
export type UserCreateOrConnectWithoutOwnedWorkspacesInput = {
|
|
@@ -2351,6 +2382,7 @@ export type UserUpdateWithoutOwnedWorkspacesInput = {
|
|
|
2351
2382
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
2352
2383
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
2353
2384
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
2385
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
2354
2386
|
}
|
|
2355
2387
|
|
|
2356
2388
|
export type UserUncheckedUpdateWithoutOwnedWorkspacesInput = {
|
|
@@ -2417,6 +2449,7 @@ export type UserUncheckedUpdateWithoutOwnedWorkspacesInput = {
|
|
|
2417
2449
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
2418
2450
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
2419
2451
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
2452
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
2420
2453
|
}
|
|
2421
2454
|
|
|
2422
2455
|
export type UserCreateWithoutWorkspaceMembershipsInput = {
|
|
@@ -2483,6 +2516,7 @@ export type UserCreateWithoutWorkspaceMembershipsInput = {
|
|
|
2483
2516
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
2484
2517
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
2485
2518
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
2519
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
2486
2520
|
}
|
|
2487
2521
|
|
|
2488
2522
|
export type UserUncheckedCreateWithoutWorkspaceMembershipsInput = {
|
|
@@ -2549,6 +2583,7 @@ export type UserUncheckedCreateWithoutWorkspaceMembershipsInput = {
|
|
|
2549
2583
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
2550
2584
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
2551
2585
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
2586
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
2552
2587
|
}
|
|
2553
2588
|
|
|
2554
2589
|
export type UserCreateOrConnectWithoutWorkspaceMembershipsInput = {
|
|
@@ -2620,6 +2655,7 @@ export type UserCreateWithoutTeamJoinedInput = {
|
|
|
2620
2655
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
2621
2656
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
2622
2657
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
2658
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
2623
2659
|
}
|
|
2624
2660
|
|
|
2625
2661
|
export type UserUncheckedCreateWithoutTeamJoinedInput = {
|
|
@@ -2686,6 +2722,7 @@ export type UserUncheckedCreateWithoutTeamJoinedInput = {
|
|
|
2686
2722
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
2687
2723
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
2688
2724
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
2725
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
2689
2726
|
}
|
|
2690
2727
|
|
|
2691
2728
|
export type UserCreateOrConnectWithoutTeamJoinedInput = {
|
|
@@ -2768,6 +2805,7 @@ export type UserUpdateWithoutWorkspaceMembershipsInput = {
|
|
|
2768
2805
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
2769
2806
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
2770
2807
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
2808
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
2771
2809
|
}
|
|
2772
2810
|
|
|
2773
2811
|
export type UserUncheckedUpdateWithoutWorkspaceMembershipsInput = {
|
|
@@ -2834,6 +2872,7 @@ export type UserUncheckedUpdateWithoutWorkspaceMembershipsInput = {
|
|
|
2834
2872
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
2835
2873
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
2836
2874
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
2875
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
2837
2876
|
}
|
|
2838
2877
|
|
|
2839
2878
|
export type UserUpsertWithoutTeamJoinedInput = {
|
|
@@ -2911,6 +2950,7 @@ export type UserUpdateWithoutTeamJoinedInput = {
|
|
|
2911
2950
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
2912
2951
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
2913
2952
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
2953
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
2914
2954
|
}
|
|
2915
2955
|
|
|
2916
2956
|
export type UserUncheckedUpdateWithoutTeamJoinedInput = {
|
|
@@ -2977,6 +3017,7 @@ export type UserUncheckedUpdateWithoutTeamJoinedInput = {
|
|
|
2977
3017
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
2978
3018
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
2979
3019
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
3020
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
2980
3021
|
}
|
|
2981
3022
|
|
|
2982
3023
|
export type UserCreateWithoutSentInvitationsInput = {
|
|
@@ -3043,6 +3084,7 @@ export type UserCreateWithoutSentInvitationsInput = {
|
|
|
3043
3084
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
3044
3085
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
3045
3086
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
3087
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
3046
3088
|
}
|
|
3047
3089
|
|
|
3048
3090
|
export type UserUncheckedCreateWithoutSentInvitationsInput = {
|
|
@@ -3109,6 +3151,7 @@ export type UserUncheckedCreateWithoutSentInvitationsInput = {
|
|
|
3109
3151
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
3110
3152
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
3111
3153
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
3154
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
3112
3155
|
}
|
|
3113
3156
|
|
|
3114
3157
|
export type UserCreateOrConnectWithoutSentInvitationsInput = {
|
|
@@ -3191,6 +3234,7 @@ export type UserUpdateWithoutSentInvitationsInput = {
|
|
|
3191
3234
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
3192
3235
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
3193
3236
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
3237
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
3194
3238
|
}
|
|
3195
3239
|
|
|
3196
3240
|
export type UserUncheckedUpdateWithoutSentInvitationsInput = {
|
|
@@ -3257,6 +3301,7 @@ export type UserUncheckedUpdateWithoutSentInvitationsInput = {
|
|
|
3257
3301
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
3258
3302
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
3259
3303
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
3304
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
3260
3305
|
}
|
|
3261
3306
|
|
|
3262
3307
|
export type UserCreateWithoutOwnedJoinRequestsInput = {
|
|
@@ -3323,6 +3368,7 @@ export type UserCreateWithoutOwnedJoinRequestsInput = {
|
|
|
3323
3368
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
3324
3369
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
3325
3370
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
3371
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
3326
3372
|
}
|
|
3327
3373
|
|
|
3328
3374
|
export type UserUncheckedCreateWithoutOwnedJoinRequestsInput = {
|
|
@@ -3389,6 +3435,7 @@ export type UserUncheckedCreateWithoutOwnedJoinRequestsInput = {
|
|
|
3389
3435
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
3390
3436
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
3391
3437
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
3438
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
3392
3439
|
}
|
|
3393
3440
|
|
|
3394
3441
|
export type UserCreateOrConnectWithoutOwnedJoinRequestsInput = {
|
|
@@ -3460,6 +3507,7 @@ export type UserCreateWithoutApplicantJoinRequestsInput = {
|
|
|
3460
3507
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
3461
3508
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
3462
3509
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
3510
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
3463
3511
|
}
|
|
3464
3512
|
|
|
3465
3513
|
export type UserUncheckedCreateWithoutApplicantJoinRequestsInput = {
|
|
@@ -3526,6 +3574,7 @@ export type UserUncheckedCreateWithoutApplicantJoinRequestsInput = {
|
|
|
3526
3574
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
3527
3575
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
3528
3576
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
3577
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
3529
3578
|
}
|
|
3530
3579
|
|
|
3531
3580
|
export type UserCreateOrConnectWithoutApplicantJoinRequestsInput = {
|
|
@@ -3608,6 +3657,7 @@ export type UserUpdateWithoutOwnedJoinRequestsInput = {
|
|
|
3608
3657
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
3609
3658
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
3610
3659
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
3660
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
3611
3661
|
}
|
|
3612
3662
|
|
|
3613
3663
|
export type UserUncheckedUpdateWithoutOwnedJoinRequestsInput = {
|
|
@@ -3674,6 +3724,7 @@ export type UserUncheckedUpdateWithoutOwnedJoinRequestsInput = {
|
|
|
3674
3724
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
3675
3725
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
3676
3726
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
3727
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
3677
3728
|
}
|
|
3678
3729
|
|
|
3679
3730
|
export type UserUpsertWithoutApplicantJoinRequestsInput = {
|
|
@@ -3751,6 +3802,7 @@ export type UserUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
3751
3802
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
3752
3803
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
3753
3804
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
3805
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
3754
3806
|
}
|
|
3755
3807
|
|
|
3756
3808
|
export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
@@ -3817,6 +3869,7 @@ export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
3817
3869
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
3818
3870
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
3819
3871
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
3872
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
3820
3873
|
}
|
|
3821
3874
|
|
|
3822
3875
|
export type UserCreateWithoutProjectActivitiesInput = {
|
|
@@ -3883,6 +3936,7 @@ export type UserCreateWithoutProjectActivitiesInput = {
|
|
|
3883
3936
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
3884
3937
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
3885
3938
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
3939
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
3886
3940
|
}
|
|
3887
3941
|
|
|
3888
3942
|
export type UserUncheckedCreateWithoutProjectActivitiesInput = {
|
|
@@ -3949,6 +4003,7 @@ export type UserUncheckedCreateWithoutProjectActivitiesInput = {
|
|
|
3949
4003
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
3950
4004
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
3951
4005
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
4006
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
3952
4007
|
}
|
|
3953
4008
|
|
|
3954
4009
|
export type UserCreateOrConnectWithoutProjectActivitiesInput = {
|
|
@@ -4031,6 +4086,7 @@ export type UserUpdateWithoutProjectActivitiesInput = {
|
|
|
4031
4086
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
4032
4087
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
4033
4088
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
4089
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
4034
4090
|
}
|
|
4035
4091
|
|
|
4036
4092
|
export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
|
|
@@ -4097,6 +4153,7 @@ export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
|
|
|
4097
4153
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
4098
4154
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
4099
4155
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
4156
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
4100
4157
|
}
|
|
4101
4158
|
|
|
4102
4159
|
export type UserCreateWithoutChatThreadsInput = {
|
|
@@ -4163,6 +4220,7 @@ export type UserCreateWithoutChatThreadsInput = {
|
|
|
4163
4220
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
4164
4221
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
4165
4222
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
4223
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
4166
4224
|
}
|
|
4167
4225
|
|
|
4168
4226
|
export type UserUncheckedCreateWithoutChatThreadsInput = {
|
|
@@ -4229,6 +4287,7 @@ export type UserUncheckedCreateWithoutChatThreadsInput = {
|
|
|
4229
4287
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
4230
4288
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
4231
4289
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
4290
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
4232
4291
|
}
|
|
4233
4292
|
|
|
4234
4293
|
export type UserCreateOrConnectWithoutChatThreadsInput = {
|
|
@@ -4311,6 +4370,7 @@ export type UserUpdateWithoutChatThreadsInput = {
|
|
|
4311
4370
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
4312
4371
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
4313
4372
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
4373
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
4314
4374
|
}
|
|
4315
4375
|
|
|
4316
4376
|
export type UserUncheckedUpdateWithoutChatThreadsInput = {
|
|
@@ -4377,6 +4437,7 @@ export type UserUncheckedUpdateWithoutChatThreadsInput = {
|
|
|
4377
4437
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
4378
4438
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
4379
4439
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
4440
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
4380
4441
|
}
|
|
4381
4442
|
|
|
4382
4443
|
export type UserCreateWithoutLoginLogsInput = {
|
|
@@ -4443,6 +4504,7 @@ export type UserCreateWithoutLoginLogsInput = {
|
|
|
4443
4504
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
4444
4505
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
4445
4506
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
4507
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
4446
4508
|
}
|
|
4447
4509
|
|
|
4448
4510
|
export type UserUncheckedCreateWithoutLoginLogsInput = {
|
|
@@ -4509,6 +4571,7 @@ export type UserUncheckedCreateWithoutLoginLogsInput = {
|
|
|
4509
4571
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
4510
4572
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
4511
4573
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
4574
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
4512
4575
|
}
|
|
4513
4576
|
|
|
4514
4577
|
export type UserCreateOrConnectWithoutLoginLogsInput = {
|
|
@@ -4591,6 +4654,7 @@ export type UserUpdateWithoutLoginLogsInput = {
|
|
|
4591
4654
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
4592
4655
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
4593
4656
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
4657
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
4594
4658
|
}
|
|
4595
4659
|
|
|
4596
4660
|
export type UserUncheckedUpdateWithoutLoginLogsInput = {
|
|
@@ -4657,6 +4721,7 @@ export type UserUncheckedUpdateWithoutLoginLogsInput = {
|
|
|
4657
4721
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
4658
4722
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
4659
4723
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
4724
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
4660
4725
|
}
|
|
4661
4726
|
|
|
4662
4727
|
export type UserCreateWithoutInvitationUsesInput = {
|
|
@@ -4723,6 +4788,7 @@ export type UserCreateWithoutInvitationUsesInput = {
|
|
|
4723
4788
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
4724
4789
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
4725
4790
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
4791
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
4726
4792
|
}
|
|
4727
4793
|
|
|
4728
4794
|
export type UserUncheckedCreateWithoutInvitationUsesInput = {
|
|
@@ -4789,6 +4855,7 @@ export type UserUncheckedCreateWithoutInvitationUsesInput = {
|
|
|
4789
4855
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
4790
4856
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
4791
4857
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
4858
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
4792
4859
|
}
|
|
4793
4860
|
|
|
4794
4861
|
export type UserCreateOrConnectWithoutInvitationUsesInput = {
|
|
@@ -4871,6 +4938,7 @@ export type UserUpdateWithoutInvitationUsesInput = {
|
|
|
4871
4938
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
4872
4939
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
4873
4940
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
4941
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
4874
4942
|
}
|
|
4875
4943
|
|
|
4876
4944
|
export type UserUncheckedUpdateWithoutInvitationUsesInput = {
|
|
@@ -4937,6 +5005,7 @@ export type UserUncheckedUpdateWithoutInvitationUsesInput = {
|
|
|
4937
5005
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
4938
5006
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
4939
5007
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
5008
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
4940
5009
|
}
|
|
4941
5010
|
|
|
4942
5011
|
export type UserCreateWithoutPasswordResetTokensInput = {
|
|
@@ -5003,6 +5072,7 @@ export type UserCreateWithoutPasswordResetTokensInput = {
|
|
|
5003
5072
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
5004
5073
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
5005
5074
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
5075
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
5006
5076
|
}
|
|
5007
5077
|
|
|
5008
5078
|
export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
|
|
@@ -5069,6 +5139,7 @@ export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
|
|
|
5069
5139
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
5070
5140
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
5071
5141
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
5142
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
5072
5143
|
}
|
|
5073
5144
|
|
|
5074
5145
|
export type UserCreateOrConnectWithoutPasswordResetTokensInput = {
|
|
@@ -5151,6 +5222,7 @@ export type UserUpdateWithoutPasswordResetTokensInput = {
|
|
|
5151
5222
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
5152
5223
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
5153
5224
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
5225
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5154
5226
|
}
|
|
5155
5227
|
|
|
5156
5228
|
export type UserUncheckedUpdateWithoutPasswordResetTokensInput = {
|
|
@@ -5217,6 +5289,7 @@ export type UserUncheckedUpdateWithoutPasswordResetTokensInput = {
|
|
|
5217
5289
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
5218
5290
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
5219
5291
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
5292
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5220
5293
|
}
|
|
5221
5294
|
|
|
5222
5295
|
export type UserCreateWithoutKnowledgeBasesInput = {
|
|
@@ -5283,6 +5356,7 @@ export type UserCreateWithoutKnowledgeBasesInput = {
|
|
|
5283
5356
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
5284
5357
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
5285
5358
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
5359
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
5286
5360
|
}
|
|
5287
5361
|
|
|
5288
5362
|
export type UserUncheckedCreateWithoutKnowledgeBasesInput = {
|
|
@@ -5349,6 +5423,7 @@ export type UserUncheckedCreateWithoutKnowledgeBasesInput = {
|
|
|
5349
5423
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
5350
5424
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
5351
5425
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
5426
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
5352
5427
|
}
|
|
5353
5428
|
|
|
5354
5429
|
export type UserCreateOrConnectWithoutKnowledgeBasesInput = {
|
|
@@ -5431,6 +5506,7 @@ export type UserUpdateWithoutKnowledgeBasesInput = {
|
|
|
5431
5506
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
5432
5507
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
5433
5508
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
5509
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5434
5510
|
}
|
|
5435
5511
|
|
|
5436
5512
|
export type UserUncheckedUpdateWithoutKnowledgeBasesInput = {
|
|
@@ -5497,6 +5573,291 @@ export type UserUncheckedUpdateWithoutKnowledgeBasesInput = {
|
|
|
5497
5573
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
5498
5574
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
5499
5575
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
5576
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5577
|
+
}
|
|
5578
|
+
|
|
5579
|
+
export type UserCreateWithoutCreatedQuickDocsInput = {
|
|
5580
|
+
id?: string
|
|
5581
|
+
email: string
|
|
5582
|
+
username: string
|
|
5583
|
+
password: string
|
|
5584
|
+
role?: string
|
|
5585
|
+
status?: string
|
|
5586
|
+
createdAt?: Date | string
|
|
5587
|
+
updatedAt?: Date | string
|
|
5588
|
+
lastLoginAt?: Date | string | null
|
|
5589
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5590
|
+
bgShape?: string | null
|
|
5591
|
+
bgColor?: string | null
|
|
5592
|
+
aiProvider?: string | null
|
|
5593
|
+
aiApiKey?: string | null
|
|
5594
|
+
aiModel?: string | null
|
|
5595
|
+
locale?: string | null
|
|
5596
|
+
sketchApiToken?: string | null
|
|
5597
|
+
timezone?: string | null
|
|
5598
|
+
preferredCurrency?: string
|
|
5599
|
+
defaultWorkspaceId?: string | null
|
|
5600
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
5601
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
5602
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
5603
|
+
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
5604
|
+
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
5605
|
+
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
5606
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
5607
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
|
|
5608
|
+
legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
|
|
5609
|
+
industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
|
|
5610
|
+
dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
|
|
5611
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
|
|
5612
|
+
bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
|
|
5613
|
+
articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
|
|
5614
|
+
anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
|
|
5615
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
|
|
5616
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
|
|
5617
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
|
|
5618
|
+
prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
|
|
5619
|
+
reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
|
|
5620
|
+
comments?: Prisma.CommentCreateNestedManyWithoutUserInput
|
|
5621
|
+
commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
|
|
5622
|
+
reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
|
|
5623
|
+
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
5624
|
+
chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
|
|
5625
|
+
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
5626
|
+
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
5627
|
+
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
5628
|
+
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
5629
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5630
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5631
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5632
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5633
|
+
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
5634
|
+
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
5635
|
+
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
5636
|
+
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
5637
|
+
sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
|
|
5638
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
|
|
5639
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
|
|
5640
|
+
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
5641
|
+
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
5642
|
+
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
5643
|
+
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
5644
|
+
}
|
|
5645
|
+
|
|
5646
|
+
export type UserUncheckedCreateWithoutCreatedQuickDocsInput = {
|
|
5647
|
+
id?: string
|
|
5648
|
+
email: string
|
|
5649
|
+
username: string
|
|
5650
|
+
password: string
|
|
5651
|
+
role?: string
|
|
5652
|
+
status?: string
|
|
5653
|
+
createdAt?: Date | string
|
|
5654
|
+
updatedAt?: Date | string
|
|
5655
|
+
lastLoginAt?: Date | string | null
|
|
5656
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5657
|
+
bgShape?: string | null
|
|
5658
|
+
bgColor?: string | null
|
|
5659
|
+
aiProvider?: string | null
|
|
5660
|
+
aiApiKey?: string | null
|
|
5661
|
+
aiModel?: string | null
|
|
5662
|
+
locale?: string | null
|
|
5663
|
+
sketchApiToken?: string | null
|
|
5664
|
+
timezone?: string | null
|
|
5665
|
+
preferredCurrency?: string
|
|
5666
|
+
defaultWorkspaceId?: string | null
|
|
5667
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
5668
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
5669
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
5670
|
+
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
5671
|
+
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
5672
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
5673
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
5674
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
|
|
5675
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
|
|
5676
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
|
|
5677
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
|
|
5678
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
|
|
5679
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
|
|
5680
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
|
|
5681
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
|
|
5682
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
|
|
5683
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
|
|
5684
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
|
|
5685
|
+
prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
|
|
5686
|
+
reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
|
|
5687
|
+
comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
|
|
5688
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
|
|
5689
|
+
reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
|
|
5690
|
+
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
5691
|
+
chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
|
|
5692
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
5693
|
+
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
5694
|
+
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
5695
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
5696
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5697
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5698
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5699
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5700
|
+
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5701
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
5702
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
5703
|
+
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
5704
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
|
|
5705
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
|
|
5706
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
|
|
5707
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
5708
|
+
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
5709
|
+
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
5710
|
+
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
5711
|
+
}
|
|
5712
|
+
|
|
5713
|
+
export type UserCreateOrConnectWithoutCreatedQuickDocsInput = {
|
|
5714
|
+
where: Prisma.UserWhereUniqueInput
|
|
5715
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedCreateWithoutCreatedQuickDocsInput>
|
|
5716
|
+
}
|
|
5717
|
+
|
|
5718
|
+
export type UserUpsertWithoutCreatedQuickDocsInput = {
|
|
5719
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedUpdateWithoutCreatedQuickDocsInput>
|
|
5720
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedCreateWithoutCreatedQuickDocsInput>
|
|
5721
|
+
where?: Prisma.UserWhereInput
|
|
5722
|
+
}
|
|
5723
|
+
|
|
5724
|
+
export type UserUpdateToOneWithWhereWithoutCreatedQuickDocsInput = {
|
|
5725
|
+
where?: Prisma.UserWhereInput
|
|
5726
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutCreatedQuickDocsInput, Prisma.UserUncheckedUpdateWithoutCreatedQuickDocsInput>
|
|
5727
|
+
}
|
|
5728
|
+
|
|
5729
|
+
export type UserUpdateWithoutCreatedQuickDocsInput = {
|
|
5730
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5731
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5732
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5733
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5734
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5735
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5736
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5737
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5738
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5739
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5740
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5741
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5742
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5743
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5744
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5745
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5746
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5747
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5748
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5749
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5750
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
5751
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
5752
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
5753
|
+
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
5754
|
+
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
5755
|
+
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
5756
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
5757
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
|
|
5758
|
+
legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
|
|
5759
|
+
industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
|
|
5760
|
+
dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
|
|
5761
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
|
|
5762
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
|
|
5763
|
+
articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
|
|
5764
|
+
anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
|
|
5765
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
|
|
5766
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
|
|
5767
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
|
|
5768
|
+
prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
|
|
5769
|
+
reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
|
|
5770
|
+
comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
|
|
5771
|
+
commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
|
|
5772
|
+
reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
|
|
5773
|
+
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
5774
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
5775
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
5776
|
+
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
5777
|
+
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
5778
|
+
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
5779
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5780
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5781
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5782
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5783
|
+
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
5784
|
+
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
5785
|
+
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
5786
|
+
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
5787
|
+
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
5788
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
5789
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
|
|
5790
|
+
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
5791
|
+
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
5792
|
+
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
5793
|
+
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
5794
|
+
}
|
|
5795
|
+
|
|
5796
|
+
export type UserUncheckedUpdateWithoutCreatedQuickDocsInput = {
|
|
5797
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5798
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5799
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5800
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5801
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5802
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5803
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5804
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5805
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5806
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5807
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5808
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5809
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5810
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5811
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5812
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5813
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5814
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5815
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5816
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5817
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
5818
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5819
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
5820
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
5821
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
5822
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
5823
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5824
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
5825
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
5826
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
5827
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
5828
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
5829
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
5830
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
5831
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
5832
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
5833
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
5834
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
5835
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
5836
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5837
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5838
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
5839
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
5840
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
5841
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
5842
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
5843
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5844
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5845
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5846
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5847
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5848
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5849
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5850
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5851
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5852
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5853
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
5854
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5855
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5856
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
5857
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5858
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
5859
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
5860
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
5500
5861
|
}
|
|
5501
5862
|
|
|
5502
5863
|
export type UserCreateWithoutKnowledgeDocumentsInput = {
|
|
@@ -5563,6 +5924,7 @@ export type UserCreateWithoutKnowledgeDocumentsInput = {
|
|
|
5563
5924
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
5564
5925
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
5565
5926
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
5927
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
5566
5928
|
}
|
|
5567
5929
|
|
|
5568
5930
|
export type UserUncheckedCreateWithoutKnowledgeDocumentsInput = {
|
|
@@ -5629,6 +5991,7 @@ export type UserUncheckedCreateWithoutKnowledgeDocumentsInput = {
|
|
|
5629
5991
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
5630
5992
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
5631
5993
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
5994
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
5632
5995
|
}
|
|
5633
5996
|
|
|
5634
5997
|
export type UserCreateOrConnectWithoutKnowledgeDocumentsInput = {
|
|
@@ -5711,6 +6074,7 @@ export type UserUpdateWithoutKnowledgeDocumentsInput = {
|
|
|
5711
6074
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
5712
6075
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
5713
6076
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
6077
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5714
6078
|
}
|
|
5715
6079
|
|
|
5716
6080
|
export type UserUncheckedUpdateWithoutKnowledgeDocumentsInput = {
|
|
@@ -5777,6 +6141,7 @@ export type UserUncheckedUpdateWithoutKnowledgeDocumentsInput = {
|
|
|
5777
6141
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
5778
6142
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
5779
6143
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
6144
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5780
6145
|
}
|
|
5781
6146
|
|
|
5782
6147
|
export type UserCreateWithoutPrdsInput = {
|
|
@@ -5843,6 +6208,7 @@ export type UserCreateWithoutPrdsInput = {
|
|
|
5843
6208
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
5844
6209
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
5845
6210
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
6211
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
5846
6212
|
}
|
|
5847
6213
|
|
|
5848
6214
|
export type UserUncheckedCreateWithoutPrdsInput = {
|
|
@@ -5909,6 +6275,7 @@ export type UserUncheckedCreateWithoutPrdsInput = {
|
|
|
5909
6275
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
5910
6276
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
5911
6277
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
6278
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
5912
6279
|
}
|
|
5913
6280
|
|
|
5914
6281
|
export type UserCreateOrConnectWithoutPrdsInput = {
|
|
@@ -5991,6 +6358,7 @@ export type UserUpdateWithoutPrdsInput = {
|
|
|
5991
6358
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
5992
6359
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
5993
6360
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
6361
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5994
6362
|
}
|
|
5995
6363
|
|
|
5996
6364
|
export type UserUncheckedUpdateWithoutPrdsInput = {
|
|
@@ -6057,6 +6425,7 @@ export type UserUncheckedUpdateWithoutPrdsInput = {
|
|
|
6057
6425
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
6058
6426
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
6059
6427
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
6428
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
6060
6429
|
}
|
|
6061
6430
|
|
|
6062
6431
|
export type UserCreateWithoutAgentConversationsInput = {
|
|
@@ -6123,6 +6492,7 @@ export type UserCreateWithoutAgentConversationsInput = {
|
|
|
6123
6492
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
6124
6493
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
6125
6494
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
6495
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
6126
6496
|
}
|
|
6127
6497
|
|
|
6128
6498
|
export type UserUncheckedCreateWithoutAgentConversationsInput = {
|
|
@@ -6189,6 +6559,7 @@ export type UserUncheckedCreateWithoutAgentConversationsInput = {
|
|
|
6189
6559
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
6190
6560
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
6191
6561
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
6562
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
6192
6563
|
}
|
|
6193
6564
|
|
|
6194
6565
|
export type UserCreateOrConnectWithoutAgentConversationsInput = {
|
|
@@ -6271,6 +6642,7 @@ export type UserUpdateWithoutAgentConversationsInput = {
|
|
|
6271
6642
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
6272
6643
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
6273
6644
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
6645
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
6274
6646
|
}
|
|
6275
6647
|
|
|
6276
6648
|
export type UserUncheckedUpdateWithoutAgentConversationsInput = {
|
|
@@ -6337,6 +6709,7 @@ export type UserUncheckedUpdateWithoutAgentConversationsInput = {
|
|
|
6337
6709
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
6338
6710
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
6339
6711
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
6712
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
6340
6713
|
}
|
|
6341
6714
|
|
|
6342
6715
|
export type UserCreateWithoutPrdVersionsInput = {
|
|
@@ -6403,6 +6776,7 @@ export type UserCreateWithoutPrdVersionsInput = {
|
|
|
6403
6776
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
6404
6777
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
6405
6778
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
6779
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
6406
6780
|
}
|
|
6407
6781
|
|
|
6408
6782
|
export type UserUncheckedCreateWithoutPrdVersionsInput = {
|
|
@@ -6469,6 +6843,7 @@ export type UserUncheckedCreateWithoutPrdVersionsInput = {
|
|
|
6469
6843
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
6470
6844
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
6471
6845
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
6846
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
6472
6847
|
}
|
|
6473
6848
|
|
|
6474
6849
|
export type UserCreateOrConnectWithoutPrdVersionsInput = {
|
|
@@ -6551,6 +6926,7 @@ export type UserUpdateWithoutPrdVersionsInput = {
|
|
|
6551
6926
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
6552
6927
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
6553
6928
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
6929
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
6554
6930
|
}
|
|
6555
6931
|
|
|
6556
6932
|
export type UserUncheckedUpdateWithoutPrdVersionsInput = {
|
|
@@ -6617,6 +6993,7 @@ export type UserUncheckedUpdateWithoutPrdVersionsInput = {
|
|
|
6617
6993
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
6618
6994
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
6619
6995
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
6996
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
6620
6997
|
}
|
|
6621
6998
|
|
|
6622
6999
|
export type UserCreateWithoutReviewsInput = {
|
|
@@ -6683,6 +7060,7 @@ export type UserCreateWithoutReviewsInput = {
|
|
|
6683
7060
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
6684
7061
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
6685
7062
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
7063
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
6686
7064
|
}
|
|
6687
7065
|
|
|
6688
7066
|
export type UserUncheckedCreateWithoutReviewsInput = {
|
|
@@ -6749,6 +7127,7 @@ export type UserUncheckedCreateWithoutReviewsInput = {
|
|
|
6749
7127
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
6750
7128
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
6751
7129
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
7130
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
6752
7131
|
}
|
|
6753
7132
|
|
|
6754
7133
|
export type UserCreateOrConnectWithoutReviewsInput = {
|
|
@@ -6831,6 +7210,7 @@ export type UserUpdateWithoutReviewsInput = {
|
|
|
6831
7210
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
6832
7211
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
6833
7212
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
7213
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
6834
7214
|
}
|
|
6835
7215
|
|
|
6836
7216
|
export type UserUncheckedUpdateWithoutReviewsInput = {
|
|
@@ -6897,6 +7277,7 @@ export type UserUncheckedUpdateWithoutReviewsInput = {
|
|
|
6897
7277
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
6898
7278
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
6899
7279
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
7280
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
6900
7281
|
}
|
|
6901
7282
|
|
|
6902
7283
|
export type UserCreateWithoutReviewCommentsInput = {
|
|
@@ -6963,6 +7344,7 @@ export type UserCreateWithoutReviewCommentsInput = {
|
|
|
6963
7344
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
6964
7345
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
6965
7346
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
7347
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
6966
7348
|
}
|
|
6967
7349
|
|
|
6968
7350
|
export type UserUncheckedCreateWithoutReviewCommentsInput = {
|
|
@@ -7029,6 +7411,7 @@ export type UserUncheckedCreateWithoutReviewCommentsInput = {
|
|
|
7029
7411
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
7030
7412
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
7031
7413
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
7414
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
7032
7415
|
}
|
|
7033
7416
|
|
|
7034
7417
|
export type UserCreateOrConnectWithoutReviewCommentsInput = {
|
|
@@ -7111,6 +7494,7 @@ export type UserUpdateWithoutReviewCommentsInput = {
|
|
|
7111
7494
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
7112
7495
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
7113
7496
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
7497
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
7114
7498
|
}
|
|
7115
7499
|
|
|
7116
7500
|
export type UserUncheckedUpdateWithoutReviewCommentsInput = {
|
|
@@ -7177,6 +7561,7 @@ export type UserUncheckedUpdateWithoutReviewCommentsInput = {
|
|
|
7177
7561
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
7178
7562
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
7179
7563
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
7564
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
7180
7565
|
}
|
|
7181
7566
|
|
|
7182
7567
|
export type UserCreateWithoutCommentsInput = {
|
|
@@ -7243,6 +7628,7 @@ export type UserCreateWithoutCommentsInput = {
|
|
|
7243
7628
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
7244
7629
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
7245
7630
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
7631
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
7246
7632
|
}
|
|
7247
7633
|
|
|
7248
7634
|
export type UserUncheckedCreateWithoutCommentsInput = {
|
|
@@ -7309,6 +7695,7 @@ export type UserUncheckedCreateWithoutCommentsInput = {
|
|
|
7309
7695
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
7310
7696
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
7311
7697
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
7698
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
7312
7699
|
}
|
|
7313
7700
|
|
|
7314
7701
|
export type UserCreateOrConnectWithoutCommentsInput = {
|
|
@@ -7391,6 +7778,7 @@ export type UserUpdateWithoutCommentsInput = {
|
|
|
7391
7778
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
7392
7779
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
7393
7780
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
7781
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
7394
7782
|
}
|
|
7395
7783
|
|
|
7396
7784
|
export type UserUncheckedUpdateWithoutCommentsInput = {
|
|
@@ -7457,6 +7845,7 @@ export type UserUncheckedUpdateWithoutCommentsInput = {
|
|
|
7457
7845
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
7458
7846
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
7459
7847
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
7848
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
7460
7849
|
}
|
|
7461
7850
|
|
|
7462
7851
|
export type UserCreateWithoutCommentIgnoresInput = {
|
|
@@ -7523,6 +7912,7 @@ export type UserCreateWithoutCommentIgnoresInput = {
|
|
|
7523
7912
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
7524
7913
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
7525
7914
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
7915
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
7526
7916
|
}
|
|
7527
7917
|
|
|
7528
7918
|
export type UserUncheckedCreateWithoutCommentIgnoresInput = {
|
|
@@ -7589,6 +7979,7 @@ export type UserUncheckedCreateWithoutCommentIgnoresInput = {
|
|
|
7589
7979
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
7590
7980
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
7591
7981
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
7982
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
7592
7983
|
}
|
|
7593
7984
|
|
|
7594
7985
|
export type UserCreateOrConnectWithoutCommentIgnoresInput = {
|
|
@@ -7671,6 +8062,7 @@ export type UserUpdateWithoutCommentIgnoresInput = {
|
|
|
7671
8062
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
7672
8063
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
7673
8064
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
8065
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
7674
8066
|
}
|
|
7675
8067
|
|
|
7676
8068
|
export type UserUncheckedUpdateWithoutCommentIgnoresInput = {
|
|
@@ -7737,6 +8129,7 @@ export type UserUncheckedUpdateWithoutCommentIgnoresInput = {
|
|
|
7737
8129
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
7738
8130
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
7739
8131
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
8132
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
7740
8133
|
}
|
|
7741
8134
|
|
|
7742
8135
|
export type UserCreateWithoutTagsInput = {
|
|
@@ -7803,6 +8196,7 @@ export type UserCreateWithoutTagsInput = {
|
|
|
7803
8196
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
7804
8197
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
7805
8198
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
8199
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
7806
8200
|
}
|
|
7807
8201
|
|
|
7808
8202
|
export type UserUncheckedCreateWithoutTagsInput = {
|
|
@@ -7869,6 +8263,7 @@ export type UserUncheckedCreateWithoutTagsInput = {
|
|
|
7869
8263
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
7870
8264
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
7871
8265
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
8266
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
7872
8267
|
}
|
|
7873
8268
|
|
|
7874
8269
|
export type UserCreateOrConnectWithoutTagsInput = {
|
|
@@ -7951,6 +8346,7 @@ export type UserUpdateWithoutTagsInput = {
|
|
|
7951
8346
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
7952
8347
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
7953
8348
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
8349
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
7954
8350
|
}
|
|
7955
8351
|
|
|
7956
8352
|
export type UserUncheckedUpdateWithoutTagsInput = {
|
|
@@ -8017,6 +8413,7 @@ export type UserUncheckedUpdateWithoutTagsInput = {
|
|
|
8017
8413
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
8018
8414
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
8019
8415
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
8416
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
8020
8417
|
}
|
|
8021
8418
|
|
|
8022
8419
|
export type UserCreateWithoutAnyhubAppsInput = {
|
|
@@ -8083,6 +8480,7 @@ export type UserCreateWithoutAnyhubAppsInput = {
|
|
|
8083
8480
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
8084
8481
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
8085
8482
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
8483
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
8086
8484
|
}
|
|
8087
8485
|
|
|
8088
8486
|
export type UserUncheckedCreateWithoutAnyhubAppsInput = {
|
|
@@ -8149,6 +8547,7 @@ export type UserUncheckedCreateWithoutAnyhubAppsInput = {
|
|
|
8149
8547
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
8150
8548
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
8151
8549
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
8550
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
8152
8551
|
}
|
|
8153
8552
|
|
|
8154
8553
|
export type UserCreateOrConnectWithoutAnyhubAppsInput = {
|
|
@@ -8231,6 +8630,7 @@ export type UserUpdateWithoutAnyhubAppsInput = {
|
|
|
8231
8630
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
8232
8631
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
8233
8632
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
8633
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
8234
8634
|
}
|
|
8235
8635
|
|
|
8236
8636
|
export type UserUncheckedUpdateWithoutAnyhubAppsInput = {
|
|
@@ -8297,6 +8697,7 @@ export type UserUncheckedUpdateWithoutAnyhubAppsInput = {
|
|
|
8297
8697
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
8298
8698
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
8299
8699
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
8700
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
8300
8701
|
}
|
|
8301
8702
|
|
|
8302
8703
|
export type UserCreateWithoutAnyhubMarketAppsInput = {
|
|
@@ -8363,6 +8764,7 @@ export type UserCreateWithoutAnyhubMarketAppsInput = {
|
|
|
8363
8764
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
8364
8765
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
8365
8766
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
8767
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
8366
8768
|
}
|
|
8367
8769
|
|
|
8368
8770
|
export type UserUncheckedCreateWithoutAnyhubMarketAppsInput = {
|
|
@@ -8429,6 +8831,7 @@ export type UserUncheckedCreateWithoutAnyhubMarketAppsInput = {
|
|
|
8429
8831
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
8430
8832
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
8431
8833
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
8834
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
8432
8835
|
}
|
|
8433
8836
|
|
|
8434
8837
|
export type UserCreateOrConnectWithoutAnyhubMarketAppsInput = {
|
|
@@ -8511,6 +8914,7 @@ export type UserUpdateWithoutAnyhubMarketAppsInput = {
|
|
|
8511
8914
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
8512
8915
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
8513
8916
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
8917
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
8514
8918
|
}
|
|
8515
8919
|
|
|
8516
8920
|
export type UserUncheckedUpdateWithoutAnyhubMarketAppsInput = {
|
|
@@ -8577,6 +8981,7 @@ export type UserUncheckedUpdateWithoutAnyhubMarketAppsInput = {
|
|
|
8577
8981
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
8578
8982
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
8579
8983
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
8984
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
8580
8985
|
}
|
|
8581
8986
|
|
|
8582
8987
|
export type UserCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
@@ -8643,6 +9048,7 @@ export type UserCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
8643
9048
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
8644
9049
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
8645
9050
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
9051
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
8646
9052
|
}
|
|
8647
9053
|
|
|
8648
9054
|
export type UserUncheckedCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
@@ -8709,6 +9115,7 @@ export type UserUncheckedCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
8709
9115
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
8710
9116
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
8711
9117
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
9118
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
8712
9119
|
}
|
|
8713
9120
|
|
|
8714
9121
|
export type UserCreateOrConnectWithoutReviewedAnyhubRecommendationsInput = {
|
|
@@ -8791,6 +9198,7 @@ export type UserUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
8791
9198
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
8792
9199
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
8793
9200
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
9201
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
8794
9202
|
}
|
|
8795
9203
|
|
|
8796
9204
|
export type UserUncheckedUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
@@ -8857,6 +9265,7 @@ export type UserUncheckedUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
8857
9265
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
8858
9266
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
8859
9267
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
9268
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
8860
9269
|
}
|
|
8861
9270
|
|
|
8862
9271
|
export type UserCreateWithoutAnyhubRecommendersInput = {
|
|
@@ -8923,6 +9332,7 @@ export type UserCreateWithoutAnyhubRecommendersInput = {
|
|
|
8923
9332
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
8924
9333
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
8925
9334
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
9335
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
8926
9336
|
}
|
|
8927
9337
|
|
|
8928
9338
|
export type UserUncheckedCreateWithoutAnyhubRecommendersInput = {
|
|
@@ -8989,6 +9399,7 @@ export type UserUncheckedCreateWithoutAnyhubRecommendersInput = {
|
|
|
8989
9399
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
8990
9400
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
8991
9401
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
9402
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
8992
9403
|
}
|
|
8993
9404
|
|
|
8994
9405
|
export type UserCreateOrConnectWithoutAnyhubRecommendersInput = {
|
|
@@ -9071,6 +9482,7 @@ export type UserUpdateWithoutAnyhubRecommendersInput = {
|
|
|
9071
9482
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
9072
9483
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
9073
9484
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
9485
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
9074
9486
|
}
|
|
9075
9487
|
|
|
9076
9488
|
export type UserUncheckedUpdateWithoutAnyhubRecommendersInput = {
|
|
@@ -9137,6 +9549,7 @@ export type UserUncheckedUpdateWithoutAnyhubRecommendersInput = {
|
|
|
9137
9549
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
9138
9550
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
9139
9551
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
9552
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
9140
9553
|
}
|
|
9141
9554
|
|
|
9142
9555
|
export type UserCreateWithoutDesignProjectsInput = {
|
|
@@ -9203,6 +9616,7 @@ export type UserCreateWithoutDesignProjectsInput = {
|
|
|
9203
9616
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
9204
9617
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
9205
9618
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
9619
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
9206
9620
|
}
|
|
9207
9621
|
|
|
9208
9622
|
export type UserUncheckedCreateWithoutDesignProjectsInput = {
|
|
@@ -9269,6 +9683,7 @@ export type UserUncheckedCreateWithoutDesignProjectsInput = {
|
|
|
9269
9683
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
9270
9684
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
9271
9685
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
9686
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
9272
9687
|
}
|
|
9273
9688
|
|
|
9274
9689
|
export type UserCreateOrConnectWithoutDesignProjectsInput = {
|
|
@@ -9351,6 +9766,7 @@ export type UserUpdateWithoutDesignProjectsInput = {
|
|
|
9351
9766
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
9352
9767
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
9353
9768
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
9769
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
9354
9770
|
}
|
|
9355
9771
|
|
|
9356
9772
|
export type UserUncheckedUpdateWithoutDesignProjectsInput = {
|
|
@@ -9417,6 +9833,7 @@ export type UserUncheckedUpdateWithoutDesignProjectsInput = {
|
|
|
9417
9833
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
9418
9834
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
9419
9835
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
9836
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
9420
9837
|
}
|
|
9421
9838
|
|
|
9422
9839
|
export type UserCreateWithoutAiProviderConfigsInput = {
|
|
@@ -9483,6 +9900,7 @@ export type UserCreateWithoutAiProviderConfigsInput = {
|
|
|
9483
9900
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
9484
9901
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
9485
9902
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
9903
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
9486
9904
|
}
|
|
9487
9905
|
|
|
9488
9906
|
export type UserUncheckedCreateWithoutAiProviderConfigsInput = {
|
|
@@ -9549,6 +9967,7 @@ export type UserUncheckedCreateWithoutAiProviderConfigsInput = {
|
|
|
9549
9967
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
9550
9968
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
9551
9969
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
9970
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
9552
9971
|
}
|
|
9553
9972
|
|
|
9554
9973
|
export type UserCreateOrConnectWithoutAiProviderConfigsInput = {
|
|
@@ -9631,6 +10050,7 @@ export type UserUpdateWithoutAiProviderConfigsInput = {
|
|
|
9631
10050
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
9632
10051
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
9633
10052
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
10053
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
9634
10054
|
}
|
|
9635
10055
|
|
|
9636
10056
|
export type UserUncheckedUpdateWithoutAiProviderConfigsInput = {
|
|
@@ -9697,6 +10117,7 @@ export type UserUncheckedUpdateWithoutAiProviderConfigsInput = {
|
|
|
9697
10117
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
9698
10118
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
9699
10119
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
10120
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
9700
10121
|
}
|
|
9701
10122
|
|
|
9702
10123
|
export type UserCreateWithoutLegalRegulationsInput = {
|
|
@@ -9763,6 +10184,7 @@ export type UserCreateWithoutLegalRegulationsInput = {
|
|
|
9763
10184
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
9764
10185
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
9765
10186
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
10187
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
9766
10188
|
}
|
|
9767
10189
|
|
|
9768
10190
|
export type UserUncheckedCreateWithoutLegalRegulationsInput = {
|
|
@@ -9829,6 +10251,7 @@ export type UserUncheckedCreateWithoutLegalRegulationsInput = {
|
|
|
9829
10251
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
9830
10252
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
9831
10253
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
10254
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
9832
10255
|
}
|
|
9833
10256
|
|
|
9834
10257
|
export type UserCreateOrConnectWithoutLegalRegulationsInput = {
|
|
@@ -9911,6 +10334,7 @@ export type UserUpdateWithoutLegalRegulationsInput = {
|
|
|
9911
10334
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
9912
10335
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
9913
10336
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
10337
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
9914
10338
|
}
|
|
9915
10339
|
|
|
9916
10340
|
export type UserUncheckedUpdateWithoutLegalRegulationsInput = {
|
|
@@ -9977,6 +10401,7 @@ export type UserUncheckedUpdateWithoutLegalRegulationsInput = {
|
|
|
9977
10401
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
9978
10402
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
9979
10403
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
10404
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
9980
10405
|
}
|
|
9981
10406
|
|
|
9982
10407
|
export type UserCreateWithoutIndustryCompliancesInput = {
|
|
@@ -10043,6 +10468,7 @@ export type UserCreateWithoutIndustryCompliancesInput = {
|
|
|
10043
10468
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
10044
10469
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
10045
10470
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
10471
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
10046
10472
|
}
|
|
10047
10473
|
|
|
10048
10474
|
export type UserUncheckedCreateWithoutIndustryCompliancesInput = {
|
|
@@ -10109,6 +10535,7 @@ export type UserUncheckedCreateWithoutIndustryCompliancesInput = {
|
|
|
10109
10535
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
10110
10536
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
10111
10537
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
10538
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
10112
10539
|
}
|
|
10113
10540
|
|
|
10114
10541
|
export type UserCreateOrConnectWithoutIndustryCompliancesInput = {
|
|
@@ -10191,6 +10618,7 @@ export type UserUpdateWithoutIndustryCompliancesInput = {
|
|
|
10191
10618
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
10192
10619
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
10193
10620
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
10621
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
10194
10622
|
}
|
|
10195
10623
|
|
|
10196
10624
|
export type UserUncheckedUpdateWithoutIndustryCompliancesInput = {
|
|
@@ -10257,6 +10685,7 @@ export type UserUncheckedUpdateWithoutIndustryCompliancesInput = {
|
|
|
10257
10685
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
10258
10686
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
10259
10687
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
10688
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
10260
10689
|
}
|
|
10261
10690
|
|
|
10262
10691
|
export type UserCreateWithoutDictionaryTermsInput = {
|
|
@@ -10323,6 +10752,7 @@ export type UserCreateWithoutDictionaryTermsInput = {
|
|
|
10323
10752
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
10324
10753
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
10325
10754
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
10755
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
10326
10756
|
}
|
|
10327
10757
|
|
|
10328
10758
|
export type UserUncheckedCreateWithoutDictionaryTermsInput = {
|
|
@@ -10389,6 +10819,7 @@ export type UserUncheckedCreateWithoutDictionaryTermsInput = {
|
|
|
10389
10819
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
10390
10820
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
10391
10821
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
10822
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
10392
10823
|
}
|
|
10393
10824
|
|
|
10394
10825
|
export type UserCreateOrConnectWithoutDictionaryTermsInput = {
|
|
@@ -10471,6 +10902,7 @@ export type UserUpdateWithoutDictionaryTermsInput = {
|
|
|
10471
10902
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
10472
10903
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
10473
10904
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
10905
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
10474
10906
|
}
|
|
10475
10907
|
|
|
10476
10908
|
export type UserUncheckedUpdateWithoutDictionaryTermsInput = {
|
|
@@ -10537,6 +10969,7 @@ export type UserUncheckedUpdateWithoutDictionaryTermsInput = {
|
|
|
10537
10969
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
10538
10970
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
10539
10971
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
10972
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
10540
10973
|
}
|
|
10541
10974
|
|
|
10542
10975
|
export type UserCreateWithoutWebsiteBookmarksInput = {
|
|
@@ -10603,6 +11036,7 @@ export type UserCreateWithoutWebsiteBookmarksInput = {
|
|
|
10603
11036
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
10604
11037
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
10605
11038
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
11039
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
10606
11040
|
}
|
|
10607
11041
|
|
|
10608
11042
|
export type UserUncheckedCreateWithoutWebsiteBookmarksInput = {
|
|
@@ -10669,6 +11103,7 @@ export type UserUncheckedCreateWithoutWebsiteBookmarksInput = {
|
|
|
10669
11103
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
10670
11104
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
10671
11105
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
11106
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
10672
11107
|
}
|
|
10673
11108
|
|
|
10674
11109
|
export type UserCreateOrConnectWithoutWebsiteBookmarksInput = {
|
|
@@ -10751,6 +11186,7 @@ export type UserUpdateWithoutWebsiteBookmarksInput = {
|
|
|
10751
11186
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
10752
11187
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
10753
11188
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
11189
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
10754
11190
|
}
|
|
10755
11191
|
|
|
10756
11192
|
export type UserUncheckedUpdateWithoutWebsiteBookmarksInput = {
|
|
@@ -10817,6 +11253,7 @@ export type UserUncheckedUpdateWithoutWebsiteBookmarksInput = {
|
|
|
10817
11253
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
10818
11254
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
10819
11255
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
11256
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
10820
11257
|
}
|
|
10821
11258
|
|
|
10822
11259
|
export type UserCreateWithoutBookmarkCategoriesInput = {
|
|
@@ -10883,6 +11320,7 @@ export type UserCreateWithoutBookmarkCategoriesInput = {
|
|
|
10883
11320
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
10884
11321
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
10885
11322
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
11323
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
10886
11324
|
}
|
|
10887
11325
|
|
|
10888
11326
|
export type UserUncheckedCreateWithoutBookmarkCategoriesInput = {
|
|
@@ -10949,6 +11387,7 @@ export type UserUncheckedCreateWithoutBookmarkCategoriesInput = {
|
|
|
10949
11387
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
10950
11388
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
10951
11389
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
11390
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
10952
11391
|
}
|
|
10953
11392
|
|
|
10954
11393
|
export type UserCreateOrConnectWithoutBookmarkCategoriesInput = {
|
|
@@ -11031,6 +11470,7 @@ export type UserUpdateWithoutBookmarkCategoriesInput = {
|
|
|
11031
11470
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
11032
11471
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
11033
11472
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
11473
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
11034
11474
|
}
|
|
11035
11475
|
|
|
11036
11476
|
export type UserUncheckedUpdateWithoutBookmarkCategoriesInput = {
|
|
@@ -11097,6 +11537,7 @@ export type UserUncheckedUpdateWithoutBookmarkCategoriesInput = {
|
|
|
11097
11537
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
11098
11538
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
11099
11539
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
11540
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
11100
11541
|
}
|
|
11101
11542
|
|
|
11102
11543
|
export type UserCreateWithoutKnowledgeSharesInput = {
|
|
@@ -11163,6 +11604,7 @@ export type UserCreateWithoutKnowledgeSharesInput = {
|
|
|
11163
11604
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
11164
11605
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
11165
11606
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
11607
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
11166
11608
|
}
|
|
11167
11609
|
|
|
11168
11610
|
export type UserUncheckedCreateWithoutKnowledgeSharesInput = {
|
|
@@ -11229,6 +11671,7 @@ export type UserUncheckedCreateWithoutKnowledgeSharesInput = {
|
|
|
11229
11671
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
11230
11672
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
11231
11673
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
11674
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
11232
11675
|
}
|
|
11233
11676
|
|
|
11234
11677
|
export type UserCreateOrConnectWithoutKnowledgeSharesInput = {
|
|
@@ -11311,6 +11754,7 @@ export type UserUpdateWithoutKnowledgeSharesInput = {
|
|
|
11311
11754
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
11312
11755
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
11313
11756
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
11757
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
11314
11758
|
}
|
|
11315
11759
|
|
|
11316
11760
|
export type UserUncheckedUpdateWithoutKnowledgeSharesInput = {
|
|
@@ -11377,6 +11821,7 @@ export type UserUncheckedUpdateWithoutKnowledgeSharesInput = {
|
|
|
11377
11821
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
11378
11822
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
11379
11823
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
11824
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
11380
11825
|
}
|
|
11381
11826
|
|
|
11382
11827
|
export type UserCreateWithoutArticleFavoritesInput = {
|
|
@@ -11443,6 +11888,7 @@ export type UserCreateWithoutArticleFavoritesInput = {
|
|
|
11443
11888
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
11444
11889
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
11445
11890
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
11891
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
11446
11892
|
}
|
|
11447
11893
|
|
|
11448
11894
|
export type UserUncheckedCreateWithoutArticleFavoritesInput = {
|
|
@@ -11509,6 +11955,7 @@ export type UserUncheckedCreateWithoutArticleFavoritesInput = {
|
|
|
11509
11955
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
11510
11956
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
11511
11957
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
11958
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
11512
11959
|
}
|
|
11513
11960
|
|
|
11514
11961
|
export type UserCreateOrConnectWithoutArticleFavoritesInput = {
|
|
@@ -11591,6 +12038,7 @@ export type UserUpdateWithoutArticleFavoritesInput = {
|
|
|
11591
12038
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
11592
12039
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
11593
12040
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
12041
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
11594
12042
|
}
|
|
11595
12043
|
|
|
11596
12044
|
export type UserUncheckedUpdateWithoutArticleFavoritesInput = {
|
|
@@ -11657,6 +12105,7 @@ export type UserUncheckedUpdateWithoutArticleFavoritesInput = {
|
|
|
11657
12105
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
11658
12106
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
11659
12107
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
12108
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
11660
12109
|
}
|
|
11661
12110
|
|
|
11662
12111
|
export type UserCreateWithoutSubscriptionInput = {
|
|
@@ -11723,6 +12172,7 @@ export type UserCreateWithoutSubscriptionInput = {
|
|
|
11723
12172
|
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
11724
12173
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
11725
12174
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
12175
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
11726
12176
|
}
|
|
11727
12177
|
|
|
11728
12178
|
export type UserUncheckedCreateWithoutSubscriptionInput = {
|
|
@@ -11789,6 +12239,7 @@ export type UserUncheckedCreateWithoutSubscriptionInput = {
|
|
|
11789
12239
|
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
11790
12240
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
11791
12241
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
12242
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
11792
12243
|
}
|
|
11793
12244
|
|
|
11794
12245
|
export type UserCreateOrConnectWithoutSubscriptionInput = {
|
|
@@ -11871,6 +12322,7 @@ export type UserUpdateWithoutSubscriptionInput = {
|
|
|
11871
12322
|
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
11872
12323
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
11873
12324
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
12325
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
11874
12326
|
}
|
|
11875
12327
|
|
|
11876
12328
|
export type UserUncheckedUpdateWithoutSubscriptionInput = {
|
|
@@ -11937,6 +12389,7 @@ export type UserUncheckedUpdateWithoutSubscriptionInput = {
|
|
|
11937
12389
|
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
11938
12390
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
11939
12391
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
12392
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
11940
12393
|
}
|
|
11941
12394
|
|
|
11942
12395
|
export type UserCreateWithoutAiUsageLogsInput = {
|
|
@@ -12003,6 +12456,7 @@ export type UserCreateWithoutAiUsageLogsInput = {
|
|
|
12003
12456
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
12004
12457
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
12005
12458
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
12459
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
12006
12460
|
}
|
|
12007
12461
|
|
|
12008
12462
|
export type UserUncheckedCreateWithoutAiUsageLogsInput = {
|
|
@@ -12069,6 +12523,7 @@ export type UserUncheckedCreateWithoutAiUsageLogsInput = {
|
|
|
12069
12523
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
12070
12524
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
12071
12525
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
12526
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
12072
12527
|
}
|
|
12073
12528
|
|
|
12074
12529
|
export type UserCreateOrConnectWithoutAiUsageLogsInput = {
|
|
@@ -12151,6 +12606,7 @@ export type UserUpdateWithoutAiUsageLogsInput = {
|
|
|
12151
12606
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
12152
12607
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
12153
12608
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
12609
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
12154
12610
|
}
|
|
12155
12611
|
|
|
12156
12612
|
export type UserUncheckedUpdateWithoutAiUsageLogsInput = {
|
|
@@ -12217,6 +12673,7 @@ export type UserUncheckedUpdateWithoutAiUsageLogsInput = {
|
|
|
12217
12673
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
12218
12674
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
12219
12675
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
12676
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
12220
12677
|
}
|
|
12221
12678
|
|
|
12222
12679
|
export type UserCreateWithoutAgentsInput = {
|
|
@@ -12283,6 +12740,7 @@ export type UserCreateWithoutAgentsInput = {
|
|
|
12283
12740
|
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
12284
12741
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
12285
12742
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
12743
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
12286
12744
|
}
|
|
12287
12745
|
|
|
12288
12746
|
export type UserUncheckedCreateWithoutAgentsInput = {
|
|
@@ -12349,6 +12807,7 @@ export type UserUncheckedCreateWithoutAgentsInput = {
|
|
|
12349
12807
|
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
12350
12808
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
12351
12809
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
12810
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
12352
12811
|
}
|
|
12353
12812
|
|
|
12354
12813
|
export type UserCreateOrConnectWithoutAgentsInput = {
|
|
@@ -12431,6 +12890,7 @@ export type UserUpdateWithoutAgentsInput = {
|
|
|
12431
12890
|
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
12432
12891
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
12433
12892
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
12893
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
12434
12894
|
}
|
|
12435
12895
|
|
|
12436
12896
|
export type UserUncheckedUpdateWithoutAgentsInput = {
|
|
@@ -12497,6 +12957,7 @@ export type UserUncheckedUpdateWithoutAgentsInput = {
|
|
|
12497
12957
|
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
12498
12958
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
12499
12959
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
12960
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
12500
12961
|
}
|
|
12501
12962
|
|
|
12502
12963
|
export type UserCreateWithoutSkillsInput = {
|
|
@@ -12563,6 +13024,7 @@ export type UserCreateWithoutSkillsInput = {
|
|
|
12563
13024
|
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
12564
13025
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
12565
13026
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
13027
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
12566
13028
|
}
|
|
12567
13029
|
|
|
12568
13030
|
export type UserUncheckedCreateWithoutSkillsInput = {
|
|
@@ -12629,6 +13091,7 @@ export type UserUncheckedCreateWithoutSkillsInput = {
|
|
|
12629
13091
|
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
12630
13092
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
12631
13093
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
13094
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
12632
13095
|
}
|
|
12633
13096
|
|
|
12634
13097
|
export type UserCreateOrConnectWithoutSkillsInput = {
|
|
@@ -12711,6 +13174,7 @@ export type UserUpdateWithoutSkillsInput = {
|
|
|
12711
13174
|
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
12712
13175
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
12713
13176
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
13177
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
12714
13178
|
}
|
|
12715
13179
|
|
|
12716
13180
|
export type UserUncheckedUpdateWithoutSkillsInput = {
|
|
@@ -12777,6 +13241,7 @@ export type UserUncheckedUpdateWithoutSkillsInput = {
|
|
|
12777
13241
|
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
12778
13242
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
12779
13243
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
13244
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
12780
13245
|
}
|
|
12781
13246
|
|
|
12782
13247
|
export type UserCreateWithoutStoriesAssignedInput = {
|
|
@@ -12843,6 +13308,7 @@ export type UserCreateWithoutStoriesAssignedInput = {
|
|
|
12843
13308
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
12844
13309
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
12845
13310
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
13311
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
12846
13312
|
}
|
|
12847
13313
|
|
|
12848
13314
|
export type UserUncheckedCreateWithoutStoriesAssignedInput = {
|
|
@@ -12909,6 +13375,7 @@ export type UserUncheckedCreateWithoutStoriesAssignedInput = {
|
|
|
12909
13375
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
12910
13376
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
12911
13377
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
13378
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
12912
13379
|
}
|
|
12913
13380
|
|
|
12914
13381
|
export type UserCreateOrConnectWithoutStoriesAssignedInput = {
|
|
@@ -12980,6 +13447,7 @@ export type UserCreateWithoutStoriesCreatedInput = {
|
|
|
12980
13447
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
12981
13448
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
12982
13449
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
13450
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
12983
13451
|
}
|
|
12984
13452
|
|
|
12985
13453
|
export type UserUncheckedCreateWithoutStoriesCreatedInput = {
|
|
@@ -13046,6 +13514,7 @@ export type UserUncheckedCreateWithoutStoriesCreatedInput = {
|
|
|
13046
13514
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
13047
13515
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
13048
13516
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
13517
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
13049
13518
|
}
|
|
13050
13519
|
|
|
13051
13520
|
export type UserCreateOrConnectWithoutStoriesCreatedInput = {
|
|
@@ -13117,6 +13586,7 @@ export type UserCreateWithoutStoriesEditedInput = {
|
|
|
13117
13586
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
13118
13587
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
13119
13588
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
13589
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
13120
13590
|
}
|
|
13121
13591
|
|
|
13122
13592
|
export type UserUncheckedCreateWithoutStoriesEditedInput = {
|
|
@@ -13183,6 +13653,7 @@ export type UserUncheckedCreateWithoutStoriesEditedInput = {
|
|
|
13183
13653
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
13184
13654
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
13185
13655
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
13656
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
13186
13657
|
}
|
|
13187
13658
|
|
|
13188
13659
|
export type UserCreateOrConnectWithoutStoriesEditedInput = {
|
|
@@ -13265,6 +13736,7 @@ export type UserUpdateWithoutStoriesAssignedInput = {
|
|
|
13265
13736
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
13266
13737
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
13267
13738
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
13739
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
13268
13740
|
}
|
|
13269
13741
|
|
|
13270
13742
|
export type UserUncheckedUpdateWithoutStoriesAssignedInput = {
|
|
@@ -13331,6 +13803,7 @@ export type UserUncheckedUpdateWithoutStoriesAssignedInput = {
|
|
|
13331
13803
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
13332
13804
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
13333
13805
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
13806
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
13334
13807
|
}
|
|
13335
13808
|
|
|
13336
13809
|
export type UserUpsertWithoutStoriesCreatedInput = {
|
|
@@ -13408,6 +13881,7 @@ export type UserUpdateWithoutStoriesCreatedInput = {
|
|
|
13408
13881
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
13409
13882
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
13410
13883
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
13884
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
13411
13885
|
}
|
|
13412
13886
|
|
|
13413
13887
|
export type UserUncheckedUpdateWithoutStoriesCreatedInput = {
|
|
@@ -13474,6 +13948,7 @@ export type UserUncheckedUpdateWithoutStoriesCreatedInput = {
|
|
|
13474
13948
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
13475
13949
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
13476
13950
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
13951
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
13477
13952
|
}
|
|
13478
13953
|
|
|
13479
13954
|
export type UserUpsertWithoutStoriesEditedInput = {
|
|
@@ -13551,6 +14026,7 @@ export type UserUpdateWithoutStoriesEditedInput = {
|
|
|
13551
14026
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
13552
14027
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
13553
14028
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
14029
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
13554
14030
|
}
|
|
13555
14031
|
|
|
13556
14032
|
export type UserUncheckedUpdateWithoutStoriesEditedInput = {
|
|
@@ -13617,6 +14093,7 @@ export type UserUncheckedUpdateWithoutStoriesEditedInput = {
|
|
|
13617
14093
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
13618
14094
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
13619
14095
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
14096
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
13620
14097
|
}
|
|
13621
14098
|
|
|
13622
14099
|
export type UserCreateWithoutIterationsCreatedInput = {
|
|
@@ -13683,6 +14160,7 @@ export type UserCreateWithoutIterationsCreatedInput = {
|
|
|
13683
14160
|
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
13684
14161
|
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
13685
14162
|
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
14163
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
13686
14164
|
}
|
|
13687
14165
|
|
|
13688
14166
|
export type UserUncheckedCreateWithoutIterationsCreatedInput = {
|
|
@@ -13749,6 +14227,7 @@ export type UserUncheckedCreateWithoutIterationsCreatedInput = {
|
|
|
13749
14227
|
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
13750
14228
|
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
13751
14229
|
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
14230
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
13752
14231
|
}
|
|
13753
14232
|
|
|
13754
14233
|
export type UserCreateOrConnectWithoutIterationsCreatedInput = {
|
|
@@ -13831,6 +14310,7 @@ export type UserUpdateWithoutIterationsCreatedInput = {
|
|
|
13831
14310
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
13832
14311
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
13833
14312
|
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
14313
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
13834
14314
|
}
|
|
13835
14315
|
|
|
13836
14316
|
export type UserUncheckedUpdateWithoutIterationsCreatedInput = {
|
|
@@ -13897,6 +14377,7 @@ export type UserUncheckedUpdateWithoutIterationsCreatedInput = {
|
|
|
13897
14377
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
13898
14378
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
13899
14379
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
14380
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
13900
14381
|
}
|
|
13901
14382
|
|
|
13902
14383
|
|
|
@@ -13947,6 +14428,7 @@ export type UserCountOutputType = {
|
|
|
13947
14428
|
aiUsageLogs: number
|
|
13948
14429
|
agents: number
|
|
13949
14430
|
skills: number
|
|
14431
|
+
createdQuickDocs: number
|
|
13950
14432
|
}
|
|
13951
14433
|
|
|
13952
14434
|
export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
@@ -13992,6 +14474,7 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
13992
14474
|
aiUsageLogs?: boolean | UserCountOutputTypeCountAiUsageLogsArgs
|
|
13993
14475
|
agents?: boolean | UserCountOutputTypeCountAgentsArgs
|
|
13994
14476
|
skills?: boolean | UserCountOutputTypeCountSkillsArgs
|
|
14477
|
+
createdQuickDocs?: boolean | UserCountOutputTypeCountCreatedQuickDocsArgs
|
|
13995
14478
|
}
|
|
13996
14479
|
|
|
13997
14480
|
/**
|
|
@@ -14298,6 +14781,13 @@ export type UserCountOutputTypeCountSkillsArgs<ExtArgs extends runtime.Types.Ext
|
|
|
14298
14781
|
where?: Prisma.UserSkillWhereInput
|
|
14299
14782
|
}
|
|
14300
14783
|
|
|
14784
|
+
/**
|
|
14785
|
+
* UserCountOutputType without action
|
|
14786
|
+
*/
|
|
14787
|
+
export type UserCountOutputTypeCountCreatedQuickDocsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
14788
|
+
where?: Prisma.WorkspaceQuickDocWhereInput
|
|
14789
|
+
}
|
|
14790
|
+
|
|
14301
14791
|
|
|
14302
14792
|
export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
14303
14793
|
id?: boolean
|
|
@@ -14364,6 +14854,7 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
14364
14854
|
agents?: boolean | Prisma.User$agentsArgs<ExtArgs>
|
|
14365
14855
|
skills?: boolean | Prisma.User$skillsArgs<ExtArgs>
|
|
14366
14856
|
subscription?: boolean | Prisma.User$subscriptionArgs<ExtArgs>
|
|
14857
|
+
createdQuickDocs?: boolean | Prisma.User$createdQuickDocsArgs<ExtArgs>
|
|
14367
14858
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
14368
14859
|
}, ExtArgs["result"]["user"]>
|
|
14369
14860
|
|
|
@@ -14482,6 +14973,7 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
14482
14973
|
agents?: boolean | Prisma.User$agentsArgs<ExtArgs>
|
|
14483
14974
|
skills?: boolean | Prisma.User$skillsArgs<ExtArgs>
|
|
14484
14975
|
subscription?: boolean | Prisma.User$subscriptionArgs<ExtArgs>
|
|
14976
|
+
createdQuickDocs?: boolean | Prisma.User$createdQuickDocsArgs<ExtArgs>
|
|
14485
14977
|
_count?: boolean | Prisma.UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
14486
14978
|
}
|
|
14487
14979
|
export type UserIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
|
|
@@ -14534,6 +15026,7 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
14534
15026
|
agents: Prisma.$UserAgentPayload<ExtArgs>[]
|
|
14535
15027
|
skills: Prisma.$UserSkillPayload<ExtArgs>[]
|
|
14536
15028
|
subscription: Prisma.$SubscriptionPayload<ExtArgs> | null
|
|
15029
|
+
createdQuickDocs: Prisma.$WorkspaceQuickDocPayload<ExtArgs>[]
|
|
14537
15030
|
}
|
|
14538
15031
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
14539
15032
|
id: string
|
|
@@ -15000,6 +15493,7 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
15000
15493
|
agents<T extends Prisma.User$agentsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$agentsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UserAgentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
15001
15494
|
skills<T extends Prisma.User$skillsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$skillsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UserSkillPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
15002
15495
|
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>
|
|
15496
|
+
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>
|
|
15003
15497
|
/**
|
|
15004
15498
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
15005
15499
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -16485,6 +16979,30 @@ export type User$subscriptionArgs<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
16485
16979
|
where?: Prisma.SubscriptionWhereInput
|
|
16486
16980
|
}
|
|
16487
16981
|
|
|
16982
|
+
/**
|
|
16983
|
+
* User.createdQuickDocs
|
|
16984
|
+
*/
|
|
16985
|
+
export type User$createdQuickDocsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
16986
|
+
/**
|
|
16987
|
+
* Select specific fields to fetch from the WorkspaceQuickDoc
|
|
16988
|
+
*/
|
|
16989
|
+
select?: Prisma.WorkspaceQuickDocSelect<ExtArgs> | null
|
|
16990
|
+
/**
|
|
16991
|
+
* Omit specific fields from the WorkspaceQuickDoc
|
|
16992
|
+
*/
|
|
16993
|
+
omit?: Prisma.WorkspaceQuickDocOmit<ExtArgs> | null
|
|
16994
|
+
/**
|
|
16995
|
+
* Choose, which related nodes to fetch as well
|
|
16996
|
+
*/
|
|
16997
|
+
include?: Prisma.WorkspaceQuickDocInclude<ExtArgs> | null
|
|
16998
|
+
where?: Prisma.WorkspaceQuickDocWhereInput
|
|
16999
|
+
orderBy?: Prisma.WorkspaceQuickDocOrderByWithRelationInput | Prisma.WorkspaceQuickDocOrderByWithRelationInput[]
|
|
17000
|
+
cursor?: Prisma.WorkspaceQuickDocWhereUniqueInput
|
|
17001
|
+
take?: number
|
|
17002
|
+
skip?: number
|
|
17003
|
+
distinct?: Prisma.WorkspaceQuickDocScalarFieldEnum | Prisma.WorkspaceQuickDocScalarFieldEnum[]
|
|
17004
|
+
}
|
|
17005
|
+
|
|
16488
17006
|
/**
|
|
16489
17007
|
* User without action
|
|
16490
17008
|
*/
|