@allbluecn/database 0.4.15 → 0.4.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/generated/browser.ts +20 -0
- package/generated/client.ts +20 -0
- package/generated/commonInputTypes.ts +34 -0
- package/generated/internal/class.ts +44 -4
- package/generated/internal/prismaNamespace.ts +378 -3
- package/generated/internal/prismaNamespaceBrowser.ts +63 -2
- package/generated/models/Iteration.ts +1878 -0
- package/generated/models/IterationAutoSchedule.ts +1485 -0
- package/generated/models/KnowledgeBase.ts +138 -0
- package/generated/models/Project.ts +484 -0
- package/generated/models/ProjectKnowledgeBase.ts +1430 -0
- package/generated/models/Story.ts +663 -3
- package/generated/models/StoryAttachment.ts +110 -1
- package/generated/models/StoryExternalLink.ts +1352 -0
- package/generated/models/User.ts +618 -0
- package/generated/models.ts +4 -0
- package/generated-sqlite/browser.ts +20 -0
- package/generated-sqlite/client.ts +20 -0
- package/generated-sqlite/internal/class.ts +44 -4
- package/generated-sqlite/internal/prismaNamespace.ts +374 -2
- package/generated-sqlite/internal/prismaNamespaceBrowser.ts +73 -1
- package/generated-sqlite/models/Iteration.ts +1874 -0
- package/generated-sqlite/models/IterationAutoSchedule.ts +1483 -0
- package/generated-sqlite/models/KnowledgeBase.ts +138 -0
- package/generated-sqlite/models/Project.ts +634 -0
- package/generated-sqlite/models/ProjectKnowledgeBase.ts +1426 -0
- package/generated-sqlite/models/Story.ts +3263 -0
- package/generated-sqlite/models/User.ts +2103 -107
- package/generated-sqlite/models.ts +4 -0
- package/index.ts +2 -2
- package/migrations/20260831063744_project_knowledge_base/migration.sql +24 -0
- package/migrations/20260831123150_story_external_link/migration.sql +19 -0
- package/migrations/20260831151740_story_attachment_bytes/migration.sql +2 -0
- package/migrations/20260831203925_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901010000_story_attachment_description/migration.sql +2 -0
- package/migrations/20260901020000_story_attachment_file_hash/migration.sql +2 -0
- package/migrations/20260901134601_iterations/migration.sql +52 -0
- package/migrations/20260902000000_story_identifier_per_project/migration.sql +37 -0
- package/migrations/20260902000100_story_identifier_counter_init/migration.sql +11 -0
- package/package.json +12 -5
- package/schema.prisma +98 -17
- package/schema.sqlite.prisma +112 -9
|
@@ -327,6 +327,10 @@ export type UserWhereInput = {
|
|
|
327
327
|
agentConversations?: Prisma.AgentConversationListRelationFilter
|
|
328
328
|
ownedProjects?: Prisma.ProjectListRelationFilter
|
|
329
329
|
projectMemberships?: Prisma.ProjectMemberListRelationFilter
|
|
330
|
+
iterationsCreated?: Prisma.IterationListRelationFilter
|
|
331
|
+
storiesCreated?: Prisma.StoryListRelationFilter
|
|
332
|
+
storiesAssigned?: Prisma.StoryListRelationFilter
|
|
333
|
+
storiesEdited?: Prisma.StoryListRelationFilter
|
|
330
334
|
projectActivities?: Prisma.ProjectActivityListRelationFilter
|
|
331
335
|
ownedWorkspaces?: Prisma.WorkspaceListRelationFilter
|
|
332
336
|
workspaceMemberships?: Prisma.TeamMembershipListRelationFilter
|
|
@@ -390,6 +394,10 @@ export type UserOrderByWithRelationInput = {
|
|
|
390
394
|
agentConversations?: Prisma.AgentConversationOrderByRelationAggregateInput
|
|
391
395
|
ownedProjects?: Prisma.ProjectOrderByRelationAggregateInput
|
|
392
396
|
projectMemberships?: Prisma.ProjectMemberOrderByRelationAggregateInput
|
|
397
|
+
iterationsCreated?: Prisma.IterationOrderByRelationAggregateInput
|
|
398
|
+
storiesCreated?: Prisma.StoryOrderByRelationAggregateInput
|
|
399
|
+
storiesAssigned?: Prisma.StoryOrderByRelationAggregateInput
|
|
400
|
+
storiesEdited?: Prisma.StoryOrderByRelationAggregateInput
|
|
393
401
|
projectActivities?: Prisma.ProjectActivityOrderByRelationAggregateInput
|
|
394
402
|
ownedWorkspaces?: Prisma.WorkspaceOrderByRelationAggregateInput
|
|
395
403
|
workspaceMemberships?: Prisma.TeamMembershipOrderByRelationAggregateInput
|
|
@@ -456,6 +464,10 @@ export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
|
456
464
|
agentConversations?: Prisma.AgentConversationListRelationFilter
|
|
457
465
|
ownedProjects?: Prisma.ProjectListRelationFilter
|
|
458
466
|
projectMemberships?: Prisma.ProjectMemberListRelationFilter
|
|
467
|
+
iterationsCreated?: Prisma.IterationListRelationFilter
|
|
468
|
+
storiesCreated?: Prisma.StoryListRelationFilter
|
|
469
|
+
storiesAssigned?: Prisma.StoryListRelationFilter
|
|
470
|
+
storiesEdited?: Prisma.StoryListRelationFilter
|
|
459
471
|
projectActivities?: Prisma.ProjectActivityListRelationFilter
|
|
460
472
|
ownedWorkspaces?: Prisma.WorkspaceListRelationFilter
|
|
461
473
|
workspaceMemberships?: Prisma.TeamMembershipListRelationFilter
|
|
@@ -571,6 +583,10 @@ export type UserCreateInput = {
|
|
|
571
583
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
572
584
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
573
585
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
586
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
587
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
588
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
589
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
574
590
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
575
591
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
576
592
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -634,6 +650,10 @@ export type UserUncheckedCreateInput = {
|
|
|
634
650
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
635
651
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
636
652
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
653
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
654
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
655
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
656
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
637
657
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
638
658
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
639
659
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -697,6 +717,10 @@ export type UserUpdateInput = {
|
|
|
697
717
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
698
718
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
699
719
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
720
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
721
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
722
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
723
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
700
724
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
701
725
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
702
726
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -760,6 +784,10 @@ export type UserUncheckedUpdateInput = {
|
|
|
760
784
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
761
785
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
762
786
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
787
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
788
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
789
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
790
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
763
791
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
764
792
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
765
793
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -1491,6 +1519,66 @@ export type UserUpdateOneRequiredWithoutSkillsNestedInput = {
|
|
|
1491
1519
|
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutSkillsInput, Prisma.UserUpdateWithoutSkillsInput>, Prisma.UserUncheckedUpdateWithoutSkillsInput>
|
|
1492
1520
|
}
|
|
1493
1521
|
|
|
1522
|
+
export type UserCreateNestedOneWithoutStoriesAssignedInput = {
|
|
1523
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutStoriesAssignedInput, Prisma.UserUncheckedCreateWithoutStoriesAssignedInput>
|
|
1524
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStoriesAssignedInput
|
|
1525
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
export type UserCreateNestedOneWithoutStoriesCreatedInput = {
|
|
1529
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutStoriesCreatedInput, Prisma.UserUncheckedCreateWithoutStoriesCreatedInput>
|
|
1530
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStoriesCreatedInput
|
|
1531
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
export type UserCreateNestedOneWithoutStoriesEditedInput = {
|
|
1535
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutStoriesEditedInput, Prisma.UserUncheckedCreateWithoutStoriesEditedInput>
|
|
1536
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStoriesEditedInput
|
|
1537
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1538
|
+
}
|
|
1539
|
+
|
|
1540
|
+
export type UserUpdateOneWithoutStoriesAssignedNestedInput = {
|
|
1541
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutStoriesAssignedInput, Prisma.UserUncheckedCreateWithoutStoriesAssignedInput>
|
|
1542
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStoriesAssignedInput
|
|
1543
|
+
upsert?: Prisma.UserUpsertWithoutStoriesAssignedInput
|
|
1544
|
+
disconnect?: Prisma.UserWhereInput | boolean
|
|
1545
|
+
delete?: Prisma.UserWhereInput | boolean
|
|
1546
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1547
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutStoriesAssignedInput, Prisma.UserUpdateWithoutStoriesAssignedInput>, Prisma.UserUncheckedUpdateWithoutStoriesAssignedInput>
|
|
1548
|
+
}
|
|
1549
|
+
|
|
1550
|
+
export type UserUpdateOneRequiredWithoutStoriesCreatedNestedInput = {
|
|
1551
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutStoriesCreatedInput, Prisma.UserUncheckedCreateWithoutStoriesCreatedInput>
|
|
1552
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStoriesCreatedInput
|
|
1553
|
+
upsert?: Prisma.UserUpsertWithoutStoriesCreatedInput
|
|
1554
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1555
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutStoriesCreatedInput, Prisma.UserUpdateWithoutStoriesCreatedInput>, Prisma.UserUncheckedUpdateWithoutStoriesCreatedInput>
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
export type UserUpdateOneWithoutStoriesEditedNestedInput = {
|
|
1559
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutStoriesEditedInput, Prisma.UserUncheckedCreateWithoutStoriesEditedInput>
|
|
1560
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutStoriesEditedInput
|
|
1561
|
+
upsert?: Prisma.UserUpsertWithoutStoriesEditedInput
|
|
1562
|
+
disconnect?: Prisma.UserWhereInput | boolean
|
|
1563
|
+
delete?: Prisma.UserWhereInput | boolean
|
|
1564
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1565
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutStoriesEditedInput, Prisma.UserUpdateWithoutStoriesEditedInput>, Prisma.UserUncheckedUpdateWithoutStoriesEditedInput>
|
|
1566
|
+
}
|
|
1567
|
+
|
|
1568
|
+
export type UserCreateNestedOneWithoutIterationsCreatedInput = {
|
|
1569
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutIterationsCreatedInput, Prisma.UserUncheckedCreateWithoutIterationsCreatedInput>
|
|
1570
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutIterationsCreatedInput
|
|
1571
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1572
|
+
}
|
|
1573
|
+
|
|
1574
|
+
export type UserUpdateOneRequiredWithoutIterationsCreatedNestedInput = {
|
|
1575
|
+
create?: Prisma.XOR<Prisma.UserCreateWithoutIterationsCreatedInput, Prisma.UserUncheckedCreateWithoutIterationsCreatedInput>
|
|
1576
|
+
connectOrCreate?: Prisma.UserCreateOrConnectWithoutIterationsCreatedInput
|
|
1577
|
+
upsert?: Prisma.UserUpsertWithoutIterationsCreatedInput
|
|
1578
|
+
connect?: Prisma.UserWhereUniqueInput
|
|
1579
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.UserUpdateToOneWithWhereWithoutIterationsCreatedInput, Prisma.UserUpdateWithoutIterationsCreatedInput>, Prisma.UserUncheckedUpdateWithoutIterationsCreatedInput>
|
|
1580
|
+
}
|
|
1581
|
+
|
|
1494
1582
|
export type UserCreateWithoutOwnedProjectsInput = {
|
|
1495
1583
|
id?: string
|
|
1496
1584
|
email: string
|
|
@@ -1540,6 +1628,10 @@ export type UserCreateWithoutOwnedProjectsInput = {
|
|
|
1540
1628
|
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
1541
1629
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
1542
1630
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
1631
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
1632
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
1633
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
1634
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
1543
1635
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
1544
1636
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
1545
1637
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -1602,6 +1694,10 @@ export type UserUncheckedCreateWithoutOwnedProjectsInput = {
|
|
|
1602
1694
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
1603
1695
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
1604
1696
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
1697
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
1698
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
1699
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
1700
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
1605
1701
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
1606
1702
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
1607
1703
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -1680,6 +1776,10 @@ export type UserUpdateWithoutOwnedProjectsInput = {
|
|
|
1680
1776
|
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
1681
1777
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
1682
1778
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
1779
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
1780
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
1781
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
1782
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
1683
1783
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
1684
1784
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
1685
1785
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -1742,6 +1842,10 @@ export type UserUncheckedUpdateWithoutOwnedProjectsInput = {
|
|
|
1742
1842
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
1743
1843
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
1744
1844
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
1845
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
1846
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
1847
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
1848
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
1745
1849
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
1746
1850
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
1747
1851
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -1804,6 +1908,10 @@ export type UserCreateWithoutProjectMembershipsInput = {
|
|
|
1804
1908
|
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
1805
1909
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
1806
1910
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
1911
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
1912
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
1913
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
1914
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
1807
1915
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
1808
1916
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
1809
1917
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -1866,6 +1974,10 @@ export type UserUncheckedCreateWithoutProjectMembershipsInput = {
|
|
|
1866
1974
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
1867
1975
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
1868
1976
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
1977
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
1978
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
1979
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
1980
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
1869
1981
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
1870
1982
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
1871
1983
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -1944,6 +2056,10 @@ export type UserUpdateWithoutProjectMembershipsInput = {
|
|
|
1944
2056
|
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
1945
2057
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
1946
2058
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
2059
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
2060
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
2061
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
2062
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
1947
2063
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
1948
2064
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
1949
2065
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -2006,6 +2122,10 @@ export type UserUncheckedUpdateWithoutProjectMembershipsInput = {
|
|
|
2006
2122
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
2007
2123
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
2008
2124
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
2125
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2126
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2127
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
2128
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
2009
2129
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
2010
2130
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
2011
2131
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -2069,6 +2189,10 @@ export type UserCreateWithoutOwnedWorkspacesInput = {
|
|
|
2069
2189
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
2070
2190
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
2071
2191
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
2192
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
2193
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
2194
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
2195
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
2072
2196
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
2073
2197
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
2074
2198
|
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
@@ -2131,6 +2255,10 @@ export type UserUncheckedCreateWithoutOwnedWorkspacesInput = {
|
|
|
2131
2255
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
2132
2256
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
2133
2257
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
2258
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2259
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2260
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
2261
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
2134
2262
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
2135
2263
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
2136
2264
|
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
@@ -2209,6 +2337,10 @@ export type UserUpdateWithoutOwnedWorkspacesInput = {
|
|
|
2209
2337
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
2210
2338
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
2211
2339
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
2340
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
2341
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
2342
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
2343
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
2212
2344
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
2213
2345
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
2214
2346
|
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
@@ -2271,6 +2403,10 @@ export type UserUncheckedUpdateWithoutOwnedWorkspacesInput = {
|
|
|
2271
2403
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
2272
2404
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
2273
2405
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
2406
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2407
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2408
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
2409
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
2274
2410
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
2275
2411
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
2276
2412
|
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
@@ -2333,6 +2469,10 @@ export type UserCreateWithoutWorkspaceMembershipsInput = {
|
|
|
2333
2469
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
2334
2470
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
2335
2471
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
2472
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
2473
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
2474
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
2475
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
2336
2476
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
2337
2477
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
2338
2478
|
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
@@ -2395,6 +2535,10 @@ export type UserUncheckedCreateWithoutWorkspaceMembershipsInput = {
|
|
|
2395
2535
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
2396
2536
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
2397
2537
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
2538
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2539
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2540
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
2541
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
2398
2542
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
2399
2543
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
2400
2544
|
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
@@ -2462,6 +2606,10 @@ export type UserCreateWithoutTeamJoinedInput = {
|
|
|
2462
2606
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
2463
2607
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
2464
2608
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
2609
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
2610
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
2611
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
2612
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
2465
2613
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
2466
2614
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
2467
2615
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -2524,6 +2672,10 @@ export type UserUncheckedCreateWithoutTeamJoinedInput = {
|
|
|
2524
2672
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
2525
2673
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
2526
2674
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
2675
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2676
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
2677
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
2678
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
2527
2679
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
2528
2680
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
2529
2681
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -2602,6 +2754,10 @@ export type UserUpdateWithoutWorkspaceMembershipsInput = {
|
|
|
2602
2754
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
2603
2755
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
2604
2756
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
2757
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
2758
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
2759
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
2760
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
2605
2761
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
2606
2762
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
2607
2763
|
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
@@ -2664,6 +2820,10 @@ export type UserUncheckedUpdateWithoutWorkspaceMembershipsInput = {
|
|
|
2664
2820
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
2665
2821
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
2666
2822
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
2823
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2824
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2825
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
2826
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
2667
2827
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
2668
2828
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
2669
2829
|
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
@@ -2737,6 +2897,10 @@ export type UserUpdateWithoutTeamJoinedInput = {
|
|
|
2737
2897
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
2738
2898
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
2739
2899
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
2900
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
2901
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
2902
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
2903
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
2740
2904
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
2741
2905
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
2742
2906
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -2799,6 +2963,10 @@ export type UserUncheckedUpdateWithoutTeamJoinedInput = {
|
|
|
2799
2963
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
2800
2964
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
2801
2965
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
2966
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2967
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
2968
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
2969
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
2802
2970
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
2803
2971
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
2804
2972
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -2861,6 +3029,10 @@ export type UserCreateWithoutSentInvitationsInput = {
|
|
|
2861
3029
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
2862
3030
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
2863
3031
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
3032
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
3033
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
3034
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
3035
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
2864
3036
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
2865
3037
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
2866
3038
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -2923,6 +3095,10 @@ export type UserUncheckedCreateWithoutSentInvitationsInput = {
|
|
|
2923
3095
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
2924
3096
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
2925
3097
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
3098
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3099
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3100
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
3101
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
2926
3102
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
2927
3103
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
2928
3104
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -3001,6 +3177,10 @@ export type UserUpdateWithoutSentInvitationsInput = {
|
|
|
3001
3177
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
3002
3178
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
3003
3179
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
3180
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
3181
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
3182
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
3183
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
3004
3184
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
3005
3185
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
3006
3186
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -3063,6 +3243,10 @@ export type UserUncheckedUpdateWithoutSentInvitationsInput = {
|
|
|
3063
3243
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
3064
3244
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3065
3245
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
3246
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3247
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3248
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
3249
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
3066
3250
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
3067
3251
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3068
3252
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -3125,6 +3309,10 @@ export type UserCreateWithoutOwnedJoinRequestsInput = {
|
|
|
3125
3309
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
3126
3310
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
3127
3311
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
3312
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
3313
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
3314
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
3315
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
3128
3316
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
3129
3317
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
3130
3318
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -3187,6 +3375,10 @@ export type UserUncheckedCreateWithoutOwnedJoinRequestsInput = {
|
|
|
3187
3375
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
3188
3376
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
3189
3377
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
3378
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3379
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3380
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
3381
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
3190
3382
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
3191
3383
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
3192
3384
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -3254,6 +3446,10 @@ export type UserCreateWithoutApplicantJoinRequestsInput = {
|
|
|
3254
3446
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
3255
3447
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
3256
3448
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
3449
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
3450
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
3451
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
3452
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
3257
3453
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
3258
3454
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
3259
3455
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -3316,6 +3512,10 @@ export type UserUncheckedCreateWithoutApplicantJoinRequestsInput = {
|
|
|
3316
3512
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
3317
3513
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
3318
3514
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
3515
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3516
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3517
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
3518
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
3319
3519
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
3320
3520
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
3321
3521
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -3394,6 +3594,10 @@ export type UserUpdateWithoutOwnedJoinRequestsInput = {
|
|
|
3394
3594
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
3395
3595
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
3396
3596
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
3597
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
3598
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
3599
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
3600
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
3397
3601
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
3398
3602
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
3399
3603
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -3456,6 +3660,10 @@ export type UserUncheckedUpdateWithoutOwnedJoinRequestsInput = {
|
|
|
3456
3660
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
3457
3661
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3458
3662
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
3663
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3664
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3665
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
3666
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
3459
3667
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
3460
3668
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3461
3669
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -3529,6 +3737,10 @@ export type UserUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
3529
3737
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
3530
3738
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
3531
3739
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
3740
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
3741
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
3742
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
3743
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
3532
3744
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
3533
3745
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
3534
3746
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -3591,6 +3803,10 @@ export type UserUncheckedUpdateWithoutApplicantJoinRequestsInput = {
|
|
|
3591
3803
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
3592
3804
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3593
3805
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
3806
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3807
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
3808
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
3809
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
3594
3810
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
3595
3811
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3596
3812
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -3653,6 +3869,10 @@ export type UserCreateWithoutProjectActivitiesInput = {
|
|
|
3653
3869
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
3654
3870
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
3655
3871
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
3872
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
3873
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
3874
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
3875
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
3656
3876
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
3657
3877
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
3658
3878
|
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
@@ -3715,6 +3935,10 @@ export type UserUncheckedCreateWithoutProjectActivitiesInput = {
|
|
|
3715
3935
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
3716
3936
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
3717
3937
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
3938
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3939
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
3940
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
3941
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
3718
3942
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
3719
3943
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
3720
3944
|
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
@@ -3793,6 +4017,10 @@ export type UserUpdateWithoutProjectActivitiesInput = {
|
|
|
3793
4017
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
3794
4018
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
3795
4019
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
4020
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
4021
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
4022
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
4023
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
3796
4024
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
3797
4025
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
3798
4026
|
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
@@ -3855,6 +4083,10 @@ export type UserUncheckedUpdateWithoutProjectActivitiesInput = {
|
|
|
3855
4083
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
3856
4084
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3857
4085
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
4086
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4087
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4088
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
4089
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
3858
4090
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3859
4091
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
3860
4092
|
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
@@ -3916,6 +4148,10 @@ export type UserCreateWithoutChatThreadsInput = {
|
|
|
3916
4148
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
3917
4149
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
3918
4150
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
4151
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
4152
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
4153
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
4154
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
3919
4155
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
3920
4156
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
3921
4157
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -3978,6 +4214,10 @@ export type UserUncheckedCreateWithoutChatThreadsInput = {
|
|
|
3978
4214
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
3979
4215
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
3980
4216
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
4217
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4218
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4219
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
4220
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
3981
4221
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
3982
4222
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
3983
4223
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -4056,6 +4296,10 @@ export type UserUpdateWithoutChatThreadsInput = {
|
|
|
4056
4296
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
4057
4297
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
4058
4298
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
4299
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
4300
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
4301
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
4302
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
4059
4303
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
4060
4304
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
4061
4305
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -4118,6 +4362,10 @@ export type UserUncheckedUpdateWithoutChatThreadsInput = {
|
|
|
4118
4362
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
4119
4363
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
4120
4364
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
4365
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4366
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4367
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
4368
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
4121
4369
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
4122
4370
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
4123
4371
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -4180,6 +4428,10 @@ export type UserCreateWithoutLoginLogsInput = {
|
|
|
4180
4428
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
4181
4429
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
4182
4430
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
4431
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
4432
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
4433
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
4434
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
4183
4435
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
4184
4436
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
4185
4437
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -4242,6 +4494,10 @@ export type UserUncheckedCreateWithoutLoginLogsInput = {
|
|
|
4242
4494
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
4243
4495
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
4244
4496
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
4497
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4498
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4499
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
4500
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
4245
4501
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
4246
4502
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
4247
4503
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -4320,6 +4576,10 @@ export type UserUpdateWithoutLoginLogsInput = {
|
|
|
4320
4576
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
4321
4577
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
4322
4578
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
4579
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
4580
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
4581
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
4582
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
4323
4583
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
4324
4584
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
4325
4585
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -4382,6 +4642,10 @@ export type UserUncheckedUpdateWithoutLoginLogsInput = {
|
|
|
4382
4642
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
4383
4643
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
4384
4644
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
4645
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4646
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4647
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
4648
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
4385
4649
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
4386
4650
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
4387
4651
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -4444,6 +4708,10 @@ export type UserCreateWithoutInvitationUsesInput = {
|
|
|
4444
4708
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
4445
4709
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
4446
4710
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
4711
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
4712
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
4713
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
4714
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
4447
4715
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
4448
4716
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
4449
4717
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -4506,6 +4774,10 @@ export type UserUncheckedCreateWithoutInvitationUsesInput = {
|
|
|
4506
4774
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
4507
4775
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
4508
4776
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
4777
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4778
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
4779
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
4780
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
4509
4781
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
4510
4782
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
4511
4783
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -4584,6 +4856,10 @@ export type UserUpdateWithoutInvitationUsesInput = {
|
|
|
4584
4856
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
4585
4857
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
4586
4858
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
4859
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
4860
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
4861
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
4862
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
4587
4863
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
4588
4864
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
4589
4865
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -4646,6 +4922,10 @@ export type UserUncheckedUpdateWithoutInvitationUsesInput = {
|
|
|
4646
4922
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
4647
4923
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
4648
4924
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
4925
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4926
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
4927
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
4928
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
4649
4929
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
4650
4930
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
4651
4931
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -4708,6 +4988,10 @@ export type UserCreateWithoutPasswordResetTokensInput = {
|
|
|
4708
4988
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
4709
4989
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
4710
4990
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
4991
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
4992
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
4993
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
4994
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
4711
4995
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
4712
4996
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
4713
4997
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -4770,6 +5054,10 @@ export type UserUncheckedCreateWithoutPasswordResetTokensInput = {
|
|
|
4770
5054
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
4771
5055
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
4772
5056
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
5057
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5058
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5059
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5060
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
4773
5061
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
4774
5062
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
4775
5063
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -4848,6 +5136,10 @@ export type UserUpdateWithoutPasswordResetTokensInput = {
|
|
|
4848
5136
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
4849
5137
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
4850
5138
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
5139
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5140
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5141
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5142
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
4851
5143
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
4852
5144
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
4853
5145
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -4910,6 +5202,10 @@ export type UserUncheckedUpdateWithoutPasswordResetTokensInput = {
|
|
|
4910
5202
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
4911
5203
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
4912
5204
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5205
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5206
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5207
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5208
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
4913
5209
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
4914
5210
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
4915
5211
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -4972,6 +5268,10 @@ export type UserCreateWithoutKnowledgeBasesInput = {
|
|
|
4972
5268
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
4973
5269
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
4974
5270
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
5271
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5272
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5273
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5274
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
4975
5275
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
4976
5276
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
4977
5277
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -5034,6 +5334,10 @@ export type UserUncheckedCreateWithoutKnowledgeBasesInput = {
|
|
|
5034
5334
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
5035
5335
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
5036
5336
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
5337
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5338
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5339
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5340
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5037
5341
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5038
5342
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
5039
5343
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -5112,6 +5416,10 @@ export type UserUpdateWithoutKnowledgeBasesInput = {
|
|
|
5112
5416
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
5113
5417
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
5114
5418
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
5419
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5420
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5421
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5422
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5115
5423
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
5116
5424
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
5117
5425
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -5174,6 +5482,10 @@ export type UserUncheckedUpdateWithoutKnowledgeBasesInput = {
|
|
|
5174
5482
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5175
5483
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5176
5484
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5485
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5486
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5487
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5488
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5177
5489
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5178
5490
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5179
5491
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -5236,6 +5548,10 @@ export type UserCreateWithoutKnowledgeDocumentsInput = {
|
|
|
5236
5548
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
5237
5549
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
5238
5550
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
5551
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5552
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5553
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5554
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5239
5555
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
5240
5556
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
5241
5557
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -5298,6 +5614,10 @@ export type UserUncheckedCreateWithoutKnowledgeDocumentsInput = {
|
|
|
5298
5614
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
5299
5615
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
5300
5616
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
5617
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5618
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5619
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5620
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5301
5621
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5302
5622
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
5303
5623
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -5376,6 +5696,10 @@ export type UserUpdateWithoutKnowledgeDocumentsInput = {
|
|
|
5376
5696
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
5377
5697
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
5378
5698
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
5699
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5700
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5701
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5702
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5379
5703
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
5380
5704
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
5381
5705
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -5438,6 +5762,10 @@ export type UserUncheckedUpdateWithoutKnowledgeDocumentsInput = {
|
|
|
5438
5762
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5439
5763
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5440
5764
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
5765
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5766
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
5767
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
5768
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5441
5769
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5442
5770
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5443
5771
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -5500,6 +5828,10 @@ export type UserCreateWithoutPrdsInput = {
|
|
|
5500
5828
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
5501
5829
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
5502
5830
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
5831
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
5832
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
5833
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
5834
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5503
5835
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
5504
5836
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
5505
5837
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -5562,6 +5894,10 @@ export type UserUncheckedCreateWithoutPrdsInput = {
|
|
|
5562
5894
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
5563
5895
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
5564
5896
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
5897
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5898
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
5899
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
5900
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5565
5901
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5566
5902
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
5567
5903
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -5640,6 +5976,10 @@ export type UserUpdateWithoutPrdsInput = {
|
|
|
5640
5976
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
5641
5977
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
5642
5978
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
5979
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
5980
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
5981
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
5982
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5643
5983
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
5644
5984
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
5645
5985
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -5702,6 +6042,10 @@ export type UserUncheckedUpdateWithoutPrdsInput = {
|
|
|
5702
6042
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
5703
6043
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5704
6044
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
6045
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6046
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6047
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
6048
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5705
6049
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5706
6050
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5707
6051
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -5764,6 +6108,10 @@ export type UserCreateWithoutAgentConversationsInput = {
|
|
|
5764
6108
|
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
5765
6109
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
5766
6110
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
6111
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
6112
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
6113
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
6114
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
5767
6115
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
5768
6116
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
5769
6117
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -5826,6 +6174,10 @@ export type UserUncheckedCreateWithoutAgentConversationsInput = {
|
|
|
5826
6174
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
5827
6175
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
5828
6176
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
6177
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6178
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6179
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
6180
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
5829
6181
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
5830
6182
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
5831
6183
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -5904,6 +6256,10 @@ export type UserUpdateWithoutAgentConversationsInput = {
|
|
|
5904
6256
|
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
5905
6257
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
5906
6258
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
6259
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
6260
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
6261
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
6262
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
5907
6263
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
5908
6264
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
5909
6265
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -5966,6 +6322,10 @@ export type UserUncheckedUpdateWithoutAgentConversationsInput = {
|
|
|
5966
6322
|
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
5967
6323
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5968
6324
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
6325
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6326
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6327
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
6328
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
5969
6329
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
5970
6330
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
5971
6331
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -6028,6 +6388,10 @@ export type UserCreateWithoutPrdVersionsInput = {
|
|
|
6028
6388
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
6029
6389
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
6030
6390
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
6391
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
6392
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
6393
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
6394
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
6031
6395
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
6032
6396
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
6033
6397
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -6090,6 +6454,10 @@ export type UserUncheckedCreateWithoutPrdVersionsInput = {
|
|
|
6090
6454
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
6091
6455
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
6092
6456
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
6457
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6458
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6459
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
6460
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
6093
6461
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6094
6462
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
6095
6463
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -6168,6 +6536,10 @@ export type UserUpdateWithoutPrdVersionsInput = {
|
|
|
6168
6536
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
6169
6537
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
6170
6538
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
6539
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
6540
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
6541
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
6542
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
6171
6543
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
6172
6544
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
6173
6545
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -6230,6 +6602,10 @@ export type UserUncheckedUpdateWithoutPrdVersionsInput = {
|
|
|
6230
6602
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
6231
6603
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
6232
6604
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
6605
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6606
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6607
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
6608
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
6233
6609
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
6234
6610
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
6235
6611
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -6292,6 +6668,10 @@ export type UserCreateWithoutReviewsInput = {
|
|
|
6292
6668
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
6293
6669
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
6294
6670
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
6671
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
6672
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
6673
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
6674
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
6295
6675
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
6296
6676
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
6297
6677
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -6354,6 +6734,10 @@ export type UserUncheckedCreateWithoutReviewsInput = {
|
|
|
6354
6734
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
6355
6735
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
6356
6736
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
6737
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6738
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
6739
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
6740
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
6357
6741
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6358
6742
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
6359
6743
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -6432,6 +6816,10 @@ export type UserUpdateWithoutReviewsInput = {
|
|
|
6432
6816
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
6433
6817
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
6434
6818
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
6819
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
6820
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
6821
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
6822
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
6435
6823
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
6436
6824
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
6437
6825
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -6494,6 +6882,10 @@ export type UserUncheckedUpdateWithoutReviewsInput = {
|
|
|
6494
6882
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
6495
6883
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
6496
6884
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
6885
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6886
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
6887
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
6888
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
6497
6889
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
6498
6890
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
6499
6891
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -6556,6 +6948,10 @@ export type UserCreateWithoutReviewCommentsInput = {
|
|
|
6556
6948
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
6557
6949
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
6558
6950
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
6951
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
6952
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
6953
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
6954
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
6559
6955
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
6560
6956
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
6561
6957
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -6618,6 +7014,10 @@ export type UserUncheckedCreateWithoutReviewCommentsInput = {
|
|
|
6618
7014
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
6619
7015
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
6620
7016
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
7017
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7018
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7019
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
7020
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
6621
7021
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6622
7022
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
6623
7023
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -6696,6 +7096,10 @@ export type UserUpdateWithoutReviewCommentsInput = {
|
|
|
6696
7096
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
6697
7097
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
6698
7098
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
7099
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
7100
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
7101
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
7102
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
6699
7103
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
6700
7104
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
6701
7105
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -6758,6 +7162,10 @@ export type UserUncheckedUpdateWithoutReviewCommentsInput = {
|
|
|
6758
7162
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
6759
7163
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
6760
7164
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
7165
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7166
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7167
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
7168
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
6761
7169
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
6762
7170
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
6763
7171
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -6820,6 +7228,10 @@ export type UserCreateWithoutCommentsInput = {
|
|
|
6820
7228
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
6821
7229
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
6822
7230
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
7231
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
7232
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
7233
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
7234
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
6823
7235
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
6824
7236
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
6825
7237
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -6882,6 +7294,10 @@ export type UserUncheckedCreateWithoutCommentsInput = {
|
|
|
6882
7294
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
6883
7295
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
6884
7296
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
7297
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7298
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7299
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
7300
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
6885
7301
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
6886
7302
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
6887
7303
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -6960,6 +7376,10 @@ export type UserUpdateWithoutCommentsInput = {
|
|
|
6960
7376
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
6961
7377
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
6962
7378
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
7379
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
7380
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
7381
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
7382
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
6963
7383
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
6964
7384
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
6965
7385
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -7022,6 +7442,10 @@ export type UserUncheckedUpdateWithoutCommentsInput = {
|
|
|
7022
7442
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
7023
7443
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
7024
7444
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
7445
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7446
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7447
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
7448
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
7025
7449
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
7026
7450
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
7027
7451
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -7084,6 +7508,10 @@ export type UserCreateWithoutCommentIgnoresInput = {
|
|
|
7084
7508
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
7085
7509
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
7086
7510
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
7511
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
7512
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
7513
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
7514
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
7087
7515
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
7088
7516
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
7089
7517
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -7146,6 +7574,10 @@ export type UserUncheckedCreateWithoutCommentIgnoresInput = {
|
|
|
7146
7574
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
7147
7575
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
7148
7576
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
7577
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7578
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7579
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
7580
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
7149
7581
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
7150
7582
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
7151
7583
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -7224,6 +7656,10 @@ export type UserUpdateWithoutCommentIgnoresInput = {
|
|
|
7224
7656
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
7225
7657
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
7226
7658
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
7659
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
7660
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
7661
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
7662
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
7227
7663
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
7228
7664
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
7229
7665
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -7286,6 +7722,10 @@ export type UserUncheckedUpdateWithoutCommentIgnoresInput = {
|
|
|
7286
7722
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
7287
7723
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
7288
7724
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
7725
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7726
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
7727
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
7728
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
7289
7729
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
7290
7730
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
7291
7731
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -7348,6 +7788,10 @@ export type UserCreateWithoutTagsInput = {
|
|
|
7348
7788
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
7349
7789
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
7350
7790
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
7791
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
7792
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
7793
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
7794
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
7351
7795
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
7352
7796
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
7353
7797
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -7410,6 +7854,10 @@ export type UserUncheckedCreateWithoutTagsInput = {
|
|
|
7410
7854
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
7411
7855
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
7412
7856
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
7857
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7858
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
7859
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
7860
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
7413
7861
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
7414
7862
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
7415
7863
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -7488,6 +7936,10 @@ export type UserUpdateWithoutTagsInput = {
|
|
|
7488
7936
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
7489
7937
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
7490
7938
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
7939
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
7940
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
7941
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
7942
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
7491
7943
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
7492
7944
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
7493
7945
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -7550,6 +8002,10 @@ export type UserUncheckedUpdateWithoutTagsInput = {
|
|
|
7550
8002
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
7551
8003
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
7552
8004
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
8005
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8006
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8007
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
8008
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
7553
8009
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
7554
8010
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
7555
8011
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -7612,6 +8068,10 @@ export type UserCreateWithoutAnyhubAppsInput = {
|
|
|
7612
8068
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
7613
8069
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
7614
8070
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
8071
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
8072
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
8073
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
8074
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
7615
8075
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
7616
8076
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
7617
8077
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -7674,6 +8134,10 @@ export type UserUncheckedCreateWithoutAnyhubAppsInput = {
|
|
|
7674
8134
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
7675
8135
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
7676
8136
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
8137
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8138
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8139
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
8140
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
7677
8141
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
7678
8142
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
7679
8143
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -7752,6 +8216,10 @@ export type UserUpdateWithoutAnyhubAppsInput = {
|
|
|
7752
8216
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
7753
8217
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
7754
8218
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
8219
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
8220
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
8221
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
8222
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
7755
8223
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
7756
8224
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
7757
8225
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -7814,6 +8282,10 @@ export type UserUncheckedUpdateWithoutAnyhubAppsInput = {
|
|
|
7814
8282
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
7815
8283
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
7816
8284
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
8285
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8286
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8287
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
8288
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
7817
8289
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
7818
8290
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
7819
8291
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -7876,6 +8348,10 @@ export type UserCreateWithoutAnyhubMarketAppsInput = {
|
|
|
7876
8348
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
7877
8349
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
7878
8350
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
8351
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
8352
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
8353
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
8354
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
7879
8355
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
7880
8356
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
7881
8357
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -7938,6 +8414,10 @@ export type UserUncheckedCreateWithoutAnyhubMarketAppsInput = {
|
|
|
7938
8414
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
7939
8415
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
7940
8416
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
8417
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8418
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8419
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
8420
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
7941
8421
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
7942
8422
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
7943
8423
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -8016,6 +8496,10 @@ export type UserUpdateWithoutAnyhubMarketAppsInput = {
|
|
|
8016
8496
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
8017
8497
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
8018
8498
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
8499
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
8500
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
8501
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
8502
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
8019
8503
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
8020
8504
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
8021
8505
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -8078,6 +8562,10 @@ export type UserUncheckedUpdateWithoutAnyhubMarketAppsInput = {
|
|
|
8078
8562
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
8079
8563
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
8080
8564
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
8565
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8566
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8567
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
8568
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
8081
8569
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
8082
8570
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
8083
8571
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -8140,6 +8628,10 @@ export type UserCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
8140
8628
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
8141
8629
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
8142
8630
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
8631
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
8632
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
8633
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
8634
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
8143
8635
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
8144
8636
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
8145
8637
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -8202,6 +8694,10 @@ export type UserUncheckedCreateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
8202
8694
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
8203
8695
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
8204
8696
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
8697
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8698
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8699
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
8700
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
8205
8701
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
8206
8702
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
8207
8703
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -8280,6 +8776,10 @@ export type UserUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
8280
8776
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
8281
8777
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
8282
8778
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
8779
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
8780
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
8781
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
8782
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
8283
8783
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
8284
8784
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
8285
8785
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -8342,6 +8842,10 @@ export type UserUncheckedUpdateWithoutReviewedAnyhubRecommendationsInput = {
|
|
|
8342
8842
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
8343
8843
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
8344
8844
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
8845
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8846
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
8847
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
8848
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
8345
8849
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
8346
8850
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
8347
8851
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -8404,6 +8908,10 @@ export type UserCreateWithoutAnyhubRecommendersInput = {
|
|
|
8404
8908
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
8405
8909
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
8406
8910
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
8911
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
8912
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
8913
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
8914
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
8407
8915
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
8408
8916
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
8409
8917
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -8466,6 +8974,10 @@ export type UserUncheckedCreateWithoutAnyhubRecommendersInput = {
|
|
|
8466
8974
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
8467
8975
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
8468
8976
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
8977
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8978
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
8979
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
8980
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
8469
8981
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
8470
8982
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
8471
8983
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -8544,6 +9056,10 @@ export type UserUpdateWithoutAnyhubRecommendersInput = {
|
|
|
8544
9056
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
8545
9057
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
8546
9058
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
9059
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
9060
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
9061
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
9062
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
8547
9063
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
8548
9064
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
8549
9065
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -8606,6 +9122,10 @@ export type UserUncheckedUpdateWithoutAnyhubRecommendersInput = {
|
|
|
8606
9122
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
8607
9123
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
8608
9124
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
9125
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9126
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9127
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
9128
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
8609
9129
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
8610
9130
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
8611
9131
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -8668,6 +9188,10 @@ export type UserCreateWithoutDesignProjectsInput = {
|
|
|
8668
9188
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
8669
9189
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
8670
9190
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
9191
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
9192
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
9193
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
9194
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
8671
9195
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
8672
9196
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
8673
9197
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -8730,6 +9254,10 @@ export type UserUncheckedCreateWithoutDesignProjectsInput = {
|
|
|
8730
9254
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
8731
9255
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
8732
9256
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
9257
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9258
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9259
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
9260
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
8733
9261
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
8734
9262
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
8735
9263
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -8808,6 +9336,10 @@ export type UserUpdateWithoutDesignProjectsInput = {
|
|
|
8808
9336
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
8809
9337
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
8810
9338
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
9339
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
9340
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
9341
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
9342
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
8811
9343
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
8812
9344
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
8813
9345
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -8870,6 +9402,10 @@ export type UserUncheckedUpdateWithoutDesignProjectsInput = {
|
|
|
8870
9402
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
8871
9403
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
8872
9404
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
9405
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9406
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9407
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
9408
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
8873
9409
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
8874
9410
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
8875
9411
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -8932,6 +9468,10 @@ export type UserCreateWithoutAiProviderConfigsInput = {
|
|
|
8932
9468
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
8933
9469
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
8934
9470
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
9471
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
9472
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
9473
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
9474
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
8935
9475
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
8936
9476
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
8937
9477
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -8994,6 +9534,10 @@ export type UserUncheckedCreateWithoutAiProviderConfigsInput = {
|
|
|
8994
9534
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
8995
9535
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
8996
9536
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
9537
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9538
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9539
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
9540
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
8997
9541
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
8998
9542
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
8999
9543
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -9072,6 +9616,10 @@ export type UserUpdateWithoutAiProviderConfigsInput = {
|
|
|
9072
9616
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
9073
9617
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
9074
9618
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
9619
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
9620
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
9621
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
9622
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
9075
9623
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
9076
9624
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
9077
9625
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -9134,6 +9682,10 @@ export type UserUncheckedUpdateWithoutAiProviderConfigsInput = {
|
|
|
9134
9682
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
9135
9683
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
9136
9684
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
9685
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9686
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9687
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
9688
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
9137
9689
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
9138
9690
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
9139
9691
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -9196,6 +9748,10 @@ export type UserCreateWithoutLegalRegulationsInput = {
|
|
|
9196
9748
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
9197
9749
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
9198
9750
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
9751
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
9752
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
9753
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
9754
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
9199
9755
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
9200
9756
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
9201
9757
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -9258,6 +9814,10 @@ export type UserUncheckedCreateWithoutLegalRegulationsInput = {
|
|
|
9258
9814
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
9259
9815
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
9260
9816
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
9817
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9818
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
9819
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
9820
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
9261
9821
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
9262
9822
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
9263
9823
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -9336,6 +9896,10 @@ export type UserUpdateWithoutLegalRegulationsInput = {
|
|
|
9336
9896
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
9337
9897
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
9338
9898
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
9899
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
9900
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
9901
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
9902
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
9339
9903
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
9340
9904
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
9341
9905
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -9398,6 +9962,10 @@ export type UserUncheckedUpdateWithoutLegalRegulationsInput = {
|
|
|
9398
9962
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
9399
9963
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
9400
9964
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
9965
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9966
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
9967
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
9968
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
9401
9969
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
9402
9970
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
9403
9971
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -9460,6 +10028,10 @@ export type UserCreateWithoutIndustryCompliancesInput = {
|
|
|
9460
10028
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
9461
10029
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
9462
10030
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
10031
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
10032
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
10033
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
10034
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
9463
10035
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
9464
10036
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
9465
10037
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -9522,6 +10094,10 @@ export type UserUncheckedCreateWithoutIndustryCompliancesInput = {
|
|
|
9522
10094
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
9523
10095
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
9524
10096
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
10097
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10098
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10099
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
10100
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
9525
10101
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
9526
10102
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
9527
10103
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -9600,6 +10176,10 @@ export type UserUpdateWithoutIndustryCompliancesInput = {
|
|
|
9600
10176
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
9601
10177
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
9602
10178
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
10179
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
10180
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
10181
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
10182
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
9603
10183
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
9604
10184
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
9605
10185
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -9662,6 +10242,10 @@ export type UserUncheckedUpdateWithoutIndustryCompliancesInput = {
|
|
|
9662
10242
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
9663
10243
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
9664
10244
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
10245
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10246
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10247
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
10248
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
9665
10249
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
9666
10250
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
9667
10251
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -9724,6 +10308,10 @@ export type UserCreateWithoutDictionaryTermsInput = {
|
|
|
9724
10308
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
9725
10309
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
9726
10310
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
10311
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
10312
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
10313
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
10314
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
9727
10315
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
9728
10316
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
9729
10317
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -9786,6 +10374,10 @@ export type UserUncheckedCreateWithoutDictionaryTermsInput = {
|
|
|
9786
10374
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
9787
10375
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
9788
10376
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
10377
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10378
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10379
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
10380
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
9789
10381
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
9790
10382
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
9791
10383
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -9864,6 +10456,10 @@ export type UserUpdateWithoutDictionaryTermsInput = {
|
|
|
9864
10456
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
9865
10457
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
9866
10458
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
10459
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
10460
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
10461
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
10462
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
9867
10463
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
9868
10464
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
9869
10465
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -9926,6 +10522,10 @@ export type UserUncheckedUpdateWithoutDictionaryTermsInput = {
|
|
|
9926
10522
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
9927
10523
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
9928
10524
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
10525
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10526
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10527
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
10528
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
9929
10529
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
9930
10530
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
9931
10531
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -9988,6 +10588,10 @@ export type UserCreateWithoutWebsiteBookmarksInput = {
|
|
|
9988
10588
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
9989
10589
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
9990
10590
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
10591
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
10592
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
10593
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
10594
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
9991
10595
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
9992
10596
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
9993
10597
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -10050,6 +10654,10 @@ export type UserUncheckedCreateWithoutWebsiteBookmarksInput = {
|
|
|
10050
10654
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
10051
10655
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
10052
10656
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
10657
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10658
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10659
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
10660
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
10053
10661
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
10054
10662
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
10055
10663
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -10128,6 +10736,10 @@ export type UserUpdateWithoutWebsiteBookmarksInput = {
|
|
|
10128
10736
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
10129
10737
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
10130
10738
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
10739
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
10740
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
10741
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
10742
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
10131
10743
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
10132
10744
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
10133
10745
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -10190,6 +10802,10 @@ export type UserUncheckedUpdateWithoutWebsiteBookmarksInput = {
|
|
|
10190
10802
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
10191
10803
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
10192
10804
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
10805
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10806
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
10807
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
10808
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
10193
10809
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
10194
10810
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
10195
10811
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -10252,6 +10868,10 @@ export type UserCreateWithoutBookmarkCategoriesInput = {
|
|
|
10252
10868
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
10253
10869
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
10254
10870
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
10871
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
10872
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
10873
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
10874
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
10255
10875
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
10256
10876
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
10257
10877
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -10314,6 +10934,10 @@ export type UserUncheckedCreateWithoutBookmarkCategoriesInput = {
|
|
|
10314
10934
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
10315
10935
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
10316
10936
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
10937
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10938
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
10939
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
10940
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
10317
10941
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
10318
10942
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
10319
10943
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -10392,6 +11016,10 @@ export type UserUpdateWithoutBookmarkCategoriesInput = {
|
|
|
10392
11016
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
10393
11017
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
10394
11018
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
11019
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
11020
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
11021
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
11022
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
10395
11023
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
10396
11024
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
10397
11025
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -10454,6 +11082,10 @@ export type UserUncheckedUpdateWithoutBookmarkCategoriesInput = {
|
|
|
10454
11082
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
10455
11083
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
10456
11084
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
11085
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11086
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11087
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
11088
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
10457
11089
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
10458
11090
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
10459
11091
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -10516,6 +11148,10 @@ export type UserCreateWithoutKnowledgeSharesInput = {
|
|
|
10516
11148
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
10517
11149
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
10518
11150
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
11151
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
11152
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
11153
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
11154
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
10519
11155
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
10520
11156
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
10521
11157
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -10578,6 +11214,10 @@ export type UserUncheckedCreateWithoutKnowledgeSharesInput = {
|
|
|
10578
11214
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
10579
11215
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
10580
11216
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
11217
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11218
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11219
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
11220
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
10581
11221
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
10582
11222
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
10583
11223
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -10656,6 +11296,10 @@ export type UserUpdateWithoutKnowledgeSharesInput = {
|
|
|
10656
11296
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
10657
11297
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
10658
11298
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
11299
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
11300
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
11301
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
11302
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
10659
11303
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
10660
11304
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
10661
11305
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -10718,6 +11362,10 @@ export type UserUncheckedUpdateWithoutKnowledgeSharesInput = {
|
|
|
10718
11362
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
10719
11363
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
10720
11364
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
11365
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11366
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11367
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
11368
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
10721
11369
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
10722
11370
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
10723
11371
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -10780,6 +11428,10 @@ export type UserCreateWithoutArticleFavoritesInput = {
|
|
|
10780
11428
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
10781
11429
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
10782
11430
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
11431
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
11432
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
11433
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
11434
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
10783
11435
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
10784
11436
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
10785
11437
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -10842,6 +11494,10 @@ export type UserUncheckedCreateWithoutArticleFavoritesInput = {
|
|
|
10842
11494
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
10843
11495
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
10844
11496
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
11497
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11498
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11499
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
11500
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
10845
11501
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
10846
11502
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
10847
11503
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -10920,6 +11576,10 @@ export type UserUpdateWithoutArticleFavoritesInput = {
|
|
|
10920
11576
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
10921
11577
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
10922
11578
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
11579
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
11580
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
11581
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
11582
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
10923
11583
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
10924
11584
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
10925
11585
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -10982,6 +11642,10 @@ export type UserUncheckedUpdateWithoutArticleFavoritesInput = {
|
|
|
10982
11642
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
10983
11643
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
10984
11644
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
11645
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11646
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11647
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
11648
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
10985
11649
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
10986
11650
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
10987
11651
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -11045,6 +11709,10 @@ export type UserCreateWithoutSubscriptionInput = {
|
|
|
11045
11709
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
11046
11710
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
11047
11711
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
11712
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
11713
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
11714
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
11715
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
11048
11716
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
11049
11717
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
11050
11718
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -11107,6 +11775,10 @@ export type UserUncheckedCreateWithoutSubscriptionInput = {
|
|
|
11107
11775
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
11108
11776
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
11109
11777
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
11778
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11779
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
11780
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
11781
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
11110
11782
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
11111
11783
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
11112
11784
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -11185,6 +11857,10 @@ export type UserUpdateWithoutSubscriptionInput = {
|
|
|
11185
11857
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
11186
11858
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
11187
11859
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
11860
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
11861
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
11862
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
11863
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
11188
11864
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
11189
11865
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
11190
11866
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -11247,6 +11923,10 @@ export type UserUncheckedUpdateWithoutSubscriptionInput = {
|
|
|
11247
11923
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
11248
11924
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
11249
11925
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
11926
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11927
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
11928
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
11929
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
11250
11930
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
11251
11931
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
11252
11932
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -11309,6 +11989,10 @@ export type UserCreateWithoutAiUsageLogsInput = {
|
|
|
11309
11989
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
11310
11990
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
11311
11991
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
11992
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
11993
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
11994
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
11995
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
11312
11996
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
11313
11997
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
11314
11998
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -11371,6 +12055,10 @@ export type UserUncheckedCreateWithoutAiUsageLogsInput = {
|
|
|
11371
12055
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
11372
12056
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
11373
12057
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
12058
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12059
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12060
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
12061
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
11374
12062
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
11375
12063
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
11376
12064
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -11449,6 +12137,10 @@ export type UserUpdateWithoutAiUsageLogsInput = {
|
|
|
11449
12137
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
11450
12138
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
11451
12139
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
12140
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
12141
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
12142
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
12143
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
11452
12144
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
11453
12145
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
11454
12146
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -11511,6 +12203,10 @@ export type UserUncheckedUpdateWithoutAiUsageLogsInput = {
|
|
|
11511
12203
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
11512
12204
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
11513
12205
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
12206
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12207
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12208
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
12209
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
11514
12210
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
11515
12211
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
11516
12212
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -11573,6 +12269,10 @@ export type UserCreateWithoutAgentsInput = {
|
|
|
11573
12269
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
11574
12270
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
11575
12271
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
12272
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
12273
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
12274
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
12275
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
11576
12276
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
11577
12277
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
11578
12278
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -11635,6 +12335,10 @@ export type UserUncheckedCreateWithoutAgentsInput = {
|
|
|
11635
12335
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
11636
12336
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
11637
12337
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
12338
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12339
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12340
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
12341
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
11638
12342
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
11639
12343
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
11640
12344
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -11713,6 +12417,10 @@ export type UserUpdateWithoutAgentsInput = {
|
|
|
11713
12417
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
11714
12418
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
11715
12419
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
12420
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
12421
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
12422
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
12423
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
11716
12424
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
11717
12425
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
11718
12426
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -11775,6 +12483,10 @@ export type UserUncheckedUpdateWithoutAgentsInput = {
|
|
|
11775
12483
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
11776
12484
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
11777
12485
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
12486
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12487
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12488
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
12489
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
11778
12490
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
11779
12491
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
11780
12492
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -11837,6 +12549,10 @@ export type UserCreateWithoutSkillsInput = {
|
|
|
11837
12549
|
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
11838
12550
|
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
11839
12551
|
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
12552
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
12553
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
12554
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
12555
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
11840
12556
|
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
11841
12557
|
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
11842
12558
|
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
@@ -11899,6 +12615,10 @@ export type UserUncheckedCreateWithoutSkillsInput = {
|
|
|
11899
12615
|
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
11900
12616
|
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
11901
12617
|
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
12618
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12619
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12620
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
12621
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
11902
12622
|
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
11903
12623
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
11904
12624
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
@@ -11977,6 +12697,10 @@ export type UserUpdateWithoutSkillsInput = {
|
|
|
11977
12697
|
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
11978
12698
|
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
11979
12699
|
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
12700
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
12701
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
12702
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
12703
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
11980
12704
|
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
11981
12705
|
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
11982
12706
|
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
@@ -12039,6 +12763,10 @@ export type UserUncheckedUpdateWithoutSkillsInput = {
|
|
|
12039
12763
|
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
12040
12764
|
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
12041
12765
|
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
12766
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12767
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
12768
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
12769
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
12042
12770
|
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
12043
12771
|
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
12044
12772
|
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
@@ -12051,119 +12779,1247 @@ export type UserUncheckedUpdateWithoutSkillsInput = {
|
|
|
12051
12779
|
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
12052
12780
|
}
|
|
12053
12781
|
|
|
12054
|
-
|
|
12055
|
-
|
|
12056
|
-
|
|
12057
|
-
|
|
12058
|
-
|
|
12059
|
-
|
|
12060
|
-
|
|
12061
|
-
|
|
12062
|
-
|
|
12063
|
-
|
|
12064
|
-
|
|
12065
|
-
|
|
12066
|
-
|
|
12067
|
-
|
|
12068
|
-
|
|
12069
|
-
|
|
12070
|
-
|
|
12071
|
-
|
|
12072
|
-
|
|
12073
|
-
|
|
12074
|
-
|
|
12075
|
-
|
|
12076
|
-
|
|
12077
|
-
|
|
12078
|
-
|
|
12079
|
-
|
|
12080
|
-
|
|
12081
|
-
|
|
12082
|
-
|
|
12083
|
-
|
|
12084
|
-
|
|
12085
|
-
|
|
12086
|
-
|
|
12087
|
-
|
|
12088
|
-
|
|
12089
|
-
|
|
12090
|
-
|
|
12091
|
-
|
|
12092
|
-
|
|
12093
|
-
|
|
12094
|
-
|
|
12095
|
-
|
|
12096
|
-
|
|
12097
|
-
|
|
12098
|
-
|
|
12099
|
-
|
|
12100
|
-
|
|
12101
|
-
|
|
12102
|
-
|
|
12103
|
-
|
|
12104
|
-
|
|
12105
|
-
|
|
12106
|
-
|
|
12107
|
-
|
|
12108
|
-
|
|
12109
|
-
|
|
12110
|
-
|
|
12111
|
-
|
|
12112
|
-
|
|
12113
|
-
|
|
12114
|
-
|
|
12115
|
-
|
|
12116
|
-
|
|
12117
|
-
|
|
12118
|
-
anyhubRecommenders?: boolean | UserCountOutputTypeCountAnyhubRecommendersArgs
|
|
12119
|
-
prdVersions?: boolean | UserCountOutputTypeCountPrdVersionsArgs
|
|
12120
|
-
reviewComments?: boolean | UserCountOutputTypeCountReviewCommentsArgs
|
|
12121
|
-
comments?: boolean | UserCountOutputTypeCountCommentsArgs
|
|
12122
|
-
commentIgnores?: boolean | UserCountOutputTypeCountCommentIgnoresArgs
|
|
12123
|
-
reviews?: boolean | UserCountOutputTypeCountReviewsArgs
|
|
12124
|
-
designProjects?: boolean | UserCountOutputTypeCountDesignProjectsArgs
|
|
12125
|
-
chatThreads?: boolean | UserCountOutputTypeCountChatThreadsArgs
|
|
12126
|
-
aiProviderConfigs?: boolean | UserCountOutputTypeCountAiProviderConfigsArgs
|
|
12127
|
-
agentConversations?: boolean | UserCountOutputTypeCountAgentConversationsArgs
|
|
12128
|
-
ownedProjects?: boolean | UserCountOutputTypeCountOwnedProjectsArgs
|
|
12129
|
-
projectMemberships?: boolean | UserCountOutputTypeCountProjectMembershipsArgs
|
|
12130
|
-
projectActivities?: boolean | UserCountOutputTypeCountProjectActivitiesArgs
|
|
12131
|
-
ownedWorkspaces?: boolean | UserCountOutputTypeCountOwnedWorkspacesArgs
|
|
12132
|
-
workspaceMemberships?: boolean | UserCountOutputTypeCountWorkspaceMembershipsArgs
|
|
12133
|
-
sentInvitations?: boolean | UserCountOutputTypeCountSentInvitationsArgs
|
|
12134
|
-
ownedJoinRequests?: boolean | UserCountOutputTypeCountOwnedJoinRequestsArgs
|
|
12135
|
-
applicantJoinRequests?: boolean | UserCountOutputTypeCountApplicantJoinRequestsArgs
|
|
12136
|
-
aiUsageLogs?: boolean | UserCountOutputTypeCountAiUsageLogsArgs
|
|
12137
|
-
agents?: boolean | UserCountOutputTypeCountAgentsArgs
|
|
12138
|
-
skills?: boolean | UserCountOutputTypeCountSkillsArgs
|
|
12139
|
-
}
|
|
12140
|
-
|
|
12141
|
-
/**
|
|
12142
|
-
* UserCountOutputType without action
|
|
12143
|
-
*/
|
|
12144
|
-
export type UserCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
12145
|
-
/**
|
|
12146
|
-
* Select specific fields to fetch from the UserCountOutputType
|
|
12147
|
-
*/
|
|
12148
|
-
select?: Prisma.UserCountOutputTypeSelect<ExtArgs> | null
|
|
12782
|
+
export type UserCreateWithoutStoriesAssignedInput = {
|
|
12783
|
+
id?: string
|
|
12784
|
+
email: string
|
|
12785
|
+
username: string
|
|
12786
|
+
password: string
|
|
12787
|
+
role?: string
|
|
12788
|
+
status?: string
|
|
12789
|
+
createdAt?: Date | string
|
|
12790
|
+
updatedAt?: Date | string
|
|
12791
|
+
lastLoginAt?: Date | string | null
|
|
12792
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
12793
|
+
bgShape?: string | null
|
|
12794
|
+
bgColor?: string | null
|
|
12795
|
+
aiProvider?: string | null
|
|
12796
|
+
aiApiKey?: string | null
|
|
12797
|
+
aiModel?: string | null
|
|
12798
|
+
locale?: string | null
|
|
12799
|
+
sketchApiToken?: string | null
|
|
12800
|
+
timezone?: string | null
|
|
12801
|
+
preferredCurrency?: string
|
|
12802
|
+
defaultWorkspaceId?: string | null
|
|
12803
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
12804
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
12805
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
12806
|
+
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
12807
|
+
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
12808
|
+
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
12809
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
12810
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
|
|
12811
|
+
legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
|
|
12812
|
+
industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
|
|
12813
|
+
dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
|
|
12814
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
|
|
12815
|
+
bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
|
|
12816
|
+
articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
|
|
12817
|
+
anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
|
|
12818
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
|
|
12819
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
|
|
12820
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
|
|
12821
|
+
prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
|
|
12822
|
+
reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
|
|
12823
|
+
comments?: Prisma.CommentCreateNestedManyWithoutUserInput
|
|
12824
|
+
commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
|
|
12825
|
+
reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
|
|
12826
|
+
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
12827
|
+
chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
|
|
12828
|
+
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
12829
|
+
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
12830
|
+
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
12831
|
+
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
12832
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
12833
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
12834
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
12835
|
+
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
12836
|
+
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
12837
|
+
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
12838
|
+
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
12839
|
+
sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
|
|
12840
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
|
|
12841
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
|
|
12842
|
+
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
12843
|
+
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
12844
|
+
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
12845
|
+
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
12149
12846
|
}
|
|
12150
12847
|
|
|
12151
|
-
|
|
12152
|
-
|
|
12153
|
-
|
|
12154
|
-
|
|
12155
|
-
|
|
12848
|
+
export type UserUncheckedCreateWithoutStoriesAssignedInput = {
|
|
12849
|
+
id?: string
|
|
12850
|
+
email: string
|
|
12851
|
+
username: string
|
|
12852
|
+
password: string
|
|
12853
|
+
role?: string
|
|
12854
|
+
status?: string
|
|
12855
|
+
createdAt?: Date | string
|
|
12856
|
+
updatedAt?: Date | string
|
|
12857
|
+
lastLoginAt?: Date | string | null
|
|
12858
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
12859
|
+
bgShape?: string | null
|
|
12860
|
+
bgColor?: string | null
|
|
12861
|
+
aiProvider?: string | null
|
|
12862
|
+
aiApiKey?: string | null
|
|
12863
|
+
aiModel?: string | null
|
|
12864
|
+
locale?: string | null
|
|
12865
|
+
sketchApiToken?: string | null
|
|
12866
|
+
timezone?: string | null
|
|
12867
|
+
preferredCurrency?: string
|
|
12868
|
+
defaultWorkspaceId?: string | null
|
|
12869
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
12870
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
12871
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
12872
|
+
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
12873
|
+
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
12874
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
12875
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
12876
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
|
|
12877
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
|
|
12878
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
|
|
12879
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
|
|
12880
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
|
|
12881
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
|
|
12882
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
|
|
12883
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
|
|
12884
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
|
|
12885
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
|
|
12886
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
|
|
12887
|
+
prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
|
|
12888
|
+
reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
|
|
12889
|
+
comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
|
|
12890
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
|
|
12891
|
+
reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
|
|
12892
|
+
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
12893
|
+
chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
|
|
12894
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
12895
|
+
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
12896
|
+
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
12897
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
12898
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12899
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
12900
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
12901
|
+
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
12902
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
12903
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
12904
|
+
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
12905
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
|
|
12906
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
|
|
12907
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
|
|
12908
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
12909
|
+
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
12910
|
+
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
12911
|
+
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
12156
12912
|
}
|
|
12157
12913
|
|
|
12158
|
-
|
|
12159
|
-
|
|
12160
|
-
|
|
12161
|
-
export type UserCountOutputTypeCountLoginLogsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
12162
|
-
where?: Prisma.LoginLogWhereInput
|
|
12914
|
+
export type UserCreateOrConnectWithoutStoriesAssignedInput = {
|
|
12915
|
+
where: Prisma.UserWhereUniqueInput
|
|
12916
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutStoriesAssignedInput, Prisma.UserUncheckedCreateWithoutStoriesAssignedInput>
|
|
12163
12917
|
}
|
|
12164
12918
|
|
|
12165
|
-
|
|
12166
|
-
|
|
12919
|
+
export type UserCreateWithoutStoriesCreatedInput = {
|
|
12920
|
+
id?: string
|
|
12921
|
+
email: string
|
|
12922
|
+
username: string
|
|
12923
|
+
password: string
|
|
12924
|
+
role?: string
|
|
12925
|
+
status?: string
|
|
12926
|
+
createdAt?: Date | string
|
|
12927
|
+
updatedAt?: Date | string
|
|
12928
|
+
lastLoginAt?: Date | string | null
|
|
12929
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
12930
|
+
bgShape?: string | null
|
|
12931
|
+
bgColor?: string | null
|
|
12932
|
+
aiProvider?: string | null
|
|
12933
|
+
aiApiKey?: string | null
|
|
12934
|
+
aiModel?: string | null
|
|
12935
|
+
locale?: string | null
|
|
12936
|
+
sketchApiToken?: string | null
|
|
12937
|
+
timezone?: string | null
|
|
12938
|
+
preferredCurrency?: string
|
|
12939
|
+
defaultWorkspaceId?: string | null
|
|
12940
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
12941
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
12942
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
12943
|
+
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
12944
|
+
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
12945
|
+
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
12946
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
12947
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
|
|
12948
|
+
legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
|
|
12949
|
+
industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
|
|
12950
|
+
dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
|
|
12951
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
|
|
12952
|
+
bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
|
|
12953
|
+
articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
|
|
12954
|
+
anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
|
|
12955
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
|
|
12956
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
|
|
12957
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
|
|
12958
|
+
prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
|
|
12959
|
+
reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
|
|
12960
|
+
comments?: Prisma.CommentCreateNestedManyWithoutUserInput
|
|
12961
|
+
commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
|
|
12962
|
+
reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
|
|
12963
|
+
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
12964
|
+
chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
|
|
12965
|
+
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
12966
|
+
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
12967
|
+
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
12968
|
+
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
12969
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
12970
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
12971
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
12972
|
+
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
12973
|
+
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
12974
|
+
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
12975
|
+
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
12976
|
+
sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
|
|
12977
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
|
|
12978
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
|
|
12979
|
+
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
12980
|
+
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
12981
|
+
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
12982
|
+
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
12983
|
+
}
|
|
12984
|
+
|
|
12985
|
+
export type UserUncheckedCreateWithoutStoriesCreatedInput = {
|
|
12986
|
+
id?: string
|
|
12987
|
+
email: string
|
|
12988
|
+
username: string
|
|
12989
|
+
password: string
|
|
12990
|
+
role?: string
|
|
12991
|
+
status?: string
|
|
12992
|
+
createdAt?: Date | string
|
|
12993
|
+
updatedAt?: Date | string
|
|
12994
|
+
lastLoginAt?: Date | string | null
|
|
12995
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
12996
|
+
bgShape?: string | null
|
|
12997
|
+
bgColor?: string | null
|
|
12998
|
+
aiProvider?: string | null
|
|
12999
|
+
aiApiKey?: string | null
|
|
13000
|
+
aiModel?: string | null
|
|
13001
|
+
locale?: string | null
|
|
13002
|
+
sketchApiToken?: string | null
|
|
13003
|
+
timezone?: string | null
|
|
13004
|
+
preferredCurrency?: string
|
|
13005
|
+
defaultWorkspaceId?: string | null
|
|
13006
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
13007
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
13008
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13009
|
+
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
13010
|
+
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
13011
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
13012
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
13013
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
|
|
13014
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
|
|
13015
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
|
|
13016
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
|
|
13017
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
|
|
13018
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
|
|
13019
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
|
|
13020
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
|
|
13021
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
|
|
13022
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
|
|
13023
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
|
|
13024
|
+
prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
|
|
13025
|
+
reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
|
|
13026
|
+
comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
|
|
13027
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
|
|
13028
|
+
reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
|
|
13029
|
+
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
13030
|
+
chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
|
|
13031
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
13032
|
+
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
13033
|
+
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
13034
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
13035
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13036
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
13037
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
13038
|
+
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
13039
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
13040
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
13041
|
+
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
13042
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
|
|
13043
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
|
|
13044
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
|
|
13045
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
13046
|
+
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
13047
|
+
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
13048
|
+
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
13049
|
+
}
|
|
13050
|
+
|
|
13051
|
+
export type UserCreateOrConnectWithoutStoriesCreatedInput = {
|
|
13052
|
+
where: Prisma.UserWhereUniqueInput
|
|
13053
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutStoriesCreatedInput, Prisma.UserUncheckedCreateWithoutStoriesCreatedInput>
|
|
13054
|
+
}
|
|
13055
|
+
|
|
13056
|
+
export type UserCreateWithoutStoriesEditedInput = {
|
|
13057
|
+
id?: string
|
|
13058
|
+
email: string
|
|
13059
|
+
username: string
|
|
13060
|
+
password: string
|
|
13061
|
+
role?: string
|
|
13062
|
+
status?: string
|
|
13063
|
+
createdAt?: Date | string
|
|
13064
|
+
updatedAt?: Date | string
|
|
13065
|
+
lastLoginAt?: Date | string | null
|
|
13066
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13067
|
+
bgShape?: string | null
|
|
13068
|
+
bgColor?: string | null
|
|
13069
|
+
aiProvider?: string | null
|
|
13070
|
+
aiApiKey?: string | null
|
|
13071
|
+
aiModel?: string | null
|
|
13072
|
+
locale?: string | null
|
|
13073
|
+
sketchApiToken?: string | null
|
|
13074
|
+
timezone?: string | null
|
|
13075
|
+
preferredCurrency?: string
|
|
13076
|
+
defaultWorkspaceId?: string | null
|
|
13077
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
13078
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
13079
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
13080
|
+
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
13081
|
+
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
13082
|
+
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
13083
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
13084
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
|
|
13085
|
+
legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
|
|
13086
|
+
industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
|
|
13087
|
+
dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
|
|
13088
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
|
|
13089
|
+
bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
|
|
13090
|
+
articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
|
|
13091
|
+
anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
|
|
13092
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
|
|
13093
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
|
|
13094
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
|
|
13095
|
+
prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
|
|
13096
|
+
reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
|
|
13097
|
+
comments?: Prisma.CommentCreateNestedManyWithoutUserInput
|
|
13098
|
+
commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
|
|
13099
|
+
reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
|
|
13100
|
+
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
13101
|
+
chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
|
|
13102
|
+
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
13103
|
+
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
13104
|
+
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
13105
|
+
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
13106
|
+
iterationsCreated?: Prisma.IterationCreateNestedManyWithoutCreatedByInput
|
|
13107
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
13108
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
13109
|
+
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
13110
|
+
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
13111
|
+
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
13112
|
+
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
13113
|
+
sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
|
|
13114
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
|
|
13115
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
|
|
13116
|
+
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
13117
|
+
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
13118
|
+
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
13119
|
+
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
13120
|
+
}
|
|
13121
|
+
|
|
13122
|
+
export type UserUncheckedCreateWithoutStoriesEditedInput = {
|
|
13123
|
+
id?: string
|
|
13124
|
+
email: string
|
|
13125
|
+
username: string
|
|
13126
|
+
password: string
|
|
13127
|
+
role?: string
|
|
13128
|
+
status?: string
|
|
13129
|
+
createdAt?: Date | string
|
|
13130
|
+
updatedAt?: Date | string
|
|
13131
|
+
lastLoginAt?: Date | string | null
|
|
13132
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13133
|
+
bgShape?: string | null
|
|
13134
|
+
bgColor?: string | null
|
|
13135
|
+
aiProvider?: string | null
|
|
13136
|
+
aiApiKey?: string | null
|
|
13137
|
+
aiModel?: string | null
|
|
13138
|
+
locale?: string | null
|
|
13139
|
+
sketchApiToken?: string | null
|
|
13140
|
+
timezone?: string | null
|
|
13141
|
+
preferredCurrency?: string
|
|
13142
|
+
defaultWorkspaceId?: string | null
|
|
13143
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
13144
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
13145
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13146
|
+
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
13147
|
+
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
13148
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
13149
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
13150
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
|
|
13151
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
|
|
13152
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
|
|
13153
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
|
|
13154
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
|
|
13155
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
|
|
13156
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
|
|
13157
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
|
|
13158
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
|
|
13159
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
|
|
13160
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
|
|
13161
|
+
prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
|
|
13162
|
+
reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
|
|
13163
|
+
comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
|
|
13164
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
|
|
13165
|
+
reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
|
|
13166
|
+
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
13167
|
+
chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
|
|
13168
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
13169
|
+
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
13170
|
+
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
13171
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
13172
|
+
iterationsCreated?: Prisma.IterationUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13173
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13174
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
13175
|
+
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
13176
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
13177
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
13178
|
+
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
13179
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
|
|
13180
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
|
|
13181
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
|
|
13182
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
13183
|
+
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
13184
|
+
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
13185
|
+
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
13186
|
+
}
|
|
13187
|
+
|
|
13188
|
+
export type UserCreateOrConnectWithoutStoriesEditedInput = {
|
|
13189
|
+
where: Prisma.UserWhereUniqueInput
|
|
13190
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutStoriesEditedInput, Prisma.UserUncheckedCreateWithoutStoriesEditedInput>
|
|
13191
|
+
}
|
|
13192
|
+
|
|
13193
|
+
export type UserUpsertWithoutStoriesAssignedInput = {
|
|
13194
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutStoriesAssignedInput, Prisma.UserUncheckedUpdateWithoutStoriesAssignedInput>
|
|
13195
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutStoriesAssignedInput, Prisma.UserUncheckedCreateWithoutStoriesAssignedInput>
|
|
13196
|
+
where?: Prisma.UserWhereInput
|
|
13197
|
+
}
|
|
13198
|
+
|
|
13199
|
+
export type UserUpdateToOneWithWhereWithoutStoriesAssignedInput = {
|
|
13200
|
+
where?: Prisma.UserWhereInput
|
|
13201
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutStoriesAssignedInput, Prisma.UserUncheckedUpdateWithoutStoriesAssignedInput>
|
|
13202
|
+
}
|
|
13203
|
+
|
|
13204
|
+
export type UserUpdateWithoutStoriesAssignedInput = {
|
|
13205
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13206
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13207
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13208
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13209
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13210
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13211
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13212
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13213
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
13214
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13215
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13216
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13217
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13218
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13219
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13220
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13221
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13222
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13223
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13224
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13225
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
13226
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
13227
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
13228
|
+
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
13229
|
+
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
13230
|
+
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
13231
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
13232
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
|
|
13233
|
+
legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
|
|
13234
|
+
industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
|
|
13235
|
+
dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
|
|
13236
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
|
|
13237
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
|
|
13238
|
+
articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
|
|
13239
|
+
anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
|
|
13240
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
|
|
13241
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
|
|
13242
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
|
|
13243
|
+
prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
|
|
13244
|
+
reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
|
|
13245
|
+
comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
|
|
13246
|
+
commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
|
|
13247
|
+
reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
|
|
13248
|
+
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
13249
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
13250
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
13251
|
+
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
13252
|
+
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
13253
|
+
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
13254
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
13255
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
13256
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
13257
|
+
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
13258
|
+
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
13259
|
+
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
13260
|
+
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
13261
|
+
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
13262
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
13263
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
|
|
13264
|
+
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
13265
|
+
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
13266
|
+
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
13267
|
+
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
13268
|
+
}
|
|
13269
|
+
|
|
13270
|
+
export type UserUncheckedUpdateWithoutStoriesAssignedInput = {
|
|
13271
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13272
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13273
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13274
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13275
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13276
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13277
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13278
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13279
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
13280
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13281
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13282
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13283
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13284
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13285
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13286
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13287
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13288
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13289
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13290
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13291
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
13292
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13293
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
13294
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
13295
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
13296
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
13297
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
13298
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
13299
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
13300
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
13301
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
13302
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
13303
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
13304
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
13305
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
13306
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
13307
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
13308
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
13309
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
13310
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
13311
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
13312
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
13313
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
13314
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
13315
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
13316
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
13317
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
13318
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13319
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
13320
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13321
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13322
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
13323
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
13324
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13325
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13326
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
13327
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13328
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13329
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
13330
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13331
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
13332
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
13333
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
13334
|
+
}
|
|
13335
|
+
|
|
13336
|
+
export type UserUpsertWithoutStoriesCreatedInput = {
|
|
13337
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutStoriesCreatedInput, Prisma.UserUncheckedUpdateWithoutStoriesCreatedInput>
|
|
13338
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutStoriesCreatedInput, Prisma.UserUncheckedCreateWithoutStoriesCreatedInput>
|
|
13339
|
+
where?: Prisma.UserWhereInput
|
|
13340
|
+
}
|
|
13341
|
+
|
|
13342
|
+
export type UserUpdateToOneWithWhereWithoutStoriesCreatedInput = {
|
|
13343
|
+
where?: Prisma.UserWhereInput
|
|
13344
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutStoriesCreatedInput, Prisma.UserUncheckedUpdateWithoutStoriesCreatedInput>
|
|
13345
|
+
}
|
|
13346
|
+
|
|
13347
|
+
export type UserUpdateWithoutStoriesCreatedInput = {
|
|
13348
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13349
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13350
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13351
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13352
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13353
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13354
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13355
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13356
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
13357
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13358
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13359
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13360
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13361
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13362
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13363
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13364
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13365
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13366
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13367
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13368
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
13369
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
13370
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
13371
|
+
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
13372
|
+
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
13373
|
+
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
13374
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
13375
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
|
|
13376
|
+
legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
|
|
13377
|
+
industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
|
|
13378
|
+
dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
|
|
13379
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
|
|
13380
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
|
|
13381
|
+
articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
|
|
13382
|
+
anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
|
|
13383
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
|
|
13384
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
|
|
13385
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
|
|
13386
|
+
prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
|
|
13387
|
+
reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
|
|
13388
|
+
comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
|
|
13389
|
+
commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
|
|
13390
|
+
reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
|
|
13391
|
+
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
13392
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
13393
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
13394
|
+
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
13395
|
+
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
13396
|
+
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
13397
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
13398
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
13399
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
13400
|
+
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
13401
|
+
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
13402
|
+
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
13403
|
+
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
13404
|
+
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
13405
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
13406
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
|
|
13407
|
+
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
13408
|
+
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
13409
|
+
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
13410
|
+
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
13411
|
+
}
|
|
13412
|
+
|
|
13413
|
+
export type UserUncheckedUpdateWithoutStoriesCreatedInput = {
|
|
13414
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13415
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13416
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13417
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13418
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13419
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13420
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13421
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13422
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
13423
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13424
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13425
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13426
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13427
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13428
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13429
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13430
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13431
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13432
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13433
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13434
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
13435
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13436
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
13437
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
13438
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
13439
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
13440
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
13441
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
13442
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
13443
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
13444
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
13445
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
13446
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
13447
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
13448
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
13449
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
13450
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
13451
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
13452
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
13453
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
13454
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
13455
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
13456
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
13457
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
13458
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
13459
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
13460
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
13461
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13462
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
13463
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13464
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
13465
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
13466
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
13467
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13468
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13469
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
13470
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13471
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13472
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
13473
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13474
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
13475
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
13476
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
13477
|
+
}
|
|
13478
|
+
|
|
13479
|
+
export type UserUpsertWithoutStoriesEditedInput = {
|
|
13480
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutStoriesEditedInput, Prisma.UserUncheckedUpdateWithoutStoriesEditedInput>
|
|
13481
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutStoriesEditedInput, Prisma.UserUncheckedCreateWithoutStoriesEditedInput>
|
|
13482
|
+
where?: Prisma.UserWhereInput
|
|
13483
|
+
}
|
|
13484
|
+
|
|
13485
|
+
export type UserUpdateToOneWithWhereWithoutStoriesEditedInput = {
|
|
13486
|
+
where?: Prisma.UserWhereInput
|
|
13487
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutStoriesEditedInput, Prisma.UserUncheckedUpdateWithoutStoriesEditedInput>
|
|
13488
|
+
}
|
|
13489
|
+
|
|
13490
|
+
export type UserUpdateWithoutStoriesEditedInput = {
|
|
13491
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13492
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13493
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13494
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13495
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13496
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13497
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13498
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13499
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
13500
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13501
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13502
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13503
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13504
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13505
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13506
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13507
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13508
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13509
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13510
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13511
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
13512
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
13513
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
13514
|
+
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
13515
|
+
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
13516
|
+
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
13517
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
13518
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
|
|
13519
|
+
legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
|
|
13520
|
+
industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
|
|
13521
|
+
dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
|
|
13522
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
|
|
13523
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
|
|
13524
|
+
articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
|
|
13525
|
+
anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
|
|
13526
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
|
|
13527
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
|
|
13528
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
|
|
13529
|
+
prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
|
|
13530
|
+
reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
|
|
13531
|
+
comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
|
|
13532
|
+
commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
|
|
13533
|
+
reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
|
|
13534
|
+
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
13535
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
13536
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
13537
|
+
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
13538
|
+
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
13539
|
+
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
13540
|
+
iterationsCreated?: Prisma.IterationUpdateManyWithoutCreatedByNestedInput
|
|
13541
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
13542
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
13543
|
+
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
13544
|
+
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
13545
|
+
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
13546
|
+
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
13547
|
+
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
13548
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
13549
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
|
|
13550
|
+
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
13551
|
+
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
13552
|
+
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
13553
|
+
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
13554
|
+
}
|
|
13555
|
+
|
|
13556
|
+
export type UserUncheckedUpdateWithoutStoriesEditedInput = {
|
|
13557
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13558
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13559
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13560
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13561
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13562
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13563
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13564
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13565
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
13566
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13567
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13568
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13569
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13570
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13571
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13572
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13573
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13574
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13575
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13576
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13577
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
13578
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13579
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
13580
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
13581
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
13582
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
13583
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
13584
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
13585
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
13586
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
13587
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
13588
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
13589
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
13590
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
13591
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
13592
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
13593
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
13594
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
13595
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
13596
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
13597
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
13598
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
13599
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
13600
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
13601
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
13602
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
13603
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
13604
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13605
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
13606
|
+
iterationsCreated?: Prisma.IterationUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13607
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13608
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
13609
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
13610
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13611
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13612
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
13613
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13614
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13615
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
13616
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13617
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
13618
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
13619
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
13620
|
+
}
|
|
13621
|
+
|
|
13622
|
+
export type UserCreateWithoutIterationsCreatedInput = {
|
|
13623
|
+
id?: string
|
|
13624
|
+
email: string
|
|
13625
|
+
username: string
|
|
13626
|
+
password: string
|
|
13627
|
+
role?: string
|
|
13628
|
+
status?: string
|
|
13629
|
+
createdAt?: Date | string
|
|
13630
|
+
updatedAt?: Date | string
|
|
13631
|
+
lastLoginAt?: Date | string | null
|
|
13632
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13633
|
+
bgShape?: string | null
|
|
13634
|
+
bgColor?: string | null
|
|
13635
|
+
aiProvider?: string | null
|
|
13636
|
+
aiApiKey?: string | null
|
|
13637
|
+
aiModel?: string | null
|
|
13638
|
+
locale?: string | null
|
|
13639
|
+
sketchApiToken?: string | null
|
|
13640
|
+
timezone?: string | null
|
|
13641
|
+
preferredCurrency?: string
|
|
13642
|
+
defaultWorkspaceId?: string | null
|
|
13643
|
+
invitationUses?: Prisma.InvitationUseCreateNestedManyWithoutUserInput
|
|
13644
|
+
loginLogs?: Prisma.LoginLogCreateNestedManyWithoutUserInput
|
|
13645
|
+
passwordResetTokens?: Prisma.PasswordResetTokenCreateNestedManyWithoutUserInput
|
|
13646
|
+
prds?: Prisma.PRDCreateNestedManyWithoutUserInput
|
|
13647
|
+
tags?: Prisma.TagCreateNestedManyWithoutUserInput
|
|
13648
|
+
knowledgeBases?: Prisma.KnowledgeBaseCreateNestedManyWithoutUserInput
|
|
13649
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentCreateNestedManyWithoutCreatorInput
|
|
13650
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordCreateNestedManyWithoutUserInput
|
|
13651
|
+
legalRegulations?: Prisma.LegalRegulationCreateNestedManyWithoutUserInput
|
|
13652
|
+
industryCompliances?: Prisma.IndustryComplianceCreateNestedManyWithoutUserInput
|
|
13653
|
+
dictionaryTerms?: Prisma.DictionaryTermCreateNestedManyWithoutUserInput
|
|
13654
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkCreateNestedManyWithoutUserInput
|
|
13655
|
+
bookmarkCategories?: Prisma.BookmarkCategoryCreateNestedManyWithoutUserInput
|
|
13656
|
+
articleFavorites?: Prisma.ArticleFavoriteCreateNestedManyWithoutUserInput
|
|
13657
|
+
anyhubApps?: Prisma.AnyHubAppCreateNestedManyWithoutUserInput
|
|
13658
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppCreateNestedManyWithoutUserInput
|
|
13659
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationCreateNestedManyWithoutReviewerInput
|
|
13660
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderCreateNestedManyWithoutUserInput
|
|
13661
|
+
prdVersions?: Prisma.PRDVersionCreateNestedManyWithoutUserInput
|
|
13662
|
+
reviewComments?: Prisma.ReviewCommentCreateNestedManyWithoutUserInput
|
|
13663
|
+
comments?: Prisma.CommentCreateNestedManyWithoutUserInput
|
|
13664
|
+
commentIgnores?: Prisma.CommentIgnoreCreateNestedManyWithoutUserInput
|
|
13665
|
+
reviews?: Prisma.ReviewCreateNestedManyWithoutReviewerInput
|
|
13666
|
+
designProjects?: Prisma.DesignProjectCreateNestedManyWithoutUserInput
|
|
13667
|
+
chatThreads?: Prisma.ChatThreadCreateNestedManyWithoutUserInput
|
|
13668
|
+
aiProviderConfigs?: Prisma.AiProviderConfigCreateNestedManyWithoutUserInput
|
|
13669
|
+
agentConversations?: Prisma.AgentConversationCreateNestedManyWithoutUserInput
|
|
13670
|
+
ownedProjects?: Prisma.ProjectCreateNestedManyWithoutOwnerInput
|
|
13671
|
+
projectMemberships?: Prisma.ProjectMemberCreateNestedManyWithoutUserInput
|
|
13672
|
+
storiesCreated?: Prisma.StoryCreateNestedManyWithoutCreatedByInput
|
|
13673
|
+
storiesAssigned?: Prisma.StoryCreateNestedManyWithoutAssigneeInput
|
|
13674
|
+
storiesEdited?: Prisma.StoryCreateNestedManyWithoutUpdatedByInput
|
|
13675
|
+
projectActivities?: Prisma.ProjectActivityCreateNestedManyWithoutUserInput
|
|
13676
|
+
ownedWorkspaces?: Prisma.WorkspaceCreateNestedManyWithoutOwnerInput
|
|
13677
|
+
workspaceMemberships?: Prisma.TeamMembershipCreateNestedManyWithoutOwnerInput
|
|
13678
|
+
teamJoined?: Prisma.TeamMembershipCreateNestedOneWithoutMemberInput
|
|
13679
|
+
sentInvitations?: Prisma.TeamInvitationCreateNestedManyWithoutOwnerInput
|
|
13680
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutOwnerInput
|
|
13681
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestCreateNestedManyWithoutApplicantInput
|
|
13682
|
+
aiUsageLogs?: Prisma.AiUsageLogCreateNestedManyWithoutUserInput
|
|
13683
|
+
agents?: Prisma.UserAgentCreateNestedManyWithoutUserInput
|
|
13684
|
+
skills?: Prisma.UserSkillCreateNestedManyWithoutUserInput
|
|
13685
|
+
subscription?: Prisma.SubscriptionCreateNestedOneWithoutUserInput
|
|
13686
|
+
}
|
|
13687
|
+
|
|
13688
|
+
export type UserUncheckedCreateWithoutIterationsCreatedInput = {
|
|
13689
|
+
id?: string
|
|
13690
|
+
email: string
|
|
13691
|
+
username: string
|
|
13692
|
+
password: string
|
|
13693
|
+
role?: string
|
|
13694
|
+
status?: string
|
|
13695
|
+
createdAt?: Date | string
|
|
13696
|
+
updatedAt?: Date | string
|
|
13697
|
+
lastLoginAt?: Date | string | null
|
|
13698
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13699
|
+
bgShape?: string | null
|
|
13700
|
+
bgColor?: string | null
|
|
13701
|
+
aiProvider?: string | null
|
|
13702
|
+
aiApiKey?: string | null
|
|
13703
|
+
aiModel?: string | null
|
|
13704
|
+
locale?: string | null
|
|
13705
|
+
sketchApiToken?: string | null
|
|
13706
|
+
timezone?: string | null
|
|
13707
|
+
preferredCurrency?: string
|
|
13708
|
+
defaultWorkspaceId?: string | null
|
|
13709
|
+
invitationUses?: Prisma.InvitationUseUncheckedCreateNestedManyWithoutUserInput
|
|
13710
|
+
loginLogs?: Prisma.LoginLogUncheckedCreateNestedManyWithoutUserInput
|
|
13711
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedCreateNestedManyWithoutUserInput
|
|
13712
|
+
prds?: Prisma.PRDUncheckedCreateNestedManyWithoutUserInput
|
|
13713
|
+
tags?: Prisma.TagUncheckedCreateNestedManyWithoutUserInput
|
|
13714
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedCreateNestedManyWithoutUserInput
|
|
13715
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedCreateNestedManyWithoutCreatorInput
|
|
13716
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedCreateNestedManyWithoutUserInput
|
|
13717
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedCreateNestedManyWithoutUserInput
|
|
13718
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedCreateNestedManyWithoutUserInput
|
|
13719
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedCreateNestedManyWithoutUserInput
|
|
13720
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedCreateNestedManyWithoutUserInput
|
|
13721
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedCreateNestedManyWithoutUserInput
|
|
13722
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedCreateNestedManyWithoutUserInput
|
|
13723
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedCreateNestedManyWithoutUserInput
|
|
13724
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedCreateNestedManyWithoutUserInput
|
|
13725
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedCreateNestedManyWithoutReviewerInput
|
|
13726
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedCreateNestedManyWithoutUserInput
|
|
13727
|
+
prdVersions?: Prisma.PRDVersionUncheckedCreateNestedManyWithoutUserInput
|
|
13728
|
+
reviewComments?: Prisma.ReviewCommentUncheckedCreateNestedManyWithoutUserInput
|
|
13729
|
+
comments?: Prisma.CommentUncheckedCreateNestedManyWithoutUserInput
|
|
13730
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedCreateNestedManyWithoutUserInput
|
|
13731
|
+
reviews?: Prisma.ReviewUncheckedCreateNestedManyWithoutReviewerInput
|
|
13732
|
+
designProjects?: Prisma.DesignProjectUncheckedCreateNestedManyWithoutUserInput
|
|
13733
|
+
chatThreads?: Prisma.ChatThreadUncheckedCreateNestedManyWithoutUserInput
|
|
13734
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedCreateNestedManyWithoutUserInput
|
|
13735
|
+
agentConversations?: Prisma.AgentConversationUncheckedCreateNestedManyWithoutUserInput
|
|
13736
|
+
ownedProjects?: Prisma.ProjectUncheckedCreateNestedManyWithoutOwnerInput
|
|
13737
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedCreateNestedManyWithoutUserInput
|
|
13738
|
+
storiesCreated?: Prisma.StoryUncheckedCreateNestedManyWithoutCreatedByInput
|
|
13739
|
+
storiesAssigned?: Prisma.StoryUncheckedCreateNestedManyWithoutAssigneeInput
|
|
13740
|
+
storiesEdited?: Prisma.StoryUncheckedCreateNestedManyWithoutUpdatedByInput
|
|
13741
|
+
projectActivities?: Prisma.ProjectActivityUncheckedCreateNestedManyWithoutUserInput
|
|
13742
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedCreateNestedManyWithoutOwnerInput
|
|
13743
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedCreateNestedManyWithoutOwnerInput
|
|
13744
|
+
teamJoined?: Prisma.TeamMembershipUncheckedCreateNestedOneWithoutMemberInput
|
|
13745
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedCreateNestedManyWithoutOwnerInput
|
|
13746
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutOwnerInput
|
|
13747
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedCreateNestedManyWithoutApplicantInput
|
|
13748
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedCreateNestedManyWithoutUserInput
|
|
13749
|
+
agents?: Prisma.UserAgentUncheckedCreateNestedManyWithoutUserInput
|
|
13750
|
+
skills?: Prisma.UserSkillUncheckedCreateNestedManyWithoutUserInput
|
|
13751
|
+
subscription?: Prisma.SubscriptionUncheckedCreateNestedOneWithoutUserInput
|
|
13752
|
+
}
|
|
13753
|
+
|
|
13754
|
+
export type UserCreateOrConnectWithoutIterationsCreatedInput = {
|
|
13755
|
+
where: Prisma.UserWhereUniqueInput
|
|
13756
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutIterationsCreatedInput, Prisma.UserUncheckedCreateWithoutIterationsCreatedInput>
|
|
13757
|
+
}
|
|
13758
|
+
|
|
13759
|
+
export type UserUpsertWithoutIterationsCreatedInput = {
|
|
13760
|
+
update: Prisma.XOR<Prisma.UserUpdateWithoutIterationsCreatedInput, Prisma.UserUncheckedUpdateWithoutIterationsCreatedInput>
|
|
13761
|
+
create: Prisma.XOR<Prisma.UserCreateWithoutIterationsCreatedInput, Prisma.UserUncheckedCreateWithoutIterationsCreatedInput>
|
|
13762
|
+
where?: Prisma.UserWhereInput
|
|
13763
|
+
}
|
|
13764
|
+
|
|
13765
|
+
export type UserUpdateToOneWithWhereWithoutIterationsCreatedInput = {
|
|
13766
|
+
where?: Prisma.UserWhereInput
|
|
13767
|
+
data: Prisma.XOR<Prisma.UserUpdateWithoutIterationsCreatedInput, Prisma.UserUncheckedUpdateWithoutIterationsCreatedInput>
|
|
13768
|
+
}
|
|
13769
|
+
|
|
13770
|
+
export type UserUpdateWithoutIterationsCreatedInput = {
|
|
13771
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13772
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13773
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13774
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13775
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13776
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13777
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13778
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13779
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
13780
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13781
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13782
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13783
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13784
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13785
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13786
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13787
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13788
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13789
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13790
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13791
|
+
invitationUses?: Prisma.InvitationUseUpdateManyWithoutUserNestedInput
|
|
13792
|
+
loginLogs?: Prisma.LoginLogUpdateManyWithoutUserNestedInput
|
|
13793
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUpdateManyWithoutUserNestedInput
|
|
13794
|
+
prds?: Prisma.PRDUpdateManyWithoutUserNestedInput
|
|
13795
|
+
tags?: Prisma.TagUpdateManyWithoutUserNestedInput
|
|
13796
|
+
knowledgeBases?: Prisma.KnowledgeBaseUpdateManyWithoutUserNestedInput
|
|
13797
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUpdateManyWithoutCreatorNestedInput
|
|
13798
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUpdateManyWithoutUserNestedInput
|
|
13799
|
+
legalRegulations?: Prisma.LegalRegulationUpdateManyWithoutUserNestedInput
|
|
13800
|
+
industryCompliances?: Prisma.IndustryComplianceUpdateManyWithoutUserNestedInput
|
|
13801
|
+
dictionaryTerms?: Prisma.DictionaryTermUpdateManyWithoutUserNestedInput
|
|
13802
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUpdateManyWithoutUserNestedInput
|
|
13803
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUpdateManyWithoutUserNestedInput
|
|
13804
|
+
articleFavorites?: Prisma.ArticleFavoriteUpdateManyWithoutUserNestedInput
|
|
13805
|
+
anyhubApps?: Prisma.AnyHubAppUpdateManyWithoutUserNestedInput
|
|
13806
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUpdateManyWithoutUserNestedInput
|
|
13807
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUpdateManyWithoutReviewerNestedInput
|
|
13808
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUpdateManyWithoutUserNestedInput
|
|
13809
|
+
prdVersions?: Prisma.PRDVersionUpdateManyWithoutUserNestedInput
|
|
13810
|
+
reviewComments?: Prisma.ReviewCommentUpdateManyWithoutUserNestedInput
|
|
13811
|
+
comments?: Prisma.CommentUpdateManyWithoutUserNestedInput
|
|
13812
|
+
commentIgnores?: Prisma.CommentIgnoreUpdateManyWithoutUserNestedInput
|
|
13813
|
+
reviews?: Prisma.ReviewUpdateManyWithoutReviewerNestedInput
|
|
13814
|
+
designProjects?: Prisma.DesignProjectUpdateManyWithoutUserNestedInput
|
|
13815
|
+
chatThreads?: Prisma.ChatThreadUpdateManyWithoutUserNestedInput
|
|
13816
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUpdateManyWithoutUserNestedInput
|
|
13817
|
+
agentConversations?: Prisma.AgentConversationUpdateManyWithoutUserNestedInput
|
|
13818
|
+
ownedProjects?: Prisma.ProjectUpdateManyWithoutOwnerNestedInput
|
|
13819
|
+
projectMemberships?: Prisma.ProjectMemberUpdateManyWithoutUserNestedInput
|
|
13820
|
+
storiesCreated?: Prisma.StoryUpdateManyWithoutCreatedByNestedInput
|
|
13821
|
+
storiesAssigned?: Prisma.StoryUpdateManyWithoutAssigneeNestedInput
|
|
13822
|
+
storiesEdited?: Prisma.StoryUpdateManyWithoutUpdatedByNestedInput
|
|
13823
|
+
projectActivities?: Prisma.ProjectActivityUpdateManyWithoutUserNestedInput
|
|
13824
|
+
ownedWorkspaces?: Prisma.WorkspaceUpdateManyWithoutOwnerNestedInput
|
|
13825
|
+
workspaceMemberships?: Prisma.TeamMembershipUpdateManyWithoutOwnerNestedInput
|
|
13826
|
+
teamJoined?: Prisma.TeamMembershipUpdateOneWithoutMemberNestedInput
|
|
13827
|
+
sentInvitations?: Prisma.TeamInvitationUpdateManyWithoutOwnerNestedInput
|
|
13828
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutOwnerNestedInput
|
|
13829
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUpdateManyWithoutApplicantNestedInput
|
|
13830
|
+
aiUsageLogs?: Prisma.AiUsageLogUpdateManyWithoutUserNestedInput
|
|
13831
|
+
agents?: Prisma.UserAgentUpdateManyWithoutUserNestedInput
|
|
13832
|
+
skills?: Prisma.UserSkillUpdateManyWithoutUserNestedInput
|
|
13833
|
+
subscription?: Prisma.SubscriptionUpdateOneWithoutUserNestedInput
|
|
13834
|
+
}
|
|
13835
|
+
|
|
13836
|
+
export type UserUncheckedUpdateWithoutIterationsCreatedInput = {
|
|
13837
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13838
|
+
email?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13839
|
+
username?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13840
|
+
password?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13841
|
+
role?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13842
|
+
status?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13843
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13844
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
13845
|
+
lastLoginAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
13846
|
+
avatarConfig?: Prisma.NullableJsonNullValueInput | runtime.InputJsonValue
|
|
13847
|
+
bgShape?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13848
|
+
bgColor?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13849
|
+
aiProvider?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13850
|
+
aiApiKey?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13851
|
+
aiModel?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13852
|
+
locale?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13853
|
+
sketchApiToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13854
|
+
timezone?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13855
|
+
preferredCurrency?: Prisma.StringFieldUpdateOperationsInput | string
|
|
13856
|
+
defaultWorkspaceId?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
13857
|
+
invitationUses?: Prisma.InvitationUseUncheckedUpdateManyWithoutUserNestedInput
|
|
13858
|
+
loginLogs?: Prisma.LoginLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13859
|
+
passwordResetTokens?: Prisma.PasswordResetTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
13860
|
+
prds?: Prisma.PRDUncheckedUpdateManyWithoutUserNestedInput
|
|
13861
|
+
tags?: Prisma.TagUncheckedUpdateManyWithoutUserNestedInput
|
|
13862
|
+
knowledgeBases?: Prisma.KnowledgeBaseUncheckedUpdateManyWithoutUserNestedInput
|
|
13863
|
+
knowledgeDocuments?: Prisma.KnowledgeDocumentUncheckedUpdateManyWithoutCreatorNestedInput
|
|
13864
|
+
knowledgeShares?: Prisma.KnowledgeShareRecordUncheckedUpdateManyWithoutUserNestedInput
|
|
13865
|
+
legalRegulations?: Prisma.LegalRegulationUncheckedUpdateManyWithoutUserNestedInput
|
|
13866
|
+
industryCompliances?: Prisma.IndustryComplianceUncheckedUpdateManyWithoutUserNestedInput
|
|
13867
|
+
dictionaryTerms?: Prisma.DictionaryTermUncheckedUpdateManyWithoutUserNestedInput
|
|
13868
|
+
websiteBookmarks?: Prisma.WebsiteBookmarkUncheckedUpdateManyWithoutUserNestedInput
|
|
13869
|
+
bookmarkCategories?: Prisma.BookmarkCategoryUncheckedUpdateManyWithoutUserNestedInput
|
|
13870
|
+
articleFavorites?: Prisma.ArticleFavoriteUncheckedUpdateManyWithoutUserNestedInput
|
|
13871
|
+
anyhubApps?: Prisma.AnyHubAppUncheckedUpdateManyWithoutUserNestedInput
|
|
13872
|
+
anyhubMarketApps?: Prisma.AnyHubMarketAppUncheckedUpdateManyWithoutUserNestedInput
|
|
13873
|
+
reviewedAnyhubRecommendations?: Prisma.AnyHubRecommendationUncheckedUpdateManyWithoutReviewerNestedInput
|
|
13874
|
+
anyhubRecommenders?: Prisma.AnyHubRecommenderUncheckedUpdateManyWithoutUserNestedInput
|
|
13875
|
+
prdVersions?: Prisma.PRDVersionUncheckedUpdateManyWithoutUserNestedInput
|
|
13876
|
+
reviewComments?: Prisma.ReviewCommentUncheckedUpdateManyWithoutUserNestedInput
|
|
13877
|
+
comments?: Prisma.CommentUncheckedUpdateManyWithoutUserNestedInput
|
|
13878
|
+
commentIgnores?: Prisma.CommentIgnoreUncheckedUpdateManyWithoutUserNestedInput
|
|
13879
|
+
reviews?: Prisma.ReviewUncheckedUpdateManyWithoutReviewerNestedInput
|
|
13880
|
+
designProjects?: Prisma.DesignProjectUncheckedUpdateManyWithoutUserNestedInput
|
|
13881
|
+
chatThreads?: Prisma.ChatThreadUncheckedUpdateManyWithoutUserNestedInput
|
|
13882
|
+
aiProviderConfigs?: Prisma.AiProviderConfigUncheckedUpdateManyWithoutUserNestedInput
|
|
13883
|
+
agentConversations?: Prisma.AgentConversationUncheckedUpdateManyWithoutUserNestedInput
|
|
13884
|
+
ownedProjects?: Prisma.ProjectUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13885
|
+
projectMemberships?: Prisma.ProjectMemberUncheckedUpdateManyWithoutUserNestedInput
|
|
13886
|
+
storiesCreated?: Prisma.StoryUncheckedUpdateManyWithoutCreatedByNestedInput
|
|
13887
|
+
storiesAssigned?: Prisma.StoryUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
13888
|
+
storiesEdited?: Prisma.StoryUncheckedUpdateManyWithoutUpdatedByNestedInput
|
|
13889
|
+
projectActivities?: Prisma.ProjectActivityUncheckedUpdateManyWithoutUserNestedInput
|
|
13890
|
+
ownedWorkspaces?: Prisma.WorkspaceUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13891
|
+
workspaceMemberships?: Prisma.TeamMembershipUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13892
|
+
teamJoined?: Prisma.TeamMembershipUncheckedUpdateOneWithoutMemberNestedInput
|
|
13893
|
+
sentInvitations?: Prisma.TeamInvitationUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13894
|
+
ownedJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutOwnerNestedInput
|
|
13895
|
+
applicantJoinRequests?: Prisma.TeamJoinRequestUncheckedUpdateManyWithoutApplicantNestedInput
|
|
13896
|
+
aiUsageLogs?: Prisma.AiUsageLogUncheckedUpdateManyWithoutUserNestedInput
|
|
13897
|
+
agents?: Prisma.UserAgentUncheckedUpdateManyWithoutUserNestedInput
|
|
13898
|
+
skills?: Prisma.UserSkillUncheckedUpdateManyWithoutUserNestedInput
|
|
13899
|
+
subscription?: Prisma.SubscriptionUncheckedUpdateOneWithoutUserNestedInput
|
|
13900
|
+
}
|
|
13901
|
+
|
|
13902
|
+
|
|
13903
|
+
/**
|
|
13904
|
+
* Count Type UserCountOutputType
|
|
13905
|
+
*/
|
|
13906
|
+
|
|
13907
|
+
export type UserCountOutputType = {
|
|
13908
|
+
invitationUses: number
|
|
13909
|
+
loginLogs: number
|
|
13910
|
+
passwordResetTokens: number
|
|
13911
|
+
prds: number
|
|
13912
|
+
tags: number
|
|
13913
|
+
knowledgeBases: number
|
|
13914
|
+
knowledgeDocuments: number
|
|
13915
|
+
knowledgeShares: number
|
|
13916
|
+
legalRegulations: number
|
|
13917
|
+
industryCompliances: number
|
|
13918
|
+
dictionaryTerms: number
|
|
13919
|
+
websiteBookmarks: number
|
|
13920
|
+
bookmarkCategories: number
|
|
13921
|
+
articleFavorites: number
|
|
13922
|
+
anyhubApps: number
|
|
13923
|
+
anyhubMarketApps: number
|
|
13924
|
+
reviewedAnyhubRecommendations: number
|
|
13925
|
+
anyhubRecommenders: number
|
|
13926
|
+
prdVersions: number
|
|
13927
|
+
reviewComments: number
|
|
13928
|
+
comments: number
|
|
13929
|
+
commentIgnores: number
|
|
13930
|
+
reviews: number
|
|
13931
|
+
designProjects: number
|
|
13932
|
+
chatThreads: number
|
|
13933
|
+
aiProviderConfigs: number
|
|
13934
|
+
agentConversations: number
|
|
13935
|
+
ownedProjects: number
|
|
13936
|
+
projectMemberships: number
|
|
13937
|
+
iterationsCreated: number
|
|
13938
|
+
storiesCreated: number
|
|
13939
|
+
storiesAssigned: number
|
|
13940
|
+
storiesEdited: number
|
|
13941
|
+
projectActivities: number
|
|
13942
|
+
ownedWorkspaces: number
|
|
13943
|
+
workspaceMemberships: number
|
|
13944
|
+
sentInvitations: number
|
|
13945
|
+
ownedJoinRequests: number
|
|
13946
|
+
applicantJoinRequests: number
|
|
13947
|
+
aiUsageLogs: number
|
|
13948
|
+
agents: number
|
|
13949
|
+
skills: number
|
|
13950
|
+
}
|
|
13951
|
+
|
|
13952
|
+
export type UserCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
13953
|
+
invitationUses?: boolean | UserCountOutputTypeCountInvitationUsesArgs
|
|
13954
|
+
loginLogs?: boolean | UserCountOutputTypeCountLoginLogsArgs
|
|
13955
|
+
passwordResetTokens?: boolean | UserCountOutputTypeCountPasswordResetTokensArgs
|
|
13956
|
+
prds?: boolean | UserCountOutputTypeCountPrdsArgs
|
|
13957
|
+
tags?: boolean | UserCountOutputTypeCountTagsArgs
|
|
13958
|
+
knowledgeBases?: boolean | UserCountOutputTypeCountKnowledgeBasesArgs
|
|
13959
|
+
knowledgeDocuments?: boolean | UserCountOutputTypeCountKnowledgeDocumentsArgs
|
|
13960
|
+
knowledgeShares?: boolean | UserCountOutputTypeCountKnowledgeSharesArgs
|
|
13961
|
+
legalRegulations?: boolean | UserCountOutputTypeCountLegalRegulationsArgs
|
|
13962
|
+
industryCompliances?: boolean | UserCountOutputTypeCountIndustryCompliancesArgs
|
|
13963
|
+
dictionaryTerms?: boolean | UserCountOutputTypeCountDictionaryTermsArgs
|
|
13964
|
+
websiteBookmarks?: boolean | UserCountOutputTypeCountWebsiteBookmarksArgs
|
|
13965
|
+
bookmarkCategories?: boolean | UserCountOutputTypeCountBookmarkCategoriesArgs
|
|
13966
|
+
articleFavorites?: boolean | UserCountOutputTypeCountArticleFavoritesArgs
|
|
13967
|
+
anyhubApps?: boolean | UserCountOutputTypeCountAnyhubAppsArgs
|
|
13968
|
+
anyhubMarketApps?: boolean | UserCountOutputTypeCountAnyhubMarketAppsArgs
|
|
13969
|
+
reviewedAnyhubRecommendations?: boolean | UserCountOutputTypeCountReviewedAnyhubRecommendationsArgs
|
|
13970
|
+
anyhubRecommenders?: boolean | UserCountOutputTypeCountAnyhubRecommendersArgs
|
|
13971
|
+
prdVersions?: boolean | UserCountOutputTypeCountPrdVersionsArgs
|
|
13972
|
+
reviewComments?: boolean | UserCountOutputTypeCountReviewCommentsArgs
|
|
13973
|
+
comments?: boolean | UserCountOutputTypeCountCommentsArgs
|
|
13974
|
+
commentIgnores?: boolean | UserCountOutputTypeCountCommentIgnoresArgs
|
|
13975
|
+
reviews?: boolean | UserCountOutputTypeCountReviewsArgs
|
|
13976
|
+
designProjects?: boolean | UserCountOutputTypeCountDesignProjectsArgs
|
|
13977
|
+
chatThreads?: boolean | UserCountOutputTypeCountChatThreadsArgs
|
|
13978
|
+
aiProviderConfigs?: boolean | UserCountOutputTypeCountAiProviderConfigsArgs
|
|
13979
|
+
agentConversations?: boolean | UserCountOutputTypeCountAgentConversationsArgs
|
|
13980
|
+
ownedProjects?: boolean | UserCountOutputTypeCountOwnedProjectsArgs
|
|
13981
|
+
projectMemberships?: boolean | UserCountOutputTypeCountProjectMembershipsArgs
|
|
13982
|
+
iterationsCreated?: boolean | UserCountOutputTypeCountIterationsCreatedArgs
|
|
13983
|
+
storiesCreated?: boolean | UserCountOutputTypeCountStoriesCreatedArgs
|
|
13984
|
+
storiesAssigned?: boolean | UserCountOutputTypeCountStoriesAssignedArgs
|
|
13985
|
+
storiesEdited?: boolean | UserCountOutputTypeCountStoriesEditedArgs
|
|
13986
|
+
projectActivities?: boolean | UserCountOutputTypeCountProjectActivitiesArgs
|
|
13987
|
+
ownedWorkspaces?: boolean | UserCountOutputTypeCountOwnedWorkspacesArgs
|
|
13988
|
+
workspaceMemberships?: boolean | UserCountOutputTypeCountWorkspaceMembershipsArgs
|
|
13989
|
+
sentInvitations?: boolean | UserCountOutputTypeCountSentInvitationsArgs
|
|
13990
|
+
ownedJoinRequests?: boolean | UserCountOutputTypeCountOwnedJoinRequestsArgs
|
|
13991
|
+
applicantJoinRequests?: boolean | UserCountOutputTypeCountApplicantJoinRequestsArgs
|
|
13992
|
+
aiUsageLogs?: boolean | UserCountOutputTypeCountAiUsageLogsArgs
|
|
13993
|
+
agents?: boolean | UserCountOutputTypeCountAgentsArgs
|
|
13994
|
+
skills?: boolean | UserCountOutputTypeCountSkillsArgs
|
|
13995
|
+
}
|
|
13996
|
+
|
|
13997
|
+
/**
|
|
13998
|
+
* UserCountOutputType without action
|
|
13999
|
+
*/
|
|
14000
|
+
export type UserCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
14001
|
+
/**
|
|
14002
|
+
* Select specific fields to fetch from the UserCountOutputType
|
|
14003
|
+
*/
|
|
14004
|
+
select?: Prisma.UserCountOutputTypeSelect<ExtArgs> | null
|
|
14005
|
+
}
|
|
14006
|
+
|
|
14007
|
+
/**
|
|
14008
|
+
* UserCountOutputType without action
|
|
14009
|
+
*/
|
|
14010
|
+
export type UserCountOutputTypeCountInvitationUsesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
14011
|
+
where?: Prisma.InvitationUseWhereInput
|
|
14012
|
+
}
|
|
14013
|
+
|
|
14014
|
+
/**
|
|
14015
|
+
* UserCountOutputType without action
|
|
14016
|
+
*/
|
|
14017
|
+
export type UserCountOutputTypeCountLoginLogsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
14018
|
+
where?: Prisma.LoginLogWhereInput
|
|
14019
|
+
}
|
|
14020
|
+
|
|
14021
|
+
/**
|
|
14022
|
+
* UserCountOutputType without action
|
|
12167
14023
|
*/
|
|
12168
14024
|
export type UserCountOutputTypeCountPasswordResetTokensArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
12169
14025
|
where?: Prisma.PasswordResetTokenWhereInput
|
|
@@ -12351,6 +14207,34 @@ export type UserCountOutputTypeCountProjectMembershipsArgs<ExtArgs extends runti
|
|
|
12351
14207
|
where?: Prisma.ProjectMemberWhereInput
|
|
12352
14208
|
}
|
|
12353
14209
|
|
|
14210
|
+
/**
|
|
14211
|
+
* UserCountOutputType without action
|
|
14212
|
+
*/
|
|
14213
|
+
export type UserCountOutputTypeCountIterationsCreatedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
14214
|
+
where?: Prisma.IterationWhereInput
|
|
14215
|
+
}
|
|
14216
|
+
|
|
14217
|
+
/**
|
|
14218
|
+
* UserCountOutputType without action
|
|
14219
|
+
*/
|
|
14220
|
+
export type UserCountOutputTypeCountStoriesCreatedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
14221
|
+
where?: Prisma.StoryWhereInput
|
|
14222
|
+
}
|
|
14223
|
+
|
|
14224
|
+
/**
|
|
14225
|
+
* UserCountOutputType without action
|
|
14226
|
+
*/
|
|
14227
|
+
export type UserCountOutputTypeCountStoriesAssignedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
14228
|
+
where?: Prisma.StoryWhereInput
|
|
14229
|
+
}
|
|
14230
|
+
|
|
14231
|
+
/**
|
|
14232
|
+
* UserCountOutputType without action
|
|
14233
|
+
*/
|
|
14234
|
+
export type UserCountOutputTypeCountStoriesEditedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
14235
|
+
where?: Prisma.StoryWhereInput
|
|
14236
|
+
}
|
|
14237
|
+
|
|
12354
14238
|
/**
|
|
12355
14239
|
* UserCountOutputType without action
|
|
12356
14240
|
*/
|
|
@@ -12465,6 +14349,10 @@ export type UserSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = r
|
|
|
12465
14349
|
agentConversations?: boolean | Prisma.User$agentConversationsArgs<ExtArgs>
|
|
12466
14350
|
ownedProjects?: boolean | Prisma.User$ownedProjectsArgs<ExtArgs>
|
|
12467
14351
|
projectMemberships?: boolean | Prisma.User$projectMembershipsArgs<ExtArgs>
|
|
14352
|
+
iterationsCreated?: boolean | Prisma.User$iterationsCreatedArgs<ExtArgs>
|
|
14353
|
+
storiesCreated?: boolean | Prisma.User$storiesCreatedArgs<ExtArgs>
|
|
14354
|
+
storiesAssigned?: boolean | Prisma.User$storiesAssignedArgs<ExtArgs>
|
|
14355
|
+
storiesEdited?: boolean | Prisma.User$storiesEditedArgs<ExtArgs>
|
|
12468
14356
|
projectActivities?: boolean | Prisma.User$projectActivitiesArgs<ExtArgs>
|
|
12469
14357
|
ownedWorkspaces?: boolean | Prisma.User$ownedWorkspacesArgs<ExtArgs>
|
|
12470
14358
|
workspaceMemberships?: boolean | Prisma.User$workspaceMembershipsArgs<ExtArgs>
|
|
@@ -12579,6 +14467,10 @@ export type UserInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
12579
14467
|
agentConversations?: boolean | Prisma.User$agentConversationsArgs<ExtArgs>
|
|
12580
14468
|
ownedProjects?: boolean | Prisma.User$ownedProjectsArgs<ExtArgs>
|
|
12581
14469
|
projectMemberships?: boolean | Prisma.User$projectMembershipsArgs<ExtArgs>
|
|
14470
|
+
iterationsCreated?: boolean | Prisma.User$iterationsCreatedArgs<ExtArgs>
|
|
14471
|
+
storiesCreated?: boolean | Prisma.User$storiesCreatedArgs<ExtArgs>
|
|
14472
|
+
storiesAssigned?: boolean | Prisma.User$storiesAssignedArgs<ExtArgs>
|
|
14473
|
+
storiesEdited?: boolean | Prisma.User$storiesEditedArgs<ExtArgs>
|
|
12582
14474
|
projectActivities?: boolean | Prisma.User$projectActivitiesArgs<ExtArgs>
|
|
12583
14475
|
ownedWorkspaces?: boolean | Prisma.User$ownedWorkspacesArgs<ExtArgs>
|
|
12584
14476
|
workspaceMemberships?: boolean | Prisma.User$workspaceMembershipsArgs<ExtArgs>
|
|
@@ -12627,6 +14519,10 @@ export type $UserPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs =
|
|
|
12627
14519
|
agentConversations: Prisma.$AgentConversationPayload<ExtArgs>[]
|
|
12628
14520
|
ownedProjects: Prisma.$ProjectPayload<ExtArgs>[]
|
|
12629
14521
|
projectMemberships: Prisma.$ProjectMemberPayload<ExtArgs>[]
|
|
14522
|
+
iterationsCreated: Prisma.$IterationPayload<ExtArgs>[]
|
|
14523
|
+
storiesCreated: Prisma.$StoryPayload<ExtArgs>[]
|
|
14524
|
+
storiesAssigned: Prisma.$StoryPayload<ExtArgs>[]
|
|
14525
|
+
storiesEdited: Prisma.$StoryPayload<ExtArgs>[]
|
|
12630
14526
|
projectActivities: Prisma.$ProjectActivityPayload<ExtArgs>[]
|
|
12631
14527
|
ownedWorkspaces: Prisma.$WorkspacePayload<ExtArgs>[]
|
|
12632
14528
|
workspaceMemberships: Prisma.$TeamMembershipPayload<ExtArgs>[]
|
|
@@ -13089,6 +14985,10 @@ export interface Prisma__UserClient<T, Null = never, ExtArgs extends runtime.Typ
|
|
|
13089
14985
|
agentConversations<T extends Prisma.User$agentConversationsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$agentConversationsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$AgentConversationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
13090
14986
|
ownedProjects<T extends Prisma.User$ownedProjectsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$ownedProjectsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
13091
14987
|
projectMemberships<T extends Prisma.User$projectMembershipsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$projectMembershipsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectMemberPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
14988
|
+
iterationsCreated<T extends Prisma.User$iterationsCreatedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$iterationsCreatedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$IterationPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
14989
|
+
storiesCreated<T extends Prisma.User$storiesCreatedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$storiesCreatedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
14990
|
+
storiesAssigned<T extends Prisma.User$storiesAssignedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$storiesAssignedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
14991
|
+
storiesEdited<T extends Prisma.User$storiesEditedArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$storiesEditedArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$StoryPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
13092
14992
|
projectActivities<T extends Prisma.User$projectActivitiesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$projectActivitiesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$ProjectActivityPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
13093
14993
|
ownedWorkspaces<T extends Prisma.User$ownedWorkspacesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$ownedWorkspacesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
13094
14994
|
workspaceMemberships<T extends Prisma.User$workspaceMembershipsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.User$workspaceMembershipsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$TeamMembershipPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
@@ -14235,6 +16135,102 @@ export type User$projectMembershipsArgs<ExtArgs extends runtime.Types.Extensions
|
|
|
14235
16135
|
distinct?: Prisma.ProjectMemberScalarFieldEnum | Prisma.ProjectMemberScalarFieldEnum[]
|
|
14236
16136
|
}
|
|
14237
16137
|
|
|
16138
|
+
/**
|
|
16139
|
+
* User.iterationsCreated
|
|
16140
|
+
*/
|
|
16141
|
+
export type User$iterationsCreatedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
16142
|
+
/**
|
|
16143
|
+
* Select specific fields to fetch from the Iteration
|
|
16144
|
+
*/
|
|
16145
|
+
select?: Prisma.IterationSelect<ExtArgs> | null
|
|
16146
|
+
/**
|
|
16147
|
+
* Omit specific fields from the Iteration
|
|
16148
|
+
*/
|
|
16149
|
+
omit?: Prisma.IterationOmit<ExtArgs> | null
|
|
16150
|
+
/**
|
|
16151
|
+
* Choose, which related nodes to fetch as well
|
|
16152
|
+
*/
|
|
16153
|
+
include?: Prisma.IterationInclude<ExtArgs> | null
|
|
16154
|
+
where?: Prisma.IterationWhereInput
|
|
16155
|
+
orderBy?: Prisma.IterationOrderByWithRelationInput | Prisma.IterationOrderByWithRelationInput[]
|
|
16156
|
+
cursor?: Prisma.IterationWhereUniqueInput
|
|
16157
|
+
take?: number
|
|
16158
|
+
skip?: number
|
|
16159
|
+
distinct?: Prisma.IterationScalarFieldEnum | Prisma.IterationScalarFieldEnum[]
|
|
16160
|
+
}
|
|
16161
|
+
|
|
16162
|
+
/**
|
|
16163
|
+
* User.storiesCreated
|
|
16164
|
+
*/
|
|
16165
|
+
export type User$storiesCreatedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
16166
|
+
/**
|
|
16167
|
+
* Select specific fields to fetch from the Story
|
|
16168
|
+
*/
|
|
16169
|
+
select?: Prisma.StorySelect<ExtArgs> | null
|
|
16170
|
+
/**
|
|
16171
|
+
* Omit specific fields from the Story
|
|
16172
|
+
*/
|
|
16173
|
+
omit?: Prisma.StoryOmit<ExtArgs> | null
|
|
16174
|
+
/**
|
|
16175
|
+
* Choose, which related nodes to fetch as well
|
|
16176
|
+
*/
|
|
16177
|
+
include?: Prisma.StoryInclude<ExtArgs> | null
|
|
16178
|
+
where?: Prisma.StoryWhereInput
|
|
16179
|
+
orderBy?: Prisma.StoryOrderByWithRelationInput | Prisma.StoryOrderByWithRelationInput[]
|
|
16180
|
+
cursor?: Prisma.StoryWhereUniqueInput
|
|
16181
|
+
take?: number
|
|
16182
|
+
skip?: number
|
|
16183
|
+
distinct?: Prisma.StoryScalarFieldEnum | Prisma.StoryScalarFieldEnum[]
|
|
16184
|
+
}
|
|
16185
|
+
|
|
16186
|
+
/**
|
|
16187
|
+
* User.storiesAssigned
|
|
16188
|
+
*/
|
|
16189
|
+
export type User$storiesAssignedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
16190
|
+
/**
|
|
16191
|
+
* Select specific fields to fetch from the Story
|
|
16192
|
+
*/
|
|
16193
|
+
select?: Prisma.StorySelect<ExtArgs> | null
|
|
16194
|
+
/**
|
|
16195
|
+
* Omit specific fields from the Story
|
|
16196
|
+
*/
|
|
16197
|
+
omit?: Prisma.StoryOmit<ExtArgs> | null
|
|
16198
|
+
/**
|
|
16199
|
+
* Choose, which related nodes to fetch as well
|
|
16200
|
+
*/
|
|
16201
|
+
include?: Prisma.StoryInclude<ExtArgs> | null
|
|
16202
|
+
where?: Prisma.StoryWhereInput
|
|
16203
|
+
orderBy?: Prisma.StoryOrderByWithRelationInput | Prisma.StoryOrderByWithRelationInput[]
|
|
16204
|
+
cursor?: Prisma.StoryWhereUniqueInput
|
|
16205
|
+
take?: number
|
|
16206
|
+
skip?: number
|
|
16207
|
+
distinct?: Prisma.StoryScalarFieldEnum | Prisma.StoryScalarFieldEnum[]
|
|
16208
|
+
}
|
|
16209
|
+
|
|
16210
|
+
/**
|
|
16211
|
+
* User.storiesEdited
|
|
16212
|
+
*/
|
|
16213
|
+
export type User$storiesEditedArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
16214
|
+
/**
|
|
16215
|
+
* Select specific fields to fetch from the Story
|
|
16216
|
+
*/
|
|
16217
|
+
select?: Prisma.StorySelect<ExtArgs> | null
|
|
16218
|
+
/**
|
|
16219
|
+
* Omit specific fields from the Story
|
|
16220
|
+
*/
|
|
16221
|
+
omit?: Prisma.StoryOmit<ExtArgs> | null
|
|
16222
|
+
/**
|
|
16223
|
+
* Choose, which related nodes to fetch as well
|
|
16224
|
+
*/
|
|
16225
|
+
include?: Prisma.StoryInclude<ExtArgs> | null
|
|
16226
|
+
where?: Prisma.StoryWhereInput
|
|
16227
|
+
orderBy?: Prisma.StoryOrderByWithRelationInput | Prisma.StoryOrderByWithRelationInput[]
|
|
16228
|
+
cursor?: Prisma.StoryWhereUniqueInput
|
|
16229
|
+
take?: number
|
|
16230
|
+
skip?: number
|
|
16231
|
+
distinct?: Prisma.StoryScalarFieldEnum | Prisma.StoryScalarFieldEnum[]
|
|
16232
|
+
}
|
|
16233
|
+
|
|
14238
16234
|
/**
|
|
14239
16235
|
* User.projectActivities
|
|
14240
16236
|
*/
|