@allbluecn/database 0.6.0 → 0.8.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 +25 -0
- package/generated/client.ts +25 -0
- package/generated/internal/class.ts +54 -4
- package/generated/internal/prismaNamespace.ts +453 -2
- package/generated/internal/prismaNamespaceBrowser.ts +77 -1
- package/generated/models/EmailLog.ts +1345 -0
- package/generated/models/EmailPreference.ts +1257 -0
- package/generated/models/EmailSubscriber.ts +1233 -0
- package/generated/models/EmailVerificationToken.ts +1380 -0
- package/generated/models/InvitationCode.ts +65 -1
- package/generated/models/NotificationPreference.ts +27 -1
- package/generated/models/OAuthProviderConfig.ts +1227 -0
- package/generated/models/User.ts +1435 -157
- package/generated/models.ts +5 -0
- package/generated-sqlite/browser.ts +30 -0
- package/generated-sqlite/client.ts +30 -0
- package/generated-sqlite/internal/class.ts +64 -4
- package/generated-sqlite/internal/prismaNamespace.ts +541 -3
- package/generated-sqlite/internal/prismaNamespaceBrowser.ts +90 -2
- package/generated-sqlite/models/EmailLog.ts +1343 -0
- package/generated-sqlite/models/EmailPreference.ts +1255 -0
- package/generated-sqlite/models/EmailSubscriber.ts +1231 -0
- package/generated-sqlite/models/EmailVerificationToken.ts +1377 -0
- package/generated-sqlite/models/InvitationCode.ts +65 -1
- package/generated-sqlite/models/NotificationPreference.ts +1313 -0
- package/generated-sqlite/models/OAuthProviderConfig.ts +1225 -0
- package/generated-sqlite/models/User.ts +1867 -293
- package/generated-sqlite/models.ts +6 -0
- package/migrations/20260911120000_add_pgvector_tables/migration.sql +28 -0
- package/migrations/20260911171433_email_auth_invitation/migration.sql +80 -0
- package/migrations/20260912032616_email_p4_p8/migration.sql +42 -0
- package/package.json +2 -2
- package/schema.prisma +93 -12
- package/schema.sqlite.prisma +93 -4
package/generated/models/User.ts
CHANGED
|
@@ -322,6 +322,8 @@ export type UserWhereInput = {
|
|
|
322
322
|
invitationUses?: Prisma.InvitationUseListRelationFilter
|
|
323
323
|
loginLogs?: Prisma.LoginLogListRelationFilter
|
|
324
324
|
passwordResetTokens?: Prisma.PasswordResetTokenListRelationFilter
|
|
325
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenListRelationFilter
|
|
326
|
+
emailPreference?: Prisma.XOR<Prisma.EmailPreferenceNullableScalarRelationFilter, Prisma.EmailPreferenceWhereInput> | null
|
|
325
327
|
prds?: Prisma.PRDListRelationFilter
|
|
326
328
|
tags?: Prisma.TagListRelationFilter
|
|
327
329
|
knowledgeBases?: Prisma.KnowledgeBaseListRelationFilter
|
|
@@ -406,6 +408,8 @@ export type UserOrderByWithRelationInput = {
|
|
|
406
408
|
invitationUses?: Prisma.InvitationUseOrderByRelationAggregateInput
|
|
407
409
|
loginLogs?: Prisma.LoginLogOrderByRelationAggregateInput
|
|
408
410
|
passwordResetTokens?: Prisma.PasswordResetTokenOrderByRelationAggregateInput
|
|
411
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenOrderByRelationAggregateInput
|
|
412
|
+
emailPreference?: Prisma.EmailPreferenceOrderByWithRelationInput
|
|
409
413
|
prds?: Prisma.PRDOrderByRelationAggregateInput
|
|
410
414
|
tags?: Prisma.TagOrderByRelationAggregateInput
|
|
411
415
|
knowledgeBases?: Prisma.KnowledgeBaseOrderByRelationAggregateInput
|
|
@@ -493,6 +497,8 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
493
497
|
invitationUses?: Prisma.InvitationUseListRelationFilter
|
|
494
498
|
loginLogs?: Prisma.LoginLogListRelationFilter
|
|
495
499
|
passwordResetTokens?: Prisma.PasswordResetTokenListRelationFilter
|
|
500
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenListRelationFilter
|
|
501
|
+
emailPreference?: Prisma.XOR<Prisma.EmailPreferenceNullableScalarRelationFilter, Prisma.EmailPreferenceWhereInput> | null
|
|
496
502
|
prds?: Prisma.PRDListRelationFilter
|
|
497
503
|
tags?: Prisma.TagListRelationFilter
|
|
498
504
|
knowledgeBases?: Prisma.KnowledgeBaseListRelationFilter
|
|
@@ -635,6 +641,8 @@ export type UserCreateInput = {
|
|
|
635
641
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
636
642
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
637
643
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
644
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
645
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
638
646
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
639
647
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
640
648
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -719,6 +727,8 @@ export type UserUncheckedCreateInput = {
|
|
|
719
727
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
720
728
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
721
729
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
730
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
731
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
722
732
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
723
733
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
724
734
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -803,6 +813,8 @@ export type UserUpdateInput = {
|
|
|
803
813
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
804
814
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
805
815
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
816
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
817
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
806
818
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
807
819
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
808
820
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -887,6 +899,8 @@ export type UserUncheckedUpdateInput = {
|
|
|
887
899
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
888
900
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
889
901
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
902
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
903
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
890
904
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
891
905
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
892
906
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -1329,6 +1343,34 @@ export type UserUpdateOneRequiredWithoutPasswordResetTokensNestedInput = {
|
|
|
1329
1343
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutPasswordResetTokensInput, Prisma.UserUpdateWithoutPasswordResetTokensInput>, Prisma.UserUncheckedUpdateWithoutPasswordResetTokensInput>
|
|
1330
1344
|
}
|
|
1331
1345
|
|
|
1346
|
+
export type UserCreateNestedOneWithoutEmailVerificationTokensInput = {
|
|
1347
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutEmailVerificationTokensInput, Prisma.UserUncheckedCreateWithoutEmailVerificationTokensInput>
|
|
1348
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutEmailVerificationTokensInput
|
|
1349
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
export type UserUpdateOneRequiredWithoutEmailVerificationTokensNestedInput = {
|
|
1353
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutEmailVerificationTokensInput, Prisma.UserUncheckedCreateWithoutEmailVerificationTokensInput>
|
|
1354
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutEmailVerificationTokensInput
|
|
1355
|
+
upsert?: Prisma.UserUpsertWithoutEmailVerificationTokensInput
|
|
1356
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1357
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutEmailVerificationTokensInput, Prisma.UserUpdateWithoutEmailVerificationTokensInput>, Prisma.UserUncheckedUpdateWithoutEmailVerificationTokensInput>
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
export type UserCreateNestedOneWithoutEmailPreferenceInput = {
|
|
1361
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutEmailPreferenceInput, Prisma.UserUncheckedCreateWithoutEmailPreferenceInput>
|
|
1362
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutEmailPreferenceInput
|
|
1363
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1366
|
+
export type UserUpdateOneRequiredWithoutEmailPreferenceNestedInput = {
|
|
1367
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutEmailPreferenceInput, Prisma.UserUncheckedCreateWithoutEmailPreferenceInput>
|
|
1368
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutEmailPreferenceInput
|
|
1369
|
+
upsert?: Prisma.UserUpsertWithoutEmailPreferenceInput
|
|
1370
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1371
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutEmailPreferenceInput, Prisma.UserUpdateWithoutEmailPreferenceInput>, Prisma.UserUncheckedUpdateWithoutEmailPreferenceInput>
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1332
1374
|
export type UserCreateNestedOneWithoutKnowledgeBasesInput = {
|
|
1333
1375
|
create?: Prisma.XOR<Prisma.UserCreateWithoutKnowledgeBasesInput, Prisma.UserUncheckedCreateWithoutKnowledgeBasesInput>
|
|
1334
1376
|
connectOrCreate?: Prisma.UserCreateOrConnectWithoutKnowledgeBasesInput
|
|
@@ -1970,6 +2012,8 @@ export type UserCreateWithoutAccountsInput = {
|
|
|
1970
2012
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
1971
2013
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
1972
2014
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
2015
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
2016
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
1973
2017
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
1974
2018
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
1975
2019
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -2053,6 +2097,8 @@ export type UserUncheckedCreateWithoutAccountsInput = {
|
|
|
2053
2097
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
2054
2098
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
2055
2099
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
2100
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
2101
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
2056
2102
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
2057
2103
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
2058
2104
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -2152,6 +2198,8 @@ export type UserUpdateWithoutAccountsInput = {
|
|
|
2152
2198
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
2153
2199
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
2154
2200
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
2201
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
2202
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
2155
2203
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
2156
2204
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
2157
2205
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -2235,6 +2283,8 @@ export type UserUncheckedUpdateWithoutAccountsInput = {
|
|
|
2235
2283
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
2236
2284
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
2237
2285
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
2286
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
2287
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
2238
2288
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
2239
2289
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
2240
2290
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -2319,6 +2369,8 @@ export type UserCreateWithoutOwnedProjectsInput = {
|
|
|
2319
2369
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
2320
2370
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
2321
2371
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
2372
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
2373
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
2322
2374
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
2323
2375
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
2324
2376
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -2402,6 +2454,8 @@ export type UserUncheckedCreateWithoutOwnedProjectsInput = {
|
|
|
2402
2454
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
2403
2455
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
2404
2456
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
2457
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
2458
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
2405
2459
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
2406
2460
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
2407
2461
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -2501,6 +2555,8 @@ export type UserUpdateWithoutOwnedProjectsInput = {
|
|
|
2501
2555
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
2502
2556
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
2503
2557
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
2558
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
2559
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
2504
2560
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
2505
2561
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
2506
2562
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -2584,6 +2640,8 @@ export type UserUncheckedUpdateWithoutOwnedProjectsInput = {
|
|
|
2584
2640
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
2585
2641
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
2586
2642
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
2643
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
2644
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
2587
2645
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
2588
2646
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
2589
2647
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -2667,6 +2725,8 @@ export type UserCreateWithoutProjectMembershipsInput = {
|
|
|
2667
2725
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
2668
2726
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
2669
2727
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
2728
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
2729
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
2670
2730
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
2671
2731
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
2672
2732
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -2750,6 +2810,8 @@ export type UserUncheckedCreateWithoutProjectMembershipsInput = {
|
|
|
2750
2810
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
2751
2811
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
2752
2812
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
2813
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
2814
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
2753
2815
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
2754
2816
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
2755
2817
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -2849,6 +2911,8 @@ export type UserUpdateWithoutProjectMembershipsInput = {
|
|
|
2849
2911
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
2850
2912
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
2851
2913
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
2914
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
2915
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
2852
2916
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
2853
2917
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
2854
2918
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -2932,6 +2996,8 @@ export type UserUncheckedUpdateWithoutProjectMembershipsInput = {
|
|
|
2932
2996
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
2933
2997
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
2934
2998
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
2999
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
3000
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
2935
3001
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
2936
3002
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
2937
3003
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -3015,6 +3081,8 @@ export type UserCreateWithoutOwnedWorkspacesInput = {
|
|
|
3015
3081
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
3016
3082
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
3017
3083
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
3084
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
3085
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
3018
3086
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
3019
3087
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
3020
3088
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -3098,6 +3166,8 @@ export type UserUncheckedCreateWithoutOwnedWorkspacesInput = {
|
|
|
3098
3166
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
3099
3167
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
3100
3168
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
3169
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
3170
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
3101
3171
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
3102
3172
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
3103
3173
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -3197,6 +3267,8 @@ export type UserUpdateWithoutOwnedWorkspacesInput = {
|
|
|
3197
3267
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
3198
3268
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
3199
3269
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
3270
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
3271
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
3200
3272
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
3201
3273
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
3202
3274
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -3280,6 +3352,8 @@ export type UserUncheckedUpdateWithoutOwnedWorkspacesInput = {
|
|
|
3280
3352
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
3281
3353
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
3282
3354
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
3355
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
3356
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
3283
3357
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
3284
3358
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
3285
3359
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -3363,6 +3437,8 @@ export type UserCreateWithoutWorkspaceMembersInput = {
|
|
|
3363
3437
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
3364
3438
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
3365
3439
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
3440
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
3441
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
3366
3442
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
3367
3443
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
3368
3444
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -3446,6 +3522,8 @@ export type UserUncheckedCreateWithoutWorkspaceMembersInput = {
|
|
|
3446
3522
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
3447
3523
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
3448
3524
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
3525
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
3526
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
3449
3527
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
3450
3528
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
3451
3529
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -3545,6 +3623,8 @@ export type UserUpdateWithoutWorkspaceMembersInput = {
|
|
|
3545
3623
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
3546
3624
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
3547
3625
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
3626
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
3627
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
3548
3628
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
3549
3629
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
3550
3630
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -3628,6 +3708,8 @@ export type UserUncheckedUpdateWithoutWorkspaceMembersInput = {
|
|
|
3628
3708
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
3629
3709
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
3630
3710
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
3711
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
3712
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
3631
3713
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
3632
3714
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
3633
3715
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -3711,6 +3793,8 @@ export type UserCreateWithoutWorkspaceMembershipsInput = {
|
|
|
3711
3793
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
3712
3794
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
3713
3795
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
3796
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
3797
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
3714
3798
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
3715
3799
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
3716
3800
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -3794,6 +3878,8 @@ export type UserUncheckedCreateWithoutWorkspaceMembershipsInput = {
|
|
|
3794
3878
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
3795
3879
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
3796
3880
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
3881
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
3882
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
3797
3883
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
3798
3884
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
3799
3885
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -3882,6 +3968,8 @@ export type UserCreateWithoutTeamJoinedInput = {
|
|
|
3882
3968
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
3883
3969
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
3884
3970
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
3971
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
3972
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
3885
3973
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
3886
3974
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
3887
3975
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -3965,6 +4053,8 @@ export type UserUncheckedCreateWithoutTeamJoinedInput = {
|
|
|
3965
4053
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
3966
4054
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
3967
4055
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
4056
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
4057
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
3968
4058
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
3969
4059
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
3970
4060
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -4064,6 +4154,8 @@ export type UserUpdateWithoutWorkspaceMembershipsInput = {
|
|
|
4064
4154
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
4065
4155
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
4066
4156
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
4157
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
4158
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
4067
4159
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
4068
4160
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
4069
4161
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -4147,6 +4239,8 @@ export type UserUncheckedUpdateWithoutWorkspaceMembershipsInput = {
|
|
|
4147
4239
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
4148
4240
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
4149
4241
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
4242
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
4243
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
4150
4244
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
4151
4245
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
4152
4246
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -4241,6 +4335,8 @@ export type UserUpdateWithoutTeamJoinedInput = {
|
|
|
4241
4335
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
4242
4336
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
4243
4337
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
4338
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
4339
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
4244
4340
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
4245
4341
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
4246
4342
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -4324,6 +4420,8 @@ export type UserUncheckedUpdateWithoutTeamJoinedInput = {
|
|
|
4324
4420
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
4325
4421
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
4326
4422
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
4423
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
4424
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
4327
4425
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
4328
4426
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
4329
4427
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -4407,6 +4505,8 @@ export type UserCreateWithoutSentInvitationsInput = {
|
|
|
4407
4505
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
4408
4506
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
4409
4507
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
4508
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
4509
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
4410
4510
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
4411
4511
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
4412
4512
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -4490,6 +4590,8 @@ export type UserUncheckedCreateWithoutSentInvitationsInput = {
|
|
|
4490
4590
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
4491
4591
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
4492
4592
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
4593
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
4594
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
4493
4595
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
4494
4596
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
4495
4597
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -4589,6 +4691,8 @@ export type UserUpdateWithoutSentInvitationsInput = {
|
|
|
4589
4691
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
4590
4692
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
4591
4693
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
4694
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
4695
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
4592
4696
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
4593
4697
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
4594
4698
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -4672,6 +4776,8 @@ export type UserUncheckedUpdateWithoutSentInvitationsInput = {
|
|
|
4672
4776
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
4673
4777
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
4674
4778
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
4779
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
4780
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
4675
4781
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
4676
4782
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
4677
4783
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -4755,6 +4861,8 @@ export type UserCreateWithoutOwnedJoinRequestsInput = {
|
|
|
4755
4861
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
4756
4862
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
4757
4863
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
4864
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
4865
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
4758
4866
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
4759
4867
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
4760
4868
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -4838,6 +4946,8 @@ export type UserUncheckedCreateWithoutOwnedJoinRequestsInput = {
|
|
|
4838
4946
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
4839
4947
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
4840
4948
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
4949
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
4950
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
4841
4951
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
4842
4952
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
4843
4953
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -4926,6 +5036,8 @@ export type UserCreateWithoutApplicantJoinRequestsInput = {
|
|
|
4926
5036
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
4927
5037
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
4928
5038
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
5039
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
5040
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
4929
5041
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
4930
5042
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
4931
5043
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -5009,6 +5121,8 @@ export type UserUncheckedCreateWithoutApplicantJoinRequestsInput = {
|
|
|
5009
5121
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
5010
5122
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
5011
5123
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
5124
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
5125
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
5012
5126
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
5013
5127
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
5014
5128
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -5108,6 +5222,8 @@ export type UserUpdateWithoutOwnedJoinRequestsInput = {
|
|
|
5108
5222
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
5109
5223
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
5110
5224
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
5225
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
5226
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
5111
5227
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
5112
5228
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
5113
5229
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -5163,101 +5279,815 @@ export type UserUpdateWithoutOwnedJoinRequestsInput = {
|
|
|
5163
5279
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5164
5280
|
}
|
|
5165
5281
|
|
|
5166
|
-
export type UserUncheckedUpdateWithoutOwnedJoinRequestsInput = {
|
|
5167
|
-
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5168
|
-
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5169
|
-
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5170
|
-
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5171
|
-
emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5172
|
-
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5173
|
-
role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
|
5174
|
-
status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
5175
|
-
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5176
|
-
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5177
|
-
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5178
|
-
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5179
|
-
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5180
|
-
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5181
|
-
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5182
|
-
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5183
|
-
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5184
|
-
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5185
|
-
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5186
|
-
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5187
|
-
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5188
|
-
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5189
|
-
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5190
|
-
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
5191
|
-
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
5192
|
-
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5193
|
-
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
5194
|
-
|
|
5195
|
-
|
|
5196
|
-
|
|
5197
|
-
|
|
5198
|
-
|
|
5199
|
-
|
|
5200
|
-
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5282
|
+
export type UserUncheckedUpdateWithoutOwnedJoinRequestsInput = {
|
|
5283
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5284
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5285
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5286
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5287
|
+
emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5288
|
+
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5289
|
+
role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
|
5290
|
+
status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
5291
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5292
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5293
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5294
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5295
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5296
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5297
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5298
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5299
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5300
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5301
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5302
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5303
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5304
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5305
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5306
|
+
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
5307
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
5308
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5309
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
5310
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
5311
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
5312
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
5313
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
5314
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
5315
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5316
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
5317
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
5318
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
5319
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
5320
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
5321
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
5322
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
5323
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
5324
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
5325
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
5326
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
5327
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
5328
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5329
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5330
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
5331
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
5332
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
5333
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5334
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5335
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5336
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5337
|
+
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5338
|
+
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5339
|
+
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5340
|
+
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
5341
|
+
commentReactions?: Prisma.CommentReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
5342
|
+
storyFilterViews?: Prisma.StoryFilterViewUncheckedUpdateManyWithoutUserNestedInput
|
|
5343
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
5344
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
5345
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5346
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5347
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5348
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5349
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5350
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5351
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
5352
|
+
workspaceMembers?: Prisma.WorkspaceMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5353
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5354
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
5355
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5356
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
5357
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
5358
|
+
notifications?: Prisma.NotificationUncheckedUpdateManyWithoutUserNestedInput
|
|
5359
|
+
notificationPreference?: Prisma.NotificationPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
5360
|
+
issuedLicenses?: Prisma.LicenseKeyUncheckedUpdateManyWithoutIssuedByNestedInput
|
|
5361
|
+
ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
|
|
5362
|
+
roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
|
|
5363
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
5364
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5365
|
+
}
|
|
5366
|
+
|
|
5367
|
+
export type UserUpsertWithoutApplicantJoinRequestsInput = {
|
|
5368
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutApplicantJoinRequestsInput, Prisma.UserUncheckedUpdateWithoutApplicantJoinRequestsInput>
|
|
5369
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutApplicantJoinRequestsInput, Prisma.UserUncheckedCreateWithoutApplicantJoinRequestsInput>
|
|
5370
|
+
where?: Prisma.UserWhereInput
|
|
5371
|
+
}
|
|
5372
|
+
|
|
5373
|
+
export type UserUpdateToOneWithWhereWithoutApplicantJoinRequestsInput = {
|
|
5374
|
+
where?: Prisma.UserWhereInput
|
|
5375
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutApplicantJoinRequestsInput, Prisma.UserUncheckedUpdateWithoutApplicantJoinRequestsInput>
|
|
5376
|
+
}
|
|
5377
|
+
|
|
5378
|
+
export type UserUpdateWithoutApplicantJoinRequestsInput = {
|
|
5379
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5380
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5381
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5382
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5383
|
+
emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5384
|
+
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5385
|
+
role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
|
5386
|
+
status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
5387
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5388
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5389
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5390
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5391
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5392
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5393
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5394
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5395
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5396
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5397
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5398
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5399
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5400
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5401
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5402
|
+
accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
|
|
5403
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
5404
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
5405
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
5406
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
5407
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
5408
|
+
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
5409
|
+
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
5410
|
+
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
5411
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
5412
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
|
|
5413
|
+
legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
|
|
5414
|
+
industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
|
|
5415
|
+
dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
|
|
5416
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
|
|
5417
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
|
|
5418
|
+
articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
|
|
5419
|
+
anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
|
|
5420
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
|
|
5421
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
|
|
5422
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
|
|
5423
|
+
prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
|
|
5424
|
+
reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
|
|
5425
|
+
comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
|
|
5426
|
+
commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
|
|
5427
|
+
reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
|
|
5428
|
+
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
5429
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5430
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5431
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5432
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5433
|
+
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
5434
|
+
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
5435
|
+
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
5436
|
+
storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
|
|
5437
|
+
commentReactions?: Prisma.CommentReactionUpdateManyWithoutUserNestedInput
|
|
5438
|
+
storyFilterViews?: Prisma.StoryFilterViewUpdateManyWithoutUserNestedInput
|
|
5439
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
5440
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
5441
|
+
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
5442
|
+
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
5443
|
+
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
5444
|
+
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
5445
|
+
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
5446
|
+
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
5447
|
+
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
5448
|
+
workspaceMembers?: Prisma.WorkspaceMemberUpdateManyWithoutUserNestedInput
|
|
5449
|
+
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
5450
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
5451
|
+
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
5452
|
+
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
5453
|
+
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
5454
|
+
notifications?: Prisma.NotificationUpdateManyWithoutUserNestedInput
|
|
5455
|
+
notificationPreference?: Prisma.NotificationPreferenceUpdateOneWithoutUserNestedInput
|
|
5456
|
+
issuedLicenses?: Prisma.LicenseKeyUpdateManyWithoutIssuedByNestedInput
|
|
5457
|
+
ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
|
|
5458
|
+
roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
|
|
5459
|
+
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
5460
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5461
|
+
}
|
|
5462
|
+
|
|
5463
|
+
export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
5464
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5465
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5466
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5467
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5468
|
+
emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5469
|
+
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5470
|
+
role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
|
5471
|
+
status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
5472
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5473
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5474
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5475
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5476
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5477
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5478
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5479
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5480
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5481
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5482
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5483
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5484
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5485
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5486
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5487
|
+
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
5488
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
5489
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5490
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
5491
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
5492
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
5493
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
5494
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
5495
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
5496
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5497
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
5498
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
5499
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
5500
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
5501
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
5502
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
5503
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
5504
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
5505
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
5506
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
5507
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
5508
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
5509
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5510
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5511
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
5512
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
5513
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
5514
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5515
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5516
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5517
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5518
|
+
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5519
|
+
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5520
|
+
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5521
|
+
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
5522
|
+
commentReactions?: Prisma.CommentReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
5523
|
+
storyFilterViews?: Prisma.StoryFilterViewUncheckedUpdateManyWithoutUserNestedInput
|
|
5524
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
5525
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
5526
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5527
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5528
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5529
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5530
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5531
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5532
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
5533
|
+
workspaceMembers?: Prisma.WorkspaceMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5534
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5535
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5536
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5537
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
5538
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
5539
|
+
notifications?: Prisma.NotificationUncheckedUpdateManyWithoutUserNestedInput
|
|
5540
|
+
notificationPreference?: Prisma.NotificationPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
5541
|
+
issuedLicenses?: Prisma.LicenseKeyUncheckedUpdateManyWithoutIssuedByNestedInput
|
|
5542
|
+
ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
|
|
5543
|
+
roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
|
|
5544
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
5545
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5546
|
+
}
|
|
5547
|
+
|
|
5548
|
+
export type UserCreateWithoutProjectActivitiesInput = {
|
|
5549
|
+
id?: string
|
|
5550
|
+
email: string
|
|
5551
|
+
username: string
|
|
5552
|
+
password: string
|
|
5553
|
+
emailVerified?: Date | string | null
|
|
5554
|
+
image?: string | null
|
|
5555
|
+
role?: $Enums.Role
|
|
5556
|
+
status?: $Enums.UserStatus
|
|
5557
|
+
createdAt?: Date | string
|
|
5558
|
+
updatedAt?: Date | string
|
|
5559
|
+
lastLoginAt?: Date | string | null
|
|
5560
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5561
|
+
bgShape?: string | null
|
|
5562
|
+
bgColor?: string | null
|
|
5563
|
+
aiProvider?: string | null
|
|
5564
|
+
aiApiKey?: string | null
|
|
5565
|
+
aiModel?: string | null
|
|
5566
|
+
locale?: string | null
|
|
5567
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5568
|
+
sketchApiToken?: string | null
|
|
5569
|
+
timezone?: string | null
|
|
5570
|
+
preferredCurrency?: string
|
|
5571
|
+
defaultWorkspaceId?: string | null
|
|
5572
|
+
accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
|
|
5573
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
5574
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
5575
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
5576
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
5577
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
5578
|
+
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
5579
|
+
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
5580
|
+
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
5581
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
5582
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
|
|
5583
|
+
legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
|
|
5584
|
+
industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
|
|
5585
|
+
dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
|
|
5586
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
|
|
5587
|
+
bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
|
|
5588
|
+
articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
|
|
5589
|
+
anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
|
|
5590
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
|
|
5591
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
|
|
5592
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
|
|
5593
|
+
prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
|
|
5594
|
+
reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
|
|
5595
|
+
comments?: Prisma.CommentCreateNestedManyWithoutUserInput
|
|
5596
|
+
commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
|
|
5597
|
+
reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
|
|
5598
|
+
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
5599
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5600
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5601
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5602
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5603
|
+
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
5604
|
+
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
5605
|
+
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
5606
|
+
storyReactions?: Prisma.StoryReactionCreateNestedManyWithoutUserInput
|
|
5607
|
+
commentReactions?: Prisma.CommentReactionCreateNestedManyWithoutUserInput
|
|
5608
|
+
storyFilterViews?: Prisma.StoryFilterViewCreateNestedManyWithoutUserInput
|
|
5609
|
+
chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
|
|
5610
|
+
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
5611
|
+
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
5612
|
+
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
5613
|
+
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
5614
|
+
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
5615
|
+
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
5616
|
+
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
5617
|
+
workspaceMembers?: Prisma.WorkspaceMemberCreateNestedManyWithoutUserInput
|
|
5618
|
+
sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
|
|
5619
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
|
|
5620
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
|
|
5621
|
+
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
5622
|
+
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
5623
|
+
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
5624
|
+
notifications?: Prisma.NotificationCreateNestedManyWithoutUserInput
|
|
5625
|
+
notificationPreference?: Prisma.NotificationPreferenceCreateNestedOneWithoutUserInput
|
|
5626
|
+
issuedLicenses?: Prisma.LicenseKeyCreateNestedManyWithoutIssuedByInput
|
|
5627
|
+
ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
|
|
5628
|
+
roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
|
|
5629
|
+
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
5630
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
5631
|
+
}
|
|
5632
|
+
|
|
5633
|
+
export type UserUncheckedCreateWithoutProjectActivitiesInput = {
|
|
5634
|
+
id?: string
|
|
5635
|
+
email: string
|
|
5636
|
+
username: string
|
|
5637
|
+
password: string
|
|
5638
|
+
emailVerified?: Date | string | null
|
|
5639
|
+
image?: string | null
|
|
5640
|
+
role?: $Enums.Role
|
|
5641
|
+
status?: $Enums.UserStatus
|
|
5642
|
+
createdAt?: Date | string
|
|
5643
|
+
updatedAt?: Date | string
|
|
5644
|
+
lastLoginAt?: Date | string | null
|
|
5645
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5646
|
+
bgShape?: string | null
|
|
5647
|
+
bgColor?: string | null
|
|
5648
|
+
aiProvider?: string | null
|
|
5649
|
+
aiApiKey?: string | null
|
|
5650
|
+
aiModel?: string | null
|
|
5651
|
+
locale?: string | null
|
|
5652
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5653
|
+
sketchApiToken?: string | null
|
|
5654
|
+
timezone?: string | null
|
|
5655
|
+
preferredCurrency?: string
|
|
5656
|
+
defaultWorkspaceId?: string | null
|
|
5657
|
+
accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
|
|
5658
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
5659
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
5660
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
5661
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
5662
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
5663
|
+
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
5664
|
+
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
5665
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
5666
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
5667
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
|
|
5668
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
|
|
5669
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
|
|
5670
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
|
|
5671
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
|
|
5672
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
|
|
5673
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
|
|
5674
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
|
|
5675
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
|
|
5676
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
|
|
5677
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
|
|
5678
|
+
prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
|
|
5679
|
+
reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
|
|
5680
|
+
comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
|
|
5681
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
|
|
5682
|
+
reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
|
|
5683
|
+
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
5684
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5685
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5686
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5687
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5688
|
+
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5689
|
+
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5690
|
+
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
5691
|
+
storyReactions?: Prisma.StoryReactionUncheckedCreateNestedManyWithoutUserInput
|
|
5692
|
+
commentReactions?: Prisma.CommentReactionUncheckedCreateNestedManyWithoutUserInput
|
|
5693
|
+
storyFilterViews?: Prisma.StoryFilterViewUncheckedCreateNestedManyWithoutUserInput
|
|
5694
|
+
chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
|
|
5695
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
5696
|
+
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
5697
|
+
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
5698
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
5699
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
5700
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
5701
|
+
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
5702
|
+
workspaceMembers?: Prisma.WorkspaceMemberUncheckedCreateNestedManyWithoutUserInput
|
|
5703
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
|
|
5704
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
|
|
5705
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
|
|
5706
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
5707
|
+
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
5708
|
+
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
5709
|
+
notifications?: Prisma.NotificationUncheckedCreateNestedManyWithoutUserInput
|
|
5710
|
+
notificationPreference?: Prisma.NotificationPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
5711
|
+
issuedLicenses?: Prisma.LicenseKeyUncheckedCreateNestedManyWithoutIssuedByInput
|
|
5712
|
+
ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
|
|
5713
|
+
roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
|
|
5714
|
+
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
5715
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
5716
|
+
}
|
|
5717
|
+
|
|
5718
|
+
export type UserCreateOrConnectWithoutProjectActivitiesInput = {
|
|
5719
|
+
where: Prisma.UserWhereUniqueInput
|
|
5720
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutProjectActivitiesInput, Prisma.UserUncheckedCreateWithoutProjectActivitiesInput>
|
|
5721
|
+
}
|
|
5722
|
+
|
|
5723
|
+
export type UserUpsertWithoutProjectActivitiesInput = {
|
|
5724
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutProjectActivitiesInput, Prisma.UserUncheckedUpdateWithoutProjectActivitiesInput>
|
|
5725
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutProjectActivitiesInput, Prisma.UserUncheckedCreateWithoutProjectActivitiesInput>
|
|
5726
|
+
where?: Prisma.UserWhereInput
|
|
5727
|
+
}
|
|
5728
|
+
|
|
5729
|
+
export type UserUpdateToOneWithWhereWithoutProjectActivitiesInput = {
|
|
5730
|
+
where?: Prisma.UserWhereInput
|
|
5731
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutProjectActivitiesInput, Prisma.UserUncheckedUpdateWithoutProjectActivitiesInput>
|
|
5732
|
+
}
|
|
5733
|
+
|
|
5734
|
+
export type UserUpdateWithoutProjectActivitiesInput = {
|
|
5735
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5736
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5737
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5738
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5739
|
+
emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5740
|
+
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5741
|
+
role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
|
5742
|
+
status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
5743
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5744
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5745
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5746
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5747
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5748
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5749
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5750
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5751
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5752
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5753
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5754
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5755
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5756
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5757
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5758
|
+
accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
|
|
5759
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
5760
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
5761
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
5762
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
5763
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
5764
|
+
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
5765
|
+
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
5766
|
+
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
5767
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
5768
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
|
|
5769
|
+
legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
|
|
5770
|
+
industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
|
|
5771
|
+
dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
|
|
5772
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
|
|
5773
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
|
|
5774
|
+
articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
|
|
5775
|
+
anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
|
|
5776
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
|
|
5777
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
|
|
5778
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
|
|
5779
|
+
prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
|
|
5780
|
+
reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
|
|
5781
|
+
comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
|
|
5782
|
+
commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
|
|
5783
|
+
reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
|
|
5784
|
+
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
5785
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5786
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5787
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5788
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5789
|
+
labelsCreated?: Prisma.LabelUpdateManyWithoutCreatedByNestedInput
|
|
5790
|
+
storyActivities?: Prisma.StoryActivityUpdateManyWithoutUserNestedInput
|
|
5791
|
+
storyComments?: Prisma.StoryCommentUpdateManyWithoutUserNestedInput
|
|
5792
|
+
storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
|
|
5793
|
+
commentReactions?: Prisma.CommentReactionUpdateManyWithoutUserNestedInput
|
|
5794
|
+
storyFilterViews?: Prisma.StoryFilterViewUpdateManyWithoutUserNestedInput
|
|
5795
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
5796
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
5797
|
+
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
5798
|
+
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
5799
|
+
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
5800
|
+
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
5801
|
+
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
5802
|
+
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
5803
|
+
workspaceMembers?: Prisma.WorkspaceMemberUpdateManyWithoutUserNestedInput
|
|
5804
|
+
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
5805
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
5806
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
|
|
5807
|
+
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
5808
|
+
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
5809
|
+
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
5810
|
+
notifications?: Prisma.NotificationUpdateManyWithoutUserNestedInput
|
|
5811
|
+
notificationPreference?: Prisma.NotificationPreferenceUpdateOneWithoutUserNestedInput
|
|
5812
|
+
issuedLicenses?: Prisma.LicenseKeyUpdateManyWithoutIssuedByNestedInput
|
|
5813
|
+
ssoMappings?: Prisma.SsoMappingUpdateManyWithoutUserNestedInput
|
|
5814
|
+
roleAssignments?: Prisma.RoleAssignmentUpdateManyWithoutUserNestedInput
|
|
5815
|
+
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
5816
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5817
|
+
}
|
|
5818
|
+
|
|
5819
|
+
export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
|
|
5820
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5821
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5822
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5823
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5824
|
+
emailVerified?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5825
|
+
image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5826
|
+
role?: Prisma.EnumRoleFieldUpdateOperationsInput | $Enums.Role
|
|
5827
|
+
status?: Prisma.EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
5828
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5829
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
5830
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
5831
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5832
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5833
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5834
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5835
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5836
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5837
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5838
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5839
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5840
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5841
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5842
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5843
|
+
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
5844
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
5845
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5846
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
5847
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
5848
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
5849
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
5850
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
5851
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
5852
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5853
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
5854
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
5855
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
5856
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
5857
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
5858
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
5859
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
5860
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
5861
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
5862
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
5863
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
5864
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
5865
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5866
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5867
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
5868
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
5869
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
5870
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5871
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5872
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5873
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5874
|
+
labelsCreated?: Prisma.LabelUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5875
|
+
storyActivities?: Prisma.StoryActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5876
|
+
storyComments?: Prisma.StoryCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
5877
|
+
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
5878
|
+
commentReactions?: Prisma.CommentReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
5879
|
+
storyFilterViews?: Prisma.StoryFilterViewUncheckedUpdateManyWithoutUserNestedInput
|
|
5880
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
5881
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
5882
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5883
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5884
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5885
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5886
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5887
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
5888
|
+
workspaceMembers?: Prisma.WorkspaceMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5889
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5890
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5891
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
5892
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5893
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
5894
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
5895
|
+
notifications?: Prisma.NotificationUncheckedUpdateManyWithoutUserNestedInput
|
|
5896
|
+
notificationPreference?: Prisma.NotificationPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
5897
|
+
issuedLicenses?: Prisma.LicenseKeyUncheckedUpdateManyWithoutIssuedByNestedInput
|
|
5898
|
+
ssoMappings?: Prisma.SsoMappingUncheckedUpdateManyWithoutUserNestedInput
|
|
5899
|
+
roleAssignments?: Prisma.RoleAssignmentUncheckedUpdateManyWithoutUserNestedInput
|
|
5900
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
5901
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5902
|
+
}
|
|
5903
|
+
|
|
5904
|
+
export type UserCreateWithoutChatThreadsInput = {
|
|
5905
|
+
id?: string
|
|
5906
|
+
email: string
|
|
5907
|
+
username: string
|
|
5908
|
+
password: string
|
|
5909
|
+
emailVerified?: Date | string | null
|
|
5910
|
+
image?: string | null
|
|
5911
|
+
role?: $Enums.Role
|
|
5912
|
+
status?: $Enums.UserStatus
|
|
5913
|
+
createdAt?: Date | string
|
|
5914
|
+
updatedAt?: Date | string
|
|
5915
|
+
lastLoginAt?: Date | string | null
|
|
5916
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5917
|
+
bgShape?: string | null
|
|
5918
|
+
bgColor?: string | null
|
|
5919
|
+
aiProvider?: string | null
|
|
5920
|
+
aiApiKey?: string | null
|
|
5921
|
+
aiModel?: string | null
|
|
5922
|
+
locale?: string | null
|
|
5923
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
5924
|
+
sketchApiToken?: string | null
|
|
5925
|
+
timezone?: string | null
|
|
5926
|
+
preferredCurrency?: string
|
|
5927
|
+
defaultWorkspaceId?: string | null
|
|
5928
|
+
accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
|
|
5929
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
5930
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
5931
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
5932
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
5933
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
5934
|
+
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
5935
|
+
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
5936
|
+
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
5937
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
5938
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
|
|
5939
|
+
legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
|
|
5940
|
+
industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
|
|
5941
|
+
dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
|
|
5942
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
|
|
5943
|
+
bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
|
|
5944
|
+
articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
|
|
5945
|
+
anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
|
|
5946
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
|
|
5947
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
|
|
5948
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
|
|
5949
|
+
prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
|
|
5950
|
+
reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
|
|
5951
|
+
comments?: Prisma.CommentCreateNestedManyWithoutUserInput
|
|
5952
|
+
commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
|
|
5953
|
+
reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
|
|
5954
|
+
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
5955
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5956
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5957
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5958
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5959
|
+
labelsCreated?: Prisma.LabelCreateNestedManyWithoutCreatedByInput
|
|
5960
|
+
storyActivities?: Prisma.StoryActivityCreateNestedManyWithoutUserInput
|
|
5961
|
+
storyComments?: Prisma.StoryCommentCreateNestedManyWithoutUserInput
|
|
5962
|
+
storyReactions?: Prisma.StoryReactionCreateNestedManyWithoutUserInput
|
|
5963
|
+
commentReactions?: Prisma.CommentReactionCreateNestedManyWithoutUserInput
|
|
5964
|
+
storyFilterViews?: Prisma.StoryFilterViewCreateNestedManyWithoutUserInput
|
|
5965
|
+
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
5966
|
+
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
5967
|
+
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
5968
|
+
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
5969
|
+
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
5970
|
+
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
5971
|
+
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
5972
|
+
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
5973
|
+
workspaceMembers?: Prisma.WorkspaceMemberCreateNestedManyWithoutUserInput
|
|
5974
|
+
sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
|
|
5975
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
|
|
5976
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
|
|
5977
|
+
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
5978
|
+
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
5979
|
+
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
5980
|
+
notifications?: Prisma.NotificationCreateNestedManyWithoutUserInput
|
|
5981
|
+
notificationPreference?: Prisma.NotificationPreferenceCreateNestedOneWithoutUserInput
|
|
5982
|
+
issuedLicenses?: Prisma.LicenseKeyCreateNestedManyWithoutIssuedByInput
|
|
5983
|
+
ssoMappings?: Prisma.SsoMappingCreateNestedManyWithoutUserInput
|
|
5984
|
+
roleAssignments?: Prisma.RoleAssignmentCreateNestedManyWithoutUserInput
|
|
5985
|
+
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
5986
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
5987
|
+
}
|
|
5988
|
+
|
|
5989
|
+
export type UserUncheckedCreateWithoutChatThreadsInput = {
|
|
5990
|
+
id?: string
|
|
5991
|
+
email: string
|
|
5992
|
+
username: string
|
|
5993
|
+
password: string
|
|
5994
|
+
emailVerified?: Date | string | null
|
|
5995
|
+
image?: string | null
|
|
5996
|
+
role?: $Enums.Role
|
|
5997
|
+
status?: $Enums.UserStatus
|
|
5998
|
+
createdAt?: Date | string
|
|
5999
|
+
updatedAt?: Date | string
|
|
6000
|
+
lastLoginAt?: Date | string | null
|
|
6001
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
6002
|
+
bgShape?: string | null
|
|
6003
|
+
bgColor?: string | null
|
|
6004
|
+
aiProvider?: string | null
|
|
6005
|
+
aiApiKey?: string | null
|
|
6006
|
+
aiModel?: string | null
|
|
6007
|
+
locale?: string | null
|
|
6008
|
+
storyDisplayOptions?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
6009
|
+
sketchApiToken?: string | null
|
|
6010
|
+
timezone?: string | null
|
|
6011
|
+
preferredCurrency?: string
|
|
6012
|
+
defaultWorkspaceId?: string | null
|
|
6013
|
+
accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
|
|
6014
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
6015
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
6016
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
6017
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
6018
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
6019
|
+
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
6020
|
+
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
6021
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
6022
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
6023
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
|
|
6024
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
|
|
6025
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
|
|
6026
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
|
|
6027
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
|
|
6028
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
|
|
6029
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
|
|
6030
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
|
|
6031
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
|
|
6032
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
|
|
6033
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
|
|
6034
|
+
prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
|
|
6035
|
+
reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
|
|
6036
|
+
comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
|
|
6037
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
|
|
6038
|
+
reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
|
|
6039
|
+
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
6040
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6041
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
6042
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
6043
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6044
|
+
labelsCreated?: Prisma.LabelUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6045
|
+
storyActivities?: Prisma.StoryActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6046
|
+
storyComments?: Prisma.StoryCommentUncheckedCreateNestedManyWithoutUserInput
|
|
6047
|
+
storyReactions?: Prisma.StoryReactionUncheckedCreateNestedManyWithoutUserInput
|
|
6048
|
+
commentReactions?: Prisma.CommentReactionUncheckedCreateNestedManyWithoutUserInput
|
|
6049
|
+
storyFilterViews?: Prisma.StoryFilterViewUncheckedCreateNestedManyWithoutUserInput
|
|
6050
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
6051
|
+
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
6052
|
+
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
6053
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
6054
|
+
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6055
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
6056
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
6057
|
+
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
6058
|
+
workspaceMembers?: Prisma.WorkspaceMemberUncheckedCreateNestedManyWithoutUserInput
|
|
6059
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
|
|
6060
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
|
|
6061
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
|
|
6062
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
6063
|
+
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
6064
|
+
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
6065
|
+
notifications?: Prisma.NotificationUncheckedCreateNestedManyWithoutUserInput
|
|
6066
|
+
notificationPreference?: Prisma.NotificationPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
6067
|
+
issuedLicenses?: Prisma.LicenseKeyUncheckedCreateNestedManyWithoutIssuedByInput
|
|
6068
|
+
ssoMappings?: Prisma.SsoMappingUncheckedCreateNestedManyWithoutUserInput
|
|
6069
|
+
roleAssignments?: Prisma.RoleAssignmentUncheckedCreateNestedManyWithoutUserInput
|
|
6070
|
+
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
6071
|
+
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
6072
|
+
}
|
|
6073
|
+
|
|
6074
|
+
export type UserCreateOrConnectWithoutChatThreadsInput = {
|
|
6075
|
+
where: Prisma.UserWhereUniqueInput
|
|
6076
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutChatThreadsInput, Prisma.UserUncheckedCreateWithoutChatThreadsInput>
|
|
5247
6077
|
}
|
|
5248
6078
|
|
|
5249
|
-
export type
|
|
5250
|
-
update: Prisma.XOR<Prisma.
|
|
5251
|
-
create: Prisma.XOR<Prisma.
|
|
6079
|
+
export type UserUpsertWithoutChatThreadsInput = {
|
|
6080
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutChatThreadsInput, Prisma.UserUncheckedUpdateWithoutChatThreadsInput>
|
|
6081
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutChatThreadsInput, Prisma.UserUncheckedCreateWithoutChatThreadsInput>
|
|
5252
6082
|
where?: Prisma.UserWhereInput
|
|
5253
6083
|
}
|
|
5254
6084
|
|
|
5255
|
-
export type
|
|
6085
|
+
export type UserUpdateToOneWithWhereWithoutChatThreadsInput = {
|
|
5256
6086
|
where?: Prisma.UserWhereInput
|
|
5257
|
-
data: Prisma.XOR<Prisma.
|
|
6087
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutChatThreadsInput, Prisma.UserUncheckedUpdateWithoutChatThreadsInput>
|
|
5258
6088
|
}
|
|
5259
6089
|
|
|
5260
|
-
export type
|
|
6090
|
+
export type UserUpdateWithoutChatThreadsInput = {
|
|
5261
6091
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5262
6092
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5263
6093
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -5285,6 +6115,8 @@ export type UserUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
5285
6115
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
5286
6116
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
5287
6117
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
6118
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
6119
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
5288
6120
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
5289
6121
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
5290
6122
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -5316,7 +6148,6 @@ export type UserUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
5316
6148
|
storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
|
|
5317
6149
|
commentReactions?: Prisma.CommentReactionUpdateManyWithoutUserNestedInput
|
|
5318
6150
|
storyFilterViews?: Prisma.StoryFilterViewUpdateManyWithoutUserNestedInput
|
|
5319
|
-
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
5320
6151
|
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
5321
6152
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
5322
6153
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
@@ -5328,6 +6159,7 @@ export type UserUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
5328
6159
|
workspaceMembers?: Prisma.WorkspaceMemberUpdateManyWithoutUserNestedInput
|
|
5329
6160
|
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
5330
6161
|
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
6162
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
|
|
5331
6163
|
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
5332
6164
|
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
5333
6165
|
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
@@ -5340,7 +6172,7 @@ export type UserUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
5340
6172
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5341
6173
|
}
|
|
5342
6174
|
|
|
5343
|
-
export type
|
|
6175
|
+
export type UserUncheckedUpdateWithoutChatThreadsInput = {
|
|
5344
6176
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5345
6177
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5346
6178
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -5368,6 +6200,8 @@ export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
5368
6200
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
5369
6201
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5370
6202
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
6203
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
6204
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
5371
6205
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
5372
6206
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
5373
6207
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -5399,7 +6233,6 @@ export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
5399
6233
|
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
5400
6234
|
commentReactions?: Prisma.CommentReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
5401
6235
|
storyFilterViews?: Prisma.StoryFilterViewUncheckedUpdateManyWithoutUserNestedInput
|
|
5402
|
-
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
5403
6236
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
5404
6237
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5405
6238
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -5411,6 +6244,7 @@ export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
5411
6244
|
workspaceMembers?: Prisma.WorkspaceMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5412
6245
|
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5413
6246
|
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
6247
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
5414
6248
|
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5415
6249
|
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
5416
6250
|
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -5423,7 +6257,7 @@ export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
5423
6257
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5424
6258
|
}
|
|
5425
6259
|
|
|
5426
|
-
export type
|
|
6260
|
+
export type UserCreateWithoutLoginLogsInput = {
|
|
5427
6261
|
id?: string
|
|
5428
6262
|
email: string
|
|
5429
6263
|
username: string
|
|
@@ -5449,8 +6283,9 @@ export type UserCreateWithoutProjectActivitiesInput = {
|
|
|
5449
6283
|
defaultWorkspaceId?: string | null
|
|
5450
6284
|
accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
|
|
5451
6285
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
5452
|
-
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
5453
6286
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
6287
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
6288
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
5454
6289
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
5455
6290
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
5456
6291
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -5487,6 +6322,7 @@ export type UserCreateWithoutProjectActivitiesInput = {
|
|
|
5487
6322
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
5488
6323
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
5489
6324
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
6325
|
+
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
5490
6326
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
5491
6327
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
5492
6328
|
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
@@ -5506,7 +6342,7 @@ export type UserCreateWithoutProjectActivitiesInput = {
|
|
|
5506
6342
|
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
5507
6343
|
}
|
|
5508
6344
|
|
|
5509
|
-
export type
|
|
6345
|
+
export type UserUncheckedCreateWithoutLoginLogsInput = {
|
|
5510
6346
|
id?: string
|
|
5511
6347
|
email: string
|
|
5512
6348
|
username: string
|
|
@@ -5532,8 +6368,9 @@ export type UserUncheckedCreateWithoutProjectActivitiesInput = {
|
|
|
5532
6368
|
defaultWorkspaceId?: string | null
|
|
5533
6369
|
accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
|
|
5534
6370
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
5535
|
-
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
5536
6371
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
6372
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
6373
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
5537
6374
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
5538
6375
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
5539
6376
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -5570,6 +6407,7 @@ export type UserUncheckedCreateWithoutProjectActivitiesInput = {
|
|
|
5570
6407
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
5571
6408
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
5572
6409
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
6410
|
+
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5573
6411
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
5574
6412
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
5575
6413
|
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
@@ -5589,23 +6427,23 @@ export type UserUncheckedCreateWithoutProjectActivitiesInput = {
|
|
|
5589
6427
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
5590
6428
|
}
|
|
5591
6429
|
|
|
5592
|
-
export type
|
|
6430
|
+
export type UserCreateOrConnectWithoutLoginLogsInput = {
|
|
5593
6431
|
where: Prisma.UserWhereUniqueInput
|
|
5594
|
-
create: Prisma.XOR<Prisma.
|
|
6432
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutLoginLogsInput, Prisma.UserUncheckedCreateWithoutLoginLogsInput>
|
|
5595
6433
|
}
|
|
5596
6434
|
|
|
5597
|
-
export type
|
|
5598
|
-
update: Prisma.XOR<Prisma.
|
|
5599
|
-
create: Prisma.XOR<Prisma.
|
|
6435
|
+
export type UserUpsertWithoutLoginLogsInput = {
|
|
6436
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutLoginLogsInput, Prisma.UserUncheckedUpdateWithoutLoginLogsInput>
|
|
6437
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutLoginLogsInput, Prisma.UserUncheckedCreateWithoutLoginLogsInput>
|
|
5600
6438
|
where?: Prisma.UserWhereInput
|
|
5601
6439
|
}
|
|
5602
6440
|
|
|
5603
|
-
export type
|
|
6441
|
+
export type UserUpdateToOneWithWhereWithoutLoginLogsInput = {
|
|
5604
6442
|
where?: Prisma.UserWhereInput
|
|
5605
|
-
data: Prisma.XOR<Prisma.
|
|
6443
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutLoginLogsInput, Prisma.UserUncheckedUpdateWithoutLoginLogsInput>
|
|
5606
6444
|
}
|
|
5607
6445
|
|
|
5608
|
-
export type
|
|
6446
|
+
export type UserUpdateWithoutLoginLogsInput = {
|
|
5609
6447
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5610
6448
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5611
6449
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -5631,8 +6469,9 @@ export type UserUpdateWithoutProjectActivitiesInput = {
|
|
|
5631
6469
|
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5632
6470
|
accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
|
|
5633
6471
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
5634
|
-
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
5635
6472
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
6473
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
6474
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
5636
6475
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
5637
6476
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
5638
6477
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -5669,6 +6508,7 @@ export type UserUpdateWithoutProjectActivitiesInput = {
|
|
|
5669
6508
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
5670
6509
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
5671
6510
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
6511
|
+
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
5672
6512
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
5673
6513
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
5674
6514
|
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
@@ -5688,7 +6528,7 @@ export type UserUpdateWithoutProjectActivitiesInput = {
|
|
|
5688
6528
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
5689
6529
|
}
|
|
5690
6530
|
|
|
5691
|
-
export type
|
|
6531
|
+
export type UserUncheckedUpdateWithoutLoginLogsInput = {
|
|
5692
6532
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5693
6533
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5694
6534
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -5714,8 +6554,9 @@ export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
|
|
|
5714
6554
|
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5715
6555
|
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
5716
6556
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
5717
|
-
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
5718
6557
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
6558
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
6559
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
5719
6560
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
5720
6561
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
5721
6562
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -5752,6 +6593,7 @@ export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
|
|
|
5752
6593
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5753
6594
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5754
6595
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
6596
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5755
6597
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5756
6598
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5757
6599
|
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
@@ -5771,7 +6613,7 @@ export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
|
|
|
5771
6613
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
5772
6614
|
}
|
|
5773
6615
|
|
|
5774
|
-
export type
|
|
6616
|
+
export type UserCreateWithoutInvitationUsesInput = {
|
|
5775
6617
|
id?: string
|
|
5776
6618
|
email: string
|
|
5777
6619
|
username: string
|
|
@@ -5796,9 +6638,10 @@ export type UserCreateWithoutChatThreadsInput = {
|
|
|
5796
6638
|
preferredCurrency?: string
|
|
5797
6639
|
defaultWorkspaceId?: string | null
|
|
5798
6640
|
accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
|
|
5799
|
-
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
5800
6641
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
5801
6642
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
6643
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
6644
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
5802
6645
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
5803
6646
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
5804
6647
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -5830,6 +6673,7 @@ export type UserCreateWithoutChatThreadsInput = {
|
|
|
5830
6673
|
storyReactions?: Prisma.StoryReactionCreateNestedManyWithoutUserInput
|
|
5831
6674
|
commentReactions?: Prisma.CommentReactionCreateNestedManyWithoutUserInput
|
|
5832
6675
|
storyFilterViews?: Prisma.StoryFilterViewCreateNestedManyWithoutUserInput
|
|
6676
|
+
chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
|
|
5833
6677
|
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
5834
6678
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
5835
6679
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
@@ -5854,7 +6698,7 @@ export type UserCreateWithoutChatThreadsInput = {
|
|
|
5854
6698
|
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
5855
6699
|
}
|
|
5856
6700
|
|
|
5857
|
-
export type
|
|
6701
|
+
export type UserUncheckedCreateWithoutInvitationUsesInput = {
|
|
5858
6702
|
id?: string
|
|
5859
6703
|
email: string
|
|
5860
6704
|
username: string
|
|
@@ -5879,9 +6723,10 @@ export type UserUncheckedCreateWithoutChatThreadsInput = {
|
|
|
5879
6723
|
preferredCurrency?: string
|
|
5880
6724
|
defaultWorkspaceId?: string | null
|
|
5881
6725
|
accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
|
|
5882
|
-
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
5883
6726
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
5884
6727
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
6728
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
6729
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
5885
6730
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
5886
6731
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
5887
6732
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -5913,6 +6758,7 @@ export type UserUncheckedCreateWithoutChatThreadsInput = {
|
|
|
5913
6758
|
storyReactions?: Prisma.StoryReactionUncheckedCreateNestedManyWithoutUserInput
|
|
5914
6759
|
commentReactions?: Prisma.CommentReactionUncheckedCreateNestedManyWithoutUserInput
|
|
5915
6760
|
storyFilterViews?: Prisma.StoryFilterViewUncheckedCreateNestedManyWithoutUserInput
|
|
6761
|
+
chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
|
|
5916
6762
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
5917
6763
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
5918
6764
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -5937,23 +6783,23 @@ export type UserUncheckedCreateWithoutChatThreadsInput = {
|
|
|
5937
6783
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
5938
6784
|
}
|
|
5939
6785
|
|
|
5940
|
-
export type
|
|
6786
|
+
export type UserCreateOrConnectWithoutInvitationUsesInput = {
|
|
5941
6787
|
where: Prisma.UserWhereUniqueInput
|
|
5942
|
-
create: Prisma.XOR<Prisma.
|
|
6788
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutInvitationUsesInput, Prisma.UserUncheckedCreateWithoutInvitationUsesInput>
|
|
5943
6789
|
}
|
|
5944
6790
|
|
|
5945
|
-
export type
|
|
5946
|
-
update: Prisma.XOR<Prisma.
|
|
5947
|
-
create: Prisma.XOR<Prisma.
|
|
6791
|
+
export type UserUpsertWithoutInvitationUsesInput = {
|
|
6792
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutInvitationUsesInput, Prisma.UserUncheckedUpdateWithoutInvitationUsesInput>
|
|
6793
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutInvitationUsesInput, Prisma.UserUncheckedCreateWithoutInvitationUsesInput>
|
|
5948
6794
|
where?: Prisma.UserWhereInput
|
|
5949
6795
|
}
|
|
5950
6796
|
|
|
5951
|
-
export type
|
|
6797
|
+
export type UserUpdateToOneWithWhereWithoutInvitationUsesInput = {
|
|
5952
6798
|
where?: Prisma.UserWhereInput
|
|
5953
|
-
data: Prisma.XOR<Prisma.
|
|
6799
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutInvitationUsesInput, Prisma.UserUncheckedUpdateWithoutInvitationUsesInput>
|
|
5954
6800
|
}
|
|
5955
6801
|
|
|
5956
|
-
export type
|
|
6802
|
+
export type UserUpdateWithoutInvitationUsesInput = {
|
|
5957
6803
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5958
6804
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5959
6805
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -5978,9 +6824,10 @@ export type UserUpdateWithoutChatThreadsInput = {
|
|
|
5978
6824
|
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
5979
6825
|
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
5980
6826
|
accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
|
|
5981
|
-
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
5982
6827
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
5983
6828
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
6829
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
6830
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
5984
6831
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
5985
6832
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
5986
6833
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -6012,6 +6859,7 @@ export type UserUpdateWithoutChatThreadsInput = {
|
|
|
6012
6859
|
storyReactions?: Prisma.StoryReactionUpdateManyWithoutUserNestedInput
|
|
6013
6860
|
commentReactions?: Prisma.CommentReactionUpdateManyWithoutUserNestedInput
|
|
6014
6861
|
storyFilterViews?: Prisma.StoryFilterViewUpdateManyWithoutUserNestedInput
|
|
6862
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
6015
6863
|
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
6016
6864
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
6017
6865
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
@@ -6036,7 +6884,7 @@ export type UserUpdateWithoutChatThreadsInput = {
|
|
|
6036
6884
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
6037
6885
|
}
|
|
6038
6886
|
|
|
6039
|
-
export type
|
|
6887
|
+
export type UserUncheckedUpdateWithoutInvitationUsesInput = {
|
|
6040
6888
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6041
6889
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6042
6890
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -6061,9 +6909,10 @@ export type UserUncheckedUpdateWithoutChatThreadsInput = {
|
|
|
6061
6909
|
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6062
6910
|
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
6063
6911
|
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
6064
|
-
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
6065
6912
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
6066
6913
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
6914
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
6915
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
6067
6916
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
6068
6917
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
6069
6918
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -6095,6 +6944,7 @@ export type UserUncheckedUpdateWithoutChatThreadsInput = {
|
|
|
6095
6944
|
storyReactions?: Prisma.StoryReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
6096
6945
|
commentReactions?: Prisma.CommentReactionUncheckedUpdateManyWithoutUserNestedInput
|
|
6097
6946
|
storyFilterViews?: Prisma.StoryFilterViewUncheckedUpdateManyWithoutUserNestedInput
|
|
6947
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
6098
6948
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
6099
6949
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
6100
6950
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -6119,7 +6969,7 @@ export type UserUncheckedUpdateWithoutChatThreadsInput = {
|
|
|
6119
6969
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
6120
6970
|
}
|
|
6121
6971
|
|
|
6122
|
-
export type
|
|
6972
|
+
export type UserCreateWithoutPasswordResetTokensInput = {
|
|
6123
6973
|
id?: string
|
|
6124
6974
|
email: string
|
|
6125
6975
|
username: string
|
|
@@ -6145,7 +6995,9 @@ export type UserCreateWithoutLoginLogsInput = {
|
|
|
6145
6995
|
defaultWorkspaceId?: string | null
|
|
6146
6996
|
accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
|
|
6147
6997
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
6148
|
-
|
|
6998
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
6999
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
7000
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
6149
7001
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
6150
7002
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
6151
7003
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -6202,7 +7054,7 @@ export type UserCreateWithoutLoginLogsInput = {
|
|
|
6202
7054
|
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
6203
7055
|
}
|
|
6204
7056
|
|
|
6205
|
-
export type
|
|
7057
|
+
export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
|
|
6206
7058
|
id?: string
|
|
6207
7059
|
email: string
|
|
6208
7060
|
username: string
|
|
@@ -6228,7 +7080,9 @@ export type UserUncheckedCreateWithoutLoginLogsInput = {
|
|
|
6228
7080
|
defaultWorkspaceId?: string | null
|
|
6229
7081
|
accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
|
|
6230
7082
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
6231
|
-
|
|
7083
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
7084
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
7085
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
6232
7086
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
6233
7087
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
6234
7088
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -6285,23 +7139,23 @@ export type UserUncheckedCreateWithoutLoginLogsInput = {
|
|
|
6285
7139
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
6286
7140
|
}
|
|
6287
7141
|
|
|
6288
|
-
export type
|
|
7142
|
+
export type UserCreateOrConnectWithoutPasswordResetTokensInput = {
|
|
6289
7143
|
where: Prisma.UserWhereUniqueInput
|
|
6290
|
-
create: Prisma.XOR<Prisma.
|
|
7144
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutPasswordResetTokensInput, Prisma.UserUncheckedCreateWithoutPasswordResetTokensInput>
|
|
6291
7145
|
}
|
|
6292
7146
|
|
|
6293
|
-
export type
|
|
6294
|
-
update: Prisma.XOR<Prisma.
|
|
6295
|
-
create: Prisma.XOR<Prisma.
|
|
7147
|
+
export type UserUpsertWithoutPasswordResetTokensInput = {
|
|
7148
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutPasswordResetTokensInput, Prisma.UserUncheckedUpdateWithoutPasswordResetTokensInput>
|
|
7149
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutPasswordResetTokensInput, Prisma.UserUncheckedCreateWithoutPasswordResetTokensInput>
|
|
6296
7150
|
where?: Prisma.UserWhereInput
|
|
6297
7151
|
}
|
|
6298
7152
|
|
|
6299
|
-
export type
|
|
7153
|
+
export type UserUpdateToOneWithWhereWithoutPasswordResetTokensInput = {
|
|
6300
7154
|
where?: Prisma.UserWhereInput
|
|
6301
|
-
data: Prisma.XOR<Prisma.
|
|
7155
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutPasswordResetTokensInput, Prisma.UserUncheckedUpdateWithoutPasswordResetTokensInput>
|
|
6302
7156
|
}
|
|
6303
7157
|
|
|
6304
|
-
export type
|
|
7158
|
+
export type UserUpdateWithoutPasswordResetTokensInput = {
|
|
6305
7159
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6306
7160
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6307
7161
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -6327,7 +7181,9 @@ export type UserUpdateWithoutLoginLogsInput = {
|
|
|
6327
7181
|
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
6328
7182
|
accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
|
|
6329
7183
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
6330
|
-
|
|
7184
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
7185
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
7186
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
6331
7187
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
6332
7188
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
6333
7189
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -6384,7 +7240,7 @@ export type UserUpdateWithoutLoginLogsInput = {
|
|
|
6384
7240
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
6385
7241
|
}
|
|
6386
7242
|
|
|
6387
|
-
export type
|
|
7243
|
+
export type UserUncheckedUpdateWithoutPasswordResetTokensInput = {
|
|
6388
7244
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6389
7245
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6390
7246
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -6410,7 +7266,9 @@ export type UserUncheckedUpdateWithoutLoginLogsInput = {
|
|
|
6410
7266
|
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
6411
7267
|
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
6412
7268
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
6413
|
-
|
|
7269
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
7270
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
7271
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
6414
7272
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
6415
7273
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
6416
7274
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -6467,7 +7325,7 @@ export type UserUncheckedUpdateWithoutLoginLogsInput = {
|
|
|
6467
7325
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
6468
7326
|
}
|
|
6469
7327
|
|
|
6470
|
-
export type
|
|
7328
|
+
export type UserCreateWithoutEmailVerificationTokensInput = {
|
|
6471
7329
|
id?: string
|
|
6472
7330
|
email: string
|
|
6473
7331
|
username: string
|
|
@@ -6492,8 +7350,10 @@ export type UserCreateWithoutInvitationUsesInput = {
|
|
|
6492
7350
|
preferredCurrency?: string
|
|
6493
7351
|
defaultWorkspaceId?: string | null
|
|
6494
7352
|
accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
|
|
7353
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
6495
7354
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
6496
7355
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
7356
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
6497
7357
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
6498
7358
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
6499
7359
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -6550,7 +7410,7 @@ export type UserCreateWithoutInvitationUsesInput = {
|
|
|
6550
7410
|
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
6551
7411
|
}
|
|
6552
7412
|
|
|
6553
|
-
export type
|
|
7413
|
+
export type UserUncheckedCreateWithoutEmailVerificationTokensInput = {
|
|
6554
7414
|
id?: string
|
|
6555
7415
|
email: string
|
|
6556
7416
|
username: string
|
|
@@ -6575,8 +7435,10 @@ export type UserUncheckedCreateWithoutInvitationUsesInput = {
|
|
|
6575
7435
|
preferredCurrency?: string
|
|
6576
7436
|
defaultWorkspaceId?: string | null
|
|
6577
7437
|
accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
|
|
7438
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
6578
7439
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
6579
7440
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
7441
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
6580
7442
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
6581
7443
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
6582
7444
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -6633,23 +7495,23 @@ export type UserUncheckedCreateWithoutInvitationUsesInput = {
|
|
|
6633
7495
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
6634
7496
|
}
|
|
6635
7497
|
|
|
6636
|
-
export type
|
|
7498
|
+
export type UserCreateOrConnectWithoutEmailVerificationTokensInput = {
|
|
6637
7499
|
where: Prisma.UserWhereUniqueInput
|
|
6638
|
-
create: Prisma.XOR<Prisma.
|
|
7500
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutEmailVerificationTokensInput, Prisma.UserUncheckedCreateWithoutEmailVerificationTokensInput>
|
|
6639
7501
|
}
|
|
6640
7502
|
|
|
6641
|
-
export type
|
|
6642
|
-
update: Prisma.XOR<Prisma.
|
|
6643
|
-
create: Prisma.XOR<Prisma.
|
|
7503
|
+
export type UserUpsertWithoutEmailVerificationTokensInput = {
|
|
7504
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutEmailVerificationTokensInput, Prisma.UserUncheckedUpdateWithoutEmailVerificationTokensInput>
|
|
7505
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutEmailVerificationTokensInput, Prisma.UserUncheckedCreateWithoutEmailVerificationTokensInput>
|
|
6644
7506
|
where?: Prisma.UserWhereInput
|
|
6645
7507
|
}
|
|
6646
7508
|
|
|
6647
|
-
export type
|
|
7509
|
+
export type UserUpdateToOneWithWhereWithoutEmailVerificationTokensInput = {
|
|
6648
7510
|
where?: Prisma.UserWhereInput
|
|
6649
|
-
data: Prisma.XOR<Prisma.
|
|
7511
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutEmailVerificationTokensInput, Prisma.UserUncheckedUpdateWithoutEmailVerificationTokensInput>
|
|
6650
7512
|
}
|
|
6651
7513
|
|
|
6652
|
-
export type
|
|
7514
|
+
export type UserUpdateWithoutEmailVerificationTokensInput = {
|
|
6653
7515
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6654
7516
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6655
7517
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -6674,8 +7536,10 @@ export type UserUpdateWithoutInvitationUsesInput = {
|
|
|
6674
7536
|
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6675
7537
|
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
6676
7538
|
accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
|
|
7539
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
6677
7540
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
6678
7541
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
7542
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
6679
7543
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
6680
7544
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
6681
7545
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -6732,7 +7596,7 @@ export type UserUpdateWithoutInvitationUsesInput = {
|
|
|
6732
7596
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
6733
7597
|
}
|
|
6734
7598
|
|
|
6735
|
-
export type
|
|
7599
|
+
export type UserUncheckedUpdateWithoutEmailVerificationTokensInput = {
|
|
6736
7600
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6737
7601
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6738
7602
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -6757,8 +7621,10 @@ export type UserUncheckedUpdateWithoutInvitationUsesInput = {
|
|
|
6757
7621
|
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
6758
7622
|
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
6759
7623
|
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
7624
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
6760
7625
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
6761
7626
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
7627
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
6762
7628
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
6763
7629
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
6764
7630
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -6815,7 +7681,7 @@ export type UserUncheckedUpdateWithoutInvitationUsesInput = {
|
|
|
6815
7681
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedUpdateManyWithoutCreatorNestedInput
|
|
6816
7682
|
}
|
|
6817
7683
|
|
|
6818
|
-
export type
|
|
7684
|
+
export type UserCreateWithoutEmailPreferenceInput = {
|
|
6819
7685
|
id?: string
|
|
6820
7686
|
email: string
|
|
6821
7687
|
username: string
|
|
@@ -6842,6 +7708,8 @@ export type UserCreateWithoutPasswordResetTokensInput = {
|
|
|
6842
7708
|
accounts?: Prisma.AccountCreateNestedManyWithoutUserInput
|
|
6843
7709
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
6844
7710
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
7711
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
7712
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
6845
7713
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
6846
7714
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
6847
7715
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -6898,7 +7766,7 @@ export type UserCreateWithoutPasswordResetTokensInput = {
|
|
|
6898
7766
|
createdQuickDocs?: Prisma.WorkspaceQuickDocCreateNestedManyWithoutCreatorInput
|
|
6899
7767
|
}
|
|
6900
7768
|
|
|
6901
|
-
export type
|
|
7769
|
+
export type UserUncheckedCreateWithoutEmailPreferenceInput = {
|
|
6902
7770
|
id?: string
|
|
6903
7771
|
email: string
|
|
6904
7772
|
username: string
|
|
@@ -6925,6 +7793,8 @@ export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
|
|
|
6925
7793
|
accounts?: Prisma.AccountUncheckedCreateNestedManyWithoutUserInput
|
|
6926
7794
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
6927
7795
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
7796
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
7797
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
6928
7798
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
6929
7799
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
6930
7800
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -6981,23 +7851,23 @@ export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
|
|
|
6981
7851
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUncheckedCreateNestedManyWithoutCreatorInput
|
|
6982
7852
|
}
|
|
6983
7853
|
|
|
6984
|
-
export type
|
|
7854
|
+
export type UserCreateOrConnectWithoutEmailPreferenceInput = {
|
|
6985
7855
|
where: Prisma.UserWhereUniqueInput
|
|
6986
|
-
create: Prisma.XOR<Prisma.
|
|
7856
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutEmailPreferenceInput, Prisma.UserUncheckedCreateWithoutEmailPreferenceInput>
|
|
6987
7857
|
}
|
|
6988
7858
|
|
|
6989
|
-
export type
|
|
6990
|
-
update: Prisma.XOR<Prisma.
|
|
6991
|
-
create: Prisma.XOR<Prisma.
|
|
7859
|
+
export type UserUpsertWithoutEmailPreferenceInput = {
|
|
7860
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutEmailPreferenceInput, Prisma.UserUncheckedUpdateWithoutEmailPreferenceInput>
|
|
7861
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutEmailPreferenceInput, Prisma.UserUncheckedCreateWithoutEmailPreferenceInput>
|
|
6992
7862
|
where?: Prisma.UserWhereInput
|
|
6993
7863
|
}
|
|
6994
7864
|
|
|
6995
|
-
export type
|
|
7865
|
+
export type UserUpdateToOneWithWhereWithoutEmailPreferenceInput = {
|
|
6996
7866
|
where?: Prisma.UserWhereInput
|
|
6997
|
-
data: Prisma.XOR<Prisma.
|
|
7867
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutEmailPreferenceInput, Prisma.UserUncheckedUpdateWithoutEmailPreferenceInput>
|
|
6998
7868
|
}
|
|
6999
7869
|
|
|
7000
|
-
export type
|
|
7870
|
+
export type UserUpdateWithoutEmailPreferenceInput = {
|
|
7001
7871
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
7002
7872
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
7003
7873
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -7024,6 +7894,8 @@ export type UserUpdateWithoutPasswordResetTokensInput = {
|
|
|
7024
7894
|
accounts?: Prisma.AccountUpdateManyWithoutUserNestedInput
|
|
7025
7895
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
7026
7896
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
7897
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
7898
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
7027
7899
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
7028
7900
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
7029
7901
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -7080,7 +7952,7 @@ export type UserUpdateWithoutPasswordResetTokensInput = {
|
|
|
7080
7952
|
createdQuickDocs?: Prisma.WorkspaceQuickDocUpdateManyWithoutCreatorNestedInput
|
|
7081
7953
|
}
|
|
7082
7954
|
|
|
7083
|
-
export type
|
|
7955
|
+
export type UserUncheckedUpdateWithoutEmailPreferenceInput = {
|
|
7084
7956
|
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
7085
7957
|
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
7086
7958
|
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
@@ -7107,6 +7979,8 @@ export type UserUncheckedUpdateWithoutPasswordResetTokensInput = {
|
|
|
7107
7979
|
accounts?: Prisma.AccountUncheckedUpdateManyWithoutUserNestedInput
|
|
7108
7980
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
7109
7981
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
7982
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
7983
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
7110
7984
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
7111
7985
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
7112
7986
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -7191,6 +8065,8 @@ export type UserCreateWithoutKnowledgeBasesInput = {
|
|
|
7191
8065
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
7192
8066
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
7193
8067
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
8068
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
8069
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
7194
8070
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
7195
8071
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
7196
8072
|
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
@@ -7274,6 +8150,8 @@ export type UserUncheckedCreateWithoutKnowledgeBasesInput = {
|
|
|
7274
8150
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
7275
8151
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
7276
8152
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
8153
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
8154
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
7277
8155
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
7278
8156
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
7279
8157
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
@@ -7373,6 +8251,8 @@ export type UserUpdateWithoutKnowledgeBasesInput = {
|
|
|
7373
8251
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
7374
8252
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
7375
8253
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
8254
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
8255
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
7376
8256
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
7377
8257
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
7378
8258
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
@@ -7456,6 +8336,8 @@ export type UserUncheckedUpdateWithoutKnowledgeBasesInput = {
|
|
|
7456
8336
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
7457
8337
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
7458
8338
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
8339
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
8340
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
7459
8341
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
7460
8342
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
7461
8343
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
@@ -7539,6 +8421,8 @@ export type UserCreateWithoutKnowledgeDocumentsInput = {
|
|
|
7539
8421
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
7540
8422
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
7541
8423
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
8424
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
8425
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
7542
8426
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
7543
8427
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
7544
8428
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -7622,6 +8506,8 @@ export type UserUncheckedCreateWithoutKnowledgeDocumentsInput = {
|
|
|
7622
8506
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
7623
8507
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
7624
8508
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
8509
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
8510
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
7625
8511
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
7626
8512
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
7627
8513
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -7721,6 +8607,8 @@ export type UserUpdateWithoutKnowledgeDocumentsInput = {
|
|
|
7721
8607
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
7722
8608
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
7723
8609
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
8610
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
8611
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
7724
8612
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
7725
8613
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
7726
8614
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -7804,6 +8692,8 @@ export type UserUncheckedUpdateWithoutKnowledgeDocumentsInput = {
|
|
|
7804
8692
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
7805
8693
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
7806
8694
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
8695
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
8696
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
7807
8697
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
7808
8698
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
7809
8699
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -7887,6 +8777,8 @@ export type UserCreateWithoutPrdsInput = {
|
|
|
7887
8777
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
7888
8778
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
7889
8779
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
8780
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
8781
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
7890
8782
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
7891
8783
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
7892
8784
|
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
@@ -7970,6 +8862,8 @@ export type UserUncheckedCreateWithoutPrdsInput = {
|
|
|
7970
8862
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
7971
8863
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
7972
8864
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
8865
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
8866
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
7973
8867
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
7974
8868
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
7975
8869
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
@@ -8069,6 +8963,8 @@ export type UserUpdateWithoutPrdsInput = {
|
|
|
8069
8963
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
8070
8964
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
8071
8965
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
8966
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
8967
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
8072
8968
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
8073
8969
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
8074
8970
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
@@ -8152,6 +9048,8 @@ export type UserUncheckedUpdateWithoutPrdsInput = {
|
|
|
8152
9048
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
8153
9049
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
8154
9050
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
9051
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
9052
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
8155
9053
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
8156
9054
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
8157
9055
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
@@ -8235,6 +9133,8 @@ export type UserCreateWithoutAgentConversationsInput = {
|
|
|
8235
9133
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
8236
9134
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
8237
9135
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
9136
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
9137
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
8238
9138
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
8239
9139
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
8240
9140
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -8318,6 +9218,8 @@ export type UserUncheckedCreateWithoutAgentConversationsInput = {
|
|
|
8318
9218
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
8319
9219
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
8320
9220
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
9221
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
9222
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
8321
9223
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
8322
9224
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
8323
9225
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -8417,6 +9319,8 @@ export type UserUpdateWithoutAgentConversationsInput = {
|
|
|
8417
9319
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
8418
9320
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
8419
9321
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
9322
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
9323
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
8420
9324
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
8421
9325
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
8422
9326
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -8500,6 +9404,8 @@ export type UserUncheckedUpdateWithoutAgentConversationsInput = {
|
|
|
8500
9404
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
8501
9405
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
8502
9406
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
9407
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
9408
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
8503
9409
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
8504
9410
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
8505
9411
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -8583,6 +9489,8 @@ export type UserCreateWithoutPrdVersionsInput = {
|
|
|
8583
9489
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
8584
9490
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
8585
9491
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
9492
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
9493
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
8586
9494
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
8587
9495
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
8588
9496
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -8666,6 +9574,8 @@ export type UserUncheckedCreateWithoutPrdVersionsInput = {
|
|
|
8666
9574
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
8667
9575
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
8668
9576
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
9577
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
9578
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
8669
9579
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
8670
9580
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
8671
9581
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -8765,6 +9675,8 @@ export type UserUpdateWithoutPrdVersionsInput = {
|
|
|
8765
9675
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
8766
9676
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
8767
9677
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
9678
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
9679
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
8768
9680
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
8769
9681
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
8770
9682
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -8848,6 +9760,8 @@ export type UserUncheckedUpdateWithoutPrdVersionsInput = {
|
|
|
8848
9760
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
8849
9761
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
8850
9762
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
9763
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
9764
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
8851
9765
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
8852
9766
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
8853
9767
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -8931,6 +9845,8 @@ export type UserCreateWithoutReviewsInput = {
|
|
|
8931
9845
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
8932
9846
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
8933
9847
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
9848
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
9849
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
8934
9850
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
8935
9851
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
8936
9852
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -9014,6 +9930,8 @@ export type UserUncheckedCreateWithoutReviewsInput = {
|
|
|
9014
9930
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
9015
9931
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
9016
9932
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
9933
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
9934
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
9017
9935
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
9018
9936
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
9019
9937
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -9113,6 +10031,8 @@ export type UserUpdateWithoutReviewsInput = {
|
|
|
9113
10031
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
9114
10032
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
9115
10033
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
10034
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
10035
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
9116
10036
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
9117
10037
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
9118
10038
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -9196,6 +10116,8 @@ export type UserUncheckedUpdateWithoutReviewsInput = {
|
|
|
9196
10116
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
9197
10117
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
9198
10118
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
10119
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
10120
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
9199
10121
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
9200
10122
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
9201
10123
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -9279,6 +10201,8 @@ export type UserCreateWithoutReviewCommentsInput = {
|
|
|
9279
10201
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
9280
10202
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
9281
10203
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
10204
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
10205
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
9282
10206
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
9283
10207
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
9284
10208
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -9362,6 +10286,8 @@ export type UserUncheckedCreateWithoutReviewCommentsInput = {
|
|
|
9362
10286
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
9363
10287
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
9364
10288
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
10289
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
10290
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
9365
10291
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
9366
10292
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
9367
10293
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -9461,6 +10387,8 @@ export type UserUpdateWithoutReviewCommentsInput = {
|
|
|
9461
10387
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
9462
10388
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
9463
10389
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
10390
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
10391
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
9464
10392
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
9465
10393
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
9466
10394
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -9544,6 +10472,8 @@ export type UserUncheckedUpdateWithoutReviewCommentsInput = {
|
|
|
9544
10472
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
9545
10473
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
9546
10474
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
10475
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
10476
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
9547
10477
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
9548
10478
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
9549
10479
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -9627,6 +10557,8 @@ export type UserCreateWithoutCommentsInput = {
|
|
|
9627
10557
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
9628
10558
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
9629
10559
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
10560
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
10561
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
9630
10562
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
9631
10563
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
9632
10564
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -9710,6 +10642,8 @@ export type UserUncheckedCreateWithoutCommentsInput = {
|
|
|
9710
10642
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
9711
10643
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
9712
10644
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
10645
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
10646
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
9713
10647
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
9714
10648
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
9715
10649
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -9809,6 +10743,8 @@ export type UserUpdateWithoutCommentsInput = {
|
|
|
9809
10743
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
9810
10744
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
9811
10745
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
10746
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
10747
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
9812
10748
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
9813
10749
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
9814
10750
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -9892,6 +10828,8 @@ export type UserUncheckedUpdateWithoutCommentsInput = {
|
|
|
9892
10828
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
9893
10829
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
9894
10830
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
10831
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
10832
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
9895
10833
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
9896
10834
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
9897
10835
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -9975,6 +10913,8 @@ export type UserCreateWithoutCommentIgnoresInput = {
|
|
|
9975
10913
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
9976
10914
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
9977
10915
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
10916
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
10917
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
9978
10918
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
9979
10919
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
9980
10920
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -10058,6 +10998,8 @@ export type UserUncheckedCreateWithoutCommentIgnoresInput = {
|
|
|
10058
10998
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
10059
10999
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
10060
11000
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
11001
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
11002
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
10061
11003
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
10062
11004
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
10063
11005
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -10157,6 +11099,8 @@ export type UserUpdateWithoutCommentIgnoresInput = {
|
|
|
10157
11099
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
10158
11100
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
10159
11101
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
11102
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
11103
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
10160
11104
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
10161
11105
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
10162
11106
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -10240,6 +11184,8 @@ export type UserUncheckedUpdateWithoutCommentIgnoresInput = {
|
|
|
10240
11184
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
10241
11185
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
10242
11186
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
11187
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
11188
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
10243
11189
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
10244
11190
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
10245
11191
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -10323,6 +11269,8 @@ export type UserCreateWithoutTagsInput = {
|
|
|
10323
11269
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
10324
11270
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
10325
11271
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
11272
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
11273
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
10326
11274
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
10327
11275
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
10328
11276
|
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
@@ -10406,6 +11354,8 @@ export type UserUncheckedCreateWithoutTagsInput = {
|
|
|
10406
11354
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
10407
11355
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
10408
11356
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
11357
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
11358
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
10409
11359
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
10410
11360
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
10411
11361
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
@@ -10505,6 +11455,8 @@ export type UserUpdateWithoutTagsInput = {
|
|
|
10505
11455
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
10506
11456
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
10507
11457
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
11458
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
11459
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
10508
11460
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
10509
11461
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
10510
11462
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
@@ -10588,6 +11540,8 @@ export type UserUncheckedUpdateWithoutTagsInput = {
|
|
|
10588
11540
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
10589
11541
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
10590
11542
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
11543
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
11544
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
10591
11545
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
10592
11546
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
10593
11547
|
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
@@ -10671,6 +11625,8 @@ export type UserCreateWithoutAnyhubAppsInput = {
|
|
|
10671
11625
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
10672
11626
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
10673
11627
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
11628
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
11629
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
10674
11630
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
10675
11631
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
10676
11632
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -10754,6 +11710,8 @@ export type UserUncheckedCreateWithoutAnyhubAppsInput = {
|
|
|
10754
11710
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
10755
11711
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
10756
11712
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
11713
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
11714
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
10757
11715
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
10758
11716
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
10759
11717
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -10853,6 +11811,8 @@ export type UserUpdateWithoutAnyhubAppsInput = {
|
|
|
10853
11811
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
10854
11812
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
10855
11813
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
11814
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
11815
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
10856
11816
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
10857
11817
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
10858
11818
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -10936,6 +11896,8 @@ export type UserUncheckedUpdateWithoutAnyhubAppsInput = {
|
|
|
10936
11896
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
10937
11897
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
10938
11898
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
11899
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
11900
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
10939
11901
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
10940
11902
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
10941
11903
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -11019,6 +11981,8 @@ export type UserCreateWithoutAnyhubMarketAppsInput = {
|
|
|
11019
11981
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
11020
11982
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
11021
11983
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
11984
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
11985
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
11022
11986
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
11023
11987
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
11024
11988
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -11102,6 +12066,8 @@ export type UserUncheckedCreateWithoutAnyhubMarketAppsInput = {
|
|
|
11102
12066
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
11103
12067
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
11104
12068
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
12069
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
12070
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
11105
12071
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
11106
12072
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
11107
12073
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -11201,6 +12167,8 @@ export type UserUpdateWithoutAnyhubMarketAppsInput = {
|
|
|
11201
12167
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
11202
12168
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
11203
12169
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
12170
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
12171
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
11204
12172
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
11205
12173
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
11206
12174
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -11284,6 +12252,8 @@ export type UserUncheckedUpdateWithoutAnyhubMarketAppsInput = {
|
|
|
11284
12252
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
11285
12253
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
11286
12254
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
12255
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
12256
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
11287
12257
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
11288
12258
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
11289
12259
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -11367,6 +12337,8 @@ export type UserCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
11367
12337
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
11368
12338
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
11369
12339
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
12340
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
12341
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
11370
12342
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
11371
12343
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
11372
12344
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -11450,6 +12422,8 @@ export type UserUncheckedCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
11450
12422
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
11451
12423
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
11452
12424
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
12425
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
12426
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
11453
12427
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
11454
12428
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
11455
12429
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -11549,6 +12523,8 @@ export type UserUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
11549
12523
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
11550
12524
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
11551
12525
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
12526
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
12527
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
11552
12528
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
11553
12529
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
11554
12530
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -11632,6 +12608,8 @@ export type UserUncheckedUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
11632
12608
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
11633
12609
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
11634
12610
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
12611
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
12612
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
11635
12613
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
11636
12614
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
11637
12615
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -11715,6 +12693,8 @@ export type UserCreateWithoutAnyhubRecommendersInput = {
|
|
|
11715
12693
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
11716
12694
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
11717
12695
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
12696
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
12697
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
11718
12698
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
11719
12699
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
11720
12700
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -11798,6 +12778,8 @@ export type UserUncheckedCreateWithoutAnyhubRecommendersInput = {
|
|
|
11798
12778
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
11799
12779
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
11800
12780
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
12781
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
12782
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
11801
12783
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
11802
12784
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
11803
12785
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -11897,6 +12879,8 @@ export type UserUpdateWithoutAnyhubRecommendersInput = {
|
|
|
11897
12879
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
11898
12880
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
11899
12881
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
12882
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
12883
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
11900
12884
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
11901
12885
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
11902
12886
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -11980,6 +12964,8 @@ export type UserUncheckedUpdateWithoutAnyhubRecommendersInput = {
|
|
|
11980
12964
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
11981
12965
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
11982
12966
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
12967
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
12968
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
11983
12969
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
11984
12970
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
11985
12971
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -12063,6 +13049,8 @@ export type UserCreateWithoutDesignProjectsInput = {
|
|
|
12063
13049
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
12064
13050
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
12065
13051
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
13052
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
13053
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
12066
13054
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
12067
13055
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
12068
13056
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -12146,6 +13134,8 @@ export type UserUncheckedCreateWithoutDesignProjectsInput = {
|
|
|
12146
13134
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
12147
13135
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
12148
13136
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13137
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13138
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
12149
13139
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
12150
13140
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
12151
13141
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -12245,6 +13235,8 @@ export type UserUpdateWithoutDesignProjectsInput = {
|
|
|
12245
13235
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
12246
13236
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
12247
13237
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
13238
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
13239
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
12248
13240
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
12249
13241
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
12250
13242
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -12328,6 +13320,8 @@ export type UserUncheckedUpdateWithoutDesignProjectsInput = {
|
|
|
12328
13320
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
12329
13321
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
12330
13322
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
13323
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
13324
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
12331
13325
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
12332
13326
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
12333
13327
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -12411,6 +13405,8 @@ export type UserCreateWithoutAiProviderConfigsInput = {
|
|
|
12411
13405
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
12412
13406
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
12413
13407
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
13408
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
13409
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
12414
13410
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
12415
13411
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
12416
13412
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -12494,6 +13490,8 @@ export type UserUncheckedCreateWithoutAiProviderConfigsInput = {
|
|
|
12494
13490
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
12495
13491
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
12496
13492
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13493
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13494
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
12497
13495
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
12498
13496
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
12499
13497
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -12593,6 +13591,8 @@ export type UserUpdateWithoutAiProviderConfigsInput = {
|
|
|
12593
13591
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
12594
13592
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
12595
13593
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
13594
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
13595
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
12596
13596
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
12597
13597
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
12598
13598
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -12676,6 +13676,8 @@ export type UserUncheckedUpdateWithoutAiProviderConfigsInput = {
|
|
|
12676
13676
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
12677
13677
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
12678
13678
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
13679
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
13680
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
12679
13681
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
12680
13682
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
12681
13683
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -12759,6 +13761,8 @@ export type UserCreateWithoutLegalRegulationsInput = {
|
|
|
12759
13761
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
12760
13762
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
12761
13763
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
13764
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
13765
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
12762
13766
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
12763
13767
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
12764
13768
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -12842,6 +13846,8 @@ export type UserUncheckedCreateWithoutLegalRegulationsInput = {
|
|
|
12842
13846
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
12843
13847
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
12844
13848
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13849
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13850
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
12845
13851
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
12846
13852
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
12847
13853
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -12941,6 +13947,8 @@ export type UserUpdateWithoutLegalRegulationsInput = {
|
|
|
12941
13947
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
12942
13948
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
12943
13949
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
13950
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
13951
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
12944
13952
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
12945
13953
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
12946
13954
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -13024,6 +14032,8 @@ export type UserUncheckedUpdateWithoutLegalRegulationsInput = {
|
|
|
13024
14032
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
13025
14033
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13026
14034
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
14035
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
14036
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
13027
14037
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
13028
14038
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
13029
14039
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -13107,6 +14117,8 @@ export type UserCreateWithoutIndustryCompliancesInput = {
|
|
|
13107
14117
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
13108
14118
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
13109
14119
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
14120
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
14121
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
13110
14122
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
13111
14123
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
13112
14124
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -13190,6 +14202,8 @@ export type UserUncheckedCreateWithoutIndustryCompliancesInput = {
|
|
|
13190
14202
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
13191
14203
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
13192
14204
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
14205
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
14206
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
13193
14207
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
13194
14208
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
13195
14209
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -13289,6 +14303,8 @@ export type UserUpdateWithoutIndustryCompliancesInput = {
|
|
|
13289
14303
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
13290
14304
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
13291
14305
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
14306
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
14307
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
13292
14308
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
13293
14309
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
13294
14310
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -13372,6 +14388,8 @@ export type UserUncheckedUpdateWithoutIndustryCompliancesInput = {
|
|
|
13372
14388
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
13373
14389
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13374
14390
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
14391
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
14392
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
13375
14393
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
13376
14394
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
13377
14395
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -13455,6 +14473,8 @@ export type UserCreateWithoutDictionaryTermsInput = {
|
|
|
13455
14473
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
13456
14474
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
13457
14475
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
14476
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
14477
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
13458
14478
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
13459
14479
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
13460
14480
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -13538,6 +14558,8 @@ export type UserUncheckedCreateWithoutDictionaryTermsInput = {
|
|
|
13538
14558
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
13539
14559
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
13540
14560
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
14561
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
14562
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
13541
14563
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
13542
14564
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
13543
14565
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -13637,6 +14659,8 @@ export type UserUpdateWithoutDictionaryTermsInput = {
|
|
|
13637
14659
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
13638
14660
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
13639
14661
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
14662
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
14663
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
13640
14664
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
13641
14665
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
13642
14666
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -13720,6 +14744,8 @@ export type UserUncheckedUpdateWithoutDictionaryTermsInput = {
|
|
|
13720
14744
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
13721
14745
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13722
14746
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
14747
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
14748
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
13723
14749
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
13724
14750
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
13725
14751
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -13803,6 +14829,8 @@ export type UserCreateWithoutWebsiteBookmarksInput = {
|
|
|
13803
14829
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
13804
14830
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
13805
14831
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
14832
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
14833
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
13806
14834
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
13807
14835
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
13808
14836
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -13886,6 +14914,8 @@ export type UserUncheckedCreateWithoutWebsiteBookmarksInput = {
|
|
|
13886
14914
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
13887
14915
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
13888
14916
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
14917
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
14918
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
13889
14919
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
13890
14920
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
13891
14921
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -13985,6 +15015,8 @@ export type UserUpdateWithoutWebsiteBookmarksInput = {
|
|
|
13985
15015
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
13986
15016
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
13987
15017
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
15018
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
15019
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
13988
15020
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
13989
15021
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
13990
15022
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -14068,6 +15100,8 @@ export type UserUncheckedUpdateWithoutWebsiteBookmarksInput = {
|
|
|
14068
15100
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
14069
15101
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
14070
15102
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
15103
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
15104
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
14071
15105
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
14072
15106
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
14073
15107
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -14151,6 +15185,8 @@ export type UserCreateWithoutBookmarkCategoriesInput = {
|
|
|
14151
15185
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
14152
15186
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
14153
15187
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
15188
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
15189
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
14154
15190
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
14155
15191
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
14156
15192
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -14234,6 +15270,8 @@ export type UserUncheckedCreateWithoutBookmarkCategoriesInput = {
|
|
|
14234
15270
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
14235
15271
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
14236
15272
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
15273
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
15274
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
14237
15275
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
14238
15276
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
14239
15277
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -14333,6 +15371,8 @@ export type UserUpdateWithoutBookmarkCategoriesInput = {
|
|
|
14333
15371
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
14334
15372
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
14335
15373
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
15374
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
15375
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
14336
15376
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
14337
15377
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
14338
15378
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -14416,6 +15456,8 @@ export type UserUncheckedUpdateWithoutBookmarkCategoriesInput = {
|
|
|
14416
15456
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
14417
15457
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
14418
15458
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
15459
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
15460
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
14419
15461
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
14420
15462
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
14421
15463
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -14499,6 +15541,8 @@ export type UserCreateWithoutKnowledgeSharesInput = {
|
|
|
14499
15541
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
14500
15542
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
14501
15543
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
15544
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
15545
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
14502
15546
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
14503
15547
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
14504
15548
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -14582,6 +15626,8 @@ export type UserUncheckedCreateWithoutKnowledgeSharesInput = {
|
|
|
14582
15626
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
14583
15627
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
14584
15628
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
15629
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
15630
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
14585
15631
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
14586
15632
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
14587
15633
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -14681,6 +15727,8 @@ export type UserUpdateWithoutKnowledgeSharesInput = {
|
|
|
14681
15727
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
14682
15728
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
14683
15729
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
15730
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
15731
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
14684
15732
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
14685
15733
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
14686
15734
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -14764,6 +15812,8 @@ export type UserUncheckedUpdateWithoutKnowledgeSharesInput = {
|
|
|
14764
15812
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
14765
15813
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
14766
15814
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
15815
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
15816
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
14767
15817
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
14768
15818
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
14769
15819
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -14847,6 +15897,8 @@ export type UserCreateWithoutArticleFavoritesInput = {
|
|
|
14847
15897
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
14848
15898
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
14849
15899
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
15900
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
15901
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
14850
15902
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
14851
15903
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
14852
15904
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -14930,6 +15982,8 @@ export type UserUncheckedCreateWithoutArticleFavoritesInput = {
|
|
|
14930
15982
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
14931
15983
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
14932
15984
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
15985
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
15986
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
14933
15987
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
14934
15988
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
14935
15989
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -15029,6 +16083,8 @@ export type UserUpdateWithoutArticleFavoritesInput = {
|
|
|
15029
16083
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
15030
16084
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
15031
16085
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
16086
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
16087
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
15032
16088
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
15033
16089
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
15034
16090
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -15112,6 +16168,8 @@ export type UserUncheckedUpdateWithoutArticleFavoritesInput = {
|
|
|
15112
16168
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
15113
16169
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
15114
16170
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
16171
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
16172
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
15115
16173
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
15116
16174
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
15117
16175
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -15195,6 +16253,8 @@ export type UserCreateWithoutStoriesAssignedInput = {
|
|
|
15195
16253
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
15196
16254
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
15197
16255
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
16256
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
16257
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
15198
16258
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
15199
16259
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
15200
16260
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -15278,6 +16338,8 @@ export type UserUncheckedCreateWithoutStoriesAssignedInput = {
|
|
|
15278
16338
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
15279
16339
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
15280
16340
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
16341
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
16342
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
15281
16343
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
15282
16344
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
15283
16345
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -15366,6 +16428,8 @@ export type UserCreateWithoutStoriesCreatedInput = {
|
|
|
15366
16428
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
15367
16429
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
15368
16430
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
16431
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
16432
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
15369
16433
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
15370
16434
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
15371
16435
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -15449,6 +16513,8 @@ export type UserUncheckedCreateWithoutStoriesCreatedInput = {
|
|
|
15449
16513
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
15450
16514
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
15451
16515
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
16516
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
16517
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
15452
16518
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
15453
16519
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
15454
16520
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -15537,6 +16603,8 @@ export type UserCreateWithoutStoriesEditedInput = {
|
|
|
15537
16603
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
15538
16604
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
15539
16605
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
16606
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
16607
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
15540
16608
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
15541
16609
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
15542
16610
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -15620,6 +16688,8 @@ export type UserUncheckedCreateWithoutStoriesEditedInput = {
|
|
|
15620
16688
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
15621
16689
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
15622
16690
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
16691
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
16692
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
15623
16693
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
15624
16694
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
15625
16695
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -15719,6 +16789,8 @@ export type UserUpdateWithoutStoriesAssignedInput = {
|
|
|
15719
16789
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
15720
16790
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
15721
16791
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
16792
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
16793
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
15722
16794
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
15723
16795
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
15724
16796
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -15802,6 +16874,8 @@ export type UserUncheckedUpdateWithoutStoriesAssignedInput = {
|
|
|
15802
16874
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
15803
16875
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
15804
16876
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
16877
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
16878
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
15805
16879
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
15806
16880
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
15807
16881
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -15896,6 +16970,8 @@ export type UserUpdateWithoutStoriesCreatedInput = {
|
|
|
15896
16970
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
15897
16971
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
15898
16972
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
16973
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
16974
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
15899
16975
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
15900
16976
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
15901
16977
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -15979,6 +17055,8 @@ export type UserUncheckedUpdateWithoutStoriesCreatedInput = {
|
|
|
15979
17055
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
15980
17056
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
15981
17057
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
17058
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
17059
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
15982
17060
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
15983
17061
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
15984
17062
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -16073,6 +17151,8 @@ export type UserUpdateWithoutStoriesEditedInput = {
|
|
|
16073
17151
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
16074
17152
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
16075
17153
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
17154
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
17155
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
16076
17156
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
16077
17157
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
16078
17158
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -16156,6 +17236,8 @@ export type UserUncheckedUpdateWithoutStoriesEditedInput = {
|
|
|
16156
17236
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
16157
17237
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
16158
17238
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
17239
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
17240
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
16159
17241
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
16160
17242
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
16161
17243
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -16239,6 +17321,8 @@ export type UserCreateWithoutLabelsCreatedInput = {
|
|
|
16239
17321
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
16240
17322
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
16241
17323
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
17324
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
17325
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
16242
17326
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
16243
17327
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
16244
17328
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -16322,6 +17406,8 @@ export type UserUncheckedCreateWithoutLabelsCreatedInput = {
|
|
|
16322
17406
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
16323
17407
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
16324
17408
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
17409
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
17410
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
16325
17411
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
16326
17412
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
16327
17413
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -16421,6 +17507,8 @@ export type UserUpdateWithoutLabelsCreatedInput = {
|
|
|
16421
17507
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
16422
17508
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
16423
17509
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
17510
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
17511
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
16424
17512
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
16425
17513
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
16426
17514
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -16504,6 +17592,8 @@ export type UserUncheckedUpdateWithoutLabelsCreatedInput = {
|
|
|
16504
17592
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
16505
17593
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
16506
17594
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
17595
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
17596
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
16507
17597
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
16508
17598
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
16509
17599
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -16587,6 +17677,8 @@ export type UserCreateWithoutStoryActivitiesInput = {
|
|
|
16587
17677
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
16588
17678
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
16589
17679
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
17680
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
17681
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
16590
17682
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
16591
17683
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
16592
17684
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -16670,6 +17762,8 @@ export type UserUncheckedCreateWithoutStoryActivitiesInput = {
|
|
|
16670
17762
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
16671
17763
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
16672
17764
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
17765
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
17766
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
16673
17767
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
16674
17768
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
16675
17769
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -16769,6 +17863,8 @@ export type UserUpdateWithoutStoryActivitiesInput = {
|
|
|
16769
17863
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
16770
17864
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
16771
17865
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
17866
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
17867
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
16772
17868
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
16773
17869
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
16774
17870
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -16852,6 +17948,8 @@ export type UserUncheckedUpdateWithoutStoryActivitiesInput = {
|
|
|
16852
17948
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
16853
17949
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
16854
17950
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
17951
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
17952
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
16855
17953
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
16856
17954
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
16857
17955
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -16935,6 +18033,8 @@ export type UserCreateWithoutStoryCommentsInput = {
|
|
|
16935
18033
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
16936
18034
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
16937
18035
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
18036
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
18037
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
16938
18038
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
16939
18039
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
16940
18040
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -17018,6 +18118,8 @@ export type UserUncheckedCreateWithoutStoryCommentsInput = {
|
|
|
17018
18118
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
17019
18119
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
17020
18120
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
18121
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
18122
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
17021
18123
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
17022
18124
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
17023
18125
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -17117,6 +18219,8 @@ export type UserUpdateWithoutStoryCommentsInput = {
|
|
|
17117
18219
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
17118
18220
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
17119
18221
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
18222
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
18223
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
17120
18224
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
17121
18225
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
17122
18226
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -17200,6 +18304,8 @@ export type UserUncheckedUpdateWithoutStoryCommentsInput = {
|
|
|
17200
18304
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
17201
18305
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
17202
18306
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
18307
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
18308
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
17203
18309
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
17204
18310
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
17205
18311
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -17283,6 +18389,8 @@ export type UserCreateWithoutStoryReactionsInput = {
|
|
|
17283
18389
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
17284
18390
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
17285
18391
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
18392
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
18393
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
17286
18394
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
17287
18395
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
17288
18396
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -17366,6 +18474,8 @@ export type UserUncheckedCreateWithoutStoryReactionsInput = {
|
|
|
17366
18474
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
17367
18475
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
17368
18476
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
18477
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
18478
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
17369
18479
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
17370
18480
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
17371
18481
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -17465,6 +18575,8 @@ export type UserUpdateWithoutStoryReactionsInput = {
|
|
|
17465
18575
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
17466
18576
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
17467
18577
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
18578
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
18579
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
17468
18580
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
17469
18581
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
17470
18582
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -17548,6 +18660,8 @@ export type UserUncheckedUpdateWithoutStoryReactionsInput = {
|
|
|
17548
18660
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
17549
18661
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
17550
18662
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
18663
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
18664
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
17551
18665
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
17552
18666
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
17553
18667
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -17631,6 +18745,8 @@ export type UserCreateWithoutCommentReactionsInput = {
|
|
|
17631
18745
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
17632
18746
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
17633
18747
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
18748
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
18749
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
17634
18750
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
17635
18751
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
17636
18752
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -17714,6 +18830,8 @@ export type UserUncheckedCreateWithoutCommentReactionsInput = {
|
|
|
17714
18830
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
17715
18831
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
17716
18832
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
18833
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
18834
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
17717
18835
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
17718
18836
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
17719
18837
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -17813,6 +18931,8 @@ export type UserUpdateWithoutCommentReactionsInput = {
|
|
|
17813
18931
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
17814
18932
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
17815
18933
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
18934
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
18935
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
17816
18936
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
17817
18937
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
17818
18938
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -17896,6 +19016,8 @@ export type UserUncheckedUpdateWithoutCommentReactionsInput = {
|
|
|
17896
19016
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
17897
19017
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
17898
19018
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
19019
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
19020
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
17899
19021
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
17900
19022
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
17901
19023
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -17979,6 +19101,8 @@ export type UserCreateWithoutCreatedQuickDocsInput = {
|
|
|
17979
19101
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
17980
19102
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
17981
19103
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
19104
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
19105
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
17982
19106
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
17983
19107
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
17984
19108
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -18062,6 +19186,8 @@ export type UserUncheckedCreateWithoutCreatedQuickDocsInput = {
|
|
|
18062
19186
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
18063
19187
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
18064
19188
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
19189
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
19190
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
18065
19191
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
18066
19192
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
18067
19193
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -18161,6 +19287,8 @@ export type UserUpdateWithoutCreatedQuickDocsInput = {
|
|
|
18161
19287
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
18162
19288
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
18163
19289
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
19290
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
19291
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
18164
19292
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
18165
19293
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
18166
19294
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -18244,6 +19372,8 @@ export type UserUncheckedUpdateWithoutCreatedQuickDocsInput = {
|
|
|
18244
19372
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
18245
19373
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
18246
19374
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
19375
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
19376
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
18247
19377
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
18248
19378
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
18249
19379
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -18327,6 +19457,8 @@ export type UserCreateWithoutStoryFilterViewsInput = {
|
|
|
18327
19457
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
18328
19458
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
18329
19459
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
19460
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
19461
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
18330
19462
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
18331
19463
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
18332
19464
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -18410,6 +19542,8 @@ export type UserUncheckedCreateWithoutStoryFilterViewsInput = {
|
|
|
18410
19542
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
18411
19543
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
18412
19544
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
19545
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
19546
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
18413
19547
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
18414
19548
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
18415
19549
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -18509,6 +19643,8 @@ export type UserUpdateWithoutStoryFilterViewsInput = {
|
|
|
18509
19643
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
18510
19644
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
18511
19645
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
19646
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
19647
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
18512
19648
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
18513
19649
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
18514
19650
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -18592,6 +19728,8 @@ export type UserUncheckedUpdateWithoutStoryFilterViewsInput = {
|
|
|
18592
19728
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
18593
19729
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
18594
19730
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
19731
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
19732
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
18595
19733
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
18596
19734
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
18597
19735
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -18675,6 +19813,8 @@ export type UserCreateWithoutSubscriptionInput = {
|
|
|
18675
19813
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
18676
19814
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
18677
19815
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
19816
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
19817
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
18678
19818
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
18679
19819
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
18680
19820
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -18758,6 +19898,8 @@ export type UserUncheckedCreateWithoutSubscriptionInput = {
|
|
|
18758
19898
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
18759
19899
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
18760
19900
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
19901
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
19902
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
18761
19903
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
18762
19904
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
18763
19905
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -18857,6 +19999,8 @@ export type UserUpdateWithoutSubscriptionInput = {
|
|
|
18857
19999
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
18858
20000
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
18859
20001
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
20002
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
20003
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
18860
20004
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
18861
20005
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
18862
20006
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -18940,6 +20084,8 @@ export type UserUncheckedUpdateWithoutSubscriptionInput = {
|
|
|
18940
20084
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
18941
20085
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
18942
20086
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
20087
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
20088
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
18943
20089
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
18944
20090
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
18945
20091
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -19023,6 +20169,8 @@ export type UserCreateWithoutAiUsageLogsInput = {
|
|
|
19023
20169
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
19024
20170
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
19025
20171
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
20172
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
20173
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
19026
20174
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
19027
20175
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
19028
20176
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -19106,6 +20254,8 @@ export type UserUncheckedCreateWithoutAiUsageLogsInput = {
|
|
|
19106
20254
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
19107
20255
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
19108
20256
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
20257
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
20258
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
19109
20259
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
19110
20260
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
19111
20261
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -19205,6 +20355,8 @@ export type UserUpdateWithoutAiUsageLogsInput = {
|
|
|
19205
20355
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
19206
20356
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
19207
20357
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
20358
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
20359
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
19208
20360
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
19209
20361
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
19210
20362
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -19288,6 +20440,8 @@ export type UserUncheckedUpdateWithoutAiUsageLogsInput = {
|
|
|
19288
20440
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
19289
20441
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
19290
20442
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
20443
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
20444
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
19291
20445
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
19292
20446
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
19293
20447
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -19371,6 +20525,8 @@ export type UserCreateWithoutIssuedLicensesInput = {
|
|
|
19371
20525
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
19372
20526
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
19373
20527
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
20528
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
20529
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
19374
20530
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
19375
20531
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
19376
20532
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -19454,6 +20610,8 @@ export type UserUncheckedCreateWithoutIssuedLicensesInput = {
|
|
|
19454
20610
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
19455
20611
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
19456
20612
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
20613
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
20614
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
19457
20615
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
19458
20616
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
19459
20617
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -19553,6 +20711,8 @@ export type UserUpdateWithoutIssuedLicensesInput = {
|
|
|
19553
20711
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
19554
20712
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
19555
20713
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
20714
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
20715
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
19556
20716
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
19557
20717
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
19558
20718
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -19636,6 +20796,8 @@ export type UserUncheckedUpdateWithoutIssuedLicensesInput = {
|
|
|
19636
20796
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
19637
20797
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
19638
20798
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
20799
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
20800
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
19639
20801
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
19640
20802
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
19641
20803
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -19719,6 +20881,8 @@ export type UserCreateWithoutSsoMappingsInput = {
|
|
|
19719
20881
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
19720
20882
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
19721
20883
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
20884
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
20885
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
19722
20886
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
19723
20887
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
19724
20888
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -19802,6 +20966,8 @@ export type UserUncheckedCreateWithoutSsoMappingsInput = {
|
|
|
19802
20966
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
19803
20967
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
19804
20968
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
20969
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
20970
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
19805
20971
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
19806
20972
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
19807
20973
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -19901,6 +21067,8 @@ export type UserUpdateWithoutSsoMappingsInput = {
|
|
|
19901
21067
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
19902
21068
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
19903
21069
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
21070
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
21071
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
19904
21072
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
19905
21073
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
19906
21074
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -19984,6 +21152,8 @@ export type UserUncheckedUpdateWithoutSsoMappingsInput = {
|
|
|
19984
21152
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
19985
21153
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
19986
21154
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
21155
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
21156
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
19987
21157
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
19988
21158
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
19989
21159
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -20067,6 +21237,8 @@ export type UserCreateWithoutRoleAssignmentsInput = {
|
|
|
20067
21237
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
20068
21238
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
20069
21239
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
21240
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
21241
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
20070
21242
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
20071
21243
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
20072
21244
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -20150,6 +21322,8 @@ export type UserUncheckedCreateWithoutRoleAssignmentsInput = {
|
|
|
20150
21322
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
20151
21323
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
20152
21324
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
21325
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
21326
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
20153
21327
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
20154
21328
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
20155
21329
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -20249,6 +21423,8 @@ export type UserUpdateWithoutRoleAssignmentsInput = {
|
|
|
20249
21423
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
20250
21424
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
20251
21425
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
21426
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
21427
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
20252
21428
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
20253
21429
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
20254
21430
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -20332,6 +21508,8 @@ export type UserUncheckedUpdateWithoutRoleAssignmentsInput = {
|
|
|
20332
21508
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
20333
21509
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
20334
21510
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
21511
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
21512
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
20335
21513
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
20336
21514
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
20337
21515
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -20415,6 +21593,8 @@ export type UserCreateWithoutAgentsInput = {
|
|
|
20415
21593
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
20416
21594
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
20417
21595
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
21596
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
21597
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
20418
21598
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
20419
21599
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
20420
21600
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -20498,6 +21678,8 @@ export type UserUncheckedCreateWithoutAgentsInput = {
|
|
|
20498
21678
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
20499
21679
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
20500
21680
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
21681
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
21682
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
20501
21683
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
20502
21684
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
20503
21685
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -20597,6 +21779,8 @@ export type UserUpdateWithoutAgentsInput = {
|
|
|
20597
21779
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
20598
21780
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
20599
21781
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
21782
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
21783
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
20600
21784
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
20601
21785
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
20602
21786
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -20680,6 +21864,8 @@ export type UserUncheckedUpdateWithoutAgentsInput = {
|
|
|
20680
21864
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
20681
21865
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
20682
21866
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
21867
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
21868
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
20683
21869
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
20684
21870
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
20685
21871
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -20763,6 +21949,8 @@ export type UserCreateWithoutSkillsInput = {
|
|
|
20763
21949
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
20764
21950
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
20765
21951
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
21952
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
21953
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
20766
21954
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
20767
21955
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
20768
21956
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -20846,6 +22034,8 @@ export type UserUncheckedCreateWithoutSkillsInput = {
|
|
|
20846
22034
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
20847
22035
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
20848
22036
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
22037
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
22038
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
20849
22039
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
20850
22040
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
20851
22041
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -20945,6 +22135,8 @@ export type UserUpdateWithoutSkillsInput = {
|
|
|
20945
22135
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
20946
22136
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
20947
22137
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
22138
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
22139
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
20948
22140
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
20949
22141
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
20950
22142
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -21028,6 +22220,8 @@ export type UserUncheckedUpdateWithoutSkillsInput = {
|
|
|
21028
22220
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
21029
22221
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
21030
22222
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
22223
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
22224
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
21031
22225
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
21032
22226
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
21033
22227
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -21111,6 +22305,8 @@ export type UserCreateWithoutNotificationsInput = {
|
|
|
21111
22305
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
21112
22306
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
21113
22307
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
22308
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
22309
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
21114
22310
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
21115
22311
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
21116
22312
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -21194,6 +22390,8 @@ export type UserUncheckedCreateWithoutNotificationsInput = {
|
|
|
21194
22390
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
21195
22391
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
21196
22392
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
22393
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
22394
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
21197
22395
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
21198
22396
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
21199
22397
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -21293,6 +22491,8 @@ export type UserUpdateWithoutNotificationsInput = {
|
|
|
21293
22491
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
21294
22492
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
21295
22493
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
22494
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
22495
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
21296
22496
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
21297
22497
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
21298
22498
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -21376,6 +22576,8 @@ export type UserUncheckedUpdateWithoutNotificationsInput = {
|
|
|
21376
22576
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
21377
22577
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
21378
22578
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
22579
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
22580
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
21379
22581
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
21380
22582
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
21381
22583
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -21459,6 +22661,8 @@ export type UserCreateWithoutNotificationPreferenceInput = {
|
|
|
21459
22661
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
21460
22662
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
21461
22663
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
22664
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
22665
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
21462
22666
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
21463
22667
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
21464
22668
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -21542,6 +22746,8 @@ export type UserUncheckedCreateWithoutNotificationPreferenceInput = {
|
|
|
21542
22746
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
21543
22747
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
21544
22748
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
22749
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
22750
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
21545
22751
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
21546
22752
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
21547
22753
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -21641,6 +22847,8 @@ export type UserUpdateWithoutNotificationPreferenceInput = {
|
|
|
21641
22847
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
21642
22848
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
21643
22849
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
22850
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
22851
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
21644
22852
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
21645
22853
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
21646
22854
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -21724,6 +22932,8 @@ export type UserUncheckedUpdateWithoutNotificationPreferenceInput = {
|
|
|
21724
22932
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
21725
22933
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
21726
22934
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
22935
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
22936
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
21727
22937
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
21728
22938
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
21729
22939
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -21807,6 +23017,8 @@ export type UserCreateWithoutIterationsCreatedInput = {
|
|
|
21807
23017
|
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
21808
23018
|
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
21809
23019
|
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
23020
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenCreateNestedManyWithoutUserInput
|
|
23021
|
+
emailPreference?: Prisma.EmailPreferenceCreateNestedOneWithoutUserInput
|
|
21810
23022
|
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
21811
23023
|
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
21812
23024
|
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
@@ -21890,6 +23102,8 @@ export type UserUncheckedCreateWithoutIterationsCreatedInput = {
|
|
|
21890
23102
|
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
21891
23103
|
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
21892
23104
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
23105
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedCreateNestedManyWithoutUserInput
|
|
23106
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
21893
23107
|
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
21894
23108
|
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
21895
23109
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
@@ -21989,6 +23203,8 @@ export type UserUpdateWithoutIterationsCreatedInput = {
|
|
|
21989
23203
|
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
21990
23204
|
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
21991
23205
|
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
23206
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUpdateManyWithoutUserNestedInput
|
|
23207
|
+
emailPreference?: Prisma.EmailPreferenceUpdateOneWithoutUserNestedInput
|
|
21992
23208
|
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
21993
23209
|
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
21994
23210
|
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
@@ -22072,6 +23288,8 @@ export type UserUncheckedUpdateWithoutIterationsCreatedInput = {
|
|
|
22072
23288
|
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
22073
23289
|
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
22074
23290
|
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
23291
|
+
emailVerificationTokens?: Prisma.EmailVerificationTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
23292
|
+
emailPreference?: Prisma.EmailPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
22075
23293
|
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
22076
23294
|
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
22077
23295
|
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
@@ -22137,6 +23355,7 @@ export type UserCountOutputType = {
|
|
|
22137
23355
|
invitationUses: number
|
|
22138
23356
|
loginLogs: number
|
|
22139
23357
|
passwordResetTokens: number
|
|
23358
|
+
emailVerificationTokens: number
|
|
22140
23359
|
prds: number
|
|
22141
23360
|
tags: number
|
|
22142
23361
|
knowledgeBases: number
|
|
@@ -22195,6 +23414,7 @@ export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.I
|
|
|
22195
23414
|
invitationUses?: boolean | UserCountOutputTypeCountInvitationUsesArgs
|
|
22196
23415
|
loginLogs?: boolean | UserCountOutputTypeCountLoginLogsArgs
|
|
22197
23416
|
passwordResetTokens?: boolean | UserCountOutputTypeCountPasswordResetTokensArgs
|
|
23417
|
+
emailVerificationTokens?: boolean | UserCountOutputTypeCountEmailVerificationTokensArgs
|
|
22198
23418
|
prds?: boolean | UserCountOutputTypeCountPrdsArgs
|
|
22199
23419
|
tags?: boolean | UserCountOutputTypeCountTagsArgs
|
|
22200
23420
|
knowledgeBases?: boolean | UserCountOutputTypeCountKnowledgeBasesArgs
|
|
@@ -22286,6 +23506,13 @@ export type UserCountOutputTypeCountPasswordResetTokensArgs<ExtArgs extends runt
|
|
|
22286
23506
|
where?: Prisma.PasswordResetTokenWhereInput
|
|
22287
23507
|
}
|
|
22288
23508
|
|
|
23509
|
+
/**
|
|
23510
|
+
* UserCountOutputType without action
|
|
23511
|
+
*/
|
|
23512
|
+
export type UserCountOutputTypeCountEmailVerificationTokensArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
23513
|
+
where?: Prisma.EmailVerificationTokenWhereInput
|
|
23514
|
+
}
|
|
23515
|
+
|
|
22289
23516
|
/**
|
|
22290
23517
|
* UserCountOutputType without action
|
|
22291
23518
|
*/
|
|
@@ -22672,6 +23899,8 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
22672
23899
|
invitationUses?: boolean | Prisma.User$invitationUsesArgs<ExtArgs>
|
|
22673
23900
|
loginLogs?: boolean | Prisma.User$loginLogsArgs<ExtArgs>
|
|
22674
23901
|
passwordResetTokens?: boolean | Prisma.User$passwordResetTokensArgs<ExtArgs>
|
|
23902
|
+
emailVerificationTokens?: boolean | Prisma.User$emailVerificationTokensArgs<ExtArgs>
|
|
23903
|
+
emailPreference?: boolean | Prisma.User$emailPreferenceArgs<ExtArgs>
|
|
22675
23904
|
prds?: boolean | Prisma.User$prdsArgs<ExtArgs>
|
|
22676
23905
|
tags?: boolean | Prisma.User$tagsArgs<ExtArgs>
|
|
22677
23906
|
knowledgeBases?: boolean | Prisma.User$knowledgeBasesArgs<ExtArgs>
|
|
@@ -22813,6 +24042,8 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
22813
24042
|
invitationUses?: boolean | Prisma.User$invitationUsesArgs<ExtArgs>
|
|
22814
24043
|
loginLogs?: boolean | Prisma.User$loginLogsArgs<ExtArgs>
|
|
22815
24044
|
passwordResetTokens?: boolean | Prisma.User$passwordResetTokensArgs<ExtArgs>
|
|
24045
|
+
emailVerificationTokens?: boolean | Prisma.User$emailVerificationTokensArgs<ExtArgs>
|
|
24046
|
+
emailPreference?: boolean | Prisma.User$emailPreferenceArgs<ExtArgs>
|
|
22816
24047
|
prds?: boolean | Prisma.User$prdsArgs<ExtArgs>
|
|
22817
24048
|
tags?: boolean | Prisma.User$tagsArgs<ExtArgs>
|
|
22818
24049
|
knowledgeBases?: boolean | Prisma.User$knowledgeBasesArgs<ExtArgs>
|
|
@@ -22879,6 +24110,8 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
22879
24110
|
invitationUses: Prisma.$InvitationUsePayload<ExtArgs>[]
|
|
22880
24111
|
loginLogs: Prisma.$LoginLogPayload<ExtArgs>[]
|
|
22881
24112
|
passwordResetTokens: Prisma.$PasswordResetTokenPayload<ExtArgs>[]
|
|
24113
|
+
emailVerificationTokens: Prisma.$EmailVerificationTokenPayload<ExtArgs>[]
|
|
24114
|
+
emailPreference: Prisma.$EmailPreferencePayload<ExtArgs> | null
|
|
22882
24115
|
prds: Prisma.$PRDPayload<ExtArgs>[]
|
|
22883
24116
|
tags: Prisma.$TagPayload<ExtArgs>[]
|
|
22884
24117
|
knowledgeBases: Prisma.$KnowledgeBasePayload<ExtArgs>[]
|
|
@@ -23362,6 +24595,8 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
23362
24595
|
invitationUses<T extends Prisma.User$invitationUsesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$invitationUsesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$InvitationUsePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
23363
24596
|
loginLogs<T extends Prisma.User$loginLogsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$loginLogsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$LoginLogPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
23364
24597
|
passwordResetTokens<T extends Prisma.User$passwordResetTokensArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$passwordResetTokensArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PasswordResetTokenPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
24598
|
+
emailVerificationTokens<T extends Prisma.User$emailVerificationTokensArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$emailVerificationTokensArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$EmailVerificationTokenPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
24599
|
+
emailPreference<T extends Prisma.User$emailPreferenceArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$emailPreferenceArgs<ExtArgs>>): Prisma.Prisma__EmailPreferenceClient<runtime.Types.Result.GetResult<Prisma.$EmailPreferencePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
23365
24600
|
prds<T extends Prisma.User$prdsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$prdsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$PRDPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
23366
24601
|
tags<T extends Prisma.User$tagsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$tagsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$TagPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
23367
24602
|
knowledgeBases<T extends Prisma.User$knowledgeBasesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$knowledgeBasesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$KnowledgeBasePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
@@ -23956,6 +25191,49 @@ export type User$passwordResetTokensArgs<ExtArgs extends runtime.Types.Extension
|
|
|
23956
25191
|
distinct?: Prisma.PasswordResetTokenScalarFieldEnum | Prisma.PasswordResetTokenScalarFieldEnum[]
|
|
23957
25192
|
}
|
|
23958
25193
|
|
|
25194
|
+
/**
|
|
25195
|
+
* User.emailVerificationTokens
|
|
25196
|
+
*/
|
|
25197
|
+
export type User$emailVerificationTokensArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
25198
|
+
/**
|
|
25199
|
+
* Select specific fields to fetch from the EmailVerificationToken
|
|
25200
|
+
*/
|
|
25201
|
+
select?: Prisma.EmailVerificationTokenSelect<ExtArgs> | null
|
|
25202
|
+
/**
|
|
25203
|
+
* Omit specific fields from the EmailVerificationToken
|
|
25204
|
+
*/
|
|
25205
|
+
omit?: Prisma.EmailVerificationTokenOmit<ExtArgs> | null
|
|
25206
|
+
/**
|
|
25207
|
+
* Choose, which related nodes to fetch as well
|
|
25208
|
+
*/
|
|
25209
|
+
include?: Prisma.EmailVerificationTokenInclude<ExtArgs> | null
|
|
25210
|
+
where?: Prisma.EmailVerificationTokenWhereInput
|
|
25211
|
+
orderBy?: Prisma.EmailVerificationTokenOrderByWithRelationInput | Prisma.EmailVerificationTokenOrderByWithRelationInput[]
|
|
25212
|
+
cursor?: Prisma.EmailVerificationTokenWhereUniqueInput
|
|
25213
|
+
take?: number
|
|
25214
|
+
skip?: number
|
|
25215
|
+
distinct?: Prisma.EmailVerificationTokenScalarFieldEnum | Prisma.EmailVerificationTokenScalarFieldEnum[]
|
|
25216
|
+
}
|
|
25217
|
+
|
|
25218
|
+
/**
|
|
25219
|
+
* User.emailPreference
|
|
25220
|
+
*/
|
|
25221
|
+
export type User$emailPreferenceArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
25222
|
+
/**
|
|
25223
|
+
* Select specific fields to fetch from the EmailPreference
|
|
25224
|
+
*/
|
|
25225
|
+
select?: Prisma.EmailPreferenceSelect<ExtArgs> | null
|
|
25226
|
+
/**
|
|
25227
|
+
* Omit specific fields from the EmailPreference
|
|
25228
|
+
*/
|
|
25229
|
+
omit?: Prisma.EmailPreferenceOmit<ExtArgs> | null
|
|
25230
|
+
/**
|
|
25231
|
+
* Choose, which related nodes to fetch as well
|
|
25232
|
+
*/
|
|
25233
|
+
include?: Prisma.EmailPreferenceInclude<ExtArgs> | null
|
|
25234
|
+
where?: Prisma.EmailPreferenceWhereInput
|
|
25235
|
+
}
|
|
25236
|
+
|
|
23959
25237
|
/**
|
|
23960
25238
|
* User.prds
|
|
23961
25239
|
*/
|