agent-tower 0.5.3 → 0.5.4-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mcp/http-client.d.ts +31 -1
- package/dist/mcp/http-client.d.ts.map +1 -1
- package/dist/mcp/http-client.js +14 -2
- package/dist/mcp/http-client.js.map +1 -1
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +62 -8
- package/dist/mcp/server.js.map +1 -1
- package/dist/mcp/tools/__tests__/workspaces.test.d.ts +2 -0
- package/dist/mcp/tools/__tests__/workspaces.test.d.ts.map +1 -0
- package/dist/mcp/tools/__tests__/workspaces.test.js +72 -0
- package/dist/mcp/tools/__tests__/workspaces.test.js.map +1 -0
- package/dist/mcp/tools/workspaces.d.ts +9 -1
- package/dist/mcp/tools/workspaces.d.ts.map +1 -1
- package/dist/mcp/tools/workspaces.js +96 -2
- package/dist/mcp/tools/workspaces.js.map +1 -1
- package/dist/mcp/types.d.ts +46 -0
- package/dist/mcp/types.d.ts.map +1 -1
- package/dist/mcp/types.js +23 -0
- package/dist/mcp/types.js.map +1 -1
- package/dist/routes/__tests__/team-runs-merge.test.d.ts +2 -0
- package/dist/routes/__tests__/team-runs-merge.test.d.ts.map +1 -0
- package/dist/routes/__tests__/team-runs-merge.test.js +156 -0
- package/dist/routes/__tests__/team-runs-merge.test.js.map +1 -0
- package/dist/routes/__tests__/team-runs-private-messages.test.d.ts +2 -0
- package/dist/routes/__tests__/team-runs-private-messages.test.d.ts.map +1 -0
- package/dist/routes/__tests__/team-runs-private-messages.test.js +82 -0
- package/dist/routes/__tests__/team-runs-private-messages.test.js.map +1 -0
- package/dist/routes/team-runs.d.ts +2 -0
- package/dist/routes/team-runs.d.ts.map +1 -1
- package/dist/routes/team-runs.js +48 -1
- package/dist/routes/team-runs.js.map +1 -1
- package/dist/routes/workspaces.d.ts.map +1 -1
- package/dist/routes/workspaces.js +43 -4
- package/dist/routes/workspaces.js.map +1 -1
- package/dist/services/__tests__/session-manager.team-run.test.js +75 -0
- package/dist/services/__tests__/session-manager.team-run.test.js.map +1 -1
- package/dist/services/__tests__/team-reconciler.service.test.js +127 -8
- package/dist/services/__tests__/team-reconciler.service.test.js.map +1 -1
- package/dist/services/__tests__/team-run.service.test.js +172 -0
- package/dist/services/__tests__/team-run.service.test.js.map +1 -1
- package/dist/services/__tests__/team-scheduler.service.test.js +397 -0
- package/dist/services/__tests__/team-scheduler.service.test.js.map +1 -1
- package/dist/services/__tests__/workspace.service.test.js +959 -3
- package/dist/services/__tests__/workspace.service.test.js.map +1 -1
- package/dist/services/session-manager.d.ts.map +1 -1
- package/dist/services/session-manager.js +16 -0
- package/dist/services/session-manager.js.map +1 -1
- package/dist/services/team-run.service.d.ts +5 -1
- package/dist/services/team-run.service.d.ts.map +1 -1
- package/dist/services/team-run.service.js +63 -2
- package/dist/services/team-run.service.js.map +1 -1
- package/dist/services/team-scheduler.service.d.ts +21 -1
- package/dist/services/team-scheduler.service.d.ts.map +1 -1
- package/dist/services/team-scheduler.service.js +230 -8
- package/dist/services/team-scheduler.service.js.map +1 -1
- package/dist/services/workspace.service.d.ts +56 -1
- package/dist/services/workspace.service.d.ts.map +1 -1
- package/dist/services/workspace.service.js +837 -4
- package/dist/services/workspace.service.js.map +1 -1
- package/node_modules/@agent-tower/shared/dist/types.d.ts +168 -0
- package/node_modules/@agent-tower/shared/dist/types.d.ts.map +1 -1
- package/node_modules/@agent-tower/shared/dist/types.js.map +1 -1
- package/node_modules/@prisma/client/.prisma/client/edge.js +39 -5
- package/node_modules/@prisma/client/.prisma/client/index-browser.js +34 -0
- package/node_modules/@prisma/client/.prisma/client/index.d.ts +2871 -158
- package/node_modules/@prisma/client/.prisma/client/index.js +39 -5
- package/node_modules/@prisma/client/.prisma/client/package.json +1 -1
- package/node_modules/@prisma/client/.prisma/client/schema.prisma +81 -30
- package/node_modules/@prisma/client/.prisma/client/wasm.js +34 -0
- package/package.json +1 -1
- package/prisma/migrations/20260618010000_add_workspace_verdicts/migration.sql +27 -0
- package/prisma/migrations/20260702000000_add_teamrun_target_commit_fields/migration.sql +38 -0
- package/prisma/schema.prisma +51 -0
|
@@ -78,6 +78,11 @@ export type AgentInvocation = $Result.DefaultSelection<Prisma.$AgentInvocationPa
|
|
|
78
78
|
*
|
|
79
79
|
*/
|
|
80
80
|
export type Workspace = $Result.DefaultSelection<Prisma.$WorkspacePayload>
|
|
81
|
+
/**
|
|
82
|
+
* Model WorkspaceVerdict
|
|
83
|
+
*
|
|
84
|
+
*/
|
|
85
|
+
export type WorkspaceVerdict = $Result.DefaultSelection<Prisma.$WorkspaceVerdictPayload>
|
|
81
86
|
/**
|
|
82
87
|
* Model Conversation
|
|
83
88
|
*
|
|
@@ -367,6 +372,16 @@ export class PrismaClient<
|
|
|
367
372
|
*/
|
|
368
373
|
get workspace(): Prisma.WorkspaceDelegate<ExtArgs>;
|
|
369
374
|
|
|
375
|
+
/**
|
|
376
|
+
* `prisma.workspaceVerdict`: Exposes CRUD operations for the **WorkspaceVerdict** model.
|
|
377
|
+
* Example usage:
|
|
378
|
+
* ```ts
|
|
379
|
+
* // Fetch zero or more WorkspaceVerdicts
|
|
380
|
+
* const workspaceVerdicts = await prisma.workspaceVerdict.findMany()
|
|
381
|
+
* ```
|
|
382
|
+
*/
|
|
383
|
+
get workspaceVerdict(): Prisma.WorkspaceVerdictDelegate<ExtArgs>;
|
|
384
|
+
|
|
370
385
|
/**
|
|
371
386
|
* `prisma.conversation`: Exposes CRUD operations for the **Conversation** model.
|
|
372
387
|
* Example usage:
|
|
@@ -890,6 +905,7 @@ export namespace Prisma {
|
|
|
890
905
|
WorkRequest: 'WorkRequest',
|
|
891
906
|
AgentInvocation: 'AgentInvocation',
|
|
892
907
|
Workspace: 'Workspace',
|
|
908
|
+
WorkspaceVerdict: 'WorkspaceVerdict',
|
|
893
909
|
Conversation: 'Conversation',
|
|
894
910
|
Session: 'Session',
|
|
895
911
|
ExecutionProcess: 'ExecutionProcess',
|
|
@@ -912,7 +928,7 @@ export namespace Prisma {
|
|
|
912
928
|
|
|
913
929
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
914
930
|
meta: {
|
|
915
|
-
modelProps: "project" | "task" | "taskCleanupJob" | "memberPreset" | "teamTemplate" | "teamTemplateMember" | "teamRun" | "teamMember" | "roomMessage" | "roomMessageParticipant" | "workRequest" | "agentInvocation" | "workspace" | "conversation" | "session" | "executionProcess" | "executionLog" | "attachment" | "appSettings" | "notificationSettings"
|
|
931
|
+
modelProps: "project" | "task" | "taskCleanupJob" | "memberPreset" | "teamTemplate" | "teamTemplateMember" | "teamRun" | "teamMember" | "roomMessage" | "roomMessageParticipant" | "workRequest" | "agentInvocation" | "workspace" | "workspaceVerdict" | "conversation" | "session" | "executionProcess" | "executionLog" | "attachment" | "appSettings" | "notificationSettings"
|
|
916
932
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
917
933
|
}
|
|
918
934
|
model: {
|
|
@@ -1826,6 +1842,76 @@ export namespace Prisma {
|
|
|
1826
1842
|
}
|
|
1827
1843
|
}
|
|
1828
1844
|
}
|
|
1845
|
+
WorkspaceVerdict: {
|
|
1846
|
+
payload: Prisma.$WorkspaceVerdictPayload<ExtArgs>
|
|
1847
|
+
fields: Prisma.WorkspaceVerdictFieldRefs
|
|
1848
|
+
operations: {
|
|
1849
|
+
findUnique: {
|
|
1850
|
+
args: Prisma.WorkspaceVerdictFindUniqueArgs<ExtArgs>
|
|
1851
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload> | null
|
|
1852
|
+
}
|
|
1853
|
+
findUniqueOrThrow: {
|
|
1854
|
+
args: Prisma.WorkspaceVerdictFindUniqueOrThrowArgs<ExtArgs>
|
|
1855
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload>
|
|
1856
|
+
}
|
|
1857
|
+
findFirst: {
|
|
1858
|
+
args: Prisma.WorkspaceVerdictFindFirstArgs<ExtArgs>
|
|
1859
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload> | null
|
|
1860
|
+
}
|
|
1861
|
+
findFirstOrThrow: {
|
|
1862
|
+
args: Prisma.WorkspaceVerdictFindFirstOrThrowArgs<ExtArgs>
|
|
1863
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload>
|
|
1864
|
+
}
|
|
1865
|
+
findMany: {
|
|
1866
|
+
args: Prisma.WorkspaceVerdictFindManyArgs<ExtArgs>
|
|
1867
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload>[]
|
|
1868
|
+
}
|
|
1869
|
+
create: {
|
|
1870
|
+
args: Prisma.WorkspaceVerdictCreateArgs<ExtArgs>
|
|
1871
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload>
|
|
1872
|
+
}
|
|
1873
|
+
createMany: {
|
|
1874
|
+
args: Prisma.WorkspaceVerdictCreateManyArgs<ExtArgs>
|
|
1875
|
+
result: BatchPayload
|
|
1876
|
+
}
|
|
1877
|
+
createManyAndReturn: {
|
|
1878
|
+
args: Prisma.WorkspaceVerdictCreateManyAndReturnArgs<ExtArgs>
|
|
1879
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload>[]
|
|
1880
|
+
}
|
|
1881
|
+
delete: {
|
|
1882
|
+
args: Prisma.WorkspaceVerdictDeleteArgs<ExtArgs>
|
|
1883
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload>
|
|
1884
|
+
}
|
|
1885
|
+
update: {
|
|
1886
|
+
args: Prisma.WorkspaceVerdictUpdateArgs<ExtArgs>
|
|
1887
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload>
|
|
1888
|
+
}
|
|
1889
|
+
deleteMany: {
|
|
1890
|
+
args: Prisma.WorkspaceVerdictDeleteManyArgs<ExtArgs>
|
|
1891
|
+
result: BatchPayload
|
|
1892
|
+
}
|
|
1893
|
+
updateMany: {
|
|
1894
|
+
args: Prisma.WorkspaceVerdictUpdateManyArgs<ExtArgs>
|
|
1895
|
+
result: BatchPayload
|
|
1896
|
+
}
|
|
1897
|
+
upsert: {
|
|
1898
|
+
args: Prisma.WorkspaceVerdictUpsertArgs<ExtArgs>
|
|
1899
|
+
result: $Utils.PayloadToResult<Prisma.$WorkspaceVerdictPayload>
|
|
1900
|
+
}
|
|
1901
|
+
aggregate: {
|
|
1902
|
+
args: Prisma.WorkspaceVerdictAggregateArgs<ExtArgs>
|
|
1903
|
+
result: $Utils.Optional<AggregateWorkspaceVerdict>
|
|
1904
|
+
}
|
|
1905
|
+
groupBy: {
|
|
1906
|
+
args: Prisma.WorkspaceVerdictGroupByArgs<ExtArgs>
|
|
1907
|
+
result: $Utils.Optional<WorkspaceVerdictGroupByOutputType>[]
|
|
1908
|
+
}
|
|
1909
|
+
count: {
|
|
1910
|
+
args: Prisma.WorkspaceVerdictCountArgs<ExtArgs>
|
|
1911
|
+
result: $Utils.Optional<WorkspaceVerdictCountAggregateOutputType> | number
|
|
1912
|
+
}
|
|
1913
|
+
}
|
|
1914
|
+
}
|
|
1829
1915
|
Conversation: {
|
|
1830
1916
|
payload: Prisma.$ConversationPayload<ExtArgs>
|
|
1831
1917
|
fields: Prisma.ConversationFieldRefs
|
|
@@ -2574,6 +2660,7 @@ export namespace Prisma {
|
|
|
2574
2660
|
messages: number
|
|
2575
2661
|
workRequests: number
|
|
2576
2662
|
invocations: number
|
|
2663
|
+
verdicts: number
|
|
2577
2664
|
}
|
|
2578
2665
|
|
|
2579
2666
|
export type TeamRunCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -2581,6 +2668,7 @@ export namespace Prisma {
|
|
|
2581
2668
|
messages?: boolean | TeamRunCountOutputTypeCountMessagesArgs
|
|
2582
2669
|
workRequests?: boolean | TeamRunCountOutputTypeCountWorkRequestsArgs
|
|
2583
2670
|
invocations?: boolean | TeamRunCountOutputTypeCountInvocationsArgs
|
|
2671
|
+
verdicts?: boolean | TeamRunCountOutputTypeCountVerdictsArgs
|
|
2584
2672
|
}
|
|
2585
2673
|
|
|
2586
2674
|
// Custom InputTypes
|
|
@@ -2622,6 +2710,13 @@ export namespace Prisma {
|
|
|
2622
2710
|
where?: AgentInvocationWhereInput
|
|
2623
2711
|
}
|
|
2624
2712
|
|
|
2713
|
+
/**
|
|
2714
|
+
* TeamRunCountOutputType without action
|
|
2715
|
+
*/
|
|
2716
|
+
export type TeamRunCountOutputTypeCountVerdictsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2717
|
+
where?: WorkspaceVerdictWhereInput
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2625
2720
|
|
|
2626
2721
|
/**
|
|
2627
2722
|
* Count Type TeamMemberCountOutputType
|
|
@@ -2702,12 +2797,14 @@ export namespace Prisma {
|
|
|
2702
2797
|
childWorkspaces: number
|
|
2703
2798
|
mainForTeamRuns: number
|
|
2704
2799
|
sessions: number
|
|
2800
|
+
verdicts: number
|
|
2705
2801
|
}
|
|
2706
2802
|
|
|
2707
2803
|
export type WorkspaceCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2708
2804
|
childWorkspaces?: boolean | WorkspaceCountOutputTypeCountChildWorkspacesArgs
|
|
2709
2805
|
mainForTeamRuns?: boolean | WorkspaceCountOutputTypeCountMainForTeamRunsArgs
|
|
2710
2806
|
sessions?: boolean | WorkspaceCountOutputTypeCountSessionsArgs
|
|
2807
|
+
verdicts?: boolean | WorkspaceCountOutputTypeCountVerdictsArgs
|
|
2711
2808
|
}
|
|
2712
2809
|
|
|
2713
2810
|
// Custom InputTypes
|
|
@@ -2742,6 +2839,13 @@ export namespace Prisma {
|
|
|
2742
2839
|
where?: SessionWhereInput
|
|
2743
2840
|
}
|
|
2744
2841
|
|
|
2842
|
+
/**
|
|
2843
|
+
* WorkspaceCountOutputType without action
|
|
2844
|
+
*/
|
|
2845
|
+
export type WorkspaceCountOutputTypeCountVerdictsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
2846
|
+
where?: WorkspaceVerdictWhereInput
|
|
2847
|
+
}
|
|
2848
|
+
|
|
2745
2849
|
|
|
2746
2850
|
/**
|
|
2747
2851
|
* Count Type SessionCountOutputType
|
|
@@ -8933,6 +9037,7 @@ export namespace Prisma {
|
|
|
8933
9037
|
messages?: boolean | TeamRun$messagesArgs<ExtArgs>
|
|
8934
9038
|
workRequests?: boolean | TeamRun$workRequestsArgs<ExtArgs>
|
|
8935
9039
|
invocations?: boolean | TeamRun$invocationsArgs<ExtArgs>
|
|
9040
|
+
verdicts?: boolean | TeamRun$verdictsArgs<ExtArgs>
|
|
8936
9041
|
_count?: boolean | TeamRunCountOutputTypeDefaultArgs<ExtArgs>
|
|
8937
9042
|
}, ExtArgs["result"]["teamRun"]>
|
|
8938
9043
|
|
|
@@ -8965,6 +9070,7 @@ export namespace Prisma {
|
|
|
8965
9070
|
messages?: boolean | TeamRun$messagesArgs<ExtArgs>
|
|
8966
9071
|
workRequests?: boolean | TeamRun$workRequestsArgs<ExtArgs>
|
|
8967
9072
|
invocations?: boolean | TeamRun$invocationsArgs<ExtArgs>
|
|
9073
|
+
verdicts?: boolean | TeamRun$verdictsArgs<ExtArgs>
|
|
8968
9074
|
_count?: boolean | TeamRunCountOutputTypeDefaultArgs<ExtArgs>
|
|
8969
9075
|
}
|
|
8970
9076
|
export type TeamRunIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -8981,6 +9087,7 @@ export namespace Prisma {
|
|
|
8981
9087
|
messages: Prisma.$RoomMessagePayload<ExtArgs>[]
|
|
8982
9088
|
workRequests: Prisma.$WorkRequestPayload<ExtArgs>[]
|
|
8983
9089
|
invocations: Prisma.$AgentInvocationPayload<ExtArgs>[]
|
|
9090
|
+
verdicts: Prisma.$WorkspaceVerdictPayload<ExtArgs>[]
|
|
8984
9091
|
}
|
|
8985
9092
|
scalars: $Extensions.GetPayloadResult<{
|
|
8986
9093
|
id: string
|
|
@@ -9360,6 +9467,7 @@ export namespace Prisma {
|
|
|
9360
9467
|
messages<T extends TeamRun$messagesArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$messagesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RoomMessagePayload<ExtArgs>, T, "findMany"> | Null>
|
|
9361
9468
|
workRequests<T extends TeamRun$workRequestsArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$workRequestsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkRequestPayload<ExtArgs>, T, "findMany"> | Null>
|
|
9362
9469
|
invocations<T extends TeamRun$invocationsArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$invocationsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AgentInvocationPayload<ExtArgs>, T, "findMany"> | Null>
|
|
9470
|
+
verdicts<T extends TeamRun$verdictsArgs<ExtArgs> = {}>(args?: Subset<T, TeamRun$verdictsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "findMany"> | Null>
|
|
9363
9471
|
/**
|
|
9364
9472
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9365
9473
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9806,6 +9914,26 @@ export namespace Prisma {
|
|
|
9806
9914
|
distinct?: AgentInvocationScalarFieldEnum | AgentInvocationScalarFieldEnum[]
|
|
9807
9915
|
}
|
|
9808
9916
|
|
|
9917
|
+
/**
|
|
9918
|
+
* TeamRun.verdicts
|
|
9919
|
+
*/
|
|
9920
|
+
export type TeamRun$verdictsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9921
|
+
/**
|
|
9922
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
9923
|
+
*/
|
|
9924
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
9925
|
+
/**
|
|
9926
|
+
* Choose, which related nodes to fetch as well
|
|
9927
|
+
*/
|
|
9928
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
9929
|
+
where?: WorkspaceVerdictWhereInput
|
|
9930
|
+
orderBy?: WorkspaceVerdictOrderByWithRelationInput | WorkspaceVerdictOrderByWithRelationInput[]
|
|
9931
|
+
cursor?: WorkspaceVerdictWhereUniqueInput
|
|
9932
|
+
take?: number
|
|
9933
|
+
skip?: number
|
|
9934
|
+
distinct?: WorkspaceVerdictScalarFieldEnum | WorkspaceVerdictScalarFieldEnum[]
|
|
9935
|
+
}
|
|
9936
|
+
|
|
9809
9937
|
/**
|
|
9810
9938
|
* TeamRun without action
|
|
9811
9939
|
*/
|
|
@@ -12964,6 +13092,13 @@ export namespace Prisma {
|
|
|
12964
13092
|
requesterMemberId: string | null
|
|
12965
13093
|
requesterType: string | null
|
|
12966
13094
|
targetMemberId: string | null
|
|
13095
|
+
targetKind: string | null
|
|
13096
|
+
targetPurpose: string | null
|
|
13097
|
+
targetSourceWorkspaceId: string | null
|
|
13098
|
+
targetSourceMemberId: string | null
|
|
13099
|
+
targetHeadSha: string | null
|
|
13100
|
+
targetBranchName: string | null
|
|
13101
|
+
targetPlanItemId: string | null
|
|
12967
13102
|
triggerMessageId: string | null
|
|
12968
13103
|
instruction: string | null
|
|
12969
13104
|
ifBusy: string | null
|
|
@@ -12979,6 +13114,13 @@ export namespace Prisma {
|
|
|
12979
13114
|
requesterMemberId: string | null
|
|
12980
13115
|
requesterType: string | null
|
|
12981
13116
|
targetMemberId: string | null
|
|
13117
|
+
targetKind: string | null
|
|
13118
|
+
targetPurpose: string | null
|
|
13119
|
+
targetSourceWorkspaceId: string | null
|
|
13120
|
+
targetSourceMemberId: string | null
|
|
13121
|
+
targetHeadSha: string | null
|
|
13122
|
+
targetBranchName: string | null
|
|
13123
|
+
targetPlanItemId: string | null
|
|
12982
13124
|
triggerMessageId: string | null
|
|
12983
13125
|
instruction: string | null
|
|
12984
13126
|
ifBusy: string | null
|
|
@@ -12994,6 +13136,13 @@ export namespace Prisma {
|
|
|
12994
13136
|
requesterMemberId: number
|
|
12995
13137
|
requesterType: number
|
|
12996
13138
|
targetMemberId: number
|
|
13139
|
+
targetKind: number
|
|
13140
|
+
targetPurpose: number
|
|
13141
|
+
targetSourceWorkspaceId: number
|
|
13142
|
+
targetSourceMemberId: number
|
|
13143
|
+
targetHeadSha: number
|
|
13144
|
+
targetBranchName: number
|
|
13145
|
+
targetPlanItemId: number
|
|
12997
13146
|
triggerMessageId: number
|
|
12998
13147
|
instruction: number
|
|
12999
13148
|
ifBusy: number
|
|
@@ -13011,6 +13160,13 @@ export namespace Prisma {
|
|
|
13011
13160
|
requesterMemberId?: true
|
|
13012
13161
|
requesterType?: true
|
|
13013
13162
|
targetMemberId?: true
|
|
13163
|
+
targetKind?: true
|
|
13164
|
+
targetPurpose?: true
|
|
13165
|
+
targetSourceWorkspaceId?: true
|
|
13166
|
+
targetSourceMemberId?: true
|
|
13167
|
+
targetHeadSha?: true
|
|
13168
|
+
targetBranchName?: true
|
|
13169
|
+
targetPlanItemId?: true
|
|
13014
13170
|
triggerMessageId?: true
|
|
13015
13171
|
instruction?: true
|
|
13016
13172
|
ifBusy?: true
|
|
@@ -13026,6 +13182,13 @@ export namespace Prisma {
|
|
|
13026
13182
|
requesterMemberId?: true
|
|
13027
13183
|
requesterType?: true
|
|
13028
13184
|
targetMemberId?: true
|
|
13185
|
+
targetKind?: true
|
|
13186
|
+
targetPurpose?: true
|
|
13187
|
+
targetSourceWorkspaceId?: true
|
|
13188
|
+
targetSourceMemberId?: true
|
|
13189
|
+
targetHeadSha?: true
|
|
13190
|
+
targetBranchName?: true
|
|
13191
|
+
targetPlanItemId?: true
|
|
13029
13192
|
triggerMessageId?: true
|
|
13030
13193
|
instruction?: true
|
|
13031
13194
|
ifBusy?: true
|
|
@@ -13041,6 +13204,13 @@ export namespace Prisma {
|
|
|
13041
13204
|
requesterMemberId?: true
|
|
13042
13205
|
requesterType?: true
|
|
13043
13206
|
targetMemberId?: true
|
|
13207
|
+
targetKind?: true
|
|
13208
|
+
targetPurpose?: true
|
|
13209
|
+
targetSourceWorkspaceId?: true
|
|
13210
|
+
targetSourceMemberId?: true
|
|
13211
|
+
targetHeadSha?: true
|
|
13212
|
+
targetBranchName?: true
|
|
13213
|
+
targetPlanItemId?: true
|
|
13044
13214
|
triggerMessageId?: true
|
|
13045
13215
|
instruction?: true
|
|
13046
13216
|
ifBusy?: true
|
|
@@ -13129,6 +13299,13 @@ export namespace Prisma {
|
|
|
13129
13299
|
requesterMemberId: string | null
|
|
13130
13300
|
requesterType: string
|
|
13131
13301
|
targetMemberId: string
|
|
13302
|
+
targetKind: string | null
|
|
13303
|
+
targetPurpose: string | null
|
|
13304
|
+
targetSourceWorkspaceId: string | null
|
|
13305
|
+
targetSourceMemberId: string | null
|
|
13306
|
+
targetHeadSha: string | null
|
|
13307
|
+
targetBranchName: string | null
|
|
13308
|
+
targetPlanItemId: string | null
|
|
13132
13309
|
triggerMessageId: string
|
|
13133
13310
|
instruction: string
|
|
13134
13311
|
ifBusy: string
|
|
@@ -13161,6 +13338,13 @@ export namespace Prisma {
|
|
|
13161
13338
|
requesterMemberId?: boolean
|
|
13162
13339
|
requesterType?: boolean
|
|
13163
13340
|
targetMemberId?: boolean
|
|
13341
|
+
targetKind?: boolean
|
|
13342
|
+
targetPurpose?: boolean
|
|
13343
|
+
targetSourceWorkspaceId?: boolean
|
|
13344
|
+
targetSourceMemberId?: boolean
|
|
13345
|
+
targetHeadSha?: boolean
|
|
13346
|
+
targetBranchName?: boolean
|
|
13347
|
+
targetPlanItemId?: boolean
|
|
13164
13348
|
triggerMessageId?: boolean
|
|
13165
13349
|
instruction?: boolean
|
|
13166
13350
|
ifBusy?: boolean
|
|
@@ -13177,6 +13361,13 @@ export namespace Prisma {
|
|
|
13177
13361
|
requesterMemberId?: boolean
|
|
13178
13362
|
requesterType?: boolean
|
|
13179
13363
|
targetMemberId?: boolean
|
|
13364
|
+
targetKind?: boolean
|
|
13365
|
+
targetPurpose?: boolean
|
|
13366
|
+
targetSourceWorkspaceId?: boolean
|
|
13367
|
+
targetSourceMemberId?: boolean
|
|
13368
|
+
targetHeadSha?: boolean
|
|
13369
|
+
targetBranchName?: boolean
|
|
13370
|
+
targetPlanItemId?: boolean
|
|
13180
13371
|
triggerMessageId?: boolean
|
|
13181
13372
|
instruction?: boolean
|
|
13182
13373
|
ifBusy?: boolean
|
|
@@ -13193,6 +13384,13 @@ export namespace Prisma {
|
|
|
13193
13384
|
requesterMemberId?: boolean
|
|
13194
13385
|
requesterType?: boolean
|
|
13195
13386
|
targetMemberId?: boolean
|
|
13387
|
+
targetKind?: boolean
|
|
13388
|
+
targetPurpose?: boolean
|
|
13389
|
+
targetSourceWorkspaceId?: boolean
|
|
13390
|
+
targetSourceMemberId?: boolean
|
|
13391
|
+
targetHeadSha?: boolean
|
|
13392
|
+
targetBranchName?: boolean
|
|
13393
|
+
targetPlanItemId?: boolean
|
|
13196
13394
|
triggerMessageId?: boolean
|
|
13197
13395
|
instruction?: boolean
|
|
13198
13396
|
ifBusy?: boolean
|
|
@@ -13220,6 +13418,13 @@ export namespace Prisma {
|
|
|
13220
13418
|
requesterMemberId: string | null
|
|
13221
13419
|
requesterType: string
|
|
13222
13420
|
targetMemberId: string
|
|
13421
|
+
targetKind: string | null
|
|
13422
|
+
targetPurpose: string | null
|
|
13423
|
+
targetSourceWorkspaceId: string | null
|
|
13424
|
+
targetSourceMemberId: string | null
|
|
13425
|
+
targetHeadSha: string | null
|
|
13426
|
+
targetBranchName: string | null
|
|
13427
|
+
targetPlanItemId: string | null
|
|
13223
13428
|
triggerMessageId: string
|
|
13224
13429
|
instruction: string
|
|
13225
13430
|
ifBusy: string
|
|
@@ -13626,6 +13831,13 @@ export namespace Prisma {
|
|
|
13626
13831
|
readonly requesterMemberId: FieldRef<"WorkRequest", 'String'>
|
|
13627
13832
|
readonly requesterType: FieldRef<"WorkRequest", 'String'>
|
|
13628
13833
|
readonly targetMemberId: FieldRef<"WorkRequest", 'String'>
|
|
13834
|
+
readonly targetKind: FieldRef<"WorkRequest", 'String'>
|
|
13835
|
+
readonly targetPurpose: FieldRef<"WorkRequest", 'String'>
|
|
13836
|
+
readonly targetSourceWorkspaceId: FieldRef<"WorkRequest", 'String'>
|
|
13837
|
+
readonly targetSourceMemberId: FieldRef<"WorkRequest", 'String'>
|
|
13838
|
+
readonly targetHeadSha: FieldRef<"WorkRequest", 'String'>
|
|
13839
|
+
readonly targetBranchName: FieldRef<"WorkRequest", 'String'>
|
|
13840
|
+
readonly targetPlanItemId: FieldRef<"WorkRequest", 'String'>
|
|
13629
13841
|
readonly triggerMessageId: FieldRef<"WorkRequest", 'String'>
|
|
13630
13842
|
readonly instruction: FieldRef<"WorkRequest", 'String'>
|
|
13631
13843
|
readonly ifBusy: FieldRef<"WorkRequest", 'String'>
|
|
@@ -13976,10 +14188,16 @@ export namespace Prisma {
|
|
|
13976
14188
|
}
|
|
13977
14189
|
|
|
13978
14190
|
export type AgentInvocationAvgAggregateOutputType = {
|
|
14191
|
+
targetPort: number | null
|
|
14192
|
+
targetVitePort: number | null
|
|
14193
|
+
targetE2EPort: number | null
|
|
13979
14194
|
roomReplyReminderCount: number | null
|
|
13980
14195
|
}
|
|
13981
14196
|
|
|
13982
14197
|
export type AgentInvocationSumAggregateOutputType = {
|
|
14198
|
+
targetPort: number | null
|
|
14199
|
+
targetVitePort: number | null
|
|
14200
|
+
targetE2EPort: number | null
|
|
13983
14201
|
roomReplyReminderCount: number | null
|
|
13984
14202
|
}
|
|
13985
14203
|
|
|
@@ -13990,6 +14208,19 @@ export namespace Prisma {
|
|
|
13990
14208
|
memberId: string | null
|
|
13991
14209
|
workspaceId: string | null
|
|
13992
14210
|
sessionId: string | null
|
|
14211
|
+
targetKind: string | null
|
|
14212
|
+
targetPurpose: string | null
|
|
14213
|
+
targetSourceWorkspaceId: string | null
|
|
14214
|
+
targetSourceMemberId: string | null
|
|
14215
|
+
targetHeadSha: string | null
|
|
14216
|
+
targetBranchName: string | null
|
|
14217
|
+
targetPlanItemId: string | null
|
|
14218
|
+
targetSyncStatus: string | null
|
|
14219
|
+
targetSyncError: string | null
|
|
14220
|
+
targetExecutionBranch: string | null
|
|
14221
|
+
targetPort: number | null
|
|
14222
|
+
targetVitePort: number | null
|
|
14223
|
+
targetE2EPort: number | null
|
|
13993
14224
|
status: string | null
|
|
13994
14225
|
roomReplyReminderCount: number | null
|
|
13995
14226
|
nextRoomReplyReminderAt: Date | null
|
|
@@ -14004,6 +14235,19 @@ export namespace Prisma {
|
|
|
14004
14235
|
memberId: string | null
|
|
14005
14236
|
workspaceId: string | null
|
|
14006
14237
|
sessionId: string | null
|
|
14238
|
+
targetKind: string | null
|
|
14239
|
+
targetPurpose: string | null
|
|
14240
|
+
targetSourceWorkspaceId: string | null
|
|
14241
|
+
targetSourceMemberId: string | null
|
|
14242
|
+
targetHeadSha: string | null
|
|
14243
|
+
targetBranchName: string | null
|
|
14244
|
+
targetPlanItemId: string | null
|
|
14245
|
+
targetSyncStatus: string | null
|
|
14246
|
+
targetSyncError: string | null
|
|
14247
|
+
targetExecutionBranch: string | null
|
|
14248
|
+
targetPort: number | null
|
|
14249
|
+
targetVitePort: number | null
|
|
14250
|
+
targetE2EPort: number | null
|
|
14007
14251
|
status: string | null
|
|
14008
14252
|
roomReplyReminderCount: number | null
|
|
14009
14253
|
nextRoomReplyReminderAt: Date | null
|
|
@@ -14018,6 +14262,19 @@ export namespace Prisma {
|
|
|
14018
14262
|
memberId: number
|
|
14019
14263
|
workspaceId: number
|
|
14020
14264
|
sessionId: number
|
|
14265
|
+
targetKind: number
|
|
14266
|
+
targetPurpose: number
|
|
14267
|
+
targetSourceWorkspaceId: number
|
|
14268
|
+
targetSourceMemberId: number
|
|
14269
|
+
targetHeadSha: number
|
|
14270
|
+
targetBranchName: number
|
|
14271
|
+
targetPlanItemId: number
|
|
14272
|
+
targetSyncStatus: number
|
|
14273
|
+
targetSyncError: number
|
|
14274
|
+
targetExecutionBranch: number
|
|
14275
|
+
targetPort: number
|
|
14276
|
+
targetVitePort: number
|
|
14277
|
+
targetE2EPort: number
|
|
14021
14278
|
status: number
|
|
14022
14279
|
roomReplyReminderCount: number
|
|
14023
14280
|
nextRoomReplyReminderAt: number
|
|
@@ -14028,10 +14285,16 @@ export namespace Prisma {
|
|
|
14028
14285
|
|
|
14029
14286
|
|
|
14030
14287
|
export type AgentInvocationAvgAggregateInputType = {
|
|
14288
|
+
targetPort?: true
|
|
14289
|
+
targetVitePort?: true
|
|
14290
|
+
targetE2EPort?: true
|
|
14031
14291
|
roomReplyReminderCount?: true
|
|
14032
14292
|
}
|
|
14033
14293
|
|
|
14034
14294
|
export type AgentInvocationSumAggregateInputType = {
|
|
14295
|
+
targetPort?: true
|
|
14296
|
+
targetVitePort?: true
|
|
14297
|
+
targetE2EPort?: true
|
|
14035
14298
|
roomReplyReminderCount?: true
|
|
14036
14299
|
}
|
|
14037
14300
|
|
|
@@ -14042,6 +14305,19 @@ export namespace Prisma {
|
|
|
14042
14305
|
memberId?: true
|
|
14043
14306
|
workspaceId?: true
|
|
14044
14307
|
sessionId?: true
|
|
14308
|
+
targetKind?: true
|
|
14309
|
+
targetPurpose?: true
|
|
14310
|
+
targetSourceWorkspaceId?: true
|
|
14311
|
+
targetSourceMemberId?: true
|
|
14312
|
+
targetHeadSha?: true
|
|
14313
|
+
targetBranchName?: true
|
|
14314
|
+
targetPlanItemId?: true
|
|
14315
|
+
targetSyncStatus?: true
|
|
14316
|
+
targetSyncError?: true
|
|
14317
|
+
targetExecutionBranch?: true
|
|
14318
|
+
targetPort?: true
|
|
14319
|
+
targetVitePort?: true
|
|
14320
|
+
targetE2EPort?: true
|
|
14045
14321
|
status?: true
|
|
14046
14322
|
roomReplyReminderCount?: true
|
|
14047
14323
|
nextRoomReplyReminderAt?: true
|
|
@@ -14056,6 +14332,19 @@ export namespace Prisma {
|
|
|
14056
14332
|
memberId?: true
|
|
14057
14333
|
workspaceId?: true
|
|
14058
14334
|
sessionId?: true
|
|
14335
|
+
targetKind?: true
|
|
14336
|
+
targetPurpose?: true
|
|
14337
|
+
targetSourceWorkspaceId?: true
|
|
14338
|
+
targetSourceMemberId?: true
|
|
14339
|
+
targetHeadSha?: true
|
|
14340
|
+
targetBranchName?: true
|
|
14341
|
+
targetPlanItemId?: true
|
|
14342
|
+
targetSyncStatus?: true
|
|
14343
|
+
targetSyncError?: true
|
|
14344
|
+
targetExecutionBranch?: true
|
|
14345
|
+
targetPort?: true
|
|
14346
|
+
targetVitePort?: true
|
|
14347
|
+
targetE2EPort?: true
|
|
14059
14348
|
status?: true
|
|
14060
14349
|
roomReplyReminderCount?: true
|
|
14061
14350
|
nextRoomReplyReminderAt?: true
|
|
@@ -14070,6 +14359,19 @@ export namespace Prisma {
|
|
|
14070
14359
|
memberId?: true
|
|
14071
14360
|
workspaceId?: true
|
|
14072
14361
|
sessionId?: true
|
|
14362
|
+
targetKind?: true
|
|
14363
|
+
targetPurpose?: true
|
|
14364
|
+
targetSourceWorkspaceId?: true
|
|
14365
|
+
targetSourceMemberId?: true
|
|
14366
|
+
targetHeadSha?: true
|
|
14367
|
+
targetBranchName?: true
|
|
14368
|
+
targetPlanItemId?: true
|
|
14369
|
+
targetSyncStatus?: true
|
|
14370
|
+
targetSyncError?: true
|
|
14371
|
+
targetExecutionBranch?: true
|
|
14372
|
+
targetPort?: true
|
|
14373
|
+
targetVitePort?: true
|
|
14374
|
+
targetE2EPort?: true
|
|
14073
14375
|
status?: true
|
|
14074
14376
|
roomReplyReminderCount?: true
|
|
14075
14377
|
nextRoomReplyReminderAt?: true
|
|
@@ -14171,6 +14473,19 @@ export namespace Prisma {
|
|
|
14171
14473
|
memberId: string
|
|
14172
14474
|
workspaceId: string | null
|
|
14173
14475
|
sessionId: string | null
|
|
14476
|
+
targetKind: string | null
|
|
14477
|
+
targetPurpose: string | null
|
|
14478
|
+
targetSourceWorkspaceId: string | null
|
|
14479
|
+
targetSourceMemberId: string | null
|
|
14480
|
+
targetHeadSha: string | null
|
|
14481
|
+
targetBranchName: string | null
|
|
14482
|
+
targetPlanItemId: string | null
|
|
14483
|
+
targetSyncStatus: string | null
|
|
14484
|
+
targetSyncError: string | null
|
|
14485
|
+
targetExecutionBranch: string | null
|
|
14486
|
+
targetPort: number | null
|
|
14487
|
+
targetVitePort: number | null
|
|
14488
|
+
targetE2EPort: number | null
|
|
14174
14489
|
status: string
|
|
14175
14490
|
roomReplyReminderCount: number
|
|
14176
14491
|
nextRoomReplyReminderAt: Date | null
|
|
@@ -14204,6 +14519,19 @@ export namespace Prisma {
|
|
|
14204
14519
|
memberId?: boolean
|
|
14205
14520
|
workspaceId?: boolean
|
|
14206
14521
|
sessionId?: boolean
|
|
14522
|
+
targetKind?: boolean
|
|
14523
|
+
targetPurpose?: boolean
|
|
14524
|
+
targetSourceWorkspaceId?: boolean
|
|
14525
|
+
targetSourceMemberId?: boolean
|
|
14526
|
+
targetHeadSha?: boolean
|
|
14527
|
+
targetBranchName?: boolean
|
|
14528
|
+
targetPlanItemId?: boolean
|
|
14529
|
+
targetSyncStatus?: boolean
|
|
14530
|
+
targetSyncError?: boolean
|
|
14531
|
+
targetExecutionBranch?: boolean
|
|
14532
|
+
targetPort?: boolean
|
|
14533
|
+
targetVitePort?: boolean
|
|
14534
|
+
targetE2EPort?: boolean
|
|
14207
14535
|
status?: boolean
|
|
14208
14536
|
roomReplyReminderCount?: boolean
|
|
14209
14537
|
nextRoomReplyReminderAt?: boolean
|
|
@@ -14219,6 +14547,19 @@ export namespace Prisma {
|
|
|
14219
14547
|
memberId?: boolean
|
|
14220
14548
|
workspaceId?: boolean
|
|
14221
14549
|
sessionId?: boolean
|
|
14550
|
+
targetKind?: boolean
|
|
14551
|
+
targetPurpose?: boolean
|
|
14552
|
+
targetSourceWorkspaceId?: boolean
|
|
14553
|
+
targetSourceMemberId?: boolean
|
|
14554
|
+
targetHeadSha?: boolean
|
|
14555
|
+
targetBranchName?: boolean
|
|
14556
|
+
targetPlanItemId?: boolean
|
|
14557
|
+
targetSyncStatus?: boolean
|
|
14558
|
+
targetSyncError?: boolean
|
|
14559
|
+
targetExecutionBranch?: boolean
|
|
14560
|
+
targetPort?: boolean
|
|
14561
|
+
targetVitePort?: boolean
|
|
14562
|
+
targetE2EPort?: boolean
|
|
14222
14563
|
status?: boolean
|
|
14223
14564
|
roomReplyReminderCount?: boolean
|
|
14224
14565
|
nextRoomReplyReminderAt?: boolean
|
|
@@ -14234,6 +14575,19 @@ export namespace Prisma {
|
|
|
14234
14575
|
memberId?: boolean
|
|
14235
14576
|
workspaceId?: boolean
|
|
14236
14577
|
sessionId?: boolean
|
|
14578
|
+
targetKind?: boolean
|
|
14579
|
+
targetPurpose?: boolean
|
|
14580
|
+
targetSourceWorkspaceId?: boolean
|
|
14581
|
+
targetSourceMemberId?: boolean
|
|
14582
|
+
targetHeadSha?: boolean
|
|
14583
|
+
targetBranchName?: boolean
|
|
14584
|
+
targetPlanItemId?: boolean
|
|
14585
|
+
targetSyncStatus?: boolean
|
|
14586
|
+
targetSyncError?: boolean
|
|
14587
|
+
targetExecutionBranch?: boolean
|
|
14588
|
+
targetPort?: boolean
|
|
14589
|
+
targetVitePort?: boolean
|
|
14590
|
+
targetE2EPort?: boolean
|
|
14237
14591
|
status?: boolean
|
|
14238
14592
|
roomReplyReminderCount?: boolean
|
|
14239
14593
|
nextRoomReplyReminderAt?: boolean
|
|
@@ -14260,6 +14614,19 @@ export namespace Prisma {
|
|
|
14260
14614
|
memberId: string
|
|
14261
14615
|
workspaceId: string | null
|
|
14262
14616
|
sessionId: string | null
|
|
14617
|
+
targetKind: string | null
|
|
14618
|
+
targetPurpose: string | null
|
|
14619
|
+
targetSourceWorkspaceId: string | null
|
|
14620
|
+
targetSourceMemberId: string | null
|
|
14621
|
+
targetHeadSha: string | null
|
|
14622
|
+
targetBranchName: string | null
|
|
14623
|
+
targetPlanItemId: string | null
|
|
14624
|
+
targetSyncStatus: string | null
|
|
14625
|
+
targetSyncError: string | null
|
|
14626
|
+
targetExecutionBranch: string | null
|
|
14627
|
+
targetPort: number | null
|
|
14628
|
+
targetVitePort: number | null
|
|
14629
|
+
targetE2EPort: number | null
|
|
14263
14630
|
status: string
|
|
14264
14631
|
roomReplyReminderCount: number
|
|
14265
14632
|
nextRoomReplyReminderAt: Date | null
|
|
@@ -14665,6 +15032,19 @@ export namespace Prisma {
|
|
|
14665
15032
|
readonly memberId: FieldRef<"AgentInvocation", 'String'>
|
|
14666
15033
|
readonly workspaceId: FieldRef<"AgentInvocation", 'String'>
|
|
14667
15034
|
readonly sessionId: FieldRef<"AgentInvocation", 'String'>
|
|
15035
|
+
readonly targetKind: FieldRef<"AgentInvocation", 'String'>
|
|
15036
|
+
readonly targetPurpose: FieldRef<"AgentInvocation", 'String'>
|
|
15037
|
+
readonly targetSourceWorkspaceId: FieldRef<"AgentInvocation", 'String'>
|
|
15038
|
+
readonly targetSourceMemberId: FieldRef<"AgentInvocation", 'String'>
|
|
15039
|
+
readonly targetHeadSha: FieldRef<"AgentInvocation", 'String'>
|
|
15040
|
+
readonly targetBranchName: FieldRef<"AgentInvocation", 'String'>
|
|
15041
|
+
readonly targetPlanItemId: FieldRef<"AgentInvocation", 'String'>
|
|
15042
|
+
readonly targetSyncStatus: FieldRef<"AgentInvocation", 'String'>
|
|
15043
|
+
readonly targetSyncError: FieldRef<"AgentInvocation", 'String'>
|
|
15044
|
+
readonly targetExecutionBranch: FieldRef<"AgentInvocation", 'String'>
|
|
15045
|
+
readonly targetPort: FieldRef<"AgentInvocation", 'Int'>
|
|
15046
|
+
readonly targetVitePort: FieldRef<"AgentInvocation", 'Int'>
|
|
15047
|
+
readonly targetE2EPort: FieldRef<"AgentInvocation", 'Int'>
|
|
14668
15048
|
readonly status: FieldRef<"AgentInvocation", 'String'>
|
|
14669
15049
|
readonly roomReplyReminderCount: FieldRef<"AgentInvocation", 'Int'>
|
|
14670
15050
|
readonly nextRoomReplyReminderAt: FieldRef<"AgentInvocation", 'DateTime'>
|
|
@@ -15250,6 +15630,7 @@ export namespace Prisma {
|
|
|
15250
15630
|
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
15251
15631
|
mainForTeamRuns?: boolean | Workspace$mainForTeamRunsArgs<ExtArgs>
|
|
15252
15632
|
sessions?: boolean | Workspace$sessionsArgs<ExtArgs>
|
|
15633
|
+
verdicts?: boolean | Workspace$verdictsArgs<ExtArgs>
|
|
15253
15634
|
_count?: boolean | WorkspaceCountOutputTypeDefaultArgs<ExtArgs>
|
|
15254
15635
|
}, ExtArgs["result"]["workspace"]>
|
|
15255
15636
|
|
|
@@ -15299,6 +15680,7 @@ export namespace Prisma {
|
|
|
15299
15680
|
ownerMember?: boolean | Workspace$ownerMemberArgs<ExtArgs>
|
|
15300
15681
|
mainForTeamRuns?: boolean | Workspace$mainForTeamRunsArgs<ExtArgs>
|
|
15301
15682
|
sessions?: boolean | Workspace$sessionsArgs<ExtArgs>
|
|
15683
|
+
verdicts?: boolean | Workspace$verdictsArgs<ExtArgs>
|
|
15302
15684
|
_count?: boolean | WorkspaceCountOutputTypeDefaultArgs<ExtArgs>
|
|
15303
15685
|
}
|
|
15304
15686
|
export type WorkspaceIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -15316,6 +15698,7 @@ export namespace Prisma {
|
|
|
15316
15698
|
ownerMember: Prisma.$TeamMemberPayload<ExtArgs> | null
|
|
15317
15699
|
mainForTeamRuns: Prisma.$TeamRunPayload<ExtArgs>[]
|
|
15318
15700
|
sessions: Prisma.$SessionPayload<ExtArgs>[]
|
|
15701
|
+
verdicts: Prisma.$WorkspaceVerdictPayload<ExtArgs>[]
|
|
15319
15702
|
}
|
|
15320
15703
|
scalars: $Extensions.GetPayloadResult<{
|
|
15321
15704
|
id: string
|
|
@@ -15703,6 +16086,7 @@ export namespace Prisma {
|
|
|
15703
16086
|
ownerMember<T extends Workspace$ownerMemberArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$ownerMemberArgs<ExtArgs>>): Prisma__TeamMemberClient<$Result.GetResult<Prisma.$TeamMemberPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
15704
16087
|
mainForTeamRuns<T extends Workspace$mainForTeamRunsArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$mainForTeamRunsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$TeamRunPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15705
16088
|
sessions<T extends Workspace$sessionsArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$sessionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SessionPayload<ExtArgs>, T, "findMany"> | Null>
|
|
16089
|
+
verdicts<T extends Workspace$verdictsArgs<ExtArgs> = {}>(args?: Subset<T, Workspace$verdictsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "findMany"> | Null>
|
|
15706
16090
|
/**
|
|
15707
16091
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
15708
16092
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -16152,6 +16536,26 @@ export namespace Prisma {
|
|
|
16152
16536
|
distinct?: SessionScalarFieldEnum | SessionScalarFieldEnum[]
|
|
16153
16537
|
}
|
|
16154
16538
|
|
|
16539
|
+
/**
|
|
16540
|
+
* Workspace.verdicts
|
|
16541
|
+
*/
|
|
16542
|
+
export type Workspace$verdictsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
16543
|
+
/**
|
|
16544
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
16545
|
+
*/
|
|
16546
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
16547
|
+
/**
|
|
16548
|
+
* Choose, which related nodes to fetch as well
|
|
16549
|
+
*/
|
|
16550
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
16551
|
+
where?: WorkspaceVerdictWhereInput
|
|
16552
|
+
orderBy?: WorkspaceVerdictOrderByWithRelationInput | WorkspaceVerdictOrderByWithRelationInput[]
|
|
16553
|
+
cursor?: WorkspaceVerdictWhereUniqueInput
|
|
16554
|
+
take?: number
|
|
16555
|
+
skip?: number
|
|
16556
|
+
distinct?: WorkspaceVerdictScalarFieldEnum | WorkspaceVerdictScalarFieldEnum[]
|
|
16557
|
+
}
|
|
16558
|
+
|
|
16155
16559
|
/**
|
|
16156
16560
|
* Workspace without action
|
|
16157
16561
|
*/
|
|
@@ -16168,237 +16572,1268 @@ export namespace Prisma {
|
|
|
16168
16572
|
|
|
16169
16573
|
|
|
16170
16574
|
/**
|
|
16171
|
-
* Model
|
|
16575
|
+
* Model WorkspaceVerdict
|
|
16172
16576
|
*/
|
|
16173
16577
|
|
|
16174
|
-
export type
|
|
16175
|
-
_count:
|
|
16176
|
-
|
|
16177
|
-
|
|
16578
|
+
export type AggregateWorkspaceVerdict = {
|
|
16579
|
+
_count: WorkspaceVerdictCountAggregateOutputType | null
|
|
16580
|
+
_avg: WorkspaceVerdictAvgAggregateOutputType | null
|
|
16581
|
+
_sum: WorkspaceVerdictSumAggregateOutputType | null
|
|
16582
|
+
_min: WorkspaceVerdictMinAggregateOutputType | null
|
|
16583
|
+
_max: WorkspaceVerdictMaxAggregateOutputType | null
|
|
16178
16584
|
}
|
|
16179
16585
|
|
|
16180
|
-
export type
|
|
16586
|
+
export type WorkspaceVerdictAvgAggregateOutputType = {
|
|
16587
|
+
sequence: number | null
|
|
16588
|
+
}
|
|
16589
|
+
|
|
16590
|
+
export type WorkspaceVerdictSumAggregateOutputType = {
|
|
16591
|
+
sequence: number | null
|
|
16592
|
+
}
|
|
16593
|
+
|
|
16594
|
+
export type WorkspaceVerdictMinAggregateOutputType = {
|
|
16181
16595
|
id: string | null
|
|
16182
|
-
|
|
16183
|
-
|
|
16184
|
-
|
|
16185
|
-
|
|
16186
|
-
|
|
16596
|
+
workspaceId: string | null
|
|
16597
|
+
teamRunId: string | null
|
|
16598
|
+
kind: string | null
|
|
16599
|
+
verdict: string | null
|
|
16600
|
+
reviewedSha: string | null
|
|
16601
|
+
reviewerMemberId: string | null
|
|
16602
|
+
reason: string | null
|
|
16603
|
+
sequence: number | null
|
|
16187
16604
|
createdAt: Date | null
|
|
16188
|
-
updatedAt: Date | null
|
|
16189
16605
|
}
|
|
16190
16606
|
|
|
16191
|
-
export type
|
|
16607
|
+
export type WorkspaceVerdictMaxAggregateOutputType = {
|
|
16192
16608
|
id: string | null
|
|
16193
|
-
|
|
16194
|
-
|
|
16195
|
-
|
|
16196
|
-
|
|
16197
|
-
|
|
16609
|
+
workspaceId: string | null
|
|
16610
|
+
teamRunId: string | null
|
|
16611
|
+
kind: string | null
|
|
16612
|
+
verdict: string | null
|
|
16613
|
+
reviewedSha: string | null
|
|
16614
|
+
reviewerMemberId: string | null
|
|
16615
|
+
reason: string | null
|
|
16616
|
+
sequence: number | null
|
|
16198
16617
|
createdAt: Date | null
|
|
16199
|
-
updatedAt: Date | null
|
|
16200
16618
|
}
|
|
16201
16619
|
|
|
16202
|
-
export type
|
|
16620
|
+
export type WorkspaceVerdictCountAggregateOutputType = {
|
|
16203
16621
|
id: number
|
|
16204
|
-
|
|
16205
|
-
|
|
16206
|
-
|
|
16207
|
-
|
|
16208
|
-
|
|
16622
|
+
workspaceId: number
|
|
16623
|
+
teamRunId: number
|
|
16624
|
+
kind: number
|
|
16625
|
+
verdict: number
|
|
16626
|
+
reviewedSha: number
|
|
16627
|
+
reviewerMemberId: number
|
|
16628
|
+
reason: number
|
|
16629
|
+
sequence: number
|
|
16209
16630
|
createdAt: number
|
|
16210
|
-
updatedAt: number
|
|
16211
16631
|
_all: number
|
|
16212
16632
|
}
|
|
16213
16633
|
|
|
16214
16634
|
|
|
16215
|
-
export type
|
|
16635
|
+
export type WorkspaceVerdictAvgAggregateInputType = {
|
|
16636
|
+
sequence?: true
|
|
16637
|
+
}
|
|
16638
|
+
|
|
16639
|
+
export type WorkspaceVerdictSumAggregateInputType = {
|
|
16640
|
+
sequence?: true
|
|
16641
|
+
}
|
|
16642
|
+
|
|
16643
|
+
export type WorkspaceVerdictMinAggregateInputType = {
|
|
16216
16644
|
id?: true
|
|
16217
|
-
|
|
16218
|
-
|
|
16219
|
-
|
|
16220
|
-
|
|
16221
|
-
|
|
16645
|
+
workspaceId?: true
|
|
16646
|
+
teamRunId?: true
|
|
16647
|
+
kind?: true
|
|
16648
|
+
verdict?: true
|
|
16649
|
+
reviewedSha?: true
|
|
16650
|
+
reviewerMemberId?: true
|
|
16651
|
+
reason?: true
|
|
16652
|
+
sequence?: true
|
|
16222
16653
|
createdAt?: true
|
|
16223
|
-
updatedAt?: true
|
|
16224
16654
|
}
|
|
16225
16655
|
|
|
16226
|
-
export type
|
|
16656
|
+
export type WorkspaceVerdictMaxAggregateInputType = {
|
|
16227
16657
|
id?: true
|
|
16228
|
-
|
|
16229
|
-
|
|
16230
|
-
|
|
16231
|
-
|
|
16232
|
-
|
|
16658
|
+
workspaceId?: true
|
|
16659
|
+
teamRunId?: true
|
|
16660
|
+
kind?: true
|
|
16661
|
+
verdict?: true
|
|
16662
|
+
reviewedSha?: true
|
|
16663
|
+
reviewerMemberId?: true
|
|
16664
|
+
reason?: true
|
|
16665
|
+
sequence?: true
|
|
16233
16666
|
createdAt?: true
|
|
16234
|
-
updatedAt?: true
|
|
16235
16667
|
}
|
|
16236
16668
|
|
|
16237
|
-
export type
|
|
16669
|
+
export type WorkspaceVerdictCountAggregateInputType = {
|
|
16238
16670
|
id?: true
|
|
16239
|
-
|
|
16240
|
-
|
|
16241
|
-
|
|
16242
|
-
|
|
16243
|
-
|
|
16671
|
+
workspaceId?: true
|
|
16672
|
+
teamRunId?: true
|
|
16673
|
+
kind?: true
|
|
16674
|
+
verdict?: true
|
|
16675
|
+
reviewedSha?: true
|
|
16676
|
+
reviewerMemberId?: true
|
|
16677
|
+
reason?: true
|
|
16678
|
+
sequence?: true
|
|
16244
16679
|
createdAt?: true
|
|
16245
|
-
updatedAt?: true
|
|
16246
16680
|
_all?: true
|
|
16247
16681
|
}
|
|
16248
16682
|
|
|
16249
|
-
export type
|
|
16683
|
+
export type WorkspaceVerdictAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
16250
16684
|
/**
|
|
16251
|
-
* Filter which
|
|
16685
|
+
* Filter which WorkspaceVerdict to aggregate.
|
|
16252
16686
|
*/
|
|
16253
|
-
where?:
|
|
16687
|
+
where?: WorkspaceVerdictWhereInput
|
|
16254
16688
|
/**
|
|
16255
16689
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
16256
16690
|
*
|
|
16257
|
-
* Determine the order of
|
|
16691
|
+
* Determine the order of WorkspaceVerdicts to fetch.
|
|
16258
16692
|
*/
|
|
16259
|
-
orderBy?:
|
|
16693
|
+
orderBy?: WorkspaceVerdictOrderByWithRelationInput | WorkspaceVerdictOrderByWithRelationInput[]
|
|
16260
16694
|
/**
|
|
16261
16695
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
16262
16696
|
*
|
|
16263
16697
|
* Sets the start position
|
|
16264
16698
|
*/
|
|
16265
|
-
cursor?:
|
|
16699
|
+
cursor?: WorkspaceVerdictWhereUniqueInput
|
|
16266
16700
|
/**
|
|
16267
16701
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
16268
16702
|
*
|
|
16269
|
-
* Take `±n`
|
|
16703
|
+
* Take `±n` WorkspaceVerdicts from the position of the cursor.
|
|
16270
16704
|
*/
|
|
16271
16705
|
take?: number
|
|
16272
16706
|
/**
|
|
16273
16707
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
16274
16708
|
*
|
|
16275
|
-
* Skip the first `n`
|
|
16709
|
+
* Skip the first `n` WorkspaceVerdicts.
|
|
16276
16710
|
*/
|
|
16277
16711
|
skip?: number
|
|
16278
16712
|
/**
|
|
16279
16713
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
16280
16714
|
*
|
|
16281
|
-
* Count returned
|
|
16715
|
+
* Count returned WorkspaceVerdicts
|
|
16282
16716
|
**/
|
|
16283
|
-
_count?: true |
|
|
16717
|
+
_count?: true | WorkspaceVerdictCountAggregateInputType
|
|
16718
|
+
/**
|
|
16719
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
16720
|
+
*
|
|
16721
|
+
* Select which fields to average
|
|
16722
|
+
**/
|
|
16723
|
+
_avg?: WorkspaceVerdictAvgAggregateInputType
|
|
16724
|
+
/**
|
|
16725
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
16726
|
+
*
|
|
16727
|
+
* Select which fields to sum
|
|
16728
|
+
**/
|
|
16729
|
+
_sum?: WorkspaceVerdictSumAggregateInputType
|
|
16284
16730
|
/**
|
|
16285
16731
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
16286
16732
|
*
|
|
16287
16733
|
* Select which fields to find the minimum value
|
|
16288
16734
|
**/
|
|
16289
|
-
_min?:
|
|
16735
|
+
_min?: WorkspaceVerdictMinAggregateInputType
|
|
16290
16736
|
/**
|
|
16291
16737
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
16292
16738
|
*
|
|
16293
16739
|
* Select which fields to find the maximum value
|
|
16294
16740
|
**/
|
|
16295
|
-
_max?:
|
|
16741
|
+
_max?: WorkspaceVerdictMaxAggregateInputType
|
|
16296
16742
|
}
|
|
16297
16743
|
|
|
16298
|
-
export type
|
|
16299
|
-
[P in keyof T & keyof
|
|
16744
|
+
export type GetWorkspaceVerdictAggregateType<T extends WorkspaceVerdictAggregateArgs> = {
|
|
16745
|
+
[P in keyof T & keyof AggregateWorkspaceVerdict]: P extends '_count' | 'count'
|
|
16300
16746
|
? T[P] extends true
|
|
16301
16747
|
? number
|
|
16302
|
-
: GetScalarType<T[P],
|
|
16303
|
-
: GetScalarType<T[P],
|
|
16748
|
+
: GetScalarType<T[P], AggregateWorkspaceVerdict[P]>
|
|
16749
|
+
: GetScalarType<T[P], AggregateWorkspaceVerdict[P]>
|
|
16304
16750
|
}
|
|
16305
16751
|
|
|
16306
16752
|
|
|
16307
16753
|
|
|
16308
16754
|
|
|
16309
|
-
export type
|
|
16310
|
-
where?:
|
|
16311
|
-
orderBy?:
|
|
16312
|
-
by:
|
|
16313
|
-
having?:
|
|
16755
|
+
export type WorkspaceVerdictGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
16756
|
+
where?: WorkspaceVerdictWhereInput
|
|
16757
|
+
orderBy?: WorkspaceVerdictOrderByWithAggregationInput | WorkspaceVerdictOrderByWithAggregationInput[]
|
|
16758
|
+
by: WorkspaceVerdictScalarFieldEnum[] | WorkspaceVerdictScalarFieldEnum
|
|
16759
|
+
having?: WorkspaceVerdictScalarWhereWithAggregatesInput
|
|
16314
16760
|
take?: number
|
|
16315
16761
|
skip?: number
|
|
16316
|
-
_count?:
|
|
16317
|
-
|
|
16318
|
-
|
|
16762
|
+
_count?: WorkspaceVerdictCountAggregateInputType | true
|
|
16763
|
+
_avg?: WorkspaceVerdictAvgAggregateInputType
|
|
16764
|
+
_sum?: WorkspaceVerdictSumAggregateInputType
|
|
16765
|
+
_min?: WorkspaceVerdictMinAggregateInputType
|
|
16766
|
+
_max?: WorkspaceVerdictMaxAggregateInputType
|
|
16319
16767
|
}
|
|
16320
16768
|
|
|
16321
|
-
export type
|
|
16769
|
+
export type WorkspaceVerdictGroupByOutputType = {
|
|
16322
16770
|
id: string
|
|
16323
|
-
|
|
16324
|
-
|
|
16325
|
-
|
|
16326
|
-
|
|
16327
|
-
|
|
16771
|
+
workspaceId: string
|
|
16772
|
+
teamRunId: string
|
|
16773
|
+
kind: string
|
|
16774
|
+
verdict: string
|
|
16775
|
+
reviewedSha: string
|
|
16776
|
+
reviewerMemberId: string | null
|
|
16777
|
+
reason: string | null
|
|
16778
|
+
sequence: number
|
|
16328
16779
|
createdAt: Date
|
|
16329
|
-
|
|
16330
|
-
|
|
16331
|
-
|
|
16332
|
-
|
|
16780
|
+
_count: WorkspaceVerdictCountAggregateOutputType | null
|
|
16781
|
+
_avg: WorkspaceVerdictAvgAggregateOutputType | null
|
|
16782
|
+
_sum: WorkspaceVerdictSumAggregateOutputType | null
|
|
16783
|
+
_min: WorkspaceVerdictMinAggregateOutputType | null
|
|
16784
|
+
_max: WorkspaceVerdictMaxAggregateOutputType | null
|
|
16333
16785
|
}
|
|
16334
16786
|
|
|
16335
|
-
type
|
|
16787
|
+
type GetWorkspaceVerdictGroupByPayload<T extends WorkspaceVerdictGroupByArgs> = Prisma.PrismaPromise<
|
|
16336
16788
|
Array<
|
|
16337
|
-
PickEnumerable<
|
|
16789
|
+
PickEnumerable<WorkspaceVerdictGroupByOutputType, T['by']> &
|
|
16338
16790
|
{
|
|
16339
|
-
[P in ((keyof T) & (keyof
|
|
16791
|
+
[P in ((keyof T) & (keyof WorkspaceVerdictGroupByOutputType))]: P extends '_count'
|
|
16340
16792
|
? T[P] extends boolean
|
|
16341
16793
|
? number
|
|
16342
|
-
: GetScalarType<T[P],
|
|
16343
|
-
: GetScalarType<T[P],
|
|
16794
|
+
: GetScalarType<T[P], WorkspaceVerdictGroupByOutputType[P]>
|
|
16795
|
+
: GetScalarType<T[P], WorkspaceVerdictGroupByOutputType[P]>
|
|
16344
16796
|
}
|
|
16345
16797
|
>
|
|
16346
16798
|
>
|
|
16347
16799
|
|
|
16348
16800
|
|
|
16349
|
-
export type
|
|
16801
|
+
export type WorkspaceVerdictSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
16350
16802
|
id?: boolean
|
|
16351
|
-
|
|
16352
|
-
|
|
16353
|
-
|
|
16354
|
-
|
|
16355
|
-
|
|
16803
|
+
workspaceId?: boolean
|
|
16804
|
+
teamRunId?: boolean
|
|
16805
|
+
kind?: boolean
|
|
16806
|
+
verdict?: boolean
|
|
16807
|
+
reviewedSha?: boolean
|
|
16808
|
+
reviewerMemberId?: boolean
|
|
16809
|
+
reason?: boolean
|
|
16810
|
+
sequence?: boolean
|
|
16356
16811
|
createdAt?: boolean
|
|
16357
|
-
|
|
16358
|
-
|
|
16359
|
-
}, ExtArgs["result"]["
|
|
16812
|
+
workspace?: boolean | WorkspaceDefaultArgs<ExtArgs>
|
|
16813
|
+
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
16814
|
+
}, ExtArgs["result"]["workspaceVerdict"]>
|
|
16360
16815
|
|
|
16361
|
-
export type
|
|
16816
|
+
export type WorkspaceVerdictSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
16362
16817
|
id?: boolean
|
|
16363
|
-
|
|
16364
|
-
|
|
16365
|
-
|
|
16366
|
-
|
|
16367
|
-
|
|
16818
|
+
workspaceId?: boolean
|
|
16819
|
+
teamRunId?: boolean
|
|
16820
|
+
kind?: boolean
|
|
16821
|
+
verdict?: boolean
|
|
16822
|
+
reviewedSha?: boolean
|
|
16823
|
+
reviewerMemberId?: boolean
|
|
16824
|
+
reason?: boolean
|
|
16825
|
+
sequence?: boolean
|
|
16368
16826
|
createdAt?: boolean
|
|
16369
|
-
|
|
16370
|
-
|
|
16827
|
+
workspace?: boolean | WorkspaceDefaultArgs<ExtArgs>
|
|
16828
|
+
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
16829
|
+
}, ExtArgs["result"]["workspaceVerdict"]>
|
|
16371
16830
|
|
|
16372
|
-
export type
|
|
16831
|
+
export type WorkspaceVerdictSelectScalar = {
|
|
16373
16832
|
id?: boolean
|
|
16374
|
-
|
|
16375
|
-
|
|
16376
|
-
|
|
16377
|
-
|
|
16378
|
-
|
|
16833
|
+
workspaceId?: boolean
|
|
16834
|
+
teamRunId?: boolean
|
|
16835
|
+
kind?: boolean
|
|
16836
|
+
verdict?: boolean
|
|
16837
|
+
reviewedSha?: boolean
|
|
16838
|
+
reviewerMemberId?: boolean
|
|
16839
|
+
reason?: boolean
|
|
16840
|
+
sequence?: boolean
|
|
16379
16841
|
createdAt?: boolean
|
|
16380
|
-
updatedAt?: boolean
|
|
16381
16842
|
}
|
|
16382
16843
|
|
|
16383
|
-
export type
|
|
16384
|
-
|
|
16844
|
+
export type WorkspaceVerdictInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
16845
|
+
workspace?: boolean | WorkspaceDefaultArgs<ExtArgs>
|
|
16846
|
+
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
16847
|
+
}
|
|
16848
|
+
export type WorkspaceVerdictIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
16849
|
+
workspace?: boolean | WorkspaceDefaultArgs<ExtArgs>
|
|
16850
|
+
teamRun?: boolean | TeamRunDefaultArgs<ExtArgs>
|
|
16385
16851
|
}
|
|
16386
|
-
export type ConversationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
16387
16852
|
|
|
16388
|
-
export type $
|
|
16389
|
-
name: "
|
|
16853
|
+
export type $WorkspaceVerdictPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
16854
|
+
name: "WorkspaceVerdict"
|
|
16390
16855
|
objects: {
|
|
16391
|
-
|
|
16856
|
+
workspace: Prisma.$WorkspacePayload<ExtArgs>
|
|
16857
|
+
teamRun: Prisma.$TeamRunPayload<ExtArgs>
|
|
16392
16858
|
}
|
|
16393
16859
|
scalars: $Extensions.GetPayloadResult<{
|
|
16394
16860
|
id: string
|
|
16395
|
-
|
|
16396
|
-
|
|
16397
|
-
|
|
16398
|
-
|
|
16399
|
-
|
|
16861
|
+
workspaceId: string
|
|
16862
|
+
teamRunId: string
|
|
16863
|
+
kind: string
|
|
16864
|
+
verdict: string
|
|
16865
|
+
reviewedSha: string
|
|
16866
|
+
reviewerMemberId: string | null
|
|
16867
|
+
reason: string | null
|
|
16868
|
+
sequence: number
|
|
16400
16869
|
createdAt: Date
|
|
16401
|
-
|
|
16870
|
+
}, ExtArgs["result"]["workspaceVerdict"]>
|
|
16871
|
+
composites: {}
|
|
16872
|
+
}
|
|
16873
|
+
|
|
16874
|
+
type WorkspaceVerdictGetPayload<S extends boolean | null | undefined | WorkspaceVerdictDefaultArgs> = $Result.GetResult<Prisma.$WorkspaceVerdictPayload, S>
|
|
16875
|
+
|
|
16876
|
+
type WorkspaceVerdictCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
16877
|
+
Omit<WorkspaceVerdictFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
16878
|
+
select?: WorkspaceVerdictCountAggregateInputType | true
|
|
16879
|
+
}
|
|
16880
|
+
|
|
16881
|
+
export interface WorkspaceVerdictDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
16882
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['WorkspaceVerdict'], meta: { name: 'WorkspaceVerdict' } }
|
|
16883
|
+
/**
|
|
16884
|
+
* Find zero or one WorkspaceVerdict that matches the filter.
|
|
16885
|
+
* @param {WorkspaceVerdictFindUniqueArgs} args - Arguments to find a WorkspaceVerdict
|
|
16886
|
+
* @example
|
|
16887
|
+
* // Get one WorkspaceVerdict
|
|
16888
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.findUnique({
|
|
16889
|
+
* where: {
|
|
16890
|
+
* // ... provide filter here
|
|
16891
|
+
* }
|
|
16892
|
+
* })
|
|
16893
|
+
*/
|
|
16894
|
+
findUnique<T extends WorkspaceVerdictFindUniqueArgs>(args: SelectSubset<T, WorkspaceVerdictFindUniqueArgs<ExtArgs>>): Prisma__WorkspaceVerdictClient<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
16895
|
+
|
|
16896
|
+
/**
|
|
16897
|
+
* Find one WorkspaceVerdict that matches the filter or throw an error with `error.code='P2025'`
|
|
16898
|
+
* if no matches were found.
|
|
16899
|
+
* @param {WorkspaceVerdictFindUniqueOrThrowArgs} args - Arguments to find a WorkspaceVerdict
|
|
16900
|
+
* @example
|
|
16901
|
+
* // Get one WorkspaceVerdict
|
|
16902
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.findUniqueOrThrow({
|
|
16903
|
+
* where: {
|
|
16904
|
+
* // ... provide filter here
|
|
16905
|
+
* }
|
|
16906
|
+
* })
|
|
16907
|
+
*/
|
|
16908
|
+
findUniqueOrThrow<T extends WorkspaceVerdictFindUniqueOrThrowArgs>(args: SelectSubset<T, WorkspaceVerdictFindUniqueOrThrowArgs<ExtArgs>>): Prisma__WorkspaceVerdictClient<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
16909
|
+
|
|
16910
|
+
/**
|
|
16911
|
+
* Find the first WorkspaceVerdict that matches the filter.
|
|
16912
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
16913
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
16914
|
+
* @param {WorkspaceVerdictFindFirstArgs} args - Arguments to find a WorkspaceVerdict
|
|
16915
|
+
* @example
|
|
16916
|
+
* // Get one WorkspaceVerdict
|
|
16917
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.findFirst({
|
|
16918
|
+
* where: {
|
|
16919
|
+
* // ... provide filter here
|
|
16920
|
+
* }
|
|
16921
|
+
* })
|
|
16922
|
+
*/
|
|
16923
|
+
findFirst<T extends WorkspaceVerdictFindFirstArgs>(args?: SelectSubset<T, WorkspaceVerdictFindFirstArgs<ExtArgs>>): Prisma__WorkspaceVerdictClient<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
16924
|
+
|
|
16925
|
+
/**
|
|
16926
|
+
* Find the first WorkspaceVerdict that matches the filter or
|
|
16927
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
16928
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
16929
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
16930
|
+
* @param {WorkspaceVerdictFindFirstOrThrowArgs} args - Arguments to find a WorkspaceVerdict
|
|
16931
|
+
* @example
|
|
16932
|
+
* // Get one WorkspaceVerdict
|
|
16933
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.findFirstOrThrow({
|
|
16934
|
+
* where: {
|
|
16935
|
+
* // ... provide filter here
|
|
16936
|
+
* }
|
|
16937
|
+
* })
|
|
16938
|
+
*/
|
|
16939
|
+
findFirstOrThrow<T extends WorkspaceVerdictFindFirstOrThrowArgs>(args?: SelectSubset<T, WorkspaceVerdictFindFirstOrThrowArgs<ExtArgs>>): Prisma__WorkspaceVerdictClient<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
16940
|
+
|
|
16941
|
+
/**
|
|
16942
|
+
* Find zero or more WorkspaceVerdicts that matches the filter.
|
|
16943
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
16944
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
16945
|
+
* @param {WorkspaceVerdictFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
16946
|
+
* @example
|
|
16947
|
+
* // Get all WorkspaceVerdicts
|
|
16948
|
+
* const workspaceVerdicts = await prisma.workspaceVerdict.findMany()
|
|
16949
|
+
*
|
|
16950
|
+
* // Get first 10 WorkspaceVerdicts
|
|
16951
|
+
* const workspaceVerdicts = await prisma.workspaceVerdict.findMany({ take: 10 })
|
|
16952
|
+
*
|
|
16953
|
+
* // Only select the `id`
|
|
16954
|
+
* const workspaceVerdictWithIdOnly = await prisma.workspaceVerdict.findMany({ select: { id: true } })
|
|
16955
|
+
*
|
|
16956
|
+
*/
|
|
16957
|
+
findMany<T extends WorkspaceVerdictFindManyArgs>(args?: SelectSubset<T, WorkspaceVerdictFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "findMany">>
|
|
16958
|
+
|
|
16959
|
+
/**
|
|
16960
|
+
* Create a WorkspaceVerdict.
|
|
16961
|
+
* @param {WorkspaceVerdictCreateArgs} args - Arguments to create a WorkspaceVerdict.
|
|
16962
|
+
* @example
|
|
16963
|
+
* // Create one WorkspaceVerdict
|
|
16964
|
+
* const WorkspaceVerdict = await prisma.workspaceVerdict.create({
|
|
16965
|
+
* data: {
|
|
16966
|
+
* // ... data to create a WorkspaceVerdict
|
|
16967
|
+
* }
|
|
16968
|
+
* })
|
|
16969
|
+
*
|
|
16970
|
+
*/
|
|
16971
|
+
create<T extends WorkspaceVerdictCreateArgs>(args: SelectSubset<T, WorkspaceVerdictCreateArgs<ExtArgs>>): Prisma__WorkspaceVerdictClient<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
16972
|
+
|
|
16973
|
+
/**
|
|
16974
|
+
* Create many WorkspaceVerdicts.
|
|
16975
|
+
* @param {WorkspaceVerdictCreateManyArgs} args - Arguments to create many WorkspaceVerdicts.
|
|
16976
|
+
* @example
|
|
16977
|
+
* // Create many WorkspaceVerdicts
|
|
16978
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.createMany({
|
|
16979
|
+
* data: [
|
|
16980
|
+
* // ... provide data here
|
|
16981
|
+
* ]
|
|
16982
|
+
* })
|
|
16983
|
+
*
|
|
16984
|
+
*/
|
|
16985
|
+
createMany<T extends WorkspaceVerdictCreateManyArgs>(args?: SelectSubset<T, WorkspaceVerdictCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
16986
|
+
|
|
16987
|
+
/**
|
|
16988
|
+
* Create many WorkspaceVerdicts and returns the data saved in the database.
|
|
16989
|
+
* @param {WorkspaceVerdictCreateManyAndReturnArgs} args - Arguments to create many WorkspaceVerdicts.
|
|
16990
|
+
* @example
|
|
16991
|
+
* // Create many WorkspaceVerdicts
|
|
16992
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.createManyAndReturn({
|
|
16993
|
+
* data: [
|
|
16994
|
+
* // ... provide data here
|
|
16995
|
+
* ]
|
|
16996
|
+
* })
|
|
16997
|
+
*
|
|
16998
|
+
* // Create many WorkspaceVerdicts and only return the `id`
|
|
16999
|
+
* const workspaceVerdictWithIdOnly = await prisma.workspaceVerdict.createManyAndReturn({
|
|
17000
|
+
* select: { id: true },
|
|
17001
|
+
* data: [
|
|
17002
|
+
* // ... provide data here
|
|
17003
|
+
* ]
|
|
17004
|
+
* })
|
|
17005
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
17006
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
17007
|
+
*
|
|
17008
|
+
*/
|
|
17009
|
+
createManyAndReturn<T extends WorkspaceVerdictCreateManyAndReturnArgs>(args?: SelectSubset<T, WorkspaceVerdictCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "createManyAndReturn">>
|
|
17010
|
+
|
|
17011
|
+
/**
|
|
17012
|
+
* Delete a WorkspaceVerdict.
|
|
17013
|
+
* @param {WorkspaceVerdictDeleteArgs} args - Arguments to delete one WorkspaceVerdict.
|
|
17014
|
+
* @example
|
|
17015
|
+
* // Delete one WorkspaceVerdict
|
|
17016
|
+
* const WorkspaceVerdict = await prisma.workspaceVerdict.delete({
|
|
17017
|
+
* where: {
|
|
17018
|
+
* // ... filter to delete one WorkspaceVerdict
|
|
17019
|
+
* }
|
|
17020
|
+
* })
|
|
17021
|
+
*
|
|
17022
|
+
*/
|
|
17023
|
+
delete<T extends WorkspaceVerdictDeleteArgs>(args: SelectSubset<T, WorkspaceVerdictDeleteArgs<ExtArgs>>): Prisma__WorkspaceVerdictClient<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
17024
|
+
|
|
17025
|
+
/**
|
|
17026
|
+
* Update one WorkspaceVerdict.
|
|
17027
|
+
* @param {WorkspaceVerdictUpdateArgs} args - Arguments to update one WorkspaceVerdict.
|
|
17028
|
+
* @example
|
|
17029
|
+
* // Update one WorkspaceVerdict
|
|
17030
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.update({
|
|
17031
|
+
* where: {
|
|
17032
|
+
* // ... provide filter here
|
|
17033
|
+
* },
|
|
17034
|
+
* data: {
|
|
17035
|
+
* // ... provide data here
|
|
17036
|
+
* }
|
|
17037
|
+
* })
|
|
17038
|
+
*
|
|
17039
|
+
*/
|
|
17040
|
+
update<T extends WorkspaceVerdictUpdateArgs>(args: SelectSubset<T, WorkspaceVerdictUpdateArgs<ExtArgs>>): Prisma__WorkspaceVerdictClient<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
17041
|
+
|
|
17042
|
+
/**
|
|
17043
|
+
* Delete zero or more WorkspaceVerdicts.
|
|
17044
|
+
* @param {WorkspaceVerdictDeleteManyArgs} args - Arguments to filter WorkspaceVerdicts to delete.
|
|
17045
|
+
* @example
|
|
17046
|
+
* // Delete a few WorkspaceVerdicts
|
|
17047
|
+
* const { count } = await prisma.workspaceVerdict.deleteMany({
|
|
17048
|
+
* where: {
|
|
17049
|
+
* // ... provide filter here
|
|
17050
|
+
* }
|
|
17051
|
+
* })
|
|
17052
|
+
*
|
|
17053
|
+
*/
|
|
17054
|
+
deleteMany<T extends WorkspaceVerdictDeleteManyArgs>(args?: SelectSubset<T, WorkspaceVerdictDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
17055
|
+
|
|
17056
|
+
/**
|
|
17057
|
+
* Update zero or more WorkspaceVerdicts.
|
|
17058
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
17059
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
17060
|
+
* @param {WorkspaceVerdictUpdateManyArgs} args - Arguments to update one or more rows.
|
|
17061
|
+
* @example
|
|
17062
|
+
* // Update many WorkspaceVerdicts
|
|
17063
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.updateMany({
|
|
17064
|
+
* where: {
|
|
17065
|
+
* // ... provide filter here
|
|
17066
|
+
* },
|
|
17067
|
+
* data: {
|
|
17068
|
+
* // ... provide data here
|
|
17069
|
+
* }
|
|
17070
|
+
* })
|
|
17071
|
+
*
|
|
17072
|
+
*/
|
|
17073
|
+
updateMany<T extends WorkspaceVerdictUpdateManyArgs>(args: SelectSubset<T, WorkspaceVerdictUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
17074
|
+
|
|
17075
|
+
/**
|
|
17076
|
+
* Create or update one WorkspaceVerdict.
|
|
17077
|
+
* @param {WorkspaceVerdictUpsertArgs} args - Arguments to update or create a WorkspaceVerdict.
|
|
17078
|
+
* @example
|
|
17079
|
+
* // Update or create a WorkspaceVerdict
|
|
17080
|
+
* const workspaceVerdict = await prisma.workspaceVerdict.upsert({
|
|
17081
|
+
* create: {
|
|
17082
|
+
* // ... data to create a WorkspaceVerdict
|
|
17083
|
+
* },
|
|
17084
|
+
* update: {
|
|
17085
|
+
* // ... in case it already exists, update
|
|
17086
|
+
* },
|
|
17087
|
+
* where: {
|
|
17088
|
+
* // ... the filter for the WorkspaceVerdict we want to update
|
|
17089
|
+
* }
|
|
17090
|
+
* })
|
|
17091
|
+
*/
|
|
17092
|
+
upsert<T extends WorkspaceVerdictUpsertArgs>(args: SelectSubset<T, WorkspaceVerdictUpsertArgs<ExtArgs>>): Prisma__WorkspaceVerdictClient<$Result.GetResult<Prisma.$WorkspaceVerdictPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
17093
|
+
|
|
17094
|
+
|
|
17095
|
+
/**
|
|
17096
|
+
* Count the number of WorkspaceVerdicts.
|
|
17097
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
17098
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
17099
|
+
* @param {WorkspaceVerdictCountArgs} args - Arguments to filter WorkspaceVerdicts to count.
|
|
17100
|
+
* @example
|
|
17101
|
+
* // Count the number of WorkspaceVerdicts
|
|
17102
|
+
* const count = await prisma.workspaceVerdict.count({
|
|
17103
|
+
* where: {
|
|
17104
|
+
* // ... the filter for the WorkspaceVerdicts we want to count
|
|
17105
|
+
* }
|
|
17106
|
+
* })
|
|
17107
|
+
**/
|
|
17108
|
+
count<T extends WorkspaceVerdictCountArgs>(
|
|
17109
|
+
args?: Subset<T, WorkspaceVerdictCountArgs>,
|
|
17110
|
+
): Prisma.PrismaPromise<
|
|
17111
|
+
T extends $Utils.Record<'select', any>
|
|
17112
|
+
? T['select'] extends true
|
|
17113
|
+
? number
|
|
17114
|
+
: GetScalarType<T['select'], WorkspaceVerdictCountAggregateOutputType>
|
|
17115
|
+
: number
|
|
17116
|
+
>
|
|
17117
|
+
|
|
17118
|
+
/**
|
|
17119
|
+
* Allows you to perform aggregations operations on a WorkspaceVerdict.
|
|
17120
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
17121
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
17122
|
+
* @param {WorkspaceVerdictAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
17123
|
+
* @example
|
|
17124
|
+
* // Ordered by age ascending
|
|
17125
|
+
* // Where email contains prisma.io
|
|
17126
|
+
* // Limited to the 10 users
|
|
17127
|
+
* const aggregations = await prisma.user.aggregate({
|
|
17128
|
+
* _avg: {
|
|
17129
|
+
* age: true,
|
|
17130
|
+
* },
|
|
17131
|
+
* where: {
|
|
17132
|
+
* email: {
|
|
17133
|
+
* contains: "prisma.io",
|
|
17134
|
+
* },
|
|
17135
|
+
* },
|
|
17136
|
+
* orderBy: {
|
|
17137
|
+
* age: "asc",
|
|
17138
|
+
* },
|
|
17139
|
+
* take: 10,
|
|
17140
|
+
* })
|
|
17141
|
+
**/
|
|
17142
|
+
aggregate<T extends WorkspaceVerdictAggregateArgs>(args: Subset<T, WorkspaceVerdictAggregateArgs>): Prisma.PrismaPromise<GetWorkspaceVerdictAggregateType<T>>
|
|
17143
|
+
|
|
17144
|
+
/**
|
|
17145
|
+
* Group by WorkspaceVerdict.
|
|
17146
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
17147
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
17148
|
+
* @param {WorkspaceVerdictGroupByArgs} args - Group by arguments.
|
|
17149
|
+
* @example
|
|
17150
|
+
* // Group by city, order by createdAt, get count
|
|
17151
|
+
* const result = await prisma.user.groupBy({
|
|
17152
|
+
* by: ['city', 'createdAt'],
|
|
17153
|
+
* orderBy: {
|
|
17154
|
+
* createdAt: true
|
|
17155
|
+
* },
|
|
17156
|
+
* _count: {
|
|
17157
|
+
* _all: true
|
|
17158
|
+
* },
|
|
17159
|
+
* })
|
|
17160
|
+
*
|
|
17161
|
+
**/
|
|
17162
|
+
groupBy<
|
|
17163
|
+
T extends WorkspaceVerdictGroupByArgs,
|
|
17164
|
+
HasSelectOrTake extends Or<
|
|
17165
|
+
Extends<'skip', Keys<T>>,
|
|
17166
|
+
Extends<'take', Keys<T>>
|
|
17167
|
+
>,
|
|
17168
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
17169
|
+
? { orderBy: WorkspaceVerdictGroupByArgs['orderBy'] }
|
|
17170
|
+
: { orderBy?: WorkspaceVerdictGroupByArgs['orderBy'] },
|
|
17171
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
17172
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
17173
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
17174
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
17175
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
17176
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
17177
|
+
InputErrors extends ByEmpty extends True
|
|
17178
|
+
? `Error: "by" must not be empty.`
|
|
17179
|
+
: HavingValid extends False
|
|
17180
|
+
? {
|
|
17181
|
+
[P in HavingFields]: P extends ByFields
|
|
17182
|
+
? never
|
|
17183
|
+
: P extends string
|
|
17184
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
17185
|
+
: [
|
|
17186
|
+
Error,
|
|
17187
|
+
'Field ',
|
|
17188
|
+
P,
|
|
17189
|
+
` in "having" needs to be provided in "by"`,
|
|
17190
|
+
]
|
|
17191
|
+
}[HavingFields]
|
|
17192
|
+
: 'take' extends Keys<T>
|
|
17193
|
+
? 'orderBy' extends Keys<T>
|
|
17194
|
+
? ByValid extends True
|
|
17195
|
+
? {}
|
|
17196
|
+
: {
|
|
17197
|
+
[P in OrderFields]: P extends ByFields
|
|
17198
|
+
? never
|
|
17199
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
17200
|
+
}[OrderFields]
|
|
17201
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
17202
|
+
: 'skip' extends Keys<T>
|
|
17203
|
+
? 'orderBy' extends Keys<T>
|
|
17204
|
+
? ByValid extends True
|
|
17205
|
+
? {}
|
|
17206
|
+
: {
|
|
17207
|
+
[P in OrderFields]: P extends ByFields
|
|
17208
|
+
? never
|
|
17209
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
17210
|
+
}[OrderFields]
|
|
17211
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
17212
|
+
: ByValid extends True
|
|
17213
|
+
? {}
|
|
17214
|
+
: {
|
|
17215
|
+
[P in OrderFields]: P extends ByFields
|
|
17216
|
+
? never
|
|
17217
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
17218
|
+
}[OrderFields]
|
|
17219
|
+
>(args: SubsetIntersection<T, WorkspaceVerdictGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetWorkspaceVerdictGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
17220
|
+
/**
|
|
17221
|
+
* Fields of the WorkspaceVerdict model
|
|
17222
|
+
*/
|
|
17223
|
+
readonly fields: WorkspaceVerdictFieldRefs;
|
|
17224
|
+
}
|
|
17225
|
+
|
|
17226
|
+
/**
|
|
17227
|
+
* The delegate class that acts as a "Promise-like" for WorkspaceVerdict.
|
|
17228
|
+
* Why is this prefixed with `Prisma__`?
|
|
17229
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
17230
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
17231
|
+
*/
|
|
17232
|
+
export interface Prisma__WorkspaceVerdictClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
17233
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
17234
|
+
workspace<T extends WorkspaceDefaultArgs<ExtArgs> = {}>(args?: Subset<T, WorkspaceDefaultArgs<ExtArgs>>): Prisma__WorkspaceClient<$Result.GetResult<Prisma.$WorkspacePayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
17235
|
+
teamRun<T extends TeamRunDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TeamRunDefaultArgs<ExtArgs>>): Prisma__TeamRunClient<$Result.GetResult<Prisma.$TeamRunPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
17236
|
+
/**
|
|
17237
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
17238
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
17239
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
17240
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
17241
|
+
*/
|
|
17242
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
17243
|
+
/**
|
|
17244
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
17245
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
17246
|
+
* @returns A Promise for the completion of the callback.
|
|
17247
|
+
*/
|
|
17248
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
17249
|
+
/**
|
|
17250
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
17251
|
+
* resolved value cannot be modified from the callback.
|
|
17252
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
17253
|
+
* @returns A Promise for the completion of the callback.
|
|
17254
|
+
*/
|
|
17255
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
17256
|
+
}
|
|
17257
|
+
|
|
17258
|
+
|
|
17259
|
+
|
|
17260
|
+
|
|
17261
|
+
/**
|
|
17262
|
+
* Fields of the WorkspaceVerdict model
|
|
17263
|
+
*/
|
|
17264
|
+
interface WorkspaceVerdictFieldRefs {
|
|
17265
|
+
readonly id: FieldRef<"WorkspaceVerdict", 'String'>
|
|
17266
|
+
readonly workspaceId: FieldRef<"WorkspaceVerdict", 'String'>
|
|
17267
|
+
readonly teamRunId: FieldRef<"WorkspaceVerdict", 'String'>
|
|
17268
|
+
readonly kind: FieldRef<"WorkspaceVerdict", 'String'>
|
|
17269
|
+
readonly verdict: FieldRef<"WorkspaceVerdict", 'String'>
|
|
17270
|
+
readonly reviewedSha: FieldRef<"WorkspaceVerdict", 'String'>
|
|
17271
|
+
readonly reviewerMemberId: FieldRef<"WorkspaceVerdict", 'String'>
|
|
17272
|
+
readonly reason: FieldRef<"WorkspaceVerdict", 'String'>
|
|
17273
|
+
readonly sequence: FieldRef<"WorkspaceVerdict", 'Int'>
|
|
17274
|
+
readonly createdAt: FieldRef<"WorkspaceVerdict", 'DateTime'>
|
|
17275
|
+
}
|
|
17276
|
+
|
|
17277
|
+
|
|
17278
|
+
// Custom InputTypes
|
|
17279
|
+
/**
|
|
17280
|
+
* WorkspaceVerdict findUnique
|
|
17281
|
+
*/
|
|
17282
|
+
export type WorkspaceVerdictFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17283
|
+
/**
|
|
17284
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17285
|
+
*/
|
|
17286
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17287
|
+
/**
|
|
17288
|
+
* Choose, which related nodes to fetch as well
|
|
17289
|
+
*/
|
|
17290
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17291
|
+
/**
|
|
17292
|
+
* Filter, which WorkspaceVerdict to fetch.
|
|
17293
|
+
*/
|
|
17294
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
17295
|
+
}
|
|
17296
|
+
|
|
17297
|
+
/**
|
|
17298
|
+
* WorkspaceVerdict findUniqueOrThrow
|
|
17299
|
+
*/
|
|
17300
|
+
export type WorkspaceVerdictFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17301
|
+
/**
|
|
17302
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17303
|
+
*/
|
|
17304
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17305
|
+
/**
|
|
17306
|
+
* Choose, which related nodes to fetch as well
|
|
17307
|
+
*/
|
|
17308
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17309
|
+
/**
|
|
17310
|
+
* Filter, which WorkspaceVerdict to fetch.
|
|
17311
|
+
*/
|
|
17312
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
17313
|
+
}
|
|
17314
|
+
|
|
17315
|
+
/**
|
|
17316
|
+
* WorkspaceVerdict findFirst
|
|
17317
|
+
*/
|
|
17318
|
+
export type WorkspaceVerdictFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17319
|
+
/**
|
|
17320
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17321
|
+
*/
|
|
17322
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17323
|
+
/**
|
|
17324
|
+
* Choose, which related nodes to fetch as well
|
|
17325
|
+
*/
|
|
17326
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17327
|
+
/**
|
|
17328
|
+
* Filter, which WorkspaceVerdict to fetch.
|
|
17329
|
+
*/
|
|
17330
|
+
where?: WorkspaceVerdictWhereInput
|
|
17331
|
+
/**
|
|
17332
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
17333
|
+
*
|
|
17334
|
+
* Determine the order of WorkspaceVerdicts to fetch.
|
|
17335
|
+
*/
|
|
17336
|
+
orderBy?: WorkspaceVerdictOrderByWithRelationInput | WorkspaceVerdictOrderByWithRelationInput[]
|
|
17337
|
+
/**
|
|
17338
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
17339
|
+
*
|
|
17340
|
+
* Sets the position for searching for WorkspaceVerdicts.
|
|
17341
|
+
*/
|
|
17342
|
+
cursor?: WorkspaceVerdictWhereUniqueInput
|
|
17343
|
+
/**
|
|
17344
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
17345
|
+
*
|
|
17346
|
+
* Take `±n` WorkspaceVerdicts from the position of the cursor.
|
|
17347
|
+
*/
|
|
17348
|
+
take?: number
|
|
17349
|
+
/**
|
|
17350
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
17351
|
+
*
|
|
17352
|
+
* Skip the first `n` WorkspaceVerdicts.
|
|
17353
|
+
*/
|
|
17354
|
+
skip?: number
|
|
17355
|
+
/**
|
|
17356
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
17357
|
+
*
|
|
17358
|
+
* Filter by unique combinations of WorkspaceVerdicts.
|
|
17359
|
+
*/
|
|
17360
|
+
distinct?: WorkspaceVerdictScalarFieldEnum | WorkspaceVerdictScalarFieldEnum[]
|
|
17361
|
+
}
|
|
17362
|
+
|
|
17363
|
+
/**
|
|
17364
|
+
* WorkspaceVerdict findFirstOrThrow
|
|
17365
|
+
*/
|
|
17366
|
+
export type WorkspaceVerdictFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17367
|
+
/**
|
|
17368
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17369
|
+
*/
|
|
17370
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17371
|
+
/**
|
|
17372
|
+
* Choose, which related nodes to fetch as well
|
|
17373
|
+
*/
|
|
17374
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17375
|
+
/**
|
|
17376
|
+
* Filter, which WorkspaceVerdict to fetch.
|
|
17377
|
+
*/
|
|
17378
|
+
where?: WorkspaceVerdictWhereInput
|
|
17379
|
+
/**
|
|
17380
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
17381
|
+
*
|
|
17382
|
+
* Determine the order of WorkspaceVerdicts to fetch.
|
|
17383
|
+
*/
|
|
17384
|
+
orderBy?: WorkspaceVerdictOrderByWithRelationInput | WorkspaceVerdictOrderByWithRelationInput[]
|
|
17385
|
+
/**
|
|
17386
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
17387
|
+
*
|
|
17388
|
+
* Sets the position for searching for WorkspaceVerdicts.
|
|
17389
|
+
*/
|
|
17390
|
+
cursor?: WorkspaceVerdictWhereUniqueInput
|
|
17391
|
+
/**
|
|
17392
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
17393
|
+
*
|
|
17394
|
+
* Take `±n` WorkspaceVerdicts from the position of the cursor.
|
|
17395
|
+
*/
|
|
17396
|
+
take?: number
|
|
17397
|
+
/**
|
|
17398
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
17399
|
+
*
|
|
17400
|
+
* Skip the first `n` WorkspaceVerdicts.
|
|
17401
|
+
*/
|
|
17402
|
+
skip?: number
|
|
17403
|
+
/**
|
|
17404
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
17405
|
+
*
|
|
17406
|
+
* Filter by unique combinations of WorkspaceVerdicts.
|
|
17407
|
+
*/
|
|
17408
|
+
distinct?: WorkspaceVerdictScalarFieldEnum | WorkspaceVerdictScalarFieldEnum[]
|
|
17409
|
+
}
|
|
17410
|
+
|
|
17411
|
+
/**
|
|
17412
|
+
* WorkspaceVerdict findMany
|
|
17413
|
+
*/
|
|
17414
|
+
export type WorkspaceVerdictFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17415
|
+
/**
|
|
17416
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17417
|
+
*/
|
|
17418
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17419
|
+
/**
|
|
17420
|
+
* Choose, which related nodes to fetch as well
|
|
17421
|
+
*/
|
|
17422
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17423
|
+
/**
|
|
17424
|
+
* Filter, which WorkspaceVerdicts to fetch.
|
|
17425
|
+
*/
|
|
17426
|
+
where?: WorkspaceVerdictWhereInput
|
|
17427
|
+
/**
|
|
17428
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
17429
|
+
*
|
|
17430
|
+
* Determine the order of WorkspaceVerdicts to fetch.
|
|
17431
|
+
*/
|
|
17432
|
+
orderBy?: WorkspaceVerdictOrderByWithRelationInput | WorkspaceVerdictOrderByWithRelationInput[]
|
|
17433
|
+
/**
|
|
17434
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
17435
|
+
*
|
|
17436
|
+
* Sets the position for listing WorkspaceVerdicts.
|
|
17437
|
+
*/
|
|
17438
|
+
cursor?: WorkspaceVerdictWhereUniqueInput
|
|
17439
|
+
/**
|
|
17440
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
17441
|
+
*
|
|
17442
|
+
* Take `±n` WorkspaceVerdicts from the position of the cursor.
|
|
17443
|
+
*/
|
|
17444
|
+
take?: number
|
|
17445
|
+
/**
|
|
17446
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
17447
|
+
*
|
|
17448
|
+
* Skip the first `n` WorkspaceVerdicts.
|
|
17449
|
+
*/
|
|
17450
|
+
skip?: number
|
|
17451
|
+
distinct?: WorkspaceVerdictScalarFieldEnum | WorkspaceVerdictScalarFieldEnum[]
|
|
17452
|
+
}
|
|
17453
|
+
|
|
17454
|
+
/**
|
|
17455
|
+
* WorkspaceVerdict create
|
|
17456
|
+
*/
|
|
17457
|
+
export type WorkspaceVerdictCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17458
|
+
/**
|
|
17459
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17460
|
+
*/
|
|
17461
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17462
|
+
/**
|
|
17463
|
+
* Choose, which related nodes to fetch as well
|
|
17464
|
+
*/
|
|
17465
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17466
|
+
/**
|
|
17467
|
+
* The data needed to create a WorkspaceVerdict.
|
|
17468
|
+
*/
|
|
17469
|
+
data: XOR<WorkspaceVerdictCreateInput, WorkspaceVerdictUncheckedCreateInput>
|
|
17470
|
+
}
|
|
17471
|
+
|
|
17472
|
+
/**
|
|
17473
|
+
* WorkspaceVerdict createMany
|
|
17474
|
+
*/
|
|
17475
|
+
export type WorkspaceVerdictCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17476
|
+
/**
|
|
17477
|
+
* The data used to create many WorkspaceVerdicts.
|
|
17478
|
+
*/
|
|
17479
|
+
data: WorkspaceVerdictCreateManyInput | WorkspaceVerdictCreateManyInput[]
|
|
17480
|
+
}
|
|
17481
|
+
|
|
17482
|
+
/**
|
|
17483
|
+
* WorkspaceVerdict createManyAndReturn
|
|
17484
|
+
*/
|
|
17485
|
+
export type WorkspaceVerdictCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17486
|
+
/**
|
|
17487
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17488
|
+
*/
|
|
17489
|
+
select?: WorkspaceVerdictSelectCreateManyAndReturn<ExtArgs> | null
|
|
17490
|
+
/**
|
|
17491
|
+
* The data used to create many WorkspaceVerdicts.
|
|
17492
|
+
*/
|
|
17493
|
+
data: WorkspaceVerdictCreateManyInput | WorkspaceVerdictCreateManyInput[]
|
|
17494
|
+
/**
|
|
17495
|
+
* Choose, which related nodes to fetch as well
|
|
17496
|
+
*/
|
|
17497
|
+
include?: WorkspaceVerdictIncludeCreateManyAndReturn<ExtArgs> | null
|
|
17498
|
+
}
|
|
17499
|
+
|
|
17500
|
+
/**
|
|
17501
|
+
* WorkspaceVerdict update
|
|
17502
|
+
*/
|
|
17503
|
+
export type WorkspaceVerdictUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17504
|
+
/**
|
|
17505
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17506
|
+
*/
|
|
17507
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17508
|
+
/**
|
|
17509
|
+
* Choose, which related nodes to fetch as well
|
|
17510
|
+
*/
|
|
17511
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17512
|
+
/**
|
|
17513
|
+
* The data needed to update a WorkspaceVerdict.
|
|
17514
|
+
*/
|
|
17515
|
+
data: XOR<WorkspaceVerdictUpdateInput, WorkspaceVerdictUncheckedUpdateInput>
|
|
17516
|
+
/**
|
|
17517
|
+
* Choose, which WorkspaceVerdict to update.
|
|
17518
|
+
*/
|
|
17519
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
17520
|
+
}
|
|
17521
|
+
|
|
17522
|
+
/**
|
|
17523
|
+
* WorkspaceVerdict updateMany
|
|
17524
|
+
*/
|
|
17525
|
+
export type WorkspaceVerdictUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17526
|
+
/**
|
|
17527
|
+
* The data used to update WorkspaceVerdicts.
|
|
17528
|
+
*/
|
|
17529
|
+
data: XOR<WorkspaceVerdictUpdateManyMutationInput, WorkspaceVerdictUncheckedUpdateManyInput>
|
|
17530
|
+
/**
|
|
17531
|
+
* Filter which WorkspaceVerdicts to update
|
|
17532
|
+
*/
|
|
17533
|
+
where?: WorkspaceVerdictWhereInput
|
|
17534
|
+
}
|
|
17535
|
+
|
|
17536
|
+
/**
|
|
17537
|
+
* WorkspaceVerdict upsert
|
|
17538
|
+
*/
|
|
17539
|
+
export type WorkspaceVerdictUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17540
|
+
/**
|
|
17541
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17542
|
+
*/
|
|
17543
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17544
|
+
/**
|
|
17545
|
+
* Choose, which related nodes to fetch as well
|
|
17546
|
+
*/
|
|
17547
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17548
|
+
/**
|
|
17549
|
+
* The filter to search for the WorkspaceVerdict to update in case it exists.
|
|
17550
|
+
*/
|
|
17551
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
17552
|
+
/**
|
|
17553
|
+
* In case the WorkspaceVerdict found by the `where` argument doesn't exist, create a new WorkspaceVerdict with this data.
|
|
17554
|
+
*/
|
|
17555
|
+
create: XOR<WorkspaceVerdictCreateInput, WorkspaceVerdictUncheckedCreateInput>
|
|
17556
|
+
/**
|
|
17557
|
+
* In case the WorkspaceVerdict was found with the provided `where` argument, update it with this data.
|
|
17558
|
+
*/
|
|
17559
|
+
update: XOR<WorkspaceVerdictUpdateInput, WorkspaceVerdictUncheckedUpdateInput>
|
|
17560
|
+
}
|
|
17561
|
+
|
|
17562
|
+
/**
|
|
17563
|
+
* WorkspaceVerdict delete
|
|
17564
|
+
*/
|
|
17565
|
+
export type WorkspaceVerdictDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17566
|
+
/**
|
|
17567
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17568
|
+
*/
|
|
17569
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17570
|
+
/**
|
|
17571
|
+
* Choose, which related nodes to fetch as well
|
|
17572
|
+
*/
|
|
17573
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17574
|
+
/**
|
|
17575
|
+
* Filter which WorkspaceVerdict to delete.
|
|
17576
|
+
*/
|
|
17577
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
17578
|
+
}
|
|
17579
|
+
|
|
17580
|
+
/**
|
|
17581
|
+
* WorkspaceVerdict deleteMany
|
|
17582
|
+
*/
|
|
17583
|
+
export type WorkspaceVerdictDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17584
|
+
/**
|
|
17585
|
+
* Filter which WorkspaceVerdicts to delete
|
|
17586
|
+
*/
|
|
17587
|
+
where?: WorkspaceVerdictWhereInput
|
|
17588
|
+
}
|
|
17589
|
+
|
|
17590
|
+
/**
|
|
17591
|
+
* WorkspaceVerdict without action
|
|
17592
|
+
*/
|
|
17593
|
+
export type WorkspaceVerdictDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17594
|
+
/**
|
|
17595
|
+
* Select specific fields to fetch from the WorkspaceVerdict
|
|
17596
|
+
*/
|
|
17597
|
+
select?: WorkspaceVerdictSelect<ExtArgs> | null
|
|
17598
|
+
/**
|
|
17599
|
+
* Choose, which related nodes to fetch as well
|
|
17600
|
+
*/
|
|
17601
|
+
include?: WorkspaceVerdictInclude<ExtArgs> | null
|
|
17602
|
+
}
|
|
17603
|
+
|
|
17604
|
+
|
|
17605
|
+
/**
|
|
17606
|
+
* Model Conversation
|
|
17607
|
+
*/
|
|
17608
|
+
|
|
17609
|
+
export type AggregateConversation = {
|
|
17610
|
+
_count: ConversationCountAggregateOutputType | null
|
|
17611
|
+
_min: ConversationMinAggregateOutputType | null
|
|
17612
|
+
_max: ConversationMaxAggregateOutputType | null
|
|
17613
|
+
}
|
|
17614
|
+
|
|
17615
|
+
export type ConversationMinAggregateOutputType = {
|
|
17616
|
+
id: string | null
|
|
17617
|
+
title: string | null
|
|
17618
|
+
directoryName: string | null
|
|
17619
|
+
workingDir: string | null
|
|
17620
|
+
deletedAt: Date | null
|
|
17621
|
+
lastActiveAt: Date | null
|
|
17622
|
+
createdAt: Date | null
|
|
17623
|
+
updatedAt: Date | null
|
|
17624
|
+
}
|
|
17625
|
+
|
|
17626
|
+
export type ConversationMaxAggregateOutputType = {
|
|
17627
|
+
id: string | null
|
|
17628
|
+
title: string | null
|
|
17629
|
+
directoryName: string | null
|
|
17630
|
+
workingDir: string | null
|
|
17631
|
+
deletedAt: Date | null
|
|
17632
|
+
lastActiveAt: Date | null
|
|
17633
|
+
createdAt: Date | null
|
|
17634
|
+
updatedAt: Date | null
|
|
17635
|
+
}
|
|
17636
|
+
|
|
17637
|
+
export type ConversationCountAggregateOutputType = {
|
|
17638
|
+
id: number
|
|
17639
|
+
title: number
|
|
17640
|
+
directoryName: number
|
|
17641
|
+
workingDir: number
|
|
17642
|
+
deletedAt: number
|
|
17643
|
+
lastActiveAt: number
|
|
17644
|
+
createdAt: number
|
|
17645
|
+
updatedAt: number
|
|
17646
|
+
_all: number
|
|
17647
|
+
}
|
|
17648
|
+
|
|
17649
|
+
|
|
17650
|
+
export type ConversationMinAggregateInputType = {
|
|
17651
|
+
id?: true
|
|
17652
|
+
title?: true
|
|
17653
|
+
directoryName?: true
|
|
17654
|
+
workingDir?: true
|
|
17655
|
+
deletedAt?: true
|
|
17656
|
+
lastActiveAt?: true
|
|
17657
|
+
createdAt?: true
|
|
17658
|
+
updatedAt?: true
|
|
17659
|
+
}
|
|
17660
|
+
|
|
17661
|
+
export type ConversationMaxAggregateInputType = {
|
|
17662
|
+
id?: true
|
|
17663
|
+
title?: true
|
|
17664
|
+
directoryName?: true
|
|
17665
|
+
workingDir?: true
|
|
17666
|
+
deletedAt?: true
|
|
17667
|
+
lastActiveAt?: true
|
|
17668
|
+
createdAt?: true
|
|
17669
|
+
updatedAt?: true
|
|
17670
|
+
}
|
|
17671
|
+
|
|
17672
|
+
export type ConversationCountAggregateInputType = {
|
|
17673
|
+
id?: true
|
|
17674
|
+
title?: true
|
|
17675
|
+
directoryName?: true
|
|
17676
|
+
workingDir?: true
|
|
17677
|
+
deletedAt?: true
|
|
17678
|
+
lastActiveAt?: true
|
|
17679
|
+
createdAt?: true
|
|
17680
|
+
updatedAt?: true
|
|
17681
|
+
_all?: true
|
|
17682
|
+
}
|
|
17683
|
+
|
|
17684
|
+
export type ConversationAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17685
|
+
/**
|
|
17686
|
+
* Filter which Conversation to aggregate.
|
|
17687
|
+
*/
|
|
17688
|
+
where?: ConversationWhereInput
|
|
17689
|
+
/**
|
|
17690
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
17691
|
+
*
|
|
17692
|
+
* Determine the order of Conversations to fetch.
|
|
17693
|
+
*/
|
|
17694
|
+
orderBy?: ConversationOrderByWithRelationInput | ConversationOrderByWithRelationInput[]
|
|
17695
|
+
/**
|
|
17696
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
17697
|
+
*
|
|
17698
|
+
* Sets the start position
|
|
17699
|
+
*/
|
|
17700
|
+
cursor?: ConversationWhereUniqueInput
|
|
17701
|
+
/**
|
|
17702
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
17703
|
+
*
|
|
17704
|
+
* Take `±n` Conversations from the position of the cursor.
|
|
17705
|
+
*/
|
|
17706
|
+
take?: number
|
|
17707
|
+
/**
|
|
17708
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
17709
|
+
*
|
|
17710
|
+
* Skip the first `n` Conversations.
|
|
17711
|
+
*/
|
|
17712
|
+
skip?: number
|
|
17713
|
+
/**
|
|
17714
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
17715
|
+
*
|
|
17716
|
+
* Count returned Conversations
|
|
17717
|
+
**/
|
|
17718
|
+
_count?: true | ConversationCountAggregateInputType
|
|
17719
|
+
/**
|
|
17720
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
17721
|
+
*
|
|
17722
|
+
* Select which fields to find the minimum value
|
|
17723
|
+
**/
|
|
17724
|
+
_min?: ConversationMinAggregateInputType
|
|
17725
|
+
/**
|
|
17726
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
17727
|
+
*
|
|
17728
|
+
* Select which fields to find the maximum value
|
|
17729
|
+
**/
|
|
17730
|
+
_max?: ConversationMaxAggregateInputType
|
|
17731
|
+
}
|
|
17732
|
+
|
|
17733
|
+
export type GetConversationAggregateType<T extends ConversationAggregateArgs> = {
|
|
17734
|
+
[P in keyof T & keyof AggregateConversation]: P extends '_count' | 'count'
|
|
17735
|
+
? T[P] extends true
|
|
17736
|
+
? number
|
|
17737
|
+
: GetScalarType<T[P], AggregateConversation[P]>
|
|
17738
|
+
: GetScalarType<T[P], AggregateConversation[P]>
|
|
17739
|
+
}
|
|
17740
|
+
|
|
17741
|
+
|
|
17742
|
+
|
|
17743
|
+
|
|
17744
|
+
export type ConversationGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17745
|
+
where?: ConversationWhereInput
|
|
17746
|
+
orderBy?: ConversationOrderByWithAggregationInput | ConversationOrderByWithAggregationInput[]
|
|
17747
|
+
by: ConversationScalarFieldEnum[] | ConversationScalarFieldEnum
|
|
17748
|
+
having?: ConversationScalarWhereWithAggregatesInput
|
|
17749
|
+
take?: number
|
|
17750
|
+
skip?: number
|
|
17751
|
+
_count?: ConversationCountAggregateInputType | true
|
|
17752
|
+
_min?: ConversationMinAggregateInputType
|
|
17753
|
+
_max?: ConversationMaxAggregateInputType
|
|
17754
|
+
}
|
|
17755
|
+
|
|
17756
|
+
export type ConversationGroupByOutputType = {
|
|
17757
|
+
id: string
|
|
17758
|
+
title: string
|
|
17759
|
+
directoryName: string
|
|
17760
|
+
workingDir: string
|
|
17761
|
+
deletedAt: Date | null
|
|
17762
|
+
lastActiveAt: Date
|
|
17763
|
+
createdAt: Date
|
|
17764
|
+
updatedAt: Date
|
|
17765
|
+
_count: ConversationCountAggregateOutputType | null
|
|
17766
|
+
_min: ConversationMinAggregateOutputType | null
|
|
17767
|
+
_max: ConversationMaxAggregateOutputType | null
|
|
17768
|
+
}
|
|
17769
|
+
|
|
17770
|
+
type GetConversationGroupByPayload<T extends ConversationGroupByArgs> = Prisma.PrismaPromise<
|
|
17771
|
+
Array<
|
|
17772
|
+
PickEnumerable<ConversationGroupByOutputType, T['by']> &
|
|
17773
|
+
{
|
|
17774
|
+
[P in ((keyof T) & (keyof ConversationGroupByOutputType))]: P extends '_count'
|
|
17775
|
+
? T[P] extends boolean
|
|
17776
|
+
? number
|
|
17777
|
+
: GetScalarType<T[P], ConversationGroupByOutputType[P]>
|
|
17778
|
+
: GetScalarType<T[P], ConversationGroupByOutputType[P]>
|
|
17779
|
+
}
|
|
17780
|
+
>
|
|
17781
|
+
>
|
|
17782
|
+
|
|
17783
|
+
|
|
17784
|
+
export type ConversationSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
17785
|
+
id?: boolean
|
|
17786
|
+
title?: boolean
|
|
17787
|
+
directoryName?: boolean
|
|
17788
|
+
workingDir?: boolean
|
|
17789
|
+
deletedAt?: boolean
|
|
17790
|
+
lastActiveAt?: boolean
|
|
17791
|
+
createdAt?: boolean
|
|
17792
|
+
updatedAt?: boolean
|
|
17793
|
+
session?: boolean | Conversation$sessionArgs<ExtArgs>
|
|
17794
|
+
}, ExtArgs["result"]["conversation"]>
|
|
17795
|
+
|
|
17796
|
+
export type ConversationSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
17797
|
+
id?: boolean
|
|
17798
|
+
title?: boolean
|
|
17799
|
+
directoryName?: boolean
|
|
17800
|
+
workingDir?: boolean
|
|
17801
|
+
deletedAt?: boolean
|
|
17802
|
+
lastActiveAt?: boolean
|
|
17803
|
+
createdAt?: boolean
|
|
17804
|
+
updatedAt?: boolean
|
|
17805
|
+
}, ExtArgs["result"]["conversation"]>
|
|
17806
|
+
|
|
17807
|
+
export type ConversationSelectScalar = {
|
|
17808
|
+
id?: boolean
|
|
17809
|
+
title?: boolean
|
|
17810
|
+
directoryName?: boolean
|
|
17811
|
+
workingDir?: boolean
|
|
17812
|
+
deletedAt?: boolean
|
|
17813
|
+
lastActiveAt?: boolean
|
|
17814
|
+
createdAt?: boolean
|
|
17815
|
+
updatedAt?: boolean
|
|
17816
|
+
}
|
|
17817
|
+
|
|
17818
|
+
export type ConversationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17819
|
+
session?: boolean | Conversation$sessionArgs<ExtArgs>
|
|
17820
|
+
}
|
|
17821
|
+
export type ConversationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
17822
|
+
|
|
17823
|
+
export type $ConversationPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17824
|
+
name: "Conversation"
|
|
17825
|
+
objects: {
|
|
17826
|
+
session: Prisma.$SessionPayload<ExtArgs> | null
|
|
17827
|
+
}
|
|
17828
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
17829
|
+
id: string
|
|
17830
|
+
title: string
|
|
17831
|
+
directoryName: string
|
|
17832
|
+
workingDir: string
|
|
17833
|
+
deletedAt: Date | null
|
|
17834
|
+
lastActiveAt: Date
|
|
17835
|
+
createdAt: Date
|
|
17836
|
+
updatedAt: Date
|
|
16402
17837
|
}, ExtArgs["result"]["conversation"]>
|
|
16403
17838
|
composites: {}
|
|
16404
17839
|
}
|
|
@@ -22962,6 +24397,13 @@ export namespace Prisma {
|
|
|
22962
24397
|
requesterMemberId: 'requesterMemberId',
|
|
22963
24398
|
requesterType: 'requesterType',
|
|
22964
24399
|
targetMemberId: 'targetMemberId',
|
|
24400
|
+
targetKind: 'targetKind',
|
|
24401
|
+
targetPurpose: 'targetPurpose',
|
|
24402
|
+
targetSourceWorkspaceId: 'targetSourceWorkspaceId',
|
|
24403
|
+
targetSourceMemberId: 'targetSourceMemberId',
|
|
24404
|
+
targetHeadSha: 'targetHeadSha',
|
|
24405
|
+
targetBranchName: 'targetBranchName',
|
|
24406
|
+
targetPlanItemId: 'targetPlanItemId',
|
|
22965
24407
|
triggerMessageId: 'triggerMessageId',
|
|
22966
24408
|
instruction: 'instruction',
|
|
22967
24409
|
ifBusy: 'ifBusy',
|
|
@@ -22981,6 +24423,19 @@ export namespace Prisma {
|
|
|
22981
24423
|
memberId: 'memberId',
|
|
22982
24424
|
workspaceId: 'workspaceId',
|
|
22983
24425
|
sessionId: 'sessionId',
|
|
24426
|
+
targetKind: 'targetKind',
|
|
24427
|
+
targetPurpose: 'targetPurpose',
|
|
24428
|
+
targetSourceWorkspaceId: 'targetSourceWorkspaceId',
|
|
24429
|
+
targetSourceMemberId: 'targetSourceMemberId',
|
|
24430
|
+
targetHeadSha: 'targetHeadSha',
|
|
24431
|
+
targetBranchName: 'targetBranchName',
|
|
24432
|
+
targetPlanItemId: 'targetPlanItemId',
|
|
24433
|
+
targetSyncStatus: 'targetSyncStatus',
|
|
24434
|
+
targetSyncError: 'targetSyncError',
|
|
24435
|
+
targetExecutionBranch: 'targetExecutionBranch',
|
|
24436
|
+
targetPort: 'targetPort',
|
|
24437
|
+
targetVitePort: 'targetVitePort',
|
|
24438
|
+
targetE2EPort: 'targetE2EPort',
|
|
22984
24439
|
status: 'status',
|
|
22985
24440
|
roomReplyReminderCount: 'roomReplyReminderCount',
|
|
22986
24441
|
nextRoomReplyReminderAt: 'nextRoomReplyReminderAt',
|
|
@@ -23012,6 +24467,22 @@ export namespace Prisma {
|
|
|
23012
24467
|
export type WorkspaceScalarFieldEnum = (typeof WorkspaceScalarFieldEnum)[keyof typeof WorkspaceScalarFieldEnum]
|
|
23013
24468
|
|
|
23014
24469
|
|
|
24470
|
+
export const WorkspaceVerdictScalarFieldEnum: {
|
|
24471
|
+
id: 'id',
|
|
24472
|
+
workspaceId: 'workspaceId',
|
|
24473
|
+
teamRunId: 'teamRunId',
|
|
24474
|
+
kind: 'kind',
|
|
24475
|
+
verdict: 'verdict',
|
|
24476
|
+
reviewedSha: 'reviewedSha',
|
|
24477
|
+
reviewerMemberId: 'reviewerMemberId',
|
|
24478
|
+
reason: 'reason',
|
|
24479
|
+
sequence: 'sequence',
|
|
24480
|
+
createdAt: 'createdAt'
|
|
24481
|
+
};
|
|
24482
|
+
|
|
24483
|
+
export type WorkspaceVerdictScalarFieldEnum = (typeof WorkspaceVerdictScalarFieldEnum)[keyof typeof WorkspaceVerdictScalarFieldEnum]
|
|
24484
|
+
|
|
24485
|
+
|
|
23015
24486
|
export const ConversationScalarFieldEnum: {
|
|
23016
24487
|
id: 'id',
|
|
23017
24488
|
title: 'title',
|
|
@@ -23646,6 +25117,7 @@ export namespace Prisma {
|
|
|
23646
25117
|
messages?: RoomMessageListRelationFilter
|
|
23647
25118
|
workRequests?: WorkRequestListRelationFilter
|
|
23648
25119
|
invocations?: AgentInvocationListRelationFilter
|
|
25120
|
+
verdicts?: WorkspaceVerdictListRelationFilter
|
|
23649
25121
|
}
|
|
23650
25122
|
|
|
23651
25123
|
export type TeamRunOrderByWithRelationInput = {
|
|
@@ -23662,6 +25134,7 @@ export namespace Prisma {
|
|
|
23662
25134
|
messages?: RoomMessageOrderByRelationAggregateInput
|
|
23663
25135
|
workRequests?: WorkRequestOrderByRelationAggregateInput
|
|
23664
25136
|
invocations?: AgentInvocationOrderByRelationAggregateInput
|
|
25137
|
+
verdicts?: WorkspaceVerdictOrderByRelationAggregateInput
|
|
23665
25138
|
}
|
|
23666
25139
|
|
|
23667
25140
|
export type TeamRunWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -23681,6 +25154,7 @@ export namespace Prisma {
|
|
|
23681
25154
|
messages?: RoomMessageListRelationFilter
|
|
23682
25155
|
workRequests?: WorkRequestListRelationFilter
|
|
23683
25156
|
invocations?: AgentInvocationListRelationFilter
|
|
25157
|
+
verdicts?: WorkspaceVerdictListRelationFilter
|
|
23684
25158
|
}, "id" | "taskId">
|
|
23685
25159
|
|
|
23686
25160
|
export type TeamRunOrderByWithAggregationInput = {
|
|
@@ -24001,6 +25475,13 @@ export namespace Prisma {
|
|
|
24001
25475
|
requesterMemberId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
24002
25476
|
requesterType?: StringFilter<"WorkRequest"> | string
|
|
24003
25477
|
targetMemberId?: StringFilter<"WorkRequest"> | string
|
|
25478
|
+
targetKind?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25479
|
+
targetPurpose?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25480
|
+
targetSourceWorkspaceId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25481
|
+
targetSourceMemberId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25482
|
+
targetHeadSha?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25483
|
+
targetBranchName?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25484
|
+
targetPlanItemId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
24004
25485
|
triggerMessageId?: StringFilter<"WorkRequest"> | string
|
|
24005
25486
|
instruction?: StringFilter<"WorkRequest"> | string
|
|
24006
25487
|
ifBusy?: StringFilter<"WorkRequest"> | string
|
|
@@ -24017,6 +25498,13 @@ export namespace Prisma {
|
|
|
24017
25498
|
requesterMemberId?: SortOrderInput | SortOrder
|
|
24018
25499
|
requesterType?: SortOrder
|
|
24019
25500
|
targetMemberId?: SortOrder
|
|
25501
|
+
targetKind?: SortOrderInput | SortOrder
|
|
25502
|
+
targetPurpose?: SortOrderInput | SortOrder
|
|
25503
|
+
targetSourceWorkspaceId?: SortOrderInput | SortOrder
|
|
25504
|
+
targetSourceMemberId?: SortOrderInput | SortOrder
|
|
25505
|
+
targetHeadSha?: SortOrderInput | SortOrder
|
|
25506
|
+
targetBranchName?: SortOrderInput | SortOrder
|
|
25507
|
+
targetPlanItemId?: SortOrderInput | SortOrder
|
|
24020
25508
|
triggerMessageId?: SortOrder
|
|
24021
25509
|
instruction?: SortOrder
|
|
24022
25510
|
ifBusy?: SortOrder
|
|
@@ -24036,6 +25524,13 @@ export namespace Prisma {
|
|
|
24036
25524
|
requesterMemberId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
24037
25525
|
requesterType?: StringFilter<"WorkRequest"> | string
|
|
24038
25526
|
targetMemberId?: StringFilter<"WorkRequest"> | string
|
|
25527
|
+
targetKind?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25528
|
+
targetPurpose?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25529
|
+
targetSourceWorkspaceId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25530
|
+
targetSourceMemberId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25531
|
+
targetHeadSha?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25532
|
+
targetBranchName?: StringNullableFilter<"WorkRequest"> | string | null
|
|
25533
|
+
targetPlanItemId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
24039
25534
|
triggerMessageId?: StringFilter<"WorkRequest"> | string
|
|
24040
25535
|
instruction?: StringFilter<"WorkRequest"> | string
|
|
24041
25536
|
ifBusy?: StringFilter<"WorkRequest"> | string
|
|
@@ -24052,6 +25547,13 @@ export namespace Prisma {
|
|
|
24052
25547
|
requesterMemberId?: SortOrderInput | SortOrder
|
|
24053
25548
|
requesterType?: SortOrder
|
|
24054
25549
|
targetMemberId?: SortOrder
|
|
25550
|
+
targetKind?: SortOrderInput | SortOrder
|
|
25551
|
+
targetPurpose?: SortOrderInput | SortOrder
|
|
25552
|
+
targetSourceWorkspaceId?: SortOrderInput | SortOrder
|
|
25553
|
+
targetSourceMemberId?: SortOrderInput | SortOrder
|
|
25554
|
+
targetHeadSha?: SortOrderInput | SortOrder
|
|
25555
|
+
targetBranchName?: SortOrderInput | SortOrder
|
|
25556
|
+
targetPlanItemId?: SortOrderInput | SortOrder
|
|
24055
25557
|
triggerMessageId?: SortOrder
|
|
24056
25558
|
instruction?: SortOrder
|
|
24057
25559
|
ifBusy?: SortOrder
|
|
@@ -24073,6 +25575,13 @@ export namespace Prisma {
|
|
|
24073
25575
|
requesterMemberId?: StringNullableWithAggregatesFilter<"WorkRequest"> | string | null
|
|
24074
25576
|
requesterType?: StringWithAggregatesFilter<"WorkRequest"> | string
|
|
24075
25577
|
targetMemberId?: StringWithAggregatesFilter<"WorkRequest"> | string
|
|
25578
|
+
targetKind?: StringNullableWithAggregatesFilter<"WorkRequest"> | string | null
|
|
25579
|
+
targetPurpose?: StringNullableWithAggregatesFilter<"WorkRequest"> | string | null
|
|
25580
|
+
targetSourceWorkspaceId?: StringNullableWithAggregatesFilter<"WorkRequest"> | string | null
|
|
25581
|
+
targetSourceMemberId?: StringNullableWithAggregatesFilter<"WorkRequest"> | string | null
|
|
25582
|
+
targetHeadSha?: StringNullableWithAggregatesFilter<"WorkRequest"> | string | null
|
|
25583
|
+
targetBranchName?: StringNullableWithAggregatesFilter<"WorkRequest"> | string | null
|
|
25584
|
+
targetPlanItemId?: StringNullableWithAggregatesFilter<"WorkRequest"> | string | null
|
|
24076
25585
|
triggerMessageId?: StringWithAggregatesFilter<"WorkRequest"> | string
|
|
24077
25586
|
instruction?: StringWithAggregatesFilter<"WorkRequest"> | string
|
|
24078
25587
|
ifBusy?: StringWithAggregatesFilter<"WorkRequest"> | string
|
|
@@ -24092,6 +25601,19 @@ export namespace Prisma {
|
|
|
24092
25601
|
memberId?: StringFilter<"AgentInvocation"> | string
|
|
24093
25602
|
workspaceId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
24094
25603
|
sessionId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25604
|
+
targetKind?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25605
|
+
targetPurpose?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25606
|
+
targetSourceWorkspaceId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25607
|
+
targetSourceMemberId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25608
|
+
targetHeadSha?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25609
|
+
targetBranchName?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25610
|
+
targetPlanItemId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25611
|
+
targetSyncStatus?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25612
|
+
targetSyncError?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25613
|
+
targetExecutionBranch?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25614
|
+
targetPort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
25615
|
+
targetVitePort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
25616
|
+
targetE2EPort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
24095
25617
|
status?: StringFilter<"AgentInvocation"> | string
|
|
24096
25618
|
roomReplyReminderCount?: IntFilter<"AgentInvocation"> | number
|
|
24097
25619
|
nextRoomReplyReminderAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
@@ -24107,6 +25629,19 @@ export namespace Prisma {
|
|
|
24107
25629
|
memberId?: SortOrder
|
|
24108
25630
|
workspaceId?: SortOrderInput | SortOrder
|
|
24109
25631
|
sessionId?: SortOrderInput | SortOrder
|
|
25632
|
+
targetKind?: SortOrderInput | SortOrder
|
|
25633
|
+
targetPurpose?: SortOrderInput | SortOrder
|
|
25634
|
+
targetSourceWorkspaceId?: SortOrderInput | SortOrder
|
|
25635
|
+
targetSourceMemberId?: SortOrderInput | SortOrder
|
|
25636
|
+
targetHeadSha?: SortOrderInput | SortOrder
|
|
25637
|
+
targetBranchName?: SortOrderInput | SortOrder
|
|
25638
|
+
targetPlanItemId?: SortOrderInput | SortOrder
|
|
25639
|
+
targetSyncStatus?: SortOrderInput | SortOrder
|
|
25640
|
+
targetSyncError?: SortOrderInput | SortOrder
|
|
25641
|
+
targetExecutionBranch?: SortOrderInput | SortOrder
|
|
25642
|
+
targetPort?: SortOrderInput | SortOrder
|
|
25643
|
+
targetVitePort?: SortOrderInput | SortOrder
|
|
25644
|
+
targetE2EPort?: SortOrderInput | SortOrder
|
|
24110
25645
|
status?: SortOrder
|
|
24111
25646
|
roomReplyReminderCount?: SortOrder
|
|
24112
25647
|
nextRoomReplyReminderAt?: SortOrderInput | SortOrder
|
|
@@ -24125,6 +25660,19 @@ export namespace Prisma {
|
|
|
24125
25660
|
memberId?: StringFilter<"AgentInvocation"> | string
|
|
24126
25661
|
workspaceId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
24127
25662
|
sessionId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25663
|
+
targetKind?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25664
|
+
targetPurpose?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25665
|
+
targetSourceWorkspaceId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25666
|
+
targetSourceMemberId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25667
|
+
targetHeadSha?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25668
|
+
targetBranchName?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25669
|
+
targetPlanItemId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25670
|
+
targetSyncStatus?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25671
|
+
targetSyncError?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25672
|
+
targetExecutionBranch?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
25673
|
+
targetPort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
25674
|
+
targetVitePort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
25675
|
+
targetE2EPort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
24128
25676
|
status?: StringFilter<"AgentInvocation"> | string
|
|
24129
25677
|
roomReplyReminderCount?: IntFilter<"AgentInvocation"> | number
|
|
24130
25678
|
nextRoomReplyReminderAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
@@ -24140,6 +25688,19 @@ export namespace Prisma {
|
|
|
24140
25688
|
memberId?: SortOrder
|
|
24141
25689
|
workspaceId?: SortOrderInput | SortOrder
|
|
24142
25690
|
sessionId?: SortOrderInput | SortOrder
|
|
25691
|
+
targetKind?: SortOrderInput | SortOrder
|
|
25692
|
+
targetPurpose?: SortOrderInput | SortOrder
|
|
25693
|
+
targetSourceWorkspaceId?: SortOrderInput | SortOrder
|
|
25694
|
+
targetSourceMemberId?: SortOrderInput | SortOrder
|
|
25695
|
+
targetHeadSha?: SortOrderInput | SortOrder
|
|
25696
|
+
targetBranchName?: SortOrderInput | SortOrder
|
|
25697
|
+
targetPlanItemId?: SortOrderInput | SortOrder
|
|
25698
|
+
targetSyncStatus?: SortOrderInput | SortOrder
|
|
25699
|
+
targetSyncError?: SortOrderInput | SortOrder
|
|
25700
|
+
targetExecutionBranch?: SortOrderInput | SortOrder
|
|
25701
|
+
targetPort?: SortOrderInput | SortOrder
|
|
25702
|
+
targetVitePort?: SortOrderInput | SortOrder
|
|
25703
|
+
targetE2EPort?: SortOrderInput | SortOrder
|
|
24143
25704
|
status?: SortOrder
|
|
24144
25705
|
roomReplyReminderCount?: SortOrder
|
|
24145
25706
|
nextRoomReplyReminderAt?: SortOrderInput | SortOrder
|
|
@@ -24162,6 +25723,19 @@ export namespace Prisma {
|
|
|
24162
25723
|
memberId?: StringWithAggregatesFilter<"AgentInvocation"> | string
|
|
24163
25724
|
workspaceId?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
24164
25725
|
sessionId?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25726
|
+
targetKind?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25727
|
+
targetPurpose?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25728
|
+
targetSourceWorkspaceId?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25729
|
+
targetSourceMemberId?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25730
|
+
targetHeadSha?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25731
|
+
targetBranchName?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25732
|
+
targetPlanItemId?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25733
|
+
targetSyncStatus?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25734
|
+
targetSyncError?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25735
|
+
targetExecutionBranch?: StringNullableWithAggregatesFilter<"AgentInvocation"> | string | null
|
|
25736
|
+
targetPort?: IntNullableWithAggregatesFilter<"AgentInvocation"> | number | null
|
|
25737
|
+
targetVitePort?: IntNullableWithAggregatesFilter<"AgentInvocation"> | number | null
|
|
25738
|
+
targetE2EPort?: IntNullableWithAggregatesFilter<"AgentInvocation"> | number | null
|
|
24165
25739
|
status?: StringWithAggregatesFilter<"AgentInvocation"> | string
|
|
24166
25740
|
roomReplyReminderCount?: IntWithAggregatesFilter<"AgentInvocation"> | number
|
|
24167
25741
|
nextRoomReplyReminderAt?: DateTimeNullableWithAggregatesFilter<"AgentInvocation"> | Date | string | null
|
|
@@ -24194,6 +25768,7 @@ export namespace Prisma {
|
|
|
24194
25768
|
ownerMember?: XOR<TeamMemberNullableRelationFilter, TeamMemberWhereInput> | null
|
|
24195
25769
|
mainForTeamRuns?: TeamRunListRelationFilter
|
|
24196
25770
|
sessions?: SessionListRelationFilter
|
|
25771
|
+
verdicts?: WorkspaceVerdictListRelationFilter
|
|
24197
25772
|
}
|
|
24198
25773
|
|
|
24199
25774
|
export type WorkspaceOrderByWithRelationInput = {
|
|
@@ -24218,6 +25793,7 @@ export namespace Prisma {
|
|
|
24218
25793
|
ownerMember?: TeamMemberOrderByWithRelationInput
|
|
24219
25794
|
mainForTeamRuns?: TeamRunOrderByRelationAggregateInput
|
|
24220
25795
|
sessions?: SessionOrderByRelationAggregateInput
|
|
25796
|
+
verdicts?: WorkspaceVerdictOrderByRelationAggregateInput
|
|
24221
25797
|
}
|
|
24222
25798
|
|
|
24223
25799
|
export type WorkspaceWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -24246,6 +25822,7 @@ export namespace Prisma {
|
|
|
24246
25822
|
ownerMember?: XOR<TeamMemberNullableRelationFilter, TeamMemberWhereInput> | null
|
|
24247
25823
|
mainForTeamRuns?: TeamRunListRelationFilter
|
|
24248
25824
|
sessions?: SessionListRelationFilter
|
|
25825
|
+
verdicts?: WorkspaceVerdictListRelationFilter
|
|
24249
25826
|
}, "id" | "parentWorkspaceId_ownerMemberId">
|
|
24250
25827
|
|
|
24251
25828
|
export type WorkspaceOrderByWithAggregationInput = {
|
|
@@ -24290,6 +25867,91 @@ export namespace Prisma {
|
|
|
24290
25867
|
updatedAt?: DateTimeWithAggregatesFilter<"Workspace"> | Date | string
|
|
24291
25868
|
}
|
|
24292
25869
|
|
|
25870
|
+
export type WorkspaceVerdictWhereInput = {
|
|
25871
|
+
AND?: WorkspaceVerdictWhereInput | WorkspaceVerdictWhereInput[]
|
|
25872
|
+
OR?: WorkspaceVerdictWhereInput[]
|
|
25873
|
+
NOT?: WorkspaceVerdictWhereInput | WorkspaceVerdictWhereInput[]
|
|
25874
|
+
id?: StringFilter<"WorkspaceVerdict"> | string
|
|
25875
|
+
workspaceId?: StringFilter<"WorkspaceVerdict"> | string
|
|
25876
|
+
teamRunId?: StringFilter<"WorkspaceVerdict"> | string
|
|
25877
|
+
kind?: StringFilter<"WorkspaceVerdict"> | string
|
|
25878
|
+
verdict?: StringFilter<"WorkspaceVerdict"> | string
|
|
25879
|
+
reviewedSha?: StringFilter<"WorkspaceVerdict"> | string
|
|
25880
|
+
reviewerMemberId?: StringNullableFilter<"WorkspaceVerdict"> | string | null
|
|
25881
|
+
reason?: StringNullableFilter<"WorkspaceVerdict"> | string | null
|
|
25882
|
+
sequence?: IntFilter<"WorkspaceVerdict"> | number
|
|
25883
|
+
createdAt?: DateTimeFilter<"WorkspaceVerdict"> | Date | string
|
|
25884
|
+
workspace?: XOR<WorkspaceRelationFilter, WorkspaceWhereInput>
|
|
25885
|
+
teamRun?: XOR<TeamRunRelationFilter, TeamRunWhereInput>
|
|
25886
|
+
}
|
|
25887
|
+
|
|
25888
|
+
export type WorkspaceVerdictOrderByWithRelationInput = {
|
|
25889
|
+
id?: SortOrder
|
|
25890
|
+
workspaceId?: SortOrder
|
|
25891
|
+
teamRunId?: SortOrder
|
|
25892
|
+
kind?: SortOrder
|
|
25893
|
+
verdict?: SortOrder
|
|
25894
|
+
reviewedSha?: SortOrder
|
|
25895
|
+
reviewerMemberId?: SortOrderInput | SortOrder
|
|
25896
|
+
reason?: SortOrderInput | SortOrder
|
|
25897
|
+
sequence?: SortOrder
|
|
25898
|
+
createdAt?: SortOrder
|
|
25899
|
+
workspace?: WorkspaceOrderByWithRelationInput
|
|
25900
|
+
teamRun?: TeamRunOrderByWithRelationInput
|
|
25901
|
+
}
|
|
25902
|
+
|
|
25903
|
+
export type WorkspaceVerdictWhereUniqueInput = Prisma.AtLeast<{
|
|
25904
|
+
id?: string
|
|
25905
|
+
AND?: WorkspaceVerdictWhereInput | WorkspaceVerdictWhereInput[]
|
|
25906
|
+
OR?: WorkspaceVerdictWhereInput[]
|
|
25907
|
+
NOT?: WorkspaceVerdictWhereInput | WorkspaceVerdictWhereInput[]
|
|
25908
|
+
workspaceId?: StringFilter<"WorkspaceVerdict"> | string
|
|
25909
|
+
teamRunId?: StringFilter<"WorkspaceVerdict"> | string
|
|
25910
|
+
kind?: StringFilter<"WorkspaceVerdict"> | string
|
|
25911
|
+
verdict?: StringFilter<"WorkspaceVerdict"> | string
|
|
25912
|
+
reviewedSha?: StringFilter<"WorkspaceVerdict"> | string
|
|
25913
|
+
reviewerMemberId?: StringNullableFilter<"WorkspaceVerdict"> | string | null
|
|
25914
|
+
reason?: StringNullableFilter<"WorkspaceVerdict"> | string | null
|
|
25915
|
+
sequence?: IntFilter<"WorkspaceVerdict"> | number
|
|
25916
|
+
createdAt?: DateTimeFilter<"WorkspaceVerdict"> | Date | string
|
|
25917
|
+
workspace?: XOR<WorkspaceRelationFilter, WorkspaceWhereInput>
|
|
25918
|
+
teamRun?: XOR<TeamRunRelationFilter, TeamRunWhereInput>
|
|
25919
|
+
}, "id">
|
|
25920
|
+
|
|
25921
|
+
export type WorkspaceVerdictOrderByWithAggregationInput = {
|
|
25922
|
+
id?: SortOrder
|
|
25923
|
+
workspaceId?: SortOrder
|
|
25924
|
+
teamRunId?: SortOrder
|
|
25925
|
+
kind?: SortOrder
|
|
25926
|
+
verdict?: SortOrder
|
|
25927
|
+
reviewedSha?: SortOrder
|
|
25928
|
+
reviewerMemberId?: SortOrderInput | SortOrder
|
|
25929
|
+
reason?: SortOrderInput | SortOrder
|
|
25930
|
+
sequence?: SortOrder
|
|
25931
|
+
createdAt?: SortOrder
|
|
25932
|
+
_count?: WorkspaceVerdictCountOrderByAggregateInput
|
|
25933
|
+
_avg?: WorkspaceVerdictAvgOrderByAggregateInput
|
|
25934
|
+
_max?: WorkspaceVerdictMaxOrderByAggregateInput
|
|
25935
|
+
_min?: WorkspaceVerdictMinOrderByAggregateInput
|
|
25936
|
+
_sum?: WorkspaceVerdictSumOrderByAggregateInput
|
|
25937
|
+
}
|
|
25938
|
+
|
|
25939
|
+
export type WorkspaceVerdictScalarWhereWithAggregatesInput = {
|
|
25940
|
+
AND?: WorkspaceVerdictScalarWhereWithAggregatesInput | WorkspaceVerdictScalarWhereWithAggregatesInput[]
|
|
25941
|
+
OR?: WorkspaceVerdictScalarWhereWithAggregatesInput[]
|
|
25942
|
+
NOT?: WorkspaceVerdictScalarWhereWithAggregatesInput | WorkspaceVerdictScalarWhereWithAggregatesInput[]
|
|
25943
|
+
id?: StringWithAggregatesFilter<"WorkspaceVerdict"> | string
|
|
25944
|
+
workspaceId?: StringWithAggregatesFilter<"WorkspaceVerdict"> | string
|
|
25945
|
+
teamRunId?: StringWithAggregatesFilter<"WorkspaceVerdict"> | string
|
|
25946
|
+
kind?: StringWithAggregatesFilter<"WorkspaceVerdict"> | string
|
|
25947
|
+
verdict?: StringWithAggregatesFilter<"WorkspaceVerdict"> | string
|
|
25948
|
+
reviewedSha?: StringWithAggregatesFilter<"WorkspaceVerdict"> | string
|
|
25949
|
+
reviewerMemberId?: StringNullableWithAggregatesFilter<"WorkspaceVerdict"> | string | null
|
|
25950
|
+
reason?: StringNullableWithAggregatesFilter<"WorkspaceVerdict"> | string | null
|
|
25951
|
+
sequence?: IntWithAggregatesFilter<"WorkspaceVerdict"> | number
|
|
25952
|
+
createdAt?: DateTimeWithAggregatesFilter<"WorkspaceVerdict"> | Date | string
|
|
25953
|
+
}
|
|
25954
|
+
|
|
24293
25955
|
export type ConversationWhereInput = {
|
|
24294
25956
|
AND?: ConversationWhereInput | ConversationWhereInput[]
|
|
24295
25957
|
OR?: ConversationWhereInput[]
|
|
@@ -25292,6 +26954,7 @@ export namespace Prisma {
|
|
|
25292
26954
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
25293
26955
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
25294
26956
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
26957
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutTeamRunInput
|
|
25295
26958
|
}
|
|
25296
26959
|
|
|
25297
26960
|
export type TeamRunUncheckedCreateInput = {
|
|
@@ -25306,6 +26969,7 @@ export namespace Prisma {
|
|
|
25306
26969
|
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25307
26970
|
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25308
26971
|
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
26972
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutTeamRunInput
|
|
25309
26973
|
}
|
|
25310
26974
|
|
|
25311
26975
|
export type TeamRunUpdateInput = {
|
|
@@ -25320,6 +26984,7 @@ export namespace Prisma {
|
|
|
25320
26984
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
25321
26985
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
25322
26986
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
26987
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutTeamRunNestedInput
|
|
25323
26988
|
}
|
|
25324
26989
|
|
|
25325
26990
|
export type TeamRunUncheckedUpdateInput = {
|
|
@@ -25334,6 +26999,7 @@ export namespace Prisma {
|
|
|
25334
26999
|
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
25335
27000
|
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
25336
27001
|
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
27002
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
25337
27003
|
}
|
|
25338
27004
|
|
|
25339
27005
|
export type TeamRunCreateManyInput = {
|
|
@@ -25692,6 +27358,13 @@ export namespace Prisma {
|
|
|
25692
27358
|
requesterMemberId?: string | null
|
|
25693
27359
|
requesterType: string
|
|
25694
27360
|
targetMemberId: string
|
|
27361
|
+
targetKind?: string | null
|
|
27362
|
+
targetPurpose?: string | null
|
|
27363
|
+
targetSourceWorkspaceId?: string | null
|
|
27364
|
+
targetSourceMemberId?: string | null
|
|
27365
|
+
targetHeadSha?: string | null
|
|
27366
|
+
targetBranchName?: string | null
|
|
27367
|
+
targetPlanItemId?: string | null
|
|
25695
27368
|
triggerMessageId: string
|
|
25696
27369
|
instruction: string
|
|
25697
27370
|
ifBusy?: string
|
|
@@ -25708,6 +27381,13 @@ export namespace Prisma {
|
|
|
25708
27381
|
requesterMemberId?: string | null
|
|
25709
27382
|
requesterType: string
|
|
25710
27383
|
targetMemberId: string
|
|
27384
|
+
targetKind?: string | null
|
|
27385
|
+
targetPurpose?: string | null
|
|
27386
|
+
targetSourceWorkspaceId?: string | null
|
|
27387
|
+
targetSourceMemberId?: string | null
|
|
27388
|
+
targetHeadSha?: string | null
|
|
27389
|
+
targetBranchName?: string | null
|
|
27390
|
+
targetPlanItemId?: string | null
|
|
25711
27391
|
triggerMessageId: string
|
|
25712
27392
|
instruction: string
|
|
25713
27393
|
ifBusy?: string
|
|
@@ -25722,6 +27402,13 @@ export namespace Prisma {
|
|
|
25722
27402
|
requesterMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25723
27403
|
requesterType?: StringFieldUpdateOperationsInput | string
|
|
25724
27404
|
targetMemberId?: StringFieldUpdateOperationsInput | string
|
|
27405
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27406
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27407
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27408
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27409
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27410
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27411
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25725
27412
|
triggerMessageId?: StringFieldUpdateOperationsInput | string
|
|
25726
27413
|
instruction?: StringFieldUpdateOperationsInput | string
|
|
25727
27414
|
ifBusy?: StringFieldUpdateOperationsInput | string
|
|
@@ -25738,6 +27425,13 @@ export namespace Prisma {
|
|
|
25738
27425
|
requesterMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25739
27426
|
requesterType?: StringFieldUpdateOperationsInput | string
|
|
25740
27427
|
targetMemberId?: StringFieldUpdateOperationsInput | string
|
|
27428
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27429
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27430
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27431
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27432
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27433
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27434
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25741
27435
|
triggerMessageId?: StringFieldUpdateOperationsInput | string
|
|
25742
27436
|
instruction?: StringFieldUpdateOperationsInput | string
|
|
25743
27437
|
ifBusy?: StringFieldUpdateOperationsInput | string
|
|
@@ -25753,6 +27447,13 @@ export namespace Prisma {
|
|
|
25753
27447
|
requesterMemberId?: string | null
|
|
25754
27448
|
requesterType: string
|
|
25755
27449
|
targetMemberId: string
|
|
27450
|
+
targetKind?: string | null
|
|
27451
|
+
targetPurpose?: string | null
|
|
27452
|
+
targetSourceWorkspaceId?: string | null
|
|
27453
|
+
targetSourceMemberId?: string | null
|
|
27454
|
+
targetHeadSha?: string | null
|
|
27455
|
+
targetBranchName?: string | null
|
|
27456
|
+
targetPlanItemId?: string | null
|
|
25756
27457
|
triggerMessageId: string
|
|
25757
27458
|
instruction: string
|
|
25758
27459
|
ifBusy?: string
|
|
@@ -25767,6 +27468,13 @@ export namespace Prisma {
|
|
|
25767
27468
|
requesterMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25768
27469
|
requesterType?: StringFieldUpdateOperationsInput | string
|
|
25769
27470
|
targetMemberId?: StringFieldUpdateOperationsInput | string
|
|
27471
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27472
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27473
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27474
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27475
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27476
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27477
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25770
27478
|
triggerMessageId?: StringFieldUpdateOperationsInput | string
|
|
25771
27479
|
instruction?: StringFieldUpdateOperationsInput | string
|
|
25772
27480
|
ifBusy?: StringFieldUpdateOperationsInput | string
|
|
@@ -25782,6 +27490,13 @@ export namespace Prisma {
|
|
|
25782
27490
|
requesterMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25783
27491
|
requesterType?: StringFieldUpdateOperationsInput | string
|
|
25784
27492
|
targetMemberId?: StringFieldUpdateOperationsInput | string
|
|
27493
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27494
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27495
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27496
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27497
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27498
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27499
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25785
27500
|
triggerMessageId?: StringFieldUpdateOperationsInput | string
|
|
25786
27501
|
instruction?: StringFieldUpdateOperationsInput | string
|
|
25787
27502
|
ifBusy?: StringFieldUpdateOperationsInput | string
|
|
@@ -25797,6 +27512,19 @@ export namespace Prisma {
|
|
|
25797
27512
|
memberId: string
|
|
25798
27513
|
workspaceId?: string | null
|
|
25799
27514
|
sessionId?: string | null
|
|
27515
|
+
targetKind?: string | null
|
|
27516
|
+
targetPurpose?: string | null
|
|
27517
|
+
targetSourceWorkspaceId?: string | null
|
|
27518
|
+
targetSourceMemberId?: string | null
|
|
27519
|
+
targetHeadSha?: string | null
|
|
27520
|
+
targetBranchName?: string | null
|
|
27521
|
+
targetPlanItemId?: string | null
|
|
27522
|
+
targetSyncStatus?: string | null
|
|
27523
|
+
targetSyncError?: string | null
|
|
27524
|
+
targetExecutionBranch?: string | null
|
|
27525
|
+
targetPort?: number | null
|
|
27526
|
+
targetVitePort?: number | null
|
|
27527
|
+
targetE2EPort?: number | null
|
|
25800
27528
|
status?: string
|
|
25801
27529
|
roomReplyReminderCount?: number
|
|
25802
27530
|
nextRoomReplyReminderAt?: Date | string | null
|
|
@@ -25812,6 +27540,19 @@ export namespace Prisma {
|
|
|
25812
27540
|
memberId: string
|
|
25813
27541
|
workspaceId?: string | null
|
|
25814
27542
|
sessionId?: string | null
|
|
27543
|
+
targetKind?: string | null
|
|
27544
|
+
targetPurpose?: string | null
|
|
27545
|
+
targetSourceWorkspaceId?: string | null
|
|
27546
|
+
targetSourceMemberId?: string | null
|
|
27547
|
+
targetHeadSha?: string | null
|
|
27548
|
+
targetBranchName?: string | null
|
|
27549
|
+
targetPlanItemId?: string | null
|
|
27550
|
+
targetSyncStatus?: string | null
|
|
27551
|
+
targetSyncError?: string | null
|
|
27552
|
+
targetExecutionBranch?: string | null
|
|
27553
|
+
targetPort?: number | null
|
|
27554
|
+
targetVitePort?: number | null
|
|
27555
|
+
targetE2EPort?: number | null
|
|
25815
27556
|
status?: string
|
|
25816
27557
|
roomReplyReminderCount?: number
|
|
25817
27558
|
nextRoomReplyReminderAt?: Date | string | null
|
|
@@ -25825,6 +27566,19 @@ export namespace Prisma {
|
|
|
25825
27566
|
memberId?: StringFieldUpdateOperationsInput | string
|
|
25826
27567
|
workspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25827
27568
|
sessionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27569
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27570
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27571
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27572
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27573
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27574
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27575
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27576
|
+
targetSyncStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27577
|
+
targetSyncError?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27578
|
+
targetExecutionBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27579
|
+
targetPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
27580
|
+
targetVitePort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
27581
|
+
targetE2EPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25828
27582
|
status?: StringFieldUpdateOperationsInput | string
|
|
25829
27583
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
25830
27584
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -25840,6 +27594,19 @@ export namespace Prisma {
|
|
|
25840
27594
|
memberId?: StringFieldUpdateOperationsInput | string
|
|
25841
27595
|
workspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25842
27596
|
sessionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27597
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27598
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27599
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27600
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27601
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27602
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27603
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27604
|
+
targetSyncStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27605
|
+
targetSyncError?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27606
|
+
targetExecutionBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27607
|
+
targetPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
27608
|
+
targetVitePort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
27609
|
+
targetE2EPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25843
27610
|
status?: StringFieldUpdateOperationsInput | string
|
|
25844
27611
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
25845
27612
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -25854,6 +27621,19 @@ export namespace Prisma {
|
|
|
25854
27621
|
memberId: string
|
|
25855
27622
|
workspaceId?: string | null
|
|
25856
27623
|
sessionId?: string | null
|
|
27624
|
+
targetKind?: string | null
|
|
27625
|
+
targetPurpose?: string | null
|
|
27626
|
+
targetSourceWorkspaceId?: string | null
|
|
27627
|
+
targetSourceMemberId?: string | null
|
|
27628
|
+
targetHeadSha?: string | null
|
|
27629
|
+
targetBranchName?: string | null
|
|
27630
|
+
targetPlanItemId?: string | null
|
|
27631
|
+
targetSyncStatus?: string | null
|
|
27632
|
+
targetSyncError?: string | null
|
|
27633
|
+
targetExecutionBranch?: string | null
|
|
27634
|
+
targetPort?: number | null
|
|
27635
|
+
targetVitePort?: number | null
|
|
27636
|
+
targetE2EPort?: number | null
|
|
25857
27637
|
status?: string
|
|
25858
27638
|
roomReplyReminderCount?: number
|
|
25859
27639
|
nextRoomReplyReminderAt?: Date | string | null
|
|
@@ -25867,6 +27647,19 @@ export namespace Prisma {
|
|
|
25867
27647
|
memberId?: StringFieldUpdateOperationsInput | string
|
|
25868
27648
|
workspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25869
27649
|
sessionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27650
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27651
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27652
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27653
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27654
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27655
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27656
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27657
|
+
targetSyncStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27658
|
+
targetSyncError?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27659
|
+
targetExecutionBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27660
|
+
targetPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
27661
|
+
targetVitePort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
27662
|
+
targetE2EPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25870
27663
|
status?: StringFieldUpdateOperationsInput | string
|
|
25871
27664
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
25872
27665
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -25881,6 +27674,19 @@ export namespace Prisma {
|
|
|
25881
27674
|
memberId?: StringFieldUpdateOperationsInput | string
|
|
25882
27675
|
workspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25883
27676
|
sessionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27677
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27678
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27679
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27680
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27681
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27682
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27683
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27684
|
+
targetSyncStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27685
|
+
targetSyncError?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27686
|
+
targetExecutionBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27687
|
+
targetPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
27688
|
+
targetVitePort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
27689
|
+
targetE2EPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25884
27690
|
status?: StringFieldUpdateOperationsInput | string
|
|
25885
27691
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
25886
27692
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -25907,6 +27713,7 @@ export namespace Prisma {
|
|
|
25907
27713
|
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
25908
27714
|
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
25909
27715
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
27716
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutWorkspaceInput
|
|
25910
27717
|
}
|
|
25911
27718
|
|
|
25912
27719
|
export type WorkspaceUncheckedCreateInput = {
|
|
@@ -25928,6 +27735,7 @@ export namespace Prisma {
|
|
|
25928
27735
|
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
25929
27736
|
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
25930
27737
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
27738
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
25931
27739
|
}
|
|
25932
27740
|
|
|
25933
27741
|
export type WorkspaceUpdateInput = {
|
|
@@ -25949,6 +27757,7 @@ export namespace Prisma {
|
|
|
25949
27757
|
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
25950
27758
|
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
25951
27759
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
27760
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutWorkspaceNestedInput
|
|
25952
27761
|
}
|
|
25953
27762
|
|
|
25954
27763
|
export type WorkspaceUncheckedUpdateInput = {
|
|
@@ -25970,6 +27779,7 @@ export namespace Prisma {
|
|
|
25970
27779
|
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
25971
27780
|
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
25972
27781
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
27782
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
25973
27783
|
}
|
|
25974
27784
|
|
|
25975
27785
|
export type WorkspaceCreateManyInput = {
|
|
@@ -26023,6 +27833,95 @@ export namespace Prisma {
|
|
|
26023
27833
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
26024
27834
|
}
|
|
26025
27835
|
|
|
27836
|
+
export type WorkspaceVerdictCreateInput = {
|
|
27837
|
+
id?: string
|
|
27838
|
+
kind: string
|
|
27839
|
+
verdict: string
|
|
27840
|
+
reviewedSha: string
|
|
27841
|
+
reviewerMemberId?: string | null
|
|
27842
|
+
reason?: string | null
|
|
27843
|
+
sequence?: number
|
|
27844
|
+
createdAt?: Date | string
|
|
27845
|
+
workspace: WorkspaceCreateNestedOneWithoutVerdictsInput
|
|
27846
|
+
teamRun: TeamRunCreateNestedOneWithoutVerdictsInput
|
|
27847
|
+
}
|
|
27848
|
+
|
|
27849
|
+
export type WorkspaceVerdictUncheckedCreateInput = {
|
|
27850
|
+
id?: string
|
|
27851
|
+
workspaceId: string
|
|
27852
|
+
teamRunId: string
|
|
27853
|
+
kind: string
|
|
27854
|
+
verdict: string
|
|
27855
|
+
reviewedSha: string
|
|
27856
|
+
reviewerMemberId?: string | null
|
|
27857
|
+
reason?: string | null
|
|
27858
|
+
sequence?: number
|
|
27859
|
+
createdAt?: Date | string
|
|
27860
|
+
}
|
|
27861
|
+
|
|
27862
|
+
export type WorkspaceVerdictUpdateInput = {
|
|
27863
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
27864
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
27865
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
27866
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
27867
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27868
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27869
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
27870
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27871
|
+
workspace?: WorkspaceUpdateOneRequiredWithoutVerdictsNestedInput
|
|
27872
|
+
teamRun?: TeamRunUpdateOneRequiredWithoutVerdictsNestedInput
|
|
27873
|
+
}
|
|
27874
|
+
|
|
27875
|
+
export type WorkspaceVerdictUncheckedUpdateInput = {
|
|
27876
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
27877
|
+
workspaceId?: StringFieldUpdateOperationsInput | string
|
|
27878
|
+
teamRunId?: StringFieldUpdateOperationsInput | string
|
|
27879
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
27880
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
27881
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
27882
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27883
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27884
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
27885
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27886
|
+
}
|
|
27887
|
+
|
|
27888
|
+
export type WorkspaceVerdictCreateManyInput = {
|
|
27889
|
+
id?: string
|
|
27890
|
+
workspaceId: string
|
|
27891
|
+
teamRunId: string
|
|
27892
|
+
kind: string
|
|
27893
|
+
verdict: string
|
|
27894
|
+
reviewedSha: string
|
|
27895
|
+
reviewerMemberId?: string | null
|
|
27896
|
+
reason?: string | null
|
|
27897
|
+
sequence?: number
|
|
27898
|
+
createdAt?: Date | string
|
|
27899
|
+
}
|
|
27900
|
+
|
|
27901
|
+
export type WorkspaceVerdictUpdateManyMutationInput = {
|
|
27902
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
27903
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
27904
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
27905
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
27906
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27907
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27908
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
27909
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27910
|
+
}
|
|
27911
|
+
|
|
27912
|
+
export type WorkspaceVerdictUncheckedUpdateManyInput = {
|
|
27913
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
27914
|
+
workspaceId?: StringFieldUpdateOperationsInput | string
|
|
27915
|
+
teamRunId?: StringFieldUpdateOperationsInput | string
|
|
27916
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
27917
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
27918
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
27919
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27920
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
27921
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
27922
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
27923
|
+
}
|
|
27924
|
+
|
|
26026
27925
|
export type ConversationCreateInput = {
|
|
26027
27926
|
id?: string
|
|
26028
27927
|
title: string
|
|
@@ -26996,6 +28895,12 @@ export namespace Prisma {
|
|
|
26996
28895
|
none?: AgentInvocationWhereInput
|
|
26997
28896
|
}
|
|
26998
28897
|
|
|
28898
|
+
export type WorkspaceVerdictListRelationFilter = {
|
|
28899
|
+
every?: WorkspaceVerdictWhereInput
|
|
28900
|
+
some?: WorkspaceVerdictWhereInput
|
|
28901
|
+
none?: WorkspaceVerdictWhereInput
|
|
28902
|
+
}
|
|
28903
|
+
|
|
26999
28904
|
export type TeamMemberOrderByRelationAggregateInput = {
|
|
27000
28905
|
_count?: SortOrder
|
|
27001
28906
|
}
|
|
@@ -27012,6 +28917,10 @@ export namespace Prisma {
|
|
|
27012
28917
|
_count?: SortOrder
|
|
27013
28918
|
}
|
|
27014
28919
|
|
|
28920
|
+
export type WorkspaceVerdictOrderByRelationAggregateInput = {
|
|
28921
|
+
_count?: SortOrder
|
|
28922
|
+
}
|
|
28923
|
+
|
|
27015
28924
|
export type TeamRunCountOrderByAggregateInput = {
|
|
27016
28925
|
id?: SortOrder
|
|
27017
28926
|
taskId?: SortOrder
|
|
@@ -27218,6 +29127,13 @@ export namespace Prisma {
|
|
|
27218
29127
|
requesterMemberId?: SortOrder
|
|
27219
29128
|
requesterType?: SortOrder
|
|
27220
29129
|
targetMemberId?: SortOrder
|
|
29130
|
+
targetKind?: SortOrder
|
|
29131
|
+
targetPurpose?: SortOrder
|
|
29132
|
+
targetSourceWorkspaceId?: SortOrder
|
|
29133
|
+
targetSourceMemberId?: SortOrder
|
|
29134
|
+
targetHeadSha?: SortOrder
|
|
29135
|
+
targetBranchName?: SortOrder
|
|
29136
|
+
targetPlanItemId?: SortOrder
|
|
27221
29137
|
triggerMessageId?: SortOrder
|
|
27222
29138
|
instruction?: SortOrder
|
|
27223
29139
|
ifBusy?: SortOrder
|
|
@@ -27233,6 +29149,13 @@ export namespace Prisma {
|
|
|
27233
29149
|
requesterMemberId?: SortOrder
|
|
27234
29150
|
requesterType?: SortOrder
|
|
27235
29151
|
targetMemberId?: SortOrder
|
|
29152
|
+
targetKind?: SortOrder
|
|
29153
|
+
targetPurpose?: SortOrder
|
|
29154
|
+
targetSourceWorkspaceId?: SortOrder
|
|
29155
|
+
targetSourceMemberId?: SortOrder
|
|
29156
|
+
targetHeadSha?: SortOrder
|
|
29157
|
+
targetBranchName?: SortOrder
|
|
29158
|
+
targetPlanItemId?: SortOrder
|
|
27236
29159
|
triggerMessageId?: SortOrder
|
|
27237
29160
|
instruction?: SortOrder
|
|
27238
29161
|
ifBusy?: SortOrder
|
|
@@ -27248,6 +29171,13 @@ export namespace Prisma {
|
|
|
27248
29171
|
requesterMemberId?: SortOrder
|
|
27249
29172
|
requesterType?: SortOrder
|
|
27250
29173
|
targetMemberId?: SortOrder
|
|
29174
|
+
targetKind?: SortOrder
|
|
29175
|
+
targetPurpose?: SortOrder
|
|
29176
|
+
targetSourceWorkspaceId?: SortOrder
|
|
29177
|
+
targetSourceMemberId?: SortOrder
|
|
29178
|
+
targetHeadSha?: SortOrder
|
|
29179
|
+
targetBranchName?: SortOrder
|
|
29180
|
+
targetPlanItemId?: SortOrder
|
|
27251
29181
|
triggerMessageId?: SortOrder
|
|
27252
29182
|
instruction?: SortOrder
|
|
27253
29183
|
ifBusy?: SortOrder
|
|
@@ -27265,6 +29195,17 @@ export namespace Prisma {
|
|
|
27265
29195
|
_max?: NestedBoolFilter<$PrismaModel>
|
|
27266
29196
|
}
|
|
27267
29197
|
|
|
29198
|
+
export type IntNullableFilter<$PrismaModel = never> = {
|
|
29199
|
+
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
|
29200
|
+
in?: number[] | null
|
|
29201
|
+
notIn?: number[] | null
|
|
29202
|
+
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
29203
|
+
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
29204
|
+
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
29205
|
+
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
29206
|
+
not?: NestedIntNullableFilter<$PrismaModel> | number | null
|
|
29207
|
+
}
|
|
29208
|
+
|
|
27268
29209
|
export type AgentInvocationCountOrderByAggregateInput = {
|
|
27269
29210
|
id?: SortOrder
|
|
27270
29211
|
teamRunId?: SortOrder
|
|
@@ -27272,6 +29213,19 @@ export namespace Prisma {
|
|
|
27272
29213
|
memberId?: SortOrder
|
|
27273
29214
|
workspaceId?: SortOrder
|
|
27274
29215
|
sessionId?: SortOrder
|
|
29216
|
+
targetKind?: SortOrder
|
|
29217
|
+
targetPurpose?: SortOrder
|
|
29218
|
+
targetSourceWorkspaceId?: SortOrder
|
|
29219
|
+
targetSourceMemberId?: SortOrder
|
|
29220
|
+
targetHeadSha?: SortOrder
|
|
29221
|
+
targetBranchName?: SortOrder
|
|
29222
|
+
targetPlanItemId?: SortOrder
|
|
29223
|
+
targetSyncStatus?: SortOrder
|
|
29224
|
+
targetSyncError?: SortOrder
|
|
29225
|
+
targetExecutionBranch?: SortOrder
|
|
29226
|
+
targetPort?: SortOrder
|
|
29227
|
+
targetVitePort?: SortOrder
|
|
29228
|
+
targetE2EPort?: SortOrder
|
|
27275
29229
|
status?: SortOrder
|
|
27276
29230
|
roomReplyReminderCount?: SortOrder
|
|
27277
29231
|
nextRoomReplyReminderAt?: SortOrder
|
|
@@ -27280,6 +29234,9 @@ export namespace Prisma {
|
|
|
27280
29234
|
}
|
|
27281
29235
|
|
|
27282
29236
|
export type AgentInvocationAvgOrderByAggregateInput = {
|
|
29237
|
+
targetPort?: SortOrder
|
|
29238
|
+
targetVitePort?: SortOrder
|
|
29239
|
+
targetE2EPort?: SortOrder
|
|
27283
29240
|
roomReplyReminderCount?: SortOrder
|
|
27284
29241
|
}
|
|
27285
29242
|
|
|
@@ -27290,6 +29247,19 @@ export namespace Prisma {
|
|
|
27290
29247
|
memberId?: SortOrder
|
|
27291
29248
|
workspaceId?: SortOrder
|
|
27292
29249
|
sessionId?: SortOrder
|
|
29250
|
+
targetKind?: SortOrder
|
|
29251
|
+
targetPurpose?: SortOrder
|
|
29252
|
+
targetSourceWorkspaceId?: SortOrder
|
|
29253
|
+
targetSourceMemberId?: SortOrder
|
|
29254
|
+
targetHeadSha?: SortOrder
|
|
29255
|
+
targetBranchName?: SortOrder
|
|
29256
|
+
targetPlanItemId?: SortOrder
|
|
29257
|
+
targetSyncStatus?: SortOrder
|
|
29258
|
+
targetSyncError?: SortOrder
|
|
29259
|
+
targetExecutionBranch?: SortOrder
|
|
29260
|
+
targetPort?: SortOrder
|
|
29261
|
+
targetVitePort?: SortOrder
|
|
29262
|
+
targetE2EPort?: SortOrder
|
|
27293
29263
|
status?: SortOrder
|
|
27294
29264
|
roomReplyReminderCount?: SortOrder
|
|
27295
29265
|
nextRoomReplyReminderAt?: SortOrder
|
|
@@ -27304,6 +29274,19 @@ export namespace Prisma {
|
|
|
27304
29274
|
memberId?: SortOrder
|
|
27305
29275
|
workspaceId?: SortOrder
|
|
27306
29276
|
sessionId?: SortOrder
|
|
29277
|
+
targetKind?: SortOrder
|
|
29278
|
+
targetPurpose?: SortOrder
|
|
29279
|
+
targetSourceWorkspaceId?: SortOrder
|
|
29280
|
+
targetSourceMemberId?: SortOrder
|
|
29281
|
+
targetHeadSha?: SortOrder
|
|
29282
|
+
targetBranchName?: SortOrder
|
|
29283
|
+
targetPlanItemId?: SortOrder
|
|
29284
|
+
targetSyncStatus?: SortOrder
|
|
29285
|
+
targetSyncError?: SortOrder
|
|
29286
|
+
targetExecutionBranch?: SortOrder
|
|
29287
|
+
targetPort?: SortOrder
|
|
29288
|
+
targetVitePort?: SortOrder
|
|
29289
|
+
targetE2EPort?: SortOrder
|
|
27307
29290
|
status?: SortOrder
|
|
27308
29291
|
roomReplyReminderCount?: SortOrder
|
|
27309
29292
|
nextRoomReplyReminderAt?: SortOrder
|
|
@@ -27312,9 +29295,28 @@ export namespace Prisma {
|
|
|
27312
29295
|
}
|
|
27313
29296
|
|
|
27314
29297
|
export type AgentInvocationSumOrderByAggregateInput = {
|
|
29298
|
+
targetPort?: SortOrder
|
|
29299
|
+
targetVitePort?: SortOrder
|
|
29300
|
+
targetE2EPort?: SortOrder
|
|
27315
29301
|
roomReplyReminderCount?: SortOrder
|
|
27316
29302
|
}
|
|
27317
29303
|
|
|
29304
|
+
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
29305
|
+
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
|
29306
|
+
in?: number[] | null
|
|
29307
|
+
notIn?: number[] | null
|
|
29308
|
+
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
29309
|
+
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
29310
|
+
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
29311
|
+
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
29312
|
+
not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
|
|
29313
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
29314
|
+
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
|
29315
|
+
_sum?: NestedIntNullableFilter<$PrismaModel>
|
|
29316
|
+
_min?: NestedIntNullableFilter<$PrismaModel>
|
|
29317
|
+
_max?: NestedIntNullableFilter<$PrismaModel>
|
|
29318
|
+
}
|
|
29319
|
+
|
|
27318
29320
|
export type TeamMemberNullableRelationFilter = {
|
|
27319
29321
|
is?: TeamMemberWhereInput | null
|
|
27320
29322
|
isNot?: TeamMemberWhereInput | null
|
|
@@ -27399,6 +29401,58 @@ export namespace Prisma {
|
|
|
27399
29401
|
updatedAt?: SortOrder
|
|
27400
29402
|
}
|
|
27401
29403
|
|
|
29404
|
+
export type WorkspaceRelationFilter = {
|
|
29405
|
+
is?: WorkspaceWhereInput
|
|
29406
|
+
isNot?: WorkspaceWhereInput
|
|
29407
|
+
}
|
|
29408
|
+
|
|
29409
|
+
export type WorkspaceVerdictCountOrderByAggregateInput = {
|
|
29410
|
+
id?: SortOrder
|
|
29411
|
+
workspaceId?: SortOrder
|
|
29412
|
+
teamRunId?: SortOrder
|
|
29413
|
+
kind?: SortOrder
|
|
29414
|
+
verdict?: SortOrder
|
|
29415
|
+
reviewedSha?: SortOrder
|
|
29416
|
+
reviewerMemberId?: SortOrder
|
|
29417
|
+
reason?: SortOrder
|
|
29418
|
+
sequence?: SortOrder
|
|
29419
|
+
createdAt?: SortOrder
|
|
29420
|
+
}
|
|
29421
|
+
|
|
29422
|
+
export type WorkspaceVerdictAvgOrderByAggregateInput = {
|
|
29423
|
+
sequence?: SortOrder
|
|
29424
|
+
}
|
|
29425
|
+
|
|
29426
|
+
export type WorkspaceVerdictMaxOrderByAggregateInput = {
|
|
29427
|
+
id?: SortOrder
|
|
29428
|
+
workspaceId?: SortOrder
|
|
29429
|
+
teamRunId?: SortOrder
|
|
29430
|
+
kind?: SortOrder
|
|
29431
|
+
verdict?: SortOrder
|
|
29432
|
+
reviewedSha?: SortOrder
|
|
29433
|
+
reviewerMemberId?: SortOrder
|
|
29434
|
+
reason?: SortOrder
|
|
29435
|
+
sequence?: SortOrder
|
|
29436
|
+
createdAt?: SortOrder
|
|
29437
|
+
}
|
|
29438
|
+
|
|
29439
|
+
export type WorkspaceVerdictMinOrderByAggregateInput = {
|
|
29440
|
+
id?: SortOrder
|
|
29441
|
+
workspaceId?: SortOrder
|
|
29442
|
+
teamRunId?: SortOrder
|
|
29443
|
+
kind?: SortOrder
|
|
29444
|
+
verdict?: SortOrder
|
|
29445
|
+
reviewedSha?: SortOrder
|
|
29446
|
+
reviewerMemberId?: SortOrder
|
|
29447
|
+
reason?: SortOrder
|
|
29448
|
+
sequence?: SortOrder
|
|
29449
|
+
createdAt?: SortOrder
|
|
29450
|
+
}
|
|
29451
|
+
|
|
29452
|
+
export type WorkspaceVerdictSumOrderByAggregateInput = {
|
|
29453
|
+
sequence?: SortOrder
|
|
29454
|
+
}
|
|
29455
|
+
|
|
27402
29456
|
export type SessionNullableRelationFilter = {
|
|
27403
29457
|
is?: SessionWhereInput | null
|
|
27404
29458
|
isNot?: SessionWhereInput | null
|
|
@@ -27503,17 +29557,6 @@ export namespace Prisma {
|
|
|
27503
29557
|
updatedAt?: SortOrder
|
|
27504
29558
|
}
|
|
27505
29559
|
|
|
27506
|
-
export type IntNullableFilter<$PrismaModel = never> = {
|
|
27507
|
-
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
|
27508
|
-
in?: number[] | null
|
|
27509
|
-
notIn?: number[] | null
|
|
27510
|
-
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
27511
|
-
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
27512
|
-
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
27513
|
-
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
27514
|
-
not?: NestedIntNullableFilter<$PrismaModel> | number | null
|
|
27515
|
-
}
|
|
27516
|
-
|
|
27517
29560
|
export type SessionRelationFilter = {
|
|
27518
29561
|
is?: SessionWhereInput
|
|
27519
29562
|
isNot?: SessionWhereInput
|
|
@@ -27556,22 +29599,6 @@ export namespace Prisma {
|
|
|
27556
29599
|
exitCode?: SortOrder
|
|
27557
29600
|
}
|
|
27558
29601
|
|
|
27559
|
-
export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
27560
|
-
equals?: number | IntFieldRefInput<$PrismaModel> | null
|
|
27561
|
-
in?: number[] | null
|
|
27562
|
-
notIn?: number[] | null
|
|
27563
|
-
lt?: number | IntFieldRefInput<$PrismaModel>
|
|
27564
|
-
lte?: number | IntFieldRefInput<$PrismaModel>
|
|
27565
|
-
gt?: number | IntFieldRefInput<$PrismaModel>
|
|
27566
|
-
gte?: number | IntFieldRefInput<$PrismaModel>
|
|
27567
|
-
not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
|
|
27568
|
-
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
27569
|
-
_avg?: NestedFloatNullableFilter<$PrismaModel>
|
|
27570
|
-
_sum?: NestedIntNullableFilter<$PrismaModel>
|
|
27571
|
-
_min?: NestedIntNullableFilter<$PrismaModel>
|
|
27572
|
-
_max?: NestedIntNullableFilter<$PrismaModel>
|
|
27573
|
-
}
|
|
27574
|
-
|
|
27575
29602
|
export type ExecutionLogCountOrderByAggregateInput = {
|
|
27576
29603
|
id?: SortOrder
|
|
27577
29604
|
processId?: SortOrder
|
|
@@ -27932,6 +29959,13 @@ export namespace Prisma {
|
|
|
27932
29959
|
connect?: AgentInvocationWhereUniqueInput | AgentInvocationWhereUniqueInput[]
|
|
27933
29960
|
}
|
|
27934
29961
|
|
|
29962
|
+
export type WorkspaceVerdictCreateNestedManyWithoutTeamRunInput = {
|
|
29963
|
+
create?: XOR<WorkspaceVerdictCreateWithoutTeamRunInput, WorkspaceVerdictUncheckedCreateWithoutTeamRunInput> | WorkspaceVerdictCreateWithoutTeamRunInput[] | WorkspaceVerdictUncheckedCreateWithoutTeamRunInput[]
|
|
29964
|
+
connectOrCreate?: WorkspaceVerdictCreateOrConnectWithoutTeamRunInput | WorkspaceVerdictCreateOrConnectWithoutTeamRunInput[]
|
|
29965
|
+
createMany?: WorkspaceVerdictCreateManyTeamRunInputEnvelope
|
|
29966
|
+
connect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
29967
|
+
}
|
|
29968
|
+
|
|
27935
29969
|
export type TeamMemberUncheckedCreateNestedManyWithoutTeamRunInput = {
|
|
27936
29970
|
create?: XOR<TeamMemberCreateWithoutTeamRunInput, TeamMemberUncheckedCreateWithoutTeamRunInput> | TeamMemberCreateWithoutTeamRunInput[] | TeamMemberUncheckedCreateWithoutTeamRunInput[]
|
|
27937
29971
|
connectOrCreate?: TeamMemberCreateOrConnectWithoutTeamRunInput | TeamMemberCreateOrConnectWithoutTeamRunInput[]
|
|
@@ -27960,6 +29994,13 @@ export namespace Prisma {
|
|
|
27960
29994
|
connect?: AgentInvocationWhereUniqueInput | AgentInvocationWhereUniqueInput[]
|
|
27961
29995
|
}
|
|
27962
29996
|
|
|
29997
|
+
export type WorkspaceVerdictUncheckedCreateNestedManyWithoutTeamRunInput = {
|
|
29998
|
+
create?: XOR<WorkspaceVerdictCreateWithoutTeamRunInput, WorkspaceVerdictUncheckedCreateWithoutTeamRunInput> | WorkspaceVerdictCreateWithoutTeamRunInput[] | WorkspaceVerdictUncheckedCreateWithoutTeamRunInput[]
|
|
29999
|
+
connectOrCreate?: WorkspaceVerdictCreateOrConnectWithoutTeamRunInput | WorkspaceVerdictCreateOrConnectWithoutTeamRunInput[]
|
|
30000
|
+
createMany?: WorkspaceVerdictCreateManyTeamRunInputEnvelope
|
|
30001
|
+
connect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30002
|
+
}
|
|
30003
|
+
|
|
27963
30004
|
export type TaskUpdateOneRequiredWithoutTeamRunNestedInput = {
|
|
27964
30005
|
create?: XOR<TaskCreateWithoutTeamRunInput, TaskUncheckedCreateWithoutTeamRunInput>
|
|
27965
30006
|
connectOrCreate?: TaskCreateOrConnectWithoutTeamRunInput
|
|
@@ -28034,6 +30075,20 @@ export namespace Prisma {
|
|
|
28034
30075
|
deleteMany?: AgentInvocationScalarWhereInput | AgentInvocationScalarWhereInput[]
|
|
28035
30076
|
}
|
|
28036
30077
|
|
|
30078
|
+
export type WorkspaceVerdictUpdateManyWithoutTeamRunNestedInput = {
|
|
30079
|
+
create?: XOR<WorkspaceVerdictCreateWithoutTeamRunInput, WorkspaceVerdictUncheckedCreateWithoutTeamRunInput> | WorkspaceVerdictCreateWithoutTeamRunInput[] | WorkspaceVerdictUncheckedCreateWithoutTeamRunInput[]
|
|
30080
|
+
connectOrCreate?: WorkspaceVerdictCreateOrConnectWithoutTeamRunInput | WorkspaceVerdictCreateOrConnectWithoutTeamRunInput[]
|
|
30081
|
+
upsert?: WorkspaceVerdictUpsertWithWhereUniqueWithoutTeamRunInput | WorkspaceVerdictUpsertWithWhereUniqueWithoutTeamRunInput[]
|
|
30082
|
+
createMany?: WorkspaceVerdictCreateManyTeamRunInputEnvelope
|
|
30083
|
+
set?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30084
|
+
disconnect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30085
|
+
delete?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30086
|
+
connect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30087
|
+
update?: WorkspaceVerdictUpdateWithWhereUniqueWithoutTeamRunInput | WorkspaceVerdictUpdateWithWhereUniqueWithoutTeamRunInput[]
|
|
30088
|
+
updateMany?: WorkspaceVerdictUpdateManyWithWhereWithoutTeamRunInput | WorkspaceVerdictUpdateManyWithWhereWithoutTeamRunInput[]
|
|
30089
|
+
deleteMany?: WorkspaceVerdictScalarWhereInput | WorkspaceVerdictScalarWhereInput[]
|
|
30090
|
+
}
|
|
30091
|
+
|
|
28037
30092
|
export type TeamMemberUncheckedUpdateManyWithoutTeamRunNestedInput = {
|
|
28038
30093
|
create?: XOR<TeamMemberCreateWithoutTeamRunInput, TeamMemberUncheckedCreateWithoutTeamRunInput> | TeamMemberCreateWithoutTeamRunInput[] | TeamMemberUncheckedCreateWithoutTeamRunInput[]
|
|
28039
30094
|
connectOrCreate?: TeamMemberCreateOrConnectWithoutTeamRunInput | TeamMemberCreateOrConnectWithoutTeamRunInput[]
|
|
@@ -28090,6 +30145,20 @@ export namespace Prisma {
|
|
|
28090
30145
|
deleteMany?: AgentInvocationScalarWhereInput | AgentInvocationScalarWhereInput[]
|
|
28091
30146
|
}
|
|
28092
30147
|
|
|
30148
|
+
export type WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunNestedInput = {
|
|
30149
|
+
create?: XOR<WorkspaceVerdictCreateWithoutTeamRunInput, WorkspaceVerdictUncheckedCreateWithoutTeamRunInput> | WorkspaceVerdictCreateWithoutTeamRunInput[] | WorkspaceVerdictUncheckedCreateWithoutTeamRunInput[]
|
|
30150
|
+
connectOrCreate?: WorkspaceVerdictCreateOrConnectWithoutTeamRunInput | WorkspaceVerdictCreateOrConnectWithoutTeamRunInput[]
|
|
30151
|
+
upsert?: WorkspaceVerdictUpsertWithWhereUniqueWithoutTeamRunInput | WorkspaceVerdictUpsertWithWhereUniqueWithoutTeamRunInput[]
|
|
30152
|
+
createMany?: WorkspaceVerdictCreateManyTeamRunInputEnvelope
|
|
30153
|
+
set?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30154
|
+
disconnect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30155
|
+
delete?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30156
|
+
connect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30157
|
+
update?: WorkspaceVerdictUpdateWithWhereUniqueWithoutTeamRunInput | WorkspaceVerdictUpdateWithWhereUniqueWithoutTeamRunInput[]
|
|
30158
|
+
updateMany?: WorkspaceVerdictUpdateManyWithWhereWithoutTeamRunInput | WorkspaceVerdictUpdateManyWithWhereWithoutTeamRunInput[]
|
|
30159
|
+
deleteMany?: WorkspaceVerdictScalarWhereInput | WorkspaceVerdictScalarWhereInput[]
|
|
30160
|
+
}
|
|
30161
|
+
|
|
28093
30162
|
export type TeamRunCreateNestedOneWithoutMembersInput = {
|
|
28094
30163
|
create?: XOR<TeamRunCreateWithoutMembersInput, TeamRunUncheckedCreateWithoutMembersInput>
|
|
28095
30164
|
connectOrCreate?: TeamRunCreateOrConnectWithoutMembersInput
|
|
@@ -28296,6 +30365,14 @@ export namespace Prisma {
|
|
|
28296
30365
|
connect?: TeamRunWhereUniqueInput
|
|
28297
30366
|
}
|
|
28298
30367
|
|
|
30368
|
+
export type NullableIntFieldUpdateOperationsInput = {
|
|
30369
|
+
set?: number | null
|
|
30370
|
+
increment?: number
|
|
30371
|
+
decrement?: number
|
|
30372
|
+
multiply?: number
|
|
30373
|
+
divide?: number
|
|
30374
|
+
}
|
|
30375
|
+
|
|
28299
30376
|
export type TeamRunUpdateOneRequiredWithoutInvocationsNestedInput = {
|
|
28300
30377
|
create?: XOR<TeamRunCreateWithoutInvocationsInput, TeamRunUncheckedCreateWithoutInvocationsInput>
|
|
28301
30378
|
connectOrCreate?: TeamRunCreateOrConnectWithoutInvocationsInput
|
|
@@ -28343,6 +30420,13 @@ export namespace Prisma {
|
|
|
28343
30420
|
connect?: SessionWhereUniqueInput | SessionWhereUniqueInput[]
|
|
28344
30421
|
}
|
|
28345
30422
|
|
|
30423
|
+
export type WorkspaceVerdictCreateNestedManyWithoutWorkspaceInput = {
|
|
30424
|
+
create?: XOR<WorkspaceVerdictCreateWithoutWorkspaceInput, WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput> | WorkspaceVerdictCreateWithoutWorkspaceInput[] | WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput[]
|
|
30425
|
+
connectOrCreate?: WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput | WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput[]
|
|
30426
|
+
createMany?: WorkspaceVerdictCreateManyWorkspaceInputEnvelope
|
|
30427
|
+
connect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30428
|
+
}
|
|
30429
|
+
|
|
28346
30430
|
export type WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput = {
|
|
28347
30431
|
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
28348
30432
|
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
@@ -28364,6 +30448,13 @@ export namespace Prisma {
|
|
|
28364
30448
|
connect?: SessionWhereUniqueInput | SessionWhereUniqueInput[]
|
|
28365
30449
|
}
|
|
28366
30450
|
|
|
30451
|
+
export type WorkspaceVerdictUncheckedCreateNestedManyWithoutWorkspaceInput = {
|
|
30452
|
+
create?: XOR<WorkspaceVerdictCreateWithoutWorkspaceInput, WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput> | WorkspaceVerdictCreateWithoutWorkspaceInput[] | WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput[]
|
|
30453
|
+
connectOrCreate?: WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput | WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput[]
|
|
30454
|
+
createMany?: WorkspaceVerdictCreateManyWorkspaceInputEnvelope
|
|
30455
|
+
connect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30456
|
+
}
|
|
30457
|
+
|
|
28367
30458
|
export type TaskUpdateOneRequiredWithoutWorkspacesNestedInput = {
|
|
28368
30459
|
create?: XOR<TaskCreateWithoutWorkspacesInput, TaskUncheckedCreateWithoutWorkspacesInput>
|
|
28369
30460
|
connectOrCreate?: TaskCreateOrConnectWithoutWorkspacesInput
|
|
@@ -28434,6 +30525,20 @@ export namespace Prisma {
|
|
|
28434
30525
|
deleteMany?: SessionScalarWhereInput | SessionScalarWhereInput[]
|
|
28435
30526
|
}
|
|
28436
30527
|
|
|
30528
|
+
export type WorkspaceVerdictUpdateManyWithoutWorkspaceNestedInput = {
|
|
30529
|
+
create?: XOR<WorkspaceVerdictCreateWithoutWorkspaceInput, WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput> | WorkspaceVerdictCreateWithoutWorkspaceInput[] | WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput[]
|
|
30530
|
+
connectOrCreate?: WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput | WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput[]
|
|
30531
|
+
upsert?: WorkspaceVerdictUpsertWithWhereUniqueWithoutWorkspaceInput | WorkspaceVerdictUpsertWithWhereUniqueWithoutWorkspaceInput[]
|
|
30532
|
+
createMany?: WorkspaceVerdictCreateManyWorkspaceInputEnvelope
|
|
30533
|
+
set?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30534
|
+
disconnect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30535
|
+
delete?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30536
|
+
connect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30537
|
+
update?: WorkspaceVerdictUpdateWithWhereUniqueWithoutWorkspaceInput | WorkspaceVerdictUpdateWithWhereUniqueWithoutWorkspaceInput[]
|
|
30538
|
+
updateMany?: WorkspaceVerdictUpdateManyWithWhereWithoutWorkspaceInput | WorkspaceVerdictUpdateManyWithWhereWithoutWorkspaceInput[]
|
|
30539
|
+
deleteMany?: WorkspaceVerdictScalarWhereInput | WorkspaceVerdictScalarWhereInput[]
|
|
30540
|
+
}
|
|
30541
|
+
|
|
28437
30542
|
export type WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput = {
|
|
28438
30543
|
create?: XOR<WorkspaceCreateWithoutParentWorkspaceInput, WorkspaceUncheckedCreateWithoutParentWorkspaceInput> | WorkspaceCreateWithoutParentWorkspaceInput[] | WorkspaceUncheckedCreateWithoutParentWorkspaceInput[]
|
|
28439
30544
|
connectOrCreate?: WorkspaceCreateOrConnectWithoutParentWorkspaceInput | WorkspaceCreateOrConnectWithoutParentWorkspaceInput[]
|
|
@@ -28476,6 +30581,48 @@ export namespace Prisma {
|
|
|
28476
30581
|
deleteMany?: SessionScalarWhereInput | SessionScalarWhereInput[]
|
|
28477
30582
|
}
|
|
28478
30583
|
|
|
30584
|
+
export type WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceNestedInput = {
|
|
30585
|
+
create?: XOR<WorkspaceVerdictCreateWithoutWorkspaceInput, WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput> | WorkspaceVerdictCreateWithoutWorkspaceInput[] | WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput[]
|
|
30586
|
+
connectOrCreate?: WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput | WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput[]
|
|
30587
|
+
upsert?: WorkspaceVerdictUpsertWithWhereUniqueWithoutWorkspaceInput | WorkspaceVerdictUpsertWithWhereUniqueWithoutWorkspaceInput[]
|
|
30588
|
+
createMany?: WorkspaceVerdictCreateManyWorkspaceInputEnvelope
|
|
30589
|
+
set?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30590
|
+
disconnect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30591
|
+
delete?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30592
|
+
connect?: WorkspaceVerdictWhereUniqueInput | WorkspaceVerdictWhereUniqueInput[]
|
|
30593
|
+
update?: WorkspaceVerdictUpdateWithWhereUniqueWithoutWorkspaceInput | WorkspaceVerdictUpdateWithWhereUniqueWithoutWorkspaceInput[]
|
|
30594
|
+
updateMany?: WorkspaceVerdictUpdateManyWithWhereWithoutWorkspaceInput | WorkspaceVerdictUpdateManyWithWhereWithoutWorkspaceInput[]
|
|
30595
|
+
deleteMany?: WorkspaceVerdictScalarWhereInput | WorkspaceVerdictScalarWhereInput[]
|
|
30596
|
+
}
|
|
30597
|
+
|
|
30598
|
+
export type WorkspaceCreateNestedOneWithoutVerdictsInput = {
|
|
30599
|
+
create?: XOR<WorkspaceCreateWithoutVerdictsInput, WorkspaceUncheckedCreateWithoutVerdictsInput>
|
|
30600
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutVerdictsInput
|
|
30601
|
+
connect?: WorkspaceWhereUniqueInput
|
|
30602
|
+
}
|
|
30603
|
+
|
|
30604
|
+
export type TeamRunCreateNestedOneWithoutVerdictsInput = {
|
|
30605
|
+
create?: XOR<TeamRunCreateWithoutVerdictsInput, TeamRunUncheckedCreateWithoutVerdictsInput>
|
|
30606
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutVerdictsInput
|
|
30607
|
+
connect?: TeamRunWhereUniqueInput
|
|
30608
|
+
}
|
|
30609
|
+
|
|
30610
|
+
export type WorkspaceUpdateOneRequiredWithoutVerdictsNestedInput = {
|
|
30611
|
+
create?: XOR<WorkspaceCreateWithoutVerdictsInput, WorkspaceUncheckedCreateWithoutVerdictsInput>
|
|
30612
|
+
connectOrCreate?: WorkspaceCreateOrConnectWithoutVerdictsInput
|
|
30613
|
+
upsert?: WorkspaceUpsertWithoutVerdictsInput
|
|
30614
|
+
connect?: WorkspaceWhereUniqueInput
|
|
30615
|
+
update?: XOR<XOR<WorkspaceUpdateToOneWithWhereWithoutVerdictsInput, WorkspaceUpdateWithoutVerdictsInput>, WorkspaceUncheckedUpdateWithoutVerdictsInput>
|
|
30616
|
+
}
|
|
30617
|
+
|
|
30618
|
+
export type TeamRunUpdateOneRequiredWithoutVerdictsNestedInput = {
|
|
30619
|
+
create?: XOR<TeamRunCreateWithoutVerdictsInput, TeamRunUncheckedCreateWithoutVerdictsInput>
|
|
30620
|
+
connectOrCreate?: TeamRunCreateOrConnectWithoutVerdictsInput
|
|
30621
|
+
upsert?: TeamRunUpsertWithoutVerdictsInput
|
|
30622
|
+
connect?: TeamRunWhereUniqueInput
|
|
30623
|
+
update?: XOR<XOR<TeamRunUpdateToOneWithWhereWithoutVerdictsInput, TeamRunUpdateWithoutVerdictsInput>, TeamRunUncheckedUpdateWithoutVerdictsInput>
|
|
30624
|
+
}
|
|
30625
|
+
|
|
28479
30626
|
export type SessionCreateNestedOneWithoutConversationInput = {
|
|
28480
30627
|
create?: XOR<SessionCreateWithoutConversationInput, SessionUncheckedCreateWithoutConversationInput>
|
|
28481
30628
|
connectOrCreate?: SessionCreateOrConnectWithoutConversationInput
|
|
@@ -28588,14 +30735,6 @@ export namespace Prisma {
|
|
|
28588
30735
|
connect?: SessionWhereUniqueInput
|
|
28589
30736
|
}
|
|
28590
30737
|
|
|
28591
|
-
export type NullableIntFieldUpdateOperationsInput = {
|
|
28592
|
-
set?: number | null
|
|
28593
|
-
increment?: number
|
|
28594
|
-
decrement?: number
|
|
28595
|
-
multiply?: number
|
|
28596
|
-
divide?: number
|
|
28597
|
-
}
|
|
28598
|
-
|
|
28599
30738
|
export type SessionUpdateOneRequiredWithoutProcessesNestedInput = {
|
|
28600
30739
|
create?: XOR<SessionCreateWithoutProcessesInput, SessionUncheckedCreateWithoutProcessesInput>
|
|
28601
30740
|
connectOrCreate?: SessionCreateOrConnectWithoutProcessesInput
|
|
@@ -28929,6 +31068,7 @@ export namespace Prisma {
|
|
|
28929
31068
|
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
28930
31069
|
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
28931
31070
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
31071
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutWorkspaceInput
|
|
28932
31072
|
}
|
|
28933
31073
|
|
|
28934
31074
|
export type WorkspaceUncheckedCreateWithoutTaskInput = {
|
|
@@ -28949,6 +31089,7 @@ export namespace Prisma {
|
|
|
28949
31089
|
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
28950
31090
|
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
28951
31091
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
31092
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
28952
31093
|
}
|
|
28953
31094
|
|
|
28954
31095
|
export type WorkspaceCreateOrConnectWithoutTaskInput = {
|
|
@@ -28971,6 +31112,7 @@ export namespace Prisma {
|
|
|
28971
31112
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
28972
31113
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
28973
31114
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
31115
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutTeamRunInput
|
|
28974
31116
|
}
|
|
28975
31117
|
|
|
28976
31118
|
export type TeamRunUncheckedCreateWithoutTaskInput = {
|
|
@@ -28984,6 +31126,7 @@ export namespace Prisma {
|
|
|
28984
31126
|
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
28985
31127
|
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
28986
31128
|
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
31129
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutTeamRunInput
|
|
28987
31130
|
}
|
|
28988
31131
|
|
|
28989
31132
|
export type TeamRunCreateOrConnectWithoutTaskInput = {
|
|
@@ -29093,6 +31236,7 @@ export namespace Prisma {
|
|
|
29093
31236
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
29094
31237
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
29095
31238
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
31239
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutTeamRunNestedInput
|
|
29096
31240
|
}
|
|
29097
31241
|
|
|
29098
31242
|
export type TeamRunUncheckedUpdateWithoutTaskInput = {
|
|
@@ -29106,6 +31250,7 @@ export namespace Prisma {
|
|
|
29106
31250
|
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29107
31251
|
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29108
31252
|
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
31253
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29109
31254
|
}
|
|
29110
31255
|
|
|
29111
31256
|
export type TeamTemplateMemberCreateWithoutTeamTemplateInput = {
|
|
@@ -29250,6 +31395,7 @@ export namespace Prisma {
|
|
|
29250
31395
|
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
29251
31396
|
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
29252
31397
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
31398
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutWorkspaceInput
|
|
29253
31399
|
}
|
|
29254
31400
|
|
|
29255
31401
|
export type WorkspaceUncheckedCreateWithoutMainForTeamRunsInput = {
|
|
@@ -29270,6 +31416,7 @@ export namespace Prisma {
|
|
|
29270
31416
|
updatedAt?: Date | string
|
|
29271
31417
|
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
29272
31418
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
31419
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
29273
31420
|
}
|
|
29274
31421
|
|
|
29275
31422
|
export type WorkspaceCreateOrConnectWithoutMainForTeamRunsInput = {
|
|
@@ -29374,6 +31521,13 @@ export namespace Prisma {
|
|
|
29374
31521
|
requesterMemberId?: string | null
|
|
29375
31522
|
requesterType: string
|
|
29376
31523
|
targetMemberId: string
|
|
31524
|
+
targetKind?: string | null
|
|
31525
|
+
targetPurpose?: string | null
|
|
31526
|
+
targetSourceWorkspaceId?: string | null
|
|
31527
|
+
targetSourceMemberId?: string | null
|
|
31528
|
+
targetHeadSha?: string | null
|
|
31529
|
+
targetBranchName?: string | null
|
|
31530
|
+
targetPlanItemId?: string | null
|
|
29377
31531
|
triggerMessageId: string
|
|
29378
31532
|
instruction: string
|
|
29379
31533
|
ifBusy?: string
|
|
@@ -29388,6 +31542,13 @@ export namespace Prisma {
|
|
|
29388
31542
|
requesterMemberId?: string | null
|
|
29389
31543
|
requesterType: string
|
|
29390
31544
|
targetMemberId: string
|
|
31545
|
+
targetKind?: string | null
|
|
31546
|
+
targetPurpose?: string | null
|
|
31547
|
+
targetSourceWorkspaceId?: string | null
|
|
31548
|
+
targetSourceMemberId?: string | null
|
|
31549
|
+
targetHeadSha?: string | null
|
|
31550
|
+
targetBranchName?: string | null
|
|
31551
|
+
targetPlanItemId?: string | null
|
|
29391
31552
|
triggerMessageId: string
|
|
29392
31553
|
instruction: string
|
|
29393
31554
|
ifBusy?: string
|
|
@@ -29412,6 +31573,19 @@ export namespace Prisma {
|
|
|
29412
31573
|
memberId: string
|
|
29413
31574
|
workspaceId?: string | null
|
|
29414
31575
|
sessionId?: string | null
|
|
31576
|
+
targetKind?: string | null
|
|
31577
|
+
targetPurpose?: string | null
|
|
31578
|
+
targetSourceWorkspaceId?: string | null
|
|
31579
|
+
targetSourceMemberId?: string | null
|
|
31580
|
+
targetHeadSha?: string | null
|
|
31581
|
+
targetBranchName?: string | null
|
|
31582
|
+
targetPlanItemId?: string | null
|
|
31583
|
+
targetSyncStatus?: string | null
|
|
31584
|
+
targetSyncError?: string | null
|
|
31585
|
+
targetExecutionBranch?: string | null
|
|
31586
|
+
targetPort?: number | null
|
|
31587
|
+
targetVitePort?: number | null
|
|
31588
|
+
targetE2EPort?: number | null
|
|
29415
31589
|
status?: string
|
|
29416
31590
|
roomReplyReminderCount?: number
|
|
29417
31591
|
nextRoomReplyReminderAt?: Date | string | null
|
|
@@ -29425,6 +31599,19 @@ export namespace Prisma {
|
|
|
29425
31599
|
memberId: string
|
|
29426
31600
|
workspaceId?: string | null
|
|
29427
31601
|
sessionId?: string | null
|
|
31602
|
+
targetKind?: string | null
|
|
31603
|
+
targetPurpose?: string | null
|
|
31604
|
+
targetSourceWorkspaceId?: string | null
|
|
31605
|
+
targetSourceMemberId?: string | null
|
|
31606
|
+
targetHeadSha?: string | null
|
|
31607
|
+
targetBranchName?: string | null
|
|
31608
|
+
targetPlanItemId?: string | null
|
|
31609
|
+
targetSyncStatus?: string | null
|
|
31610
|
+
targetSyncError?: string | null
|
|
31611
|
+
targetExecutionBranch?: string | null
|
|
31612
|
+
targetPort?: number | null
|
|
31613
|
+
targetVitePort?: number | null
|
|
31614
|
+
targetE2EPort?: number | null
|
|
29428
31615
|
status?: string
|
|
29429
31616
|
roomReplyReminderCount?: number
|
|
29430
31617
|
nextRoomReplyReminderAt?: Date | string | null
|
|
@@ -29441,6 +31628,39 @@ export namespace Prisma {
|
|
|
29441
31628
|
data: AgentInvocationCreateManyTeamRunInput | AgentInvocationCreateManyTeamRunInput[]
|
|
29442
31629
|
}
|
|
29443
31630
|
|
|
31631
|
+
export type WorkspaceVerdictCreateWithoutTeamRunInput = {
|
|
31632
|
+
id?: string
|
|
31633
|
+
kind: string
|
|
31634
|
+
verdict: string
|
|
31635
|
+
reviewedSha: string
|
|
31636
|
+
reviewerMemberId?: string | null
|
|
31637
|
+
reason?: string | null
|
|
31638
|
+
sequence?: number
|
|
31639
|
+
createdAt?: Date | string
|
|
31640
|
+
workspace: WorkspaceCreateNestedOneWithoutVerdictsInput
|
|
31641
|
+
}
|
|
31642
|
+
|
|
31643
|
+
export type WorkspaceVerdictUncheckedCreateWithoutTeamRunInput = {
|
|
31644
|
+
id?: string
|
|
31645
|
+
workspaceId: string
|
|
31646
|
+
kind: string
|
|
31647
|
+
verdict: string
|
|
31648
|
+
reviewedSha: string
|
|
31649
|
+
reviewerMemberId?: string | null
|
|
31650
|
+
reason?: string | null
|
|
31651
|
+
sequence?: number
|
|
31652
|
+
createdAt?: Date | string
|
|
31653
|
+
}
|
|
31654
|
+
|
|
31655
|
+
export type WorkspaceVerdictCreateOrConnectWithoutTeamRunInput = {
|
|
31656
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
31657
|
+
create: XOR<WorkspaceVerdictCreateWithoutTeamRunInput, WorkspaceVerdictUncheckedCreateWithoutTeamRunInput>
|
|
31658
|
+
}
|
|
31659
|
+
|
|
31660
|
+
export type WorkspaceVerdictCreateManyTeamRunInputEnvelope = {
|
|
31661
|
+
data: WorkspaceVerdictCreateManyTeamRunInput | WorkspaceVerdictCreateManyTeamRunInput[]
|
|
31662
|
+
}
|
|
31663
|
+
|
|
29444
31664
|
export type TaskUpsertWithoutTeamRunInput = {
|
|
29445
31665
|
update: XOR<TaskUpdateWithoutTeamRunInput, TaskUncheckedUpdateWithoutTeamRunInput>
|
|
29446
31666
|
create: XOR<TaskCreateWithoutTeamRunInput, TaskUncheckedCreateWithoutTeamRunInput>
|
|
@@ -29509,6 +31729,7 @@ export namespace Prisma {
|
|
|
29509
31729
|
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
29510
31730
|
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
29511
31731
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
31732
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutWorkspaceNestedInput
|
|
29512
31733
|
}
|
|
29513
31734
|
|
|
29514
31735
|
export type WorkspaceUncheckedUpdateWithoutMainForTeamRunsInput = {
|
|
@@ -29529,6 +31750,7 @@ export namespace Prisma {
|
|
|
29529
31750
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
29530
31751
|
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
29531
31752
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
31753
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
29532
31754
|
}
|
|
29533
31755
|
|
|
29534
31756
|
export type TeamMemberUpsertWithWhereUniqueWithoutTeamRunInput = {
|
|
@@ -29630,6 +31852,13 @@ export namespace Prisma {
|
|
|
29630
31852
|
requesterMemberId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
29631
31853
|
requesterType?: StringFilter<"WorkRequest"> | string
|
|
29632
31854
|
targetMemberId?: StringFilter<"WorkRequest"> | string
|
|
31855
|
+
targetKind?: StringNullableFilter<"WorkRequest"> | string | null
|
|
31856
|
+
targetPurpose?: StringNullableFilter<"WorkRequest"> | string | null
|
|
31857
|
+
targetSourceWorkspaceId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
31858
|
+
targetSourceMemberId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
31859
|
+
targetHeadSha?: StringNullableFilter<"WorkRequest"> | string | null
|
|
31860
|
+
targetBranchName?: StringNullableFilter<"WorkRequest"> | string | null
|
|
31861
|
+
targetPlanItemId?: StringNullableFilter<"WorkRequest"> | string | null
|
|
29633
31862
|
triggerMessageId?: StringFilter<"WorkRequest"> | string
|
|
29634
31863
|
instruction?: StringFilter<"WorkRequest"> | string
|
|
29635
31864
|
ifBusy?: StringFilter<"WorkRequest"> | string
|
|
@@ -29665,6 +31894,19 @@ export namespace Prisma {
|
|
|
29665
31894
|
memberId?: StringFilter<"AgentInvocation"> | string
|
|
29666
31895
|
workspaceId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
29667
31896
|
sessionId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31897
|
+
targetKind?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31898
|
+
targetPurpose?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31899
|
+
targetSourceWorkspaceId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31900
|
+
targetSourceMemberId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31901
|
+
targetHeadSha?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31902
|
+
targetBranchName?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31903
|
+
targetPlanItemId?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31904
|
+
targetSyncStatus?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31905
|
+
targetSyncError?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31906
|
+
targetExecutionBranch?: StringNullableFilter<"AgentInvocation"> | string | null
|
|
31907
|
+
targetPort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
31908
|
+
targetVitePort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
31909
|
+
targetE2EPort?: IntNullableFilter<"AgentInvocation"> | number | null
|
|
29668
31910
|
status?: StringFilter<"AgentInvocation"> | string
|
|
29669
31911
|
roomReplyReminderCount?: IntFilter<"AgentInvocation"> | number
|
|
29670
31912
|
nextRoomReplyReminderAt?: DateTimeNullableFilter<"AgentInvocation"> | Date | string | null
|
|
@@ -29672,6 +31914,38 @@ export namespace Prisma {
|
|
|
29672
31914
|
updatedAt?: DateTimeFilter<"AgentInvocation"> | Date | string
|
|
29673
31915
|
}
|
|
29674
31916
|
|
|
31917
|
+
export type WorkspaceVerdictUpsertWithWhereUniqueWithoutTeamRunInput = {
|
|
31918
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
31919
|
+
update: XOR<WorkspaceVerdictUpdateWithoutTeamRunInput, WorkspaceVerdictUncheckedUpdateWithoutTeamRunInput>
|
|
31920
|
+
create: XOR<WorkspaceVerdictCreateWithoutTeamRunInput, WorkspaceVerdictUncheckedCreateWithoutTeamRunInput>
|
|
31921
|
+
}
|
|
31922
|
+
|
|
31923
|
+
export type WorkspaceVerdictUpdateWithWhereUniqueWithoutTeamRunInput = {
|
|
31924
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
31925
|
+
data: XOR<WorkspaceVerdictUpdateWithoutTeamRunInput, WorkspaceVerdictUncheckedUpdateWithoutTeamRunInput>
|
|
31926
|
+
}
|
|
31927
|
+
|
|
31928
|
+
export type WorkspaceVerdictUpdateManyWithWhereWithoutTeamRunInput = {
|
|
31929
|
+
where: WorkspaceVerdictScalarWhereInput
|
|
31930
|
+
data: XOR<WorkspaceVerdictUpdateManyMutationInput, WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunInput>
|
|
31931
|
+
}
|
|
31932
|
+
|
|
31933
|
+
export type WorkspaceVerdictScalarWhereInput = {
|
|
31934
|
+
AND?: WorkspaceVerdictScalarWhereInput | WorkspaceVerdictScalarWhereInput[]
|
|
31935
|
+
OR?: WorkspaceVerdictScalarWhereInput[]
|
|
31936
|
+
NOT?: WorkspaceVerdictScalarWhereInput | WorkspaceVerdictScalarWhereInput[]
|
|
31937
|
+
id?: StringFilter<"WorkspaceVerdict"> | string
|
|
31938
|
+
workspaceId?: StringFilter<"WorkspaceVerdict"> | string
|
|
31939
|
+
teamRunId?: StringFilter<"WorkspaceVerdict"> | string
|
|
31940
|
+
kind?: StringFilter<"WorkspaceVerdict"> | string
|
|
31941
|
+
verdict?: StringFilter<"WorkspaceVerdict"> | string
|
|
31942
|
+
reviewedSha?: StringFilter<"WorkspaceVerdict"> | string
|
|
31943
|
+
reviewerMemberId?: StringNullableFilter<"WorkspaceVerdict"> | string | null
|
|
31944
|
+
reason?: StringNullableFilter<"WorkspaceVerdict"> | string | null
|
|
31945
|
+
sequence?: IntFilter<"WorkspaceVerdict"> | number
|
|
31946
|
+
createdAt?: DateTimeFilter<"WorkspaceVerdict"> | Date | string
|
|
31947
|
+
}
|
|
31948
|
+
|
|
29675
31949
|
export type TeamRunCreateWithoutMembersInput = {
|
|
29676
31950
|
id?: string
|
|
29677
31951
|
mode: string
|
|
@@ -29683,6 +31957,7 @@ export namespace Prisma {
|
|
|
29683
31957
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
29684
31958
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
29685
31959
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
31960
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutTeamRunInput
|
|
29686
31961
|
}
|
|
29687
31962
|
|
|
29688
31963
|
export type TeamRunUncheckedCreateWithoutMembersInput = {
|
|
@@ -29696,6 +31971,7 @@ export namespace Prisma {
|
|
|
29696
31971
|
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
29697
31972
|
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
29698
31973
|
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
31974
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutTeamRunInput
|
|
29699
31975
|
}
|
|
29700
31976
|
|
|
29701
31977
|
export type TeamRunCreateOrConnectWithoutMembersInput = {
|
|
@@ -29721,6 +31997,7 @@ export namespace Prisma {
|
|
|
29721
31997
|
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
29722
31998
|
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
29723
31999
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
32000
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutWorkspaceInput
|
|
29724
32001
|
}
|
|
29725
32002
|
|
|
29726
32003
|
export type WorkspaceUncheckedCreateWithoutOwnerMemberInput = {
|
|
@@ -29741,6 +32018,7 @@ export namespace Prisma {
|
|
|
29741
32018
|
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
29742
32019
|
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
29743
32020
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
32021
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
29744
32022
|
}
|
|
29745
32023
|
|
|
29746
32024
|
export type WorkspaceCreateOrConnectWithoutOwnerMemberInput = {
|
|
@@ -29799,6 +32077,7 @@ export namespace Prisma {
|
|
|
29799
32077
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
29800
32078
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
29801
32079
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
32080
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutTeamRunNestedInput
|
|
29802
32081
|
}
|
|
29803
32082
|
|
|
29804
32083
|
export type TeamRunUncheckedUpdateWithoutMembersInput = {
|
|
@@ -29812,6 +32091,7 @@ export namespace Prisma {
|
|
|
29812
32091
|
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29813
32092
|
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29814
32093
|
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
32094
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29815
32095
|
}
|
|
29816
32096
|
|
|
29817
32097
|
export type WorkspaceUpsertWithWhereUniqueWithoutOwnerMemberInput = {
|
|
@@ -29869,6 +32149,7 @@ export namespace Prisma {
|
|
|
29869
32149
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
29870
32150
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
29871
32151
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
32152
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutTeamRunInput
|
|
29872
32153
|
}
|
|
29873
32154
|
|
|
29874
32155
|
export type TeamRunUncheckedCreateWithoutMessagesInput = {
|
|
@@ -29882,6 +32163,7 @@ export namespace Prisma {
|
|
|
29882
32163
|
members?: TeamMemberUncheckedCreateNestedManyWithoutTeamRunInput
|
|
29883
32164
|
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
29884
32165
|
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
32166
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutTeamRunInput
|
|
29885
32167
|
}
|
|
29886
32168
|
|
|
29887
32169
|
export type TeamRunCreateOrConnectWithoutMessagesInput = {
|
|
@@ -29936,6 +32218,7 @@ export namespace Prisma {
|
|
|
29936
32218
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
29937
32219
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
29938
32220
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
32221
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutTeamRunNestedInput
|
|
29939
32222
|
}
|
|
29940
32223
|
|
|
29941
32224
|
export type TeamRunUncheckedUpdateWithoutMessagesInput = {
|
|
@@ -29949,6 +32232,7 @@ export namespace Prisma {
|
|
|
29949
32232
|
members?: TeamMemberUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29950
32233
|
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29951
32234
|
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
32235
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
29952
32236
|
}
|
|
29953
32237
|
|
|
29954
32238
|
export type RoomMessageParticipantUpsertWithWhereUniqueWithoutRoomMessageInput = {
|
|
@@ -30158,6 +32442,7 @@ export namespace Prisma {
|
|
|
30158
32442
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
30159
32443
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
30160
32444
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
32445
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutTeamRunInput
|
|
30161
32446
|
}
|
|
30162
32447
|
|
|
30163
32448
|
export type TeamRunUncheckedCreateWithoutWorkRequestsInput = {
|
|
@@ -30171,6 +32456,7 @@ export namespace Prisma {
|
|
|
30171
32456
|
members?: TeamMemberUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30172
32457
|
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30173
32458
|
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
32459
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30174
32460
|
}
|
|
30175
32461
|
|
|
30176
32462
|
export type TeamRunCreateOrConnectWithoutWorkRequestsInput = {
|
|
@@ -30200,6 +32486,7 @@ export namespace Prisma {
|
|
|
30200
32486
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
30201
32487
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
30202
32488
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
32489
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutTeamRunNestedInput
|
|
30203
32490
|
}
|
|
30204
32491
|
|
|
30205
32492
|
export type TeamRunUncheckedUpdateWithoutWorkRequestsInput = {
|
|
@@ -30213,6 +32500,7 @@ export namespace Prisma {
|
|
|
30213
32500
|
members?: TeamMemberUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
30214
32501
|
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
30215
32502
|
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
32503
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
30216
32504
|
}
|
|
30217
32505
|
|
|
30218
32506
|
export type TeamRunCreateWithoutInvocationsInput = {
|
|
@@ -30226,6 +32514,7 @@ export namespace Prisma {
|
|
|
30226
32514
|
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
30227
32515
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
30228
32516
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
32517
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutTeamRunInput
|
|
30229
32518
|
}
|
|
30230
32519
|
|
|
30231
32520
|
export type TeamRunUncheckedCreateWithoutInvocationsInput = {
|
|
@@ -30239,6 +32528,7 @@ export namespace Prisma {
|
|
|
30239
32528
|
members?: TeamMemberUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30240
32529
|
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30241
32530
|
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
32531
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30242
32532
|
}
|
|
30243
32533
|
|
|
30244
32534
|
export type TeamRunCreateOrConnectWithoutInvocationsInput = {
|
|
@@ -30268,6 +32558,7 @@ export namespace Prisma {
|
|
|
30268
32558
|
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
30269
32559
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
30270
32560
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
32561
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutTeamRunNestedInput
|
|
30271
32562
|
}
|
|
30272
32563
|
|
|
30273
32564
|
export type TeamRunUncheckedUpdateWithoutInvocationsInput = {
|
|
@@ -30281,6 +32572,7 @@ export namespace Prisma {
|
|
|
30281
32572
|
members?: TeamMemberUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
30282
32573
|
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
30283
32574
|
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
32575
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
30284
32576
|
}
|
|
30285
32577
|
|
|
30286
32578
|
export type TaskCreateWithoutWorkspacesInput = {
|
|
@@ -30334,6 +32626,7 @@ export namespace Prisma {
|
|
|
30334
32626
|
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
30335
32627
|
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
30336
32628
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
32629
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutWorkspaceInput
|
|
30337
32630
|
}
|
|
30338
32631
|
|
|
30339
32632
|
export type WorkspaceUncheckedCreateWithoutChildWorkspacesInput = {
|
|
@@ -30354,6 +32647,7 @@ export namespace Prisma {
|
|
|
30354
32647
|
updatedAt?: Date | string
|
|
30355
32648
|
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
30356
32649
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
32650
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
30357
32651
|
}
|
|
30358
32652
|
|
|
30359
32653
|
export type WorkspaceCreateOrConnectWithoutChildWorkspacesInput = {
|
|
@@ -30379,6 +32673,7 @@ export namespace Prisma {
|
|
|
30379
32673
|
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
30380
32674
|
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
30381
32675
|
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
32676
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutWorkspaceInput
|
|
30382
32677
|
}
|
|
30383
32678
|
|
|
30384
32679
|
export type WorkspaceUncheckedCreateWithoutParentWorkspaceInput = {
|
|
@@ -30399,6 +32694,7 @@ export namespace Prisma {
|
|
|
30399
32694
|
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
30400
32695
|
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
30401
32696
|
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
32697
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
30402
32698
|
}
|
|
30403
32699
|
|
|
30404
32700
|
export type WorkspaceCreateOrConnectWithoutParentWorkspaceInput = {
|
|
@@ -30468,6 +32764,7 @@ export namespace Prisma {
|
|
|
30468
32764
|
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
30469
32765
|
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
30470
32766
|
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
32767
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutTeamRunInput
|
|
30471
32768
|
}
|
|
30472
32769
|
|
|
30473
32770
|
export type TeamRunUncheckedCreateWithoutMainWorkspaceInput = {
|
|
@@ -30481,6 +32778,7 @@ export namespace Prisma {
|
|
|
30481
32778
|
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30482
32779
|
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30483
32780
|
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
32781
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutTeamRunInput
|
|
30484
32782
|
}
|
|
30485
32783
|
|
|
30486
32784
|
export type TeamRunCreateOrConnectWithoutMainWorkspaceInput = {
|
|
@@ -30535,6 +32833,39 @@ export namespace Prisma {
|
|
|
30535
32833
|
data: SessionCreateManyWorkspaceInput | SessionCreateManyWorkspaceInput[]
|
|
30536
32834
|
}
|
|
30537
32835
|
|
|
32836
|
+
export type WorkspaceVerdictCreateWithoutWorkspaceInput = {
|
|
32837
|
+
id?: string
|
|
32838
|
+
kind: string
|
|
32839
|
+
verdict: string
|
|
32840
|
+
reviewedSha: string
|
|
32841
|
+
reviewerMemberId?: string | null
|
|
32842
|
+
reason?: string | null
|
|
32843
|
+
sequence?: number
|
|
32844
|
+
createdAt?: Date | string
|
|
32845
|
+
teamRun: TeamRunCreateNestedOneWithoutVerdictsInput
|
|
32846
|
+
}
|
|
32847
|
+
|
|
32848
|
+
export type WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput = {
|
|
32849
|
+
id?: string
|
|
32850
|
+
teamRunId: string
|
|
32851
|
+
kind: string
|
|
32852
|
+
verdict: string
|
|
32853
|
+
reviewedSha: string
|
|
32854
|
+
reviewerMemberId?: string | null
|
|
32855
|
+
reason?: string | null
|
|
32856
|
+
sequence?: number
|
|
32857
|
+
createdAt?: Date | string
|
|
32858
|
+
}
|
|
32859
|
+
|
|
32860
|
+
export type WorkspaceVerdictCreateOrConnectWithoutWorkspaceInput = {
|
|
32861
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
32862
|
+
create: XOR<WorkspaceVerdictCreateWithoutWorkspaceInput, WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput>
|
|
32863
|
+
}
|
|
32864
|
+
|
|
32865
|
+
export type WorkspaceVerdictCreateManyWorkspaceInputEnvelope = {
|
|
32866
|
+
data: WorkspaceVerdictCreateManyWorkspaceInput | WorkspaceVerdictCreateManyWorkspaceInput[]
|
|
32867
|
+
}
|
|
32868
|
+
|
|
30538
32869
|
export type TaskUpsertWithoutWorkspacesInput = {
|
|
30539
32870
|
update: XOR<TaskUpdateWithoutWorkspacesInput, TaskUncheckedUpdateWithoutWorkspacesInput>
|
|
30540
32871
|
create: XOR<TaskCreateWithoutWorkspacesInput, TaskUncheckedCreateWithoutWorkspacesInput>
|
|
@@ -30603,6 +32934,7 @@ export namespace Prisma {
|
|
|
30603
32934
|
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
30604
32935
|
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
30605
32936
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
32937
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutWorkspaceNestedInput
|
|
30606
32938
|
}
|
|
30607
32939
|
|
|
30608
32940
|
export type WorkspaceUncheckedUpdateWithoutChildWorkspacesInput = {
|
|
@@ -30623,6 +32955,7 @@ export namespace Prisma {
|
|
|
30623
32955
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30624
32956
|
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
30625
32957
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
32958
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
30626
32959
|
}
|
|
30627
32960
|
|
|
30628
32961
|
export type WorkspaceUpsertWithWhereUniqueWithoutParentWorkspaceInput = {
|
|
@@ -30759,6 +33092,194 @@ export namespace Prisma {
|
|
|
30759
33092
|
updatedAt?: DateTimeFilter<"Session"> | Date | string
|
|
30760
33093
|
}
|
|
30761
33094
|
|
|
33095
|
+
export type WorkspaceVerdictUpsertWithWhereUniqueWithoutWorkspaceInput = {
|
|
33096
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
33097
|
+
update: XOR<WorkspaceVerdictUpdateWithoutWorkspaceInput, WorkspaceVerdictUncheckedUpdateWithoutWorkspaceInput>
|
|
33098
|
+
create: XOR<WorkspaceVerdictCreateWithoutWorkspaceInput, WorkspaceVerdictUncheckedCreateWithoutWorkspaceInput>
|
|
33099
|
+
}
|
|
33100
|
+
|
|
33101
|
+
export type WorkspaceVerdictUpdateWithWhereUniqueWithoutWorkspaceInput = {
|
|
33102
|
+
where: WorkspaceVerdictWhereUniqueInput
|
|
33103
|
+
data: XOR<WorkspaceVerdictUpdateWithoutWorkspaceInput, WorkspaceVerdictUncheckedUpdateWithoutWorkspaceInput>
|
|
33104
|
+
}
|
|
33105
|
+
|
|
33106
|
+
export type WorkspaceVerdictUpdateManyWithWhereWithoutWorkspaceInput = {
|
|
33107
|
+
where: WorkspaceVerdictScalarWhereInput
|
|
33108
|
+
data: XOR<WorkspaceVerdictUpdateManyMutationInput, WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceInput>
|
|
33109
|
+
}
|
|
33110
|
+
|
|
33111
|
+
export type WorkspaceCreateWithoutVerdictsInput = {
|
|
33112
|
+
id?: string
|
|
33113
|
+
branchName: string
|
|
33114
|
+
baseBranch?: string | null
|
|
33115
|
+
worktreePath: string
|
|
33116
|
+
workspaceKind?: string
|
|
33117
|
+
workingDir?: string
|
|
33118
|
+
status?: string
|
|
33119
|
+
commitMessage?: string | null
|
|
33120
|
+
previewTarget?: string | null
|
|
33121
|
+
hibernatedAt?: Date | string | null
|
|
33122
|
+
createdAt?: Date | string
|
|
33123
|
+
updatedAt?: Date | string
|
|
33124
|
+
task: TaskCreateNestedOneWithoutWorkspacesInput
|
|
33125
|
+
parentWorkspace?: WorkspaceCreateNestedOneWithoutChildWorkspacesInput
|
|
33126
|
+
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
33127
|
+
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
33128
|
+
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
33129
|
+
sessions?: SessionCreateNestedManyWithoutWorkspaceInput
|
|
33130
|
+
}
|
|
33131
|
+
|
|
33132
|
+
export type WorkspaceUncheckedCreateWithoutVerdictsInput = {
|
|
33133
|
+
id?: string
|
|
33134
|
+
taskId: string
|
|
33135
|
+
parentWorkspaceId?: string | null
|
|
33136
|
+
ownerMemberId?: string | null
|
|
33137
|
+
branchName: string
|
|
33138
|
+
baseBranch?: string | null
|
|
33139
|
+
worktreePath: string
|
|
33140
|
+
workspaceKind?: string
|
|
33141
|
+
workingDir?: string
|
|
33142
|
+
status?: string
|
|
33143
|
+
commitMessage?: string | null
|
|
33144
|
+
previewTarget?: string | null
|
|
33145
|
+
hibernatedAt?: Date | string | null
|
|
33146
|
+
createdAt?: Date | string
|
|
33147
|
+
updatedAt?: Date | string
|
|
33148
|
+
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
33149
|
+
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
33150
|
+
sessions?: SessionUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
33151
|
+
}
|
|
33152
|
+
|
|
33153
|
+
export type WorkspaceCreateOrConnectWithoutVerdictsInput = {
|
|
33154
|
+
where: WorkspaceWhereUniqueInput
|
|
33155
|
+
create: XOR<WorkspaceCreateWithoutVerdictsInput, WorkspaceUncheckedCreateWithoutVerdictsInput>
|
|
33156
|
+
}
|
|
33157
|
+
|
|
33158
|
+
export type TeamRunCreateWithoutVerdictsInput = {
|
|
33159
|
+
id?: string
|
|
33160
|
+
mode: string
|
|
33161
|
+
reviewReason?: string | null
|
|
33162
|
+
createdAt?: Date | string
|
|
33163
|
+
updatedAt?: Date | string
|
|
33164
|
+
task: TaskCreateNestedOneWithoutTeamRunInput
|
|
33165
|
+
mainWorkspace?: WorkspaceCreateNestedOneWithoutMainForTeamRunsInput
|
|
33166
|
+
members?: TeamMemberCreateNestedManyWithoutTeamRunInput
|
|
33167
|
+
messages?: RoomMessageCreateNestedManyWithoutTeamRunInput
|
|
33168
|
+
workRequests?: WorkRequestCreateNestedManyWithoutTeamRunInput
|
|
33169
|
+
invocations?: AgentInvocationCreateNestedManyWithoutTeamRunInput
|
|
33170
|
+
}
|
|
33171
|
+
|
|
33172
|
+
export type TeamRunUncheckedCreateWithoutVerdictsInput = {
|
|
33173
|
+
id?: string
|
|
33174
|
+
taskId: string
|
|
33175
|
+
mainWorkspaceId?: string | null
|
|
33176
|
+
mode: string
|
|
33177
|
+
reviewReason?: string | null
|
|
33178
|
+
createdAt?: Date | string
|
|
33179
|
+
updatedAt?: Date | string
|
|
33180
|
+
members?: TeamMemberUncheckedCreateNestedManyWithoutTeamRunInput
|
|
33181
|
+
messages?: RoomMessageUncheckedCreateNestedManyWithoutTeamRunInput
|
|
33182
|
+
workRequests?: WorkRequestUncheckedCreateNestedManyWithoutTeamRunInput
|
|
33183
|
+
invocations?: AgentInvocationUncheckedCreateNestedManyWithoutTeamRunInput
|
|
33184
|
+
}
|
|
33185
|
+
|
|
33186
|
+
export type TeamRunCreateOrConnectWithoutVerdictsInput = {
|
|
33187
|
+
where: TeamRunWhereUniqueInput
|
|
33188
|
+
create: XOR<TeamRunCreateWithoutVerdictsInput, TeamRunUncheckedCreateWithoutVerdictsInput>
|
|
33189
|
+
}
|
|
33190
|
+
|
|
33191
|
+
export type WorkspaceUpsertWithoutVerdictsInput = {
|
|
33192
|
+
update: XOR<WorkspaceUpdateWithoutVerdictsInput, WorkspaceUncheckedUpdateWithoutVerdictsInput>
|
|
33193
|
+
create: XOR<WorkspaceCreateWithoutVerdictsInput, WorkspaceUncheckedCreateWithoutVerdictsInput>
|
|
33194
|
+
where?: WorkspaceWhereInput
|
|
33195
|
+
}
|
|
33196
|
+
|
|
33197
|
+
export type WorkspaceUpdateToOneWithWhereWithoutVerdictsInput = {
|
|
33198
|
+
where?: WorkspaceWhereInput
|
|
33199
|
+
data: XOR<WorkspaceUpdateWithoutVerdictsInput, WorkspaceUncheckedUpdateWithoutVerdictsInput>
|
|
33200
|
+
}
|
|
33201
|
+
|
|
33202
|
+
export type WorkspaceUpdateWithoutVerdictsInput = {
|
|
33203
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
33204
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
33205
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33206
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
33207
|
+
workspaceKind?: StringFieldUpdateOperationsInput | string
|
|
33208
|
+
workingDir?: StringFieldUpdateOperationsInput | string
|
|
33209
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
33210
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33211
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33212
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
33213
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
33214
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
33215
|
+
task?: TaskUpdateOneRequiredWithoutWorkspacesNestedInput
|
|
33216
|
+
parentWorkspace?: WorkspaceUpdateOneWithoutChildWorkspacesNestedInput
|
|
33217
|
+
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
33218
|
+
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
33219
|
+
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
33220
|
+
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
33221
|
+
}
|
|
33222
|
+
|
|
33223
|
+
export type WorkspaceUncheckedUpdateWithoutVerdictsInput = {
|
|
33224
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
33225
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
33226
|
+
parentWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33227
|
+
ownerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33228
|
+
branchName?: StringFieldUpdateOperationsInput | string
|
|
33229
|
+
baseBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33230
|
+
worktreePath?: StringFieldUpdateOperationsInput | string
|
|
33231
|
+
workspaceKind?: StringFieldUpdateOperationsInput | string
|
|
33232
|
+
workingDir?: StringFieldUpdateOperationsInput | string
|
|
33233
|
+
status?: StringFieldUpdateOperationsInput | string
|
|
33234
|
+
commitMessage?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33235
|
+
previewTarget?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33236
|
+
hibernatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
33237
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
33238
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
33239
|
+
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
33240
|
+
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
33241
|
+
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
33242
|
+
}
|
|
33243
|
+
|
|
33244
|
+
export type TeamRunUpsertWithoutVerdictsInput = {
|
|
33245
|
+
update: XOR<TeamRunUpdateWithoutVerdictsInput, TeamRunUncheckedUpdateWithoutVerdictsInput>
|
|
33246
|
+
create: XOR<TeamRunCreateWithoutVerdictsInput, TeamRunUncheckedCreateWithoutVerdictsInput>
|
|
33247
|
+
where?: TeamRunWhereInput
|
|
33248
|
+
}
|
|
33249
|
+
|
|
33250
|
+
export type TeamRunUpdateToOneWithWhereWithoutVerdictsInput = {
|
|
33251
|
+
where?: TeamRunWhereInput
|
|
33252
|
+
data: XOR<TeamRunUpdateWithoutVerdictsInput, TeamRunUncheckedUpdateWithoutVerdictsInput>
|
|
33253
|
+
}
|
|
33254
|
+
|
|
33255
|
+
export type TeamRunUpdateWithoutVerdictsInput = {
|
|
33256
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
33257
|
+
mode?: StringFieldUpdateOperationsInput | string
|
|
33258
|
+
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33259
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
33260
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
33261
|
+
task?: TaskUpdateOneRequiredWithoutTeamRunNestedInput
|
|
33262
|
+
mainWorkspace?: WorkspaceUpdateOneWithoutMainForTeamRunsNestedInput
|
|
33263
|
+
members?: TeamMemberUpdateManyWithoutTeamRunNestedInput
|
|
33264
|
+
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
33265
|
+
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
33266
|
+
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
33267
|
+
}
|
|
33268
|
+
|
|
33269
|
+
export type TeamRunUncheckedUpdateWithoutVerdictsInput = {
|
|
33270
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
33271
|
+
taskId?: StringFieldUpdateOperationsInput | string
|
|
33272
|
+
mainWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33273
|
+
mode?: StringFieldUpdateOperationsInput | string
|
|
33274
|
+
reviewReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
33275
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
33276
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
33277
|
+
members?: TeamMemberUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
33278
|
+
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
33279
|
+
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
33280
|
+
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
33281
|
+
}
|
|
33282
|
+
|
|
30762
33283
|
export type SessionCreateWithoutConversationInput = {
|
|
30763
33284
|
id?: string
|
|
30764
33285
|
context?: string
|
|
@@ -30861,6 +33382,7 @@ export namespace Prisma {
|
|
|
30861
33382
|
childWorkspaces?: WorkspaceCreateNestedManyWithoutParentWorkspaceInput
|
|
30862
33383
|
ownerMember?: TeamMemberCreateNestedOneWithoutOwnedWorkspacesInput
|
|
30863
33384
|
mainForTeamRuns?: TeamRunCreateNestedManyWithoutMainWorkspaceInput
|
|
33385
|
+
verdicts?: WorkspaceVerdictCreateNestedManyWithoutWorkspaceInput
|
|
30864
33386
|
}
|
|
30865
33387
|
|
|
30866
33388
|
export type WorkspaceUncheckedCreateWithoutSessionsInput = {
|
|
@@ -30881,6 +33403,7 @@ export namespace Prisma {
|
|
|
30881
33403
|
updatedAt?: Date | string
|
|
30882
33404
|
childWorkspaces?: WorkspaceUncheckedCreateNestedManyWithoutParentWorkspaceInput
|
|
30883
33405
|
mainForTeamRuns?: TeamRunUncheckedCreateNestedManyWithoutMainWorkspaceInput
|
|
33406
|
+
verdicts?: WorkspaceVerdictUncheckedCreateNestedManyWithoutWorkspaceInput
|
|
30884
33407
|
}
|
|
30885
33408
|
|
|
30886
33409
|
export type WorkspaceCreateOrConnectWithoutSessionsInput = {
|
|
@@ -30969,6 +33492,7 @@ export namespace Prisma {
|
|
|
30969
33492
|
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
30970
33493
|
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
30971
33494
|
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
33495
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutWorkspaceNestedInput
|
|
30972
33496
|
}
|
|
30973
33497
|
|
|
30974
33498
|
export type WorkspaceUncheckedUpdateWithoutSessionsInput = {
|
|
@@ -30989,6 +33513,7 @@ export namespace Prisma {
|
|
|
30989
33513
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
30990
33514
|
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
30991
33515
|
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
33516
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
30992
33517
|
}
|
|
30993
33518
|
|
|
30994
33519
|
export type ConversationUpsertWithoutSessionInput = {
|
|
@@ -31223,6 +33748,7 @@ export namespace Prisma {
|
|
|
31223
33748
|
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
31224
33749
|
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
31225
33750
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
33751
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutWorkspaceNestedInput
|
|
31226
33752
|
}
|
|
31227
33753
|
|
|
31228
33754
|
export type WorkspaceUncheckedUpdateWithoutTaskInput = {
|
|
@@ -31243,6 +33769,7 @@ export namespace Prisma {
|
|
|
31243
33769
|
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
31244
33770
|
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
31245
33771
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
33772
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
31246
33773
|
}
|
|
31247
33774
|
|
|
31248
33775
|
export type WorkspaceUncheckedUpdateManyWithoutTaskInput = {
|
|
@@ -31325,6 +33852,13 @@ export namespace Prisma {
|
|
|
31325
33852
|
requesterMemberId?: string | null
|
|
31326
33853
|
requesterType: string
|
|
31327
33854
|
targetMemberId: string
|
|
33855
|
+
targetKind?: string | null
|
|
33856
|
+
targetPurpose?: string | null
|
|
33857
|
+
targetSourceWorkspaceId?: string | null
|
|
33858
|
+
targetSourceMemberId?: string | null
|
|
33859
|
+
targetHeadSha?: string | null
|
|
33860
|
+
targetBranchName?: string | null
|
|
33861
|
+
targetPlanItemId?: string | null
|
|
31328
33862
|
triggerMessageId: string
|
|
31329
33863
|
instruction: string
|
|
31330
33864
|
ifBusy?: string
|
|
@@ -31340,6 +33874,19 @@ export namespace Prisma {
|
|
|
31340
33874
|
memberId: string
|
|
31341
33875
|
workspaceId?: string | null
|
|
31342
33876
|
sessionId?: string | null
|
|
33877
|
+
targetKind?: string | null
|
|
33878
|
+
targetPurpose?: string | null
|
|
33879
|
+
targetSourceWorkspaceId?: string | null
|
|
33880
|
+
targetSourceMemberId?: string | null
|
|
33881
|
+
targetHeadSha?: string | null
|
|
33882
|
+
targetBranchName?: string | null
|
|
33883
|
+
targetPlanItemId?: string | null
|
|
33884
|
+
targetSyncStatus?: string | null
|
|
33885
|
+
targetSyncError?: string | null
|
|
33886
|
+
targetExecutionBranch?: string | null
|
|
33887
|
+
targetPort?: number | null
|
|
33888
|
+
targetVitePort?: number | null
|
|
33889
|
+
targetE2EPort?: number | null
|
|
31343
33890
|
status?: string
|
|
31344
33891
|
roomReplyReminderCount?: number
|
|
31345
33892
|
nextRoomReplyReminderAt?: Date | string | null
|
|
@@ -31347,6 +33894,18 @@ export namespace Prisma {
|
|
|
31347
33894
|
updatedAt?: Date | string
|
|
31348
33895
|
}
|
|
31349
33896
|
|
|
33897
|
+
export type WorkspaceVerdictCreateManyTeamRunInput = {
|
|
33898
|
+
id?: string
|
|
33899
|
+
workspaceId: string
|
|
33900
|
+
kind: string
|
|
33901
|
+
verdict: string
|
|
33902
|
+
reviewedSha: string
|
|
33903
|
+
reviewerMemberId?: string | null
|
|
33904
|
+
reason?: string | null
|
|
33905
|
+
sequence?: number
|
|
33906
|
+
createdAt?: Date | string
|
|
33907
|
+
}
|
|
33908
|
+
|
|
31350
33909
|
export type TeamMemberUpdateWithoutTeamRunInput = {
|
|
31351
33910
|
id?: StringFieldUpdateOperationsInput | string
|
|
31352
33911
|
presetId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -31460,6 +34019,13 @@ export namespace Prisma {
|
|
|
31460
34019
|
requesterMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31461
34020
|
requesterType?: StringFieldUpdateOperationsInput | string
|
|
31462
34021
|
targetMemberId?: StringFieldUpdateOperationsInput | string
|
|
34022
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34023
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34024
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34025
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34026
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34027
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34028
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31463
34029
|
triggerMessageId?: StringFieldUpdateOperationsInput | string
|
|
31464
34030
|
instruction?: StringFieldUpdateOperationsInput | string
|
|
31465
34031
|
ifBusy?: StringFieldUpdateOperationsInput | string
|
|
@@ -31474,6 +34040,13 @@ export namespace Prisma {
|
|
|
31474
34040
|
requesterMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31475
34041
|
requesterType?: StringFieldUpdateOperationsInput | string
|
|
31476
34042
|
targetMemberId?: StringFieldUpdateOperationsInput | string
|
|
34043
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34044
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34045
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34046
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34047
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34048
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34049
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31477
34050
|
triggerMessageId?: StringFieldUpdateOperationsInput | string
|
|
31478
34051
|
instruction?: StringFieldUpdateOperationsInput | string
|
|
31479
34052
|
ifBusy?: StringFieldUpdateOperationsInput | string
|
|
@@ -31488,6 +34061,13 @@ export namespace Prisma {
|
|
|
31488
34061
|
requesterMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31489
34062
|
requesterType?: StringFieldUpdateOperationsInput | string
|
|
31490
34063
|
targetMemberId?: StringFieldUpdateOperationsInput | string
|
|
34064
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34065
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34066
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34067
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34068
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34069
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34070
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31491
34071
|
triggerMessageId?: StringFieldUpdateOperationsInput | string
|
|
31492
34072
|
instruction?: StringFieldUpdateOperationsInput | string
|
|
31493
34073
|
ifBusy?: StringFieldUpdateOperationsInput | string
|
|
@@ -31503,6 +34083,19 @@ export namespace Prisma {
|
|
|
31503
34083
|
memberId?: StringFieldUpdateOperationsInput | string
|
|
31504
34084
|
workspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31505
34085
|
sessionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34086
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34087
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34088
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34089
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34090
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34091
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34092
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34093
|
+
targetSyncStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34094
|
+
targetSyncError?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34095
|
+
targetExecutionBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34096
|
+
targetPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
34097
|
+
targetVitePort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
34098
|
+
targetE2EPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31506
34099
|
status?: StringFieldUpdateOperationsInput | string
|
|
31507
34100
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
31508
34101
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -31516,6 +34109,19 @@ export namespace Prisma {
|
|
|
31516
34109
|
memberId?: StringFieldUpdateOperationsInput | string
|
|
31517
34110
|
workspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31518
34111
|
sessionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34112
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34113
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34114
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34115
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34116
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34117
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34118
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34119
|
+
targetSyncStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34120
|
+
targetSyncError?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34121
|
+
targetExecutionBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34122
|
+
targetPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
34123
|
+
targetVitePort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
34124
|
+
targetE2EPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31519
34125
|
status?: StringFieldUpdateOperationsInput | string
|
|
31520
34126
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
31521
34127
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -31529,6 +34135,19 @@ export namespace Prisma {
|
|
|
31529
34135
|
memberId?: StringFieldUpdateOperationsInput | string
|
|
31530
34136
|
workspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31531
34137
|
sessionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34138
|
+
targetKind?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34139
|
+
targetPurpose?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34140
|
+
targetSourceWorkspaceId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34141
|
+
targetSourceMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34142
|
+
targetHeadSha?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34143
|
+
targetBranchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34144
|
+
targetPlanItemId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34145
|
+
targetSyncStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34146
|
+
targetSyncError?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34147
|
+
targetExecutionBranch?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34148
|
+
targetPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
34149
|
+
targetVitePort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
34150
|
+
targetE2EPort?: NullableIntFieldUpdateOperationsInput | number | null
|
|
31532
34151
|
status?: StringFieldUpdateOperationsInput | string
|
|
31533
34152
|
roomReplyReminderCount?: IntFieldUpdateOperationsInput | number
|
|
31534
34153
|
nextRoomReplyReminderAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -31536,6 +34155,42 @@ export namespace Prisma {
|
|
|
31536
34155
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
31537
34156
|
}
|
|
31538
34157
|
|
|
34158
|
+
export type WorkspaceVerdictUpdateWithoutTeamRunInput = {
|
|
34159
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
34160
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
34161
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
34162
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
34163
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34164
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34165
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
34166
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34167
|
+
workspace?: WorkspaceUpdateOneRequiredWithoutVerdictsNestedInput
|
|
34168
|
+
}
|
|
34169
|
+
|
|
34170
|
+
export type WorkspaceVerdictUncheckedUpdateWithoutTeamRunInput = {
|
|
34171
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
34172
|
+
workspaceId?: StringFieldUpdateOperationsInput | string
|
|
34173
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
34174
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
34175
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
34176
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34177
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34178
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
34179
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34180
|
+
}
|
|
34181
|
+
|
|
34182
|
+
export type WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunInput = {
|
|
34183
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
34184
|
+
workspaceId?: StringFieldUpdateOperationsInput | string
|
|
34185
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
34186
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
34187
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
34188
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34189
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34190
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
34191
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34192
|
+
}
|
|
34193
|
+
|
|
31539
34194
|
export type WorkspaceCreateManyOwnerMemberInput = {
|
|
31540
34195
|
id?: string
|
|
31541
34196
|
taskId: string
|
|
@@ -31579,6 +34234,7 @@ export namespace Prisma {
|
|
|
31579
34234
|
childWorkspaces?: WorkspaceUpdateManyWithoutParentWorkspaceNestedInput
|
|
31580
34235
|
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
31581
34236
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
34237
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutWorkspaceNestedInput
|
|
31582
34238
|
}
|
|
31583
34239
|
|
|
31584
34240
|
export type WorkspaceUncheckedUpdateWithoutOwnerMemberInput = {
|
|
@@ -31599,6 +34255,7 @@ export namespace Prisma {
|
|
|
31599
34255
|
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
31600
34256
|
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
31601
34257
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
34258
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
31602
34259
|
}
|
|
31603
34260
|
|
|
31604
34261
|
export type WorkspaceUncheckedUpdateManyWithoutOwnerMemberInput = {
|
|
@@ -31716,6 +34373,18 @@ export namespace Prisma {
|
|
|
31716
34373
|
updatedAt?: Date | string
|
|
31717
34374
|
}
|
|
31718
34375
|
|
|
34376
|
+
export type WorkspaceVerdictCreateManyWorkspaceInput = {
|
|
34377
|
+
id?: string
|
|
34378
|
+
teamRunId: string
|
|
34379
|
+
kind: string
|
|
34380
|
+
verdict: string
|
|
34381
|
+
reviewedSha: string
|
|
34382
|
+
reviewerMemberId?: string | null
|
|
34383
|
+
reason?: string | null
|
|
34384
|
+
sequence?: number
|
|
34385
|
+
createdAt?: Date | string
|
|
34386
|
+
}
|
|
34387
|
+
|
|
31719
34388
|
export type WorkspaceUpdateWithoutParentWorkspaceInput = {
|
|
31720
34389
|
id?: StringFieldUpdateOperationsInput | string
|
|
31721
34390
|
branchName?: StringFieldUpdateOperationsInput | string
|
|
@@ -31734,6 +34403,7 @@ export namespace Prisma {
|
|
|
31734
34403
|
ownerMember?: TeamMemberUpdateOneWithoutOwnedWorkspacesNestedInput
|
|
31735
34404
|
mainForTeamRuns?: TeamRunUpdateManyWithoutMainWorkspaceNestedInput
|
|
31736
34405
|
sessions?: SessionUpdateManyWithoutWorkspaceNestedInput
|
|
34406
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutWorkspaceNestedInput
|
|
31737
34407
|
}
|
|
31738
34408
|
|
|
31739
34409
|
export type WorkspaceUncheckedUpdateWithoutParentWorkspaceInput = {
|
|
@@ -31754,6 +34424,7 @@ export namespace Prisma {
|
|
|
31754
34424
|
childWorkspaces?: WorkspaceUncheckedUpdateManyWithoutParentWorkspaceNestedInput
|
|
31755
34425
|
mainForTeamRuns?: TeamRunUncheckedUpdateManyWithoutMainWorkspaceNestedInput
|
|
31756
34426
|
sessions?: SessionUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
34427
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceNestedInput
|
|
31757
34428
|
}
|
|
31758
34429
|
|
|
31759
34430
|
export type WorkspaceUncheckedUpdateManyWithoutParentWorkspaceInput = {
|
|
@@ -31784,6 +34455,7 @@ export namespace Prisma {
|
|
|
31784
34455
|
messages?: RoomMessageUpdateManyWithoutTeamRunNestedInput
|
|
31785
34456
|
workRequests?: WorkRequestUpdateManyWithoutTeamRunNestedInput
|
|
31786
34457
|
invocations?: AgentInvocationUpdateManyWithoutTeamRunNestedInput
|
|
34458
|
+
verdicts?: WorkspaceVerdictUpdateManyWithoutTeamRunNestedInput
|
|
31787
34459
|
}
|
|
31788
34460
|
|
|
31789
34461
|
export type TeamRunUncheckedUpdateWithoutMainWorkspaceInput = {
|
|
@@ -31797,6 +34469,7 @@ export namespace Prisma {
|
|
|
31797
34469
|
messages?: RoomMessageUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
31798
34470
|
workRequests?: WorkRequestUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
31799
34471
|
invocations?: AgentInvocationUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
34472
|
+
verdicts?: WorkspaceVerdictUncheckedUpdateManyWithoutTeamRunNestedInput
|
|
31800
34473
|
}
|
|
31801
34474
|
|
|
31802
34475
|
export type TeamRunUncheckedUpdateManyWithoutMainWorkspaceInput = {
|
|
@@ -31858,6 +34531,42 @@ export namespace Prisma {
|
|
|
31858
34531
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
31859
34532
|
}
|
|
31860
34533
|
|
|
34534
|
+
export type WorkspaceVerdictUpdateWithoutWorkspaceInput = {
|
|
34535
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
34536
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
34537
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
34538
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
34539
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34540
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34541
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
34542
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34543
|
+
teamRun?: TeamRunUpdateOneRequiredWithoutVerdictsNestedInput
|
|
34544
|
+
}
|
|
34545
|
+
|
|
34546
|
+
export type WorkspaceVerdictUncheckedUpdateWithoutWorkspaceInput = {
|
|
34547
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
34548
|
+
teamRunId?: StringFieldUpdateOperationsInput | string
|
|
34549
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
34550
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
34551
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
34552
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34553
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34554
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
34555
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34556
|
+
}
|
|
34557
|
+
|
|
34558
|
+
export type WorkspaceVerdictUncheckedUpdateManyWithoutWorkspaceInput = {
|
|
34559
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
34560
|
+
teamRunId?: StringFieldUpdateOperationsInput | string
|
|
34561
|
+
kind?: StringFieldUpdateOperationsInput | string
|
|
34562
|
+
verdict?: StringFieldUpdateOperationsInput | string
|
|
34563
|
+
reviewedSha?: StringFieldUpdateOperationsInput | string
|
|
34564
|
+
reviewerMemberId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34565
|
+
reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
34566
|
+
sequence?: IntFieldUpdateOperationsInput | number
|
|
34567
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
34568
|
+
}
|
|
34569
|
+
|
|
31861
34570
|
export type ExecutionProcessCreateManySessionInput = {
|
|
31862
34571
|
id?: string
|
|
31863
34572
|
pid?: number | null
|
|
@@ -31979,6 +34688,10 @@ export namespace Prisma {
|
|
|
31979
34688
|
* @deprecated Use WorkspaceDefaultArgs instead
|
|
31980
34689
|
*/
|
|
31981
34690
|
export type WorkspaceArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = WorkspaceDefaultArgs<ExtArgs>
|
|
34691
|
+
/**
|
|
34692
|
+
* @deprecated Use WorkspaceVerdictDefaultArgs instead
|
|
34693
|
+
*/
|
|
34694
|
+
export type WorkspaceVerdictArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = WorkspaceVerdictDefaultArgs<ExtArgs>
|
|
31982
34695
|
/**
|
|
31983
34696
|
* @deprecated Use ConversationDefaultArgs instead
|
|
31984
34697
|
*/
|