@getpaseo/protocol 0.1.107 → 0.1.108
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/generated/validation/ws-outbound.aot.js +20961 -20395
- package/dist/git-remote.d.ts +10 -0
- package/dist/git-remote.js +12 -0
- package/dist/messages.d.ts +754 -0
- package/dist/messages.js +135 -0
- package/dist/provider-manifest.js +25 -22
- package/dist/validation/ws-outbound-schema-metadata.d.ts +143 -0
- package/package.json +1 -1
package/dist/messages.d.ts
CHANGED
|
@@ -371,6 +371,12 @@ export declare const WorkspaceTitleSetRequestSchema: z.ZodObject<{
|
|
|
371
371
|
title: z.ZodNullable<z.ZodString>;
|
|
372
372
|
requestId: z.ZodString;
|
|
373
373
|
}, z.core.$strip>;
|
|
374
|
+
export declare const WorkspacePinSetRequestSchema: z.ZodObject<{
|
|
375
|
+
type: z.ZodLiteral<"workspace.pin.set.request">;
|
|
376
|
+
workspaceId: z.ZodString;
|
|
377
|
+
pinned: z.ZodBoolean;
|
|
378
|
+
requestId: z.ZodString;
|
|
379
|
+
}, z.core.$strip>;
|
|
374
380
|
export declare const SetVoiceModeMessageSchema: z.ZodObject<{
|
|
375
381
|
type: z.ZodLiteral<"set_voice_mode">;
|
|
376
382
|
enabled: z.ZodBoolean;
|
|
@@ -1281,6 +1287,10 @@ export declare const ProviderSubagentTimelineRequestMessageSchema: z.ZodObject<{
|
|
|
1281
1287
|
export declare const AgentForkContextRequestMessageSchema: z.ZodObject<{
|
|
1282
1288
|
type: z.ZodLiteral<"agent.fork_context.request">;
|
|
1283
1289
|
agentId: z.ZodString;
|
|
1290
|
+
boundaryCursor: z.ZodOptional<z.ZodObject<{
|
|
1291
|
+
epoch: z.ZodString;
|
|
1292
|
+
seq: z.ZodNumber;
|
|
1293
|
+
}, z.core.$strip>>;
|
|
1284
1294
|
boundaryMessageId: z.ZodOptional<z.ZodString>;
|
|
1285
1295
|
requestId: z.ZodString;
|
|
1286
1296
|
}, z.core.$strip>;
|
|
@@ -1450,6 +1460,23 @@ export declare const WorkspaceTitleSetResponseSchema: z.ZodObject<{
|
|
|
1450
1460
|
error: z.ZodNullable<z.ZodString>;
|
|
1451
1461
|
}, z.core.$strip>;
|
|
1452
1462
|
}, z.core.$strip>;
|
|
1463
|
+
export declare const WorkspacePinSetResponsePayloadSchema: z.ZodObject<{
|
|
1464
|
+
requestId: z.ZodString;
|
|
1465
|
+
workspaceId: z.ZodString;
|
|
1466
|
+
accepted: z.ZodBoolean;
|
|
1467
|
+
pinnedAt: z.ZodNullable<z.ZodString>;
|
|
1468
|
+
error: z.ZodNullable<z.ZodString>;
|
|
1469
|
+
}, z.core.$strip>;
|
|
1470
|
+
export declare const WorkspacePinSetResponseSchema: z.ZodObject<{
|
|
1471
|
+
type: z.ZodLiteral<"workspace.pin.set.response">;
|
|
1472
|
+
payload: z.ZodObject<{
|
|
1473
|
+
requestId: z.ZodString;
|
|
1474
|
+
workspaceId: z.ZodString;
|
|
1475
|
+
accepted: z.ZodBoolean;
|
|
1476
|
+
pinnedAt: z.ZodNullable<z.ZodString>;
|
|
1477
|
+
error: z.ZodNullable<z.ZodString>;
|
|
1478
|
+
}, z.core.$strip>;
|
|
1479
|
+
}, z.core.$strip>;
|
|
1453
1480
|
export declare const SetVoiceModeResponseMessageSchema: z.ZodObject<{
|
|
1454
1481
|
type: z.ZodLiteral<"set_voice_mode_response">;
|
|
1455
1482
|
payload: z.ZodObject<{
|
|
@@ -1909,6 +1936,45 @@ export declare const ProjectAddRequestSchema: z.ZodObject<{
|
|
|
1909
1936
|
cwd: z.ZodString;
|
|
1910
1937
|
requestId: z.ZodString;
|
|
1911
1938
|
}, z.core.$strip>;
|
|
1939
|
+
export declare const ProjectCreateDirectoryRequestSchema: z.ZodObject<{
|
|
1940
|
+
type: z.ZodLiteral<"project.create_directory.request">;
|
|
1941
|
+
parentPath: z.ZodString;
|
|
1942
|
+
name: z.ZodString;
|
|
1943
|
+
requestId: z.ZodString;
|
|
1944
|
+
}, z.core.$strip>;
|
|
1945
|
+
export declare const GithubRepositorySchema: z.ZodObject<{
|
|
1946
|
+
id: z.ZodString;
|
|
1947
|
+
name: z.ZodString;
|
|
1948
|
+
nameWithOwner: z.ZodString;
|
|
1949
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1950
|
+
visibility: z.ZodEnum<{
|
|
1951
|
+
public: "public";
|
|
1952
|
+
private: "private";
|
|
1953
|
+
internal: "internal";
|
|
1954
|
+
}>;
|
|
1955
|
+
updatedAt: z.ZodString;
|
|
1956
|
+
cloneUrl: z.ZodString;
|
|
1957
|
+
}, z.core.$strip>;
|
|
1958
|
+
export declare const WorkspaceGithubSearchRepositoriesRequestSchema: z.ZodObject<{
|
|
1959
|
+
type: z.ZodLiteral<"workspace.github.search_repositories.request">;
|
|
1960
|
+
query: z.ZodString;
|
|
1961
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
1962
|
+
requestId: z.ZodString;
|
|
1963
|
+
}, z.core.$strip>;
|
|
1964
|
+
export declare const ProjectGithubCloneProtocolSchema: z.ZodEnum<{
|
|
1965
|
+
https: "https";
|
|
1966
|
+
ssh: "ssh";
|
|
1967
|
+
}>;
|
|
1968
|
+
export declare const ProjectGithubCloneRequestSchema: z.ZodObject<{
|
|
1969
|
+
type: z.ZodLiteral<"project.github.clone.request">;
|
|
1970
|
+
repo: z.ZodString;
|
|
1971
|
+
cloneProtocol: z.ZodOptional<z.ZodEnum<{
|
|
1972
|
+
https: "https";
|
|
1973
|
+
ssh: "ssh";
|
|
1974
|
+
}>>;
|
|
1975
|
+
targetDirectory: z.ZodString;
|
|
1976
|
+
requestId: z.ZodString;
|
|
1977
|
+
}, z.core.$strip>;
|
|
1912
1978
|
export declare const ArchiveWorkspaceRequestSchema: z.ZodObject<{
|
|
1913
1979
|
type: z.ZodLiteral<"archive_workspace_request">;
|
|
1914
1980
|
workspaceId: z.ZodString;
|
|
@@ -2539,6 +2605,11 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2539
2605
|
workspaceId: z.ZodString;
|
|
2540
2606
|
title: z.ZodNullable<z.ZodString>;
|
|
2541
2607
|
requestId: z.ZodString;
|
|
2608
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
2609
|
+
type: z.ZodLiteral<"workspace.pin.set.request">;
|
|
2610
|
+
workspaceId: z.ZodString;
|
|
2611
|
+
pinned: z.ZodBoolean;
|
|
2612
|
+
requestId: z.ZodString;
|
|
2542
2613
|
}, z.core.$strip>, z.ZodObject<{
|
|
2543
2614
|
type: z.ZodLiteral<"set_voice_mode">;
|
|
2544
2615
|
enabled: z.ZodBoolean;
|
|
@@ -2997,6 +3068,10 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
2997
3068
|
}, z.core.$strip>, z.ZodObject<{
|
|
2998
3069
|
type: z.ZodLiteral<"agent.fork_context.request">;
|
|
2999
3070
|
agentId: z.ZodString;
|
|
3071
|
+
boundaryCursor: z.ZodOptional<z.ZodObject<{
|
|
3072
|
+
epoch: z.ZodString;
|
|
3073
|
+
seq: z.ZodNumber;
|
|
3074
|
+
}, z.core.$strip>>;
|
|
3000
3075
|
boundaryMessageId: z.ZodOptional<z.ZodString>;
|
|
3001
3076
|
requestId: z.ZodString;
|
|
3002
3077
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3368,6 +3443,25 @@ export declare const SessionInboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zod
|
|
|
3368
3443
|
type: z.ZodLiteral<"project.add.request">;
|
|
3369
3444
|
cwd: z.ZodString;
|
|
3370
3445
|
requestId: z.ZodString;
|
|
3446
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3447
|
+
type: z.ZodLiteral<"project.create_directory.request">;
|
|
3448
|
+
parentPath: z.ZodString;
|
|
3449
|
+
name: z.ZodString;
|
|
3450
|
+
requestId: z.ZodString;
|
|
3451
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3452
|
+
type: z.ZodLiteral<"workspace.github.search_repositories.request">;
|
|
3453
|
+
query: z.ZodString;
|
|
3454
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
3455
|
+
requestId: z.ZodString;
|
|
3456
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
3457
|
+
type: z.ZodLiteral<"project.github.clone.request">;
|
|
3458
|
+
repo: z.ZodString;
|
|
3459
|
+
cloneProtocol: z.ZodOptional<z.ZodEnum<{
|
|
3460
|
+
https: "https";
|
|
3461
|
+
ssh: "ssh";
|
|
3462
|
+
}>>;
|
|
3463
|
+
targetDirectory: z.ZodString;
|
|
3464
|
+
requestId: z.ZodString;
|
|
3371
3465
|
}, z.core.$strip>, z.ZodObject<{
|
|
3372
3466
|
type: z.ZodLiteral<"archive_workspace_request">;
|
|
3373
3467
|
workspaceId: z.ZodString;
|
|
@@ -3952,7 +4046,12 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3952
4046
|
daemonDiagnostics: z.ZodOptional<z.ZodBoolean>;
|
|
3953
4047
|
daemonSelfUpdate: z.ZodOptional<z.ZodBoolean>;
|
|
3954
4048
|
agentForkContext: z.ZodOptional<z.ZodBoolean>;
|
|
4049
|
+
agentForkContextCursor: z.ZodOptional<z.ZodBoolean>;
|
|
3955
4050
|
providerSubagents: z.ZodOptional<z.ZodBoolean>;
|
|
4051
|
+
workspacePinning: z.ZodOptional<z.ZodBoolean>;
|
|
4052
|
+
projectGithubClone: z.ZodOptional<z.ZodBoolean>;
|
|
4053
|
+
workspaceGithubRepositorySearch: z.ZodOptional<z.ZodBoolean>;
|
|
4054
|
+
projectCreateDirectory: z.ZodOptional<z.ZodBoolean>;
|
|
3956
4055
|
}, z.core.$strip>>;
|
|
3957
4056
|
}, z.core.$loose>, z.ZodTransform<{
|
|
3958
4057
|
hostname: string | null;
|
|
@@ -3989,7 +4088,12 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
3989
4088
|
daemonDiagnostics?: boolean | undefined;
|
|
3990
4089
|
daemonSelfUpdate?: boolean | undefined;
|
|
3991
4090
|
agentForkContext?: boolean | undefined;
|
|
4091
|
+
agentForkContextCursor?: boolean | undefined;
|
|
3992
4092
|
providerSubagents?: boolean | undefined;
|
|
4093
|
+
workspacePinning?: boolean | undefined;
|
|
4094
|
+
projectGithubClone?: boolean | undefined;
|
|
4095
|
+
workspaceGithubRepositorySearch?: boolean | undefined;
|
|
4096
|
+
projectCreateDirectory?: boolean | undefined;
|
|
3993
4097
|
} | undefined;
|
|
3994
4098
|
}, {
|
|
3995
4099
|
[x: string]: unknown;
|
|
@@ -4027,7 +4131,12 @@ export declare const ServerInfoStatusPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4027
4131
|
daemonDiagnostics?: boolean | undefined;
|
|
4028
4132
|
daemonSelfUpdate?: boolean | undefined;
|
|
4029
4133
|
agentForkContext?: boolean | undefined;
|
|
4134
|
+
agentForkContextCursor?: boolean | undefined;
|
|
4030
4135
|
providerSubagents?: boolean | undefined;
|
|
4136
|
+
workspacePinning?: boolean | undefined;
|
|
4137
|
+
projectGithubClone?: boolean | undefined;
|
|
4138
|
+
workspaceGithubRepositorySearch?: boolean | undefined;
|
|
4139
|
+
projectCreateDirectory?: boolean | undefined;
|
|
4031
4140
|
} | undefined;
|
|
4032
4141
|
}>>;
|
|
4033
4142
|
export declare const StatusMessageSchema: z.ZodObject<{
|
|
@@ -4730,6 +4839,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4730
4839
|
}>;
|
|
4731
4840
|
name: z.ZodString;
|
|
4732
4841
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4842
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4733
4843
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4734
4844
|
status: z.ZodEnum<{
|
|
4735
4845
|
running: "running";
|
|
@@ -4933,6 +5043,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
4933
5043
|
}[];
|
|
4934
5044
|
projectCustomName?: string | null | undefined;
|
|
4935
5045
|
title?: string | null | undefined;
|
|
5046
|
+
pinnedAt?: string | null | undefined;
|
|
4936
5047
|
diffStat?: {
|
|
4937
5048
|
additions: number;
|
|
4938
5049
|
deletions: number;
|
|
@@ -5037,6 +5148,7 @@ export declare const WorkspaceDescriptorPayloadSchema: z.ZodPipe<z.ZodObject<{
|
|
|
5037
5148
|
projectCustomName?: string | null | undefined;
|
|
5038
5149
|
workspaceDirectory?: string | undefined;
|
|
5039
5150
|
title?: string | null | undefined;
|
|
5151
|
+
pinnedAt?: string | null | undefined;
|
|
5040
5152
|
diffStat?: {
|
|
5041
5153
|
additions: number;
|
|
5042
5154
|
deletions: number;
|
|
@@ -5826,6 +5938,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
5826
5938
|
}>;
|
|
5827
5939
|
name: z.ZodString;
|
|
5828
5940
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5941
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5829
5942
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
5830
5943
|
status: z.ZodEnum<{
|
|
5831
5944
|
running: "running";
|
|
@@ -6029,6 +6142,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
6029
6142
|
}[];
|
|
6030
6143
|
projectCustomName?: string | null | undefined;
|
|
6031
6144
|
title?: string | null | undefined;
|
|
6145
|
+
pinnedAt?: string | null | undefined;
|
|
6032
6146
|
diffStat?: {
|
|
6033
6147
|
additions: number;
|
|
6034
6148
|
deletions: number;
|
|
@@ -6133,6 +6247,7 @@ export declare const FetchWorkspacesResponseMessageSchema: z.ZodObject<{
|
|
|
6133
6247
|
projectCustomName?: string | null | undefined;
|
|
6134
6248
|
workspaceDirectory?: string | undefined;
|
|
6135
6249
|
title?: string | null | undefined;
|
|
6250
|
+
pinnedAt?: string | null | undefined;
|
|
6136
6251
|
diffStat?: {
|
|
6137
6252
|
additions: number;
|
|
6138
6253
|
deletions: number;
|
|
@@ -6252,6 +6367,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
6252
6367
|
}>;
|
|
6253
6368
|
name: z.ZodString;
|
|
6254
6369
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6370
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6255
6371
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6256
6372
|
status: z.ZodEnum<{
|
|
6257
6373
|
running: "running";
|
|
@@ -6455,6 +6571,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
6455
6571
|
}[];
|
|
6456
6572
|
projectCustomName?: string | null | undefined;
|
|
6457
6573
|
title?: string | null | undefined;
|
|
6574
|
+
pinnedAt?: string | null | undefined;
|
|
6458
6575
|
diffStat?: {
|
|
6459
6576
|
additions: number;
|
|
6460
6577
|
deletions: number;
|
|
@@ -6559,6 +6676,7 @@ export declare const WorkspaceUpdateMessageSchema: z.ZodObject<{
|
|
|
6559
6676
|
projectCustomName?: string | null | undefined;
|
|
6560
6677
|
workspaceDirectory?: string | undefined;
|
|
6561
6678
|
title?: string | null | undefined;
|
|
6679
|
+
pinnedAt?: string | null | undefined;
|
|
6562
6680
|
diffStat?: {
|
|
6563
6681
|
additions: number;
|
|
6564
6682
|
deletions: number;
|
|
@@ -6800,6 +6918,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
6800
6918
|
}>;
|
|
6801
6919
|
name: z.ZodString;
|
|
6802
6920
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6921
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6803
6922
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
6804
6923
|
status: z.ZodEnum<{
|
|
6805
6924
|
running: "running";
|
|
@@ -7003,6 +7122,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
7003
7122
|
}[];
|
|
7004
7123
|
projectCustomName?: string | null | undefined;
|
|
7005
7124
|
title?: string | null | undefined;
|
|
7125
|
+
pinnedAt?: string | null | undefined;
|
|
7006
7126
|
diffStat?: {
|
|
7007
7127
|
additions: number;
|
|
7008
7128
|
deletions: number;
|
|
@@ -7107,6 +7227,7 @@ export declare const OpenProjectResponseMessageSchema: z.ZodObject<{
|
|
|
7107
7227
|
projectCustomName?: string | null | undefined;
|
|
7108
7228
|
workspaceDirectory?: string | undefined;
|
|
7109
7229
|
title?: string | null | undefined;
|
|
7230
|
+
pinnedAt?: string | null | undefined;
|
|
7110
7231
|
diffStat?: {
|
|
7111
7232
|
additions: number;
|
|
7112
7233
|
deletions: number;
|
|
@@ -7211,6 +7332,131 @@ export declare const ProjectAddResponseSchema: z.ZodObject<{
|
|
|
7211
7332
|
}>>>>;
|
|
7212
7333
|
}, z.core.$strip>;
|
|
7213
7334
|
}, z.core.$strip>;
|
|
7335
|
+
export declare const ProjectCreateDirectoryErrorCodeSchema: z.ZodEnum<{
|
|
7336
|
+
invalid_name: "invalid_name";
|
|
7337
|
+
parent_directory_not_found: "parent_directory_not_found";
|
|
7338
|
+
directory_exists: "directory_exists";
|
|
7339
|
+
permission_denied: "permission_denied";
|
|
7340
|
+
registration_failed: "registration_failed";
|
|
7341
|
+
filesystem_error: "filesystem_error";
|
|
7342
|
+
}>;
|
|
7343
|
+
export declare const ProjectCreateDirectoryResponseSchema: z.ZodObject<{
|
|
7344
|
+
type: z.ZodLiteral<"project.create_directory.response">;
|
|
7345
|
+
payload: z.ZodObject<{
|
|
7346
|
+
requestId: z.ZodString;
|
|
7347
|
+
directoryPath: z.ZodNullable<z.ZodString>;
|
|
7348
|
+
project: z.ZodNullable<z.ZodObject<{
|
|
7349
|
+
projectId: z.ZodString;
|
|
7350
|
+
projectDisplayName: z.ZodString;
|
|
7351
|
+
projectCustomName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7352
|
+
projectRootPath: z.ZodString;
|
|
7353
|
+
projectKind: z.ZodEnum<{
|
|
7354
|
+
git: "git";
|
|
7355
|
+
directory: "directory";
|
|
7356
|
+
non_git: "non_git";
|
|
7357
|
+
}>;
|
|
7358
|
+
}, z.core.$strip>>;
|
|
7359
|
+
error: z.ZodNullable<z.ZodString>;
|
|
7360
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
7361
|
+
}, z.core.$strip>;
|
|
7362
|
+
}, z.core.$strip>;
|
|
7363
|
+
export declare const WorkspaceGithubSearchRepositoriesResponseSchema: z.ZodObject<{
|
|
7364
|
+
type: z.ZodLiteral<"workspace.github.search_repositories.response">;
|
|
7365
|
+
payload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
7366
|
+
status: z.ZodLiteral<"success">;
|
|
7367
|
+
requestId: z.ZodString;
|
|
7368
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
7369
|
+
id: z.ZodString;
|
|
7370
|
+
name: z.ZodString;
|
|
7371
|
+
nameWithOwner: z.ZodString;
|
|
7372
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7373
|
+
visibility: z.ZodEnum<{
|
|
7374
|
+
public: "public";
|
|
7375
|
+
private: "private";
|
|
7376
|
+
internal: "internal";
|
|
7377
|
+
}>;
|
|
7378
|
+
updatedAt: z.ZodString;
|
|
7379
|
+
cloneUrl: z.ZodString;
|
|
7380
|
+
}, z.core.$strip>>;
|
|
7381
|
+
available: z.ZodLiteral<true>;
|
|
7382
|
+
error: z.ZodNull;
|
|
7383
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7384
|
+
status: z.ZodLiteral<"unavailable">;
|
|
7385
|
+
requestId: z.ZodString;
|
|
7386
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
7387
|
+
id: z.ZodString;
|
|
7388
|
+
name: z.ZodString;
|
|
7389
|
+
nameWithOwner: z.ZodString;
|
|
7390
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7391
|
+
visibility: z.ZodEnum<{
|
|
7392
|
+
public: "public";
|
|
7393
|
+
private: "private";
|
|
7394
|
+
internal: "internal";
|
|
7395
|
+
}>;
|
|
7396
|
+
updatedAt: z.ZodString;
|
|
7397
|
+
cloneUrl: z.ZodString;
|
|
7398
|
+
}, z.core.$strip>>;
|
|
7399
|
+
reason: z.ZodLiteral<"gh_missing">;
|
|
7400
|
+
available: z.ZodLiteral<false>;
|
|
7401
|
+
error: z.ZodString;
|
|
7402
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7403
|
+
status: z.ZodLiteral<"unauthenticated">;
|
|
7404
|
+
requestId: z.ZodString;
|
|
7405
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
7406
|
+
id: z.ZodString;
|
|
7407
|
+
name: z.ZodString;
|
|
7408
|
+
nameWithOwner: z.ZodString;
|
|
7409
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7410
|
+
visibility: z.ZodEnum<{
|
|
7411
|
+
public: "public";
|
|
7412
|
+
private: "private";
|
|
7413
|
+
internal: "internal";
|
|
7414
|
+
}>;
|
|
7415
|
+
updatedAt: z.ZodString;
|
|
7416
|
+
cloneUrl: z.ZodString;
|
|
7417
|
+
}, z.core.$strip>>;
|
|
7418
|
+
available: z.ZodLiteral<false>;
|
|
7419
|
+
error: z.ZodString;
|
|
7420
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
7421
|
+
status: z.ZodLiteral<"error">;
|
|
7422
|
+
requestId: z.ZodString;
|
|
7423
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
7424
|
+
id: z.ZodString;
|
|
7425
|
+
name: z.ZodString;
|
|
7426
|
+
nameWithOwner: z.ZodString;
|
|
7427
|
+
description: z.ZodNullable<z.ZodString>;
|
|
7428
|
+
visibility: z.ZodEnum<{
|
|
7429
|
+
public: "public";
|
|
7430
|
+
private: "private";
|
|
7431
|
+
internal: "internal";
|
|
7432
|
+
}>;
|
|
7433
|
+
updatedAt: z.ZodString;
|
|
7434
|
+
cloneUrl: z.ZodString;
|
|
7435
|
+
}, z.core.$strip>>;
|
|
7436
|
+
available: z.ZodLiteral<true>;
|
|
7437
|
+
error: z.ZodString;
|
|
7438
|
+
}, z.core.$strip>], "status">;
|
|
7439
|
+
}, z.core.$strip>;
|
|
7440
|
+
export declare const ProjectGithubCloneResponseSchema: z.ZodObject<{
|
|
7441
|
+
type: z.ZodLiteral<"project.github.clone.response">;
|
|
7442
|
+
payload: z.ZodObject<{
|
|
7443
|
+
requestId: z.ZodString;
|
|
7444
|
+
repo: z.ZodString;
|
|
7445
|
+
checkoutPath: z.ZodNullable<z.ZodString>;
|
|
7446
|
+
project: z.ZodNullable<z.ZodObject<{
|
|
7447
|
+
projectId: z.ZodString;
|
|
7448
|
+
projectDisplayName: z.ZodString;
|
|
7449
|
+
projectCustomName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7450
|
+
projectRootPath: z.ZodString;
|
|
7451
|
+
projectKind: z.ZodEnum<{
|
|
7452
|
+
git: "git";
|
|
7453
|
+
directory: "directory";
|
|
7454
|
+
non_git: "non_git";
|
|
7455
|
+
}>;
|
|
7456
|
+
}, z.core.$strip>>;
|
|
7457
|
+
error: z.ZodNullable<z.ZodString>;
|
|
7458
|
+
}, z.core.$strip>;
|
|
7459
|
+
}, z.core.$strip>;
|
|
7214
7460
|
export declare const StartWorkspaceScriptResponseMessageSchema: z.ZodObject<{
|
|
7215
7461
|
type: z.ZodLiteral<"start_workspace_script_response">;
|
|
7216
7462
|
payload: z.ZodObject<{
|
|
@@ -7661,6 +7907,10 @@ export declare const AgentForkContextResponseMessageSchema: z.ZodObject<{
|
|
|
7661
7907
|
}>>>;
|
|
7662
7908
|
itemCount: z.ZodNumber;
|
|
7663
7909
|
boundaryMessageId: z.ZodNullable<z.ZodString>;
|
|
7910
|
+
boundaryCursor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7911
|
+
epoch: z.ZodString;
|
|
7912
|
+
seq: z.ZodNumber;
|
|
7913
|
+
}, z.core.$strip>>>;
|
|
7664
7914
|
error: z.ZodNullable<z.ZodString>;
|
|
7665
7915
|
}, z.core.$strip>;
|
|
7666
7916
|
}, z.core.$strip>;
|
|
@@ -7731,6 +7981,7 @@ export declare const CancelAgentResponseMessageSchema: z.ZodObject<{
|
|
|
7731
7981
|
archivedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7732
7982
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
7733
7983
|
}, z.core.$strip>>;
|
|
7984
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7734
7985
|
}, z.core.$strip>;
|
|
7735
7986
|
}, z.core.$strip>;
|
|
7736
7987
|
export declare const ClearAgentAttentionResponseMessageSchema: z.ZodObject<{
|
|
@@ -7825,6 +8076,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
7825
8076
|
}>;
|
|
7826
8077
|
name: z.ZodString;
|
|
7827
8078
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
8079
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
7828
8080
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
7829
8081
|
status: z.ZodEnum<{
|
|
7830
8082
|
running: "running";
|
|
@@ -8028,6 +8280,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
8028
8280
|
}[];
|
|
8029
8281
|
projectCustomName?: string | null | undefined;
|
|
8030
8282
|
title?: string | null | undefined;
|
|
8283
|
+
pinnedAt?: string | null | undefined;
|
|
8031
8284
|
diffStat?: {
|
|
8032
8285
|
additions: number;
|
|
8033
8286
|
deletions: number;
|
|
@@ -8132,6 +8385,7 @@ export declare const WorkspaceCreateResponseSchema: z.ZodObject<{
|
|
|
8132
8385
|
projectCustomName?: string | null | undefined;
|
|
8133
8386
|
workspaceDirectory?: string | undefined;
|
|
8134
8387
|
title?: string | null | undefined;
|
|
8388
|
+
pinnedAt?: string | null | undefined;
|
|
8135
8389
|
diffStat?: {
|
|
8136
8390
|
additions: number;
|
|
8137
8391
|
deletions: number;
|
|
@@ -9575,6 +9829,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
9575
9829
|
}>;
|
|
9576
9830
|
name: z.ZodString;
|
|
9577
9831
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9832
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9578
9833
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
9579
9834
|
status: z.ZodEnum<{
|
|
9580
9835
|
running: "running";
|
|
@@ -9778,6 +10033,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
9778
10033
|
}[];
|
|
9779
10034
|
projectCustomName?: string | null | undefined;
|
|
9780
10035
|
title?: string | null | undefined;
|
|
10036
|
+
pinnedAt?: string | null | undefined;
|
|
9781
10037
|
diffStat?: {
|
|
9782
10038
|
additions: number;
|
|
9783
10039
|
deletions: number;
|
|
@@ -9882,6 +10138,7 @@ export declare const CreatePaseoWorktreeResponseSchema: z.ZodObject<{
|
|
|
9882
10138
|
projectCustomName?: string | null | undefined;
|
|
9883
10139
|
workspaceDirectory?: string | undefined;
|
|
9884
10140
|
title?: string | null | undefined;
|
|
10141
|
+
pinnedAt?: string | null | undefined;
|
|
9885
10142
|
diffStat?: {
|
|
9886
10143
|
additions: number;
|
|
9887
10144
|
deletions: number;
|
|
@@ -11050,6 +11307,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
11050
11307
|
}>;
|
|
11051
11308
|
name: z.ZodString;
|
|
11052
11309
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11310
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11053
11311
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
11054
11312
|
status: z.ZodEnum<{
|
|
11055
11313
|
running: "running";
|
|
@@ -11253,6 +11511,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
11253
11511
|
}[];
|
|
11254
11512
|
projectCustomName?: string | null | undefined;
|
|
11255
11513
|
title?: string | null | undefined;
|
|
11514
|
+
pinnedAt?: string | null | undefined;
|
|
11256
11515
|
diffStat?: {
|
|
11257
11516
|
additions: number;
|
|
11258
11517
|
deletions: number;
|
|
@@ -11357,6 +11616,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
11357
11616
|
projectCustomName?: string | null | undefined;
|
|
11358
11617
|
workspaceDirectory?: string | undefined;
|
|
11359
11618
|
title?: string | null | undefined;
|
|
11619
|
+
pinnedAt?: string | null | undefined;
|
|
11360
11620
|
diffStat?: {
|
|
11361
11621
|
additions: number;
|
|
11362
11622
|
deletions: number;
|
|
@@ -12022,6 +12282,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12022
12282
|
}>;
|
|
12023
12283
|
name: z.ZodString;
|
|
12024
12284
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12285
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12025
12286
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12026
12287
|
status: z.ZodEnum<{
|
|
12027
12288
|
running: "running";
|
|
@@ -12225,6 +12486,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12225
12486
|
}[];
|
|
12226
12487
|
projectCustomName?: string | null | undefined;
|
|
12227
12488
|
title?: string | null | undefined;
|
|
12489
|
+
pinnedAt?: string | null | undefined;
|
|
12228
12490
|
diffStat?: {
|
|
12229
12491
|
additions: number;
|
|
12230
12492
|
deletions: number;
|
|
@@ -12329,6 +12591,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12329
12591
|
projectCustomName?: string | null | undefined;
|
|
12330
12592
|
workspaceDirectory?: string | undefined;
|
|
12331
12593
|
title?: string | null | undefined;
|
|
12594
|
+
pinnedAt?: string | null | undefined;
|
|
12332
12595
|
diffStat?: {
|
|
12333
12596
|
additions: number;
|
|
12334
12597
|
deletions: number;
|
|
@@ -12443,6 +12706,25 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12443
12706
|
directory_not_found: "directory_not_found";
|
|
12444
12707
|
}>>>>;
|
|
12445
12708
|
}, z.core.$strip>;
|
|
12709
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
12710
|
+
type: z.ZodLiteral<"project.create_directory.response">;
|
|
12711
|
+
payload: z.ZodObject<{
|
|
12712
|
+
requestId: z.ZodString;
|
|
12713
|
+
directoryPath: z.ZodNullable<z.ZodString>;
|
|
12714
|
+
project: z.ZodNullable<z.ZodObject<{
|
|
12715
|
+
projectId: z.ZodString;
|
|
12716
|
+
projectDisplayName: z.ZodString;
|
|
12717
|
+
projectCustomName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12718
|
+
projectRootPath: z.ZodString;
|
|
12719
|
+
projectKind: z.ZodEnum<{
|
|
12720
|
+
git: "git";
|
|
12721
|
+
directory: "directory";
|
|
12722
|
+
non_git: "non_git";
|
|
12723
|
+
}>;
|
|
12724
|
+
}, z.core.$strip>>;
|
|
12725
|
+
error: z.ZodNullable<z.ZodString>;
|
|
12726
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
12727
|
+
}, z.core.$strip>;
|
|
12446
12728
|
}, z.core.$strip>, z.ZodObject<{
|
|
12447
12729
|
type: z.ZodLiteral<"open_project_response">;
|
|
12448
12730
|
payload: z.ZodObject<{
|
|
@@ -12467,6 +12749,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12467
12749
|
}>;
|
|
12468
12750
|
name: z.ZodString;
|
|
12469
12751
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12752
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12470
12753
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
12471
12754
|
status: z.ZodEnum<{
|
|
12472
12755
|
running: "running";
|
|
@@ -12670,6 +12953,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12670
12953
|
}[];
|
|
12671
12954
|
projectCustomName?: string | null | undefined;
|
|
12672
12955
|
title?: string | null | undefined;
|
|
12956
|
+
pinnedAt?: string | null | undefined;
|
|
12673
12957
|
diffStat?: {
|
|
12674
12958
|
additions: number;
|
|
12675
12959
|
deletions: number;
|
|
@@ -12774,6 +13058,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12774
13058
|
projectCustomName?: string | null | undefined;
|
|
12775
13059
|
workspaceDirectory?: string | undefined;
|
|
12776
13060
|
title?: string | null | undefined;
|
|
13061
|
+
pinnedAt?: string | null | undefined;
|
|
12777
13062
|
diffStat?: {
|
|
12778
13063
|
additions: number;
|
|
12779
13064
|
deletions: number;
|
|
@@ -12856,6 +13141,101 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
12856
13141
|
directory_not_found: "directory_not_found";
|
|
12857
13142
|
}>>>>;
|
|
12858
13143
|
}, z.core.$strip>;
|
|
13144
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13145
|
+
type: z.ZodLiteral<"workspace.github.search_repositories.response">;
|
|
13146
|
+
payload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
13147
|
+
status: z.ZodLiteral<"success">;
|
|
13148
|
+
requestId: z.ZodString;
|
|
13149
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
13150
|
+
id: z.ZodString;
|
|
13151
|
+
name: z.ZodString;
|
|
13152
|
+
nameWithOwner: z.ZodString;
|
|
13153
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13154
|
+
visibility: z.ZodEnum<{
|
|
13155
|
+
public: "public";
|
|
13156
|
+
private: "private";
|
|
13157
|
+
internal: "internal";
|
|
13158
|
+
}>;
|
|
13159
|
+
updatedAt: z.ZodString;
|
|
13160
|
+
cloneUrl: z.ZodString;
|
|
13161
|
+
}, z.core.$strip>>;
|
|
13162
|
+
available: z.ZodLiteral<true>;
|
|
13163
|
+
error: z.ZodNull;
|
|
13164
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13165
|
+
status: z.ZodLiteral<"unavailable">;
|
|
13166
|
+
requestId: z.ZodString;
|
|
13167
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
13168
|
+
id: z.ZodString;
|
|
13169
|
+
name: z.ZodString;
|
|
13170
|
+
nameWithOwner: z.ZodString;
|
|
13171
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13172
|
+
visibility: z.ZodEnum<{
|
|
13173
|
+
public: "public";
|
|
13174
|
+
private: "private";
|
|
13175
|
+
internal: "internal";
|
|
13176
|
+
}>;
|
|
13177
|
+
updatedAt: z.ZodString;
|
|
13178
|
+
cloneUrl: z.ZodString;
|
|
13179
|
+
}, z.core.$strip>>;
|
|
13180
|
+
reason: z.ZodLiteral<"gh_missing">;
|
|
13181
|
+
available: z.ZodLiteral<false>;
|
|
13182
|
+
error: z.ZodString;
|
|
13183
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13184
|
+
status: z.ZodLiteral<"unauthenticated">;
|
|
13185
|
+
requestId: z.ZodString;
|
|
13186
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
13187
|
+
id: z.ZodString;
|
|
13188
|
+
name: z.ZodString;
|
|
13189
|
+
nameWithOwner: z.ZodString;
|
|
13190
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13191
|
+
visibility: z.ZodEnum<{
|
|
13192
|
+
public: "public";
|
|
13193
|
+
private: "private";
|
|
13194
|
+
internal: "internal";
|
|
13195
|
+
}>;
|
|
13196
|
+
updatedAt: z.ZodString;
|
|
13197
|
+
cloneUrl: z.ZodString;
|
|
13198
|
+
}, z.core.$strip>>;
|
|
13199
|
+
available: z.ZodLiteral<false>;
|
|
13200
|
+
error: z.ZodString;
|
|
13201
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13202
|
+
status: z.ZodLiteral<"error">;
|
|
13203
|
+
requestId: z.ZodString;
|
|
13204
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
13205
|
+
id: z.ZodString;
|
|
13206
|
+
name: z.ZodString;
|
|
13207
|
+
nameWithOwner: z.ZodString;
|
|
13208
|
+
description: z.ZodNullable<z.ZodString>;
|
|
13209
|
+
visibility: z.ZodEnum<{
|
|
13210
|
+
public: "public";
|
|
13211
|
+
private: "private";
|
|
13212
|
+
internal: "internal";
|
|
13213
|
+
}>;
|
|
13214
|
+
updatedAt: z.ZodString;
|
|
13215
|
+
cloneUrl: z.ZodString;
|
|
13216
|
+
}, z.core.$strip>>;
|
|
13217
|
+
available: z.ZodLiteral<true>;
|
|
13218
|
+
error: z.ZodString;
|
|
13219
|
+
}, z.core.$strip>], "status">;
|
|
13220
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
13221
|
+
type: z.ZodLiteral<"project.github.clone.response">;
|
|
13222
|
+
payload: z.ZodObject<{
|
|
13223
|
+
requestId: z.ZodString;
|
|
13224
|
+
repo: z.ZodString;
|
|
13225
|
+
checkoutPath: z.ZodNullable<z.ZodString>;
|
|
13226
|
+
project: z.ZodNullable<z.ZodObject<{
|
|
13227
|
+
projectId: z.ZodString;
|
|
13228
|
+
projectDisplayName: z.ZodString;
|
|
13229
|
+
projectCustomName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13230
|
+
projectRootPath: z.ZodString;
|
|
13231
|
+
projectKind: z.ZodEnum<{
|
|
13232
|
+
git: "git";
|
|
13233
|
+
directory: "directory";
|
|
13234
|
+
non_git: "non_git";
|
|
13235
|
+
}>;
|
|
13236
|
+
}, z.core.$strip>>;
|
|
13237
|
+
error: z.ZodNullable<z.ZodString>;
|
|
13238
|
+
}, z.core.$strip>;
|
|
12859
13239
|
}, z.core.$strip>, z.ZodObject<{
|
|
12860
13240
|
type: z.ZodLiteral<"start_workspace_script_response">;
|
|
12861
13241
|
payload: z.ZodObject<{
|
|
@@ -13263,6 +13643,10 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13263
13643
|
}>>>;
|
|
13264
13644
|
itemCount: z.ZodNumber;
|
|
13265
13645
|
boundaryMessageId: z.ZodNullable<z.ZodString>;
|
|
13646
|
+
boundaryCursor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
13647
|
+
epoch: z.ZodString;
|
|
13648
|
+
seq: z.ZodNumber;
|
|
13649
|
+
}, z.core.$strip>>>;
|
|
13266
13650
|
error: z.ZodNullable<z.ZodString>;
|
|
13267
13651
|
}, z.core.$strip>;
|
|
13268
13652
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -13332,6 +13716,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13332
13716
|
archivedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13333
13717
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
13334
13718
|
}, z.core.$strip>>;
|
|
13719
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13335
13720
|
}, z.core.$strip>;
|
|
13336
13721
|
}, z.core.$strip>, z.ZodObject<{
|
|
13337
13722
|
type: z.ZodLiteral<"clear_agent_attention_response">;
|
|
@@ -13424,6 +13809,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13424
13809
|
}>;
|
|
13425
13810
|
name: z.ZodString;
|
|
13426
13811
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13812
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13427
13813
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
13428
13814
|
status: z.ZodEnum<{
|
|
13429
13815
|
running: "running";
|
|
@@ -13627,6 +14013,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13627
14013
|
}[];
|
|
13628
14014
|
projectCustomName?: string | null | undefined;
|
|
13629
14015
|
title?: string | null | undefined;
|
|
14016
|
+
pinnedAt?: string | null | undefined;
|
|
13630
14017
|
diffStat?: {
|
|
13631
14018
|
additions: number;
|
|
13632
14019
|
deletions: number;
|
|
@@ -13731,6 +14118,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
13731
14118
|
projectCustomName?: string | null | undefined;
|
|
13732
14119
|
workspaceDirectory?: string | undefined;
|
|
13733
14120
|
title?: string | null | undefined;
|
|
14121
|
+
pinnedAt?: string | null | undefined;
|
|
13734
14122
|
diffStat?: {
|
|
13735
14123
|
additions: number;
|
|
13736
14124
|
deletions: number;
|
|
@@ -14160,6 +14548,15 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
14160
14548
|
title: z.ZodNullable<z.ZodString>;
|
|
14161
14549
|
error: z.ZodNullable<z.ZodString>;
|
|
14162
14550
|
}, z.core.$strip>;
|
|
14551
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14552
|
+
type: z.ZodLiteral<"workspace.pin.set.response">;
|
|
14553
|
+
payload: z.ZodObject<{
|
|
14554
|
+
requestId: z.ZodString;
|
|
14555
|
+
workspaceId: z.ZodString;
|
|
14556
|
+
accepted: z.ZodBoolean;
|
|
14557
|
+
pinnedAt: z.ZodNullable<z.ZodString>;
|
|
14558
|
+
error: z.ZodNullable<z.ZodString>;
|
|
14559
|
+
}, z.core.$strip>;
|
|
14163
14560
|
}, z.core.$strip>, z.ZodObject<{
|
|
14164
14561
|
type: z.ZodLiteral<"wait_for_finish_response">;
|
|
14165
14562
|
payload: z.ZodObject<{
|
|
@@ -15111,6 +15508,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15111
15508
|
}>;
|
|
15112
15509
|
name: z.ZodString;
|
|
15113
15510
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15511
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15114
15512
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
15115
15513
|
status: z.ZodEnum<{
|
|
15116
15514
|
running: "running";
|
|
@@ -15314,6 +15712,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15314
15712
|
}[];
|
|
15315
15713
|
projectCustomName?: string | null | undefined;
|
|
15316
15714
|
title?: string | null | undefined;
|
|
15715
|
+
pinnedAt?: string | null | undefined;
|
|
15317
15716
|
diffStat?: {
|
|
15318
15717
|
additions: number;
|
|
15319
15718
|
deletions: number;
|
|
@@ -15418,6 +15817,7 @@ export declare const SessionOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
15418
15817
|
projectCustomName?: string | null | undefined;
|
|
15419
15818
|
workspaceDirectory?: string | undefined;
|
|
15420
15819
|
title?: string | null | undefined;
|
|
15820
|
+
pinnedAt?: string | null | undefined;
|
|
15421
15821
|
diffStat?: {
|
|
15422
15822
|
additions: number;
|
|
15423
15823
|
deletions: number;
|
|
@@ -16961,8 +17361,12 @@ export type FetchAgentHistoryResponseMessage = z.infer<typeof FetchAgentHistoryR
|
|
|
16961
17361
|
export type FetchRecentProviderSessionsResponseMessage = z.infer<typeof FetchRecentProviderSessionsResponseMessageSchema>;
|
|
16962
17362
|
export type FetchWorkspacesResponseMessage = z.infer<typeof FetchWorkspacesResponseMessageSchema>;
|
|
16963
17363
|
export type ProjectAddResponse = z.infer<typeof ProjectAddResponseSchema>;
|
|
17364
|
+
export type ProjectCreateDirectoryResponse = z.infer<typeof ProjectCreateDirectoryResponseSchema>;
|
|
16964
17365
|
export type ScriptStatusUpdateMessage = z.infer<typeof ScriptStatusUpdateMessageSchema>;
|
|
16965
17366
|
export type OpenProjectResponseMessage = z.infer<typeof OpenProjectResponseMessageSchema>;
|
|
17367
|
+
export type WorkspaceGithubSearchRepositoriesResponse = z.infer<typeof WorkspaceGithubSearchRepositoriesResponseSchema>;
|
|
17368
|
+
export type GithubRepository = z.infer<typeof GithubRepositorySchema>;
|
|
17369
|
+
export type ProjectGithubCloneResponse = z.infer<typeof ProjectGithubCloneResponseSchema>;
|
|
16966
17370
|
export type StartWorkspaceScriptResponseMessage = z.infer<typeof StartWorkspaceScriptResponseMessageSchema>;
|
|
16967
17371
|
export type LegacyListAvailableEditorsResponseMessage = z.infer<typeof LegacyListAvailableEditorsResponseMessageSchema>;
|
|
16968
17372
|
export type LegacyOpenInEditorResponseMessage = z.infer<typeof LegacyOpenInEditorResponseMessageSchema>;
|
|
@@ -16984,6 +17388,8 @@ export type ProjectRenameResponse = z.infer<typeof ProjectRenameResponseSchema>;
|
|
|
16984
17388
|
export type ProjectRemoveResponse = z.infer<typeof ProjectRemoveResponseSchema>;
|
|
16985
17389
|
export type WorkspaceTitleSetResponse = z.infer<typeof WorkspaceTitleSetResponseSchema>;
|
|
16986
17390
|
export type WorkspaceTitleSetResponsePayload = z.infer<typeof WorkspaceTitleSetResponsePayloadSchema>;
|
|
17391
|
+
export type WorkspacePinSetResponse = z.infer<typeof WorkspacePinSetResponseSchema>;
|
|
17392
|
+
export type WorkspacePinSetResponsePayload = z.infer<typeof WorkspacePinSetResponsePayloadSchema>;
|
|
16987
17393
|
export type WorkspaceCreateRequest = z.infer<typeof WorkspaceCreateRequestSchema>;
|
|
16988
17394
|
export type WorkspaceCreateResponse = z.infer<typeof WorkspaceCreateResponseSchema>;
|
|
16989
17395
|
export type ProjectRenameResponsePayload = z.infer<typeof ProjectRenameResponsePayloadSchema>;
|
|
@@ -17084,6 +17490,7 @@ export type UpdateAgentRequestMessage = z.infer<typeof UpdateAgentRequestMessage
|
|
|
17084
17490
|
export type ProjectRenameRequest = z.infer<typeof ProjectRenameRequestSchema>;
|
|
17085
17491
|
export type ProjectRemoveRequest = z.infer<typeof ProjectRemoveRequestSchema>;
|
|
17086
17492
|
export type WorkspaceTitleSetRequest = z.infer<typeof WorkspaceTitleSetRequestSchema>;
|
|
17493
|
+
export type WorkspacePinSetRequest = z.infer<typeof WorkspacePinSetRequestSchema>;
|
|
17087
17494
|
export type SetAgentModeRequestMessage = z.infer<typeof SetAgentModeRequestMessageSchema>;
|
|
17088
17495
|
export type SetAgentModelRequestMessage = z.infer<typeof SetAgentModelRequestMessageSchema>;
|
|
17089
17496
|
export type SetAgentThinkingRequestMessage = z.infer<typeof SetAgentThinkingRequestMessageSchema>;
|
|
@@ -17156,6 +17563,11 @@ export type LegacyListAvailableEditorsRequest = z.infer<typeof LegacyListAvailab
|
|
|
17156
17563
|
export type LegacyOpenInEditorRequest = z.infer<typeof LegacyOpenInEditorRequestSchema>;
|
|
17157
17564
|
export type OpenProjectRequest = z.infer<typeof OpenProjectRequestSchema>;
|
|
17158
17565
|
export type ProjectAddRequest = z.infer<typeof ProjectAddRequestSchema>;
|
|
17566
|
+
export type ProjectCreateDirectoryRequest = z.infer<typeof ProjectCreateDirectoryRequestSchema>;
|
|
17567
|
+
export type ProjectCreateDirectoryErrorCode = z.infer<typeof ProjectCreateDirectoryErrorCodeSchema>;
|
|
17568
|
+
export type WorkspaceGithubSearchRepositoriesRequest = z.infer<typeof WorkspaceGithubSearchRepositoriesRequestSchema>;
|
|
17569
|
+
export type ProjectGithubCloneRequest = z.infer<typeof ProjectGithubCloneRequestSchema>;
|
|
17570
|
+
export type ProjectGithubCloneProtocol = z.infer<typeof ProjectGithubCloneProtocolSchema>;
|
|
17159
17571
|
export type ArchiveWorkspaceRequest = z.infer<typeof ArchiveWorkspaceRequestSchema>;
|
|
17160
17572
|
export type WorkspaceClearAttentionRequest = z.infer<typeof WorkspaceClearAttentionRequestSchema>;
|
|
17161
17573
|
export type FileExplorerRequest = z.infer<typeof FileExplorerRequestSchema>;
|
|
@@ -17596,6 +18008,11 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
17596
18008
|
workspaceId: z.ZodString;
|
|
17597
18009
|
title: z.ZodNullable<z.ZodString>;
|
|
17598
18010
|
requestId: z.ZodString;
|
|
18011
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18012
|
+
type: z.ZodLiteral<"workspace.pin.set.request">;
|
|
18013
|
+
workspaceId: z.ZodString;
|
|
18014
|
+
pinned: z.ZodBoolean;
|
|
18015
|
+
requestId: z.ZodString;
|
|
17599
18016
|
}, z.core.$strip>, z.ZodObject<{
|
|
17600
18017
|
type: z.ZodLiteral<"set_voice_mode">;
|
|
17601
18018
|
enabled: z.ZodBoolean;
|
|
@@ -18054,6 +18471,10 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18054
18471
|
}, z.core.$strip>, z.ZodObject<{
|
|
18055
18472
|
type: z.ZodLiteral<"agent.fork_context.request">;
|
|
18056
18473
|
agentId: z.ZodString;
|
|
18474
|
+
boundaryCursor: z.ZodOptional<z.ZodObject<{
|
|
18475
|
+
epoch: z.ZodString;
|
|
18476
|
+
seq: z.ZodNumber;
|
|
18477
|
+
}, z.core.$strip>>;
|
|
18057
18478
|
boundaryMessageId: z.ZodOptional<z.ZodString>;
|
|
18058
18479
|
requestId: z.ZodString;
|
|
18059
18480
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -18425,6 +18846,25 @@ export declare const WSSessionInboundSchema: z.ZodObject<{
|
|
|
18425
18846
|
type: z.ZodLiteral<"project.add.request">;
|
|
18426
18847
|
cwd: z.ZodString;
|
|
18427
18848
|
requestId: z.ZodString;
|
|
18849
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18850
|
+
type: z.ZodLiteral<"project.create_directory.request">;
|
|
18851
|
+
parentPath: z.ZodString;
|
|
18852
|
+
name: z.ZodString;
|
|
18853
|
+
requestId: z.ZodString;
|
|
18854
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18855
|
+
type: z.ZodLiteral<"workspace.github.search_repositories.request">;
|
|
18856
|
+
query: z.ZodString;
|
|
18857
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
18858
|
+
requestId: z.ZodString;
|
|
18859
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18860
|
+
type: z.ZodLiteral<"project.github.clone.request">;
|
|
18861
|
+
repo: z.ZodString;
|
|
18862
|
+
cloneProtocol: z.ZodOptional<z.ZodEnum<{
|
|
18863
|
+
https: "https";
|
|
18864
|
+
ssh: "ssh";
|
|
18865
|
+
}>>;
|
|
18866
|
+
targetDirectory: z.ZodString;
|
|
18867
|
+
requestId: z.ZodString;
|
|
18428
18868
|
}, z.core.$strip>, z.ZodObject<{
|
|
18429
18869
|
type: z.ZodLiteral<"archive_workspace_request">;
|
|
18430
18870
|
workspaceId: z.ZodString;
|
|
@@ -19287,6 +19727,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
19287
19727
|
}>;
|
|
19288
19728
|
name: z.ZodString;
|
|
19289
19729
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19730
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19290
19731
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
19291
19732
|
status: z.ZodEnum<{
|
|
19292
19733
|
running: "running";
|
|
@@ -19490,6 +19931,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
19490
19931
|
}[];
|
|
19491
19932
|
projectCustomName?: string | null | undefined;
|
|
19492
19933
|
title?: string | null | undefined;
|
|
19934
|
+
pinnedAt?: string | null | undefined;
|
|
19493
19935
|
diffStat?: {
|
|
19494
19936
|
additions: number;
|
|
19495
19937
|
deletions: number;
|
|
@@ -19594,6 +20036,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
19594
20036
|
projectCustomName?: string | null | undefined;
|
|
19595
20037
|
workspaceDirectory?: string | undefined;
|
|
19596
20038
|
title?: string | null | undefined;
|
|
20039
|
+
pinnedAt?: string | null | undefined;
|
|
19597
20040
|
diffStat?: {
|
|
19598
20041
|
additions: number;
|
|
19599
20042
|
deletions: number;
|
|
@@ -20259,6 +20702,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20259
20702
|
}>;
|
|
20260
20703
|
name: z.ZodString;
|
|
20261
20704
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20705
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20262
20706
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20263
20707
|
status: z.ZodEnum<{
|
|
20264
20708
|
running: "running";
|
|
@@ -20462,6 +20906,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20462
20906
|
}[];
|
|
20463
20907
|
projectCustomName?: string | null | undefined;
|
|
20464
20908
|
title?: string | null | undefined;
|
|
20909
|
+
pinnedAt?: string | null | undefined;
|
|
20465
20910
|
diffStat?: {
|
|
20466
20911
|
additions: number;
|
|
20467
20912
|
deletions: number;
|
|
@@ -20566,6 +21011,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20566
21011
|
projectCustomName?: string | null | undefined;
|
|
20567
21012
|
workspaceDirectory?: string | undefined;
|
|
20568
21013
|
title?: string | null | undefined;
|
|
21014
|
+
pinnedAt?: string | null | undefined;
|
|
20569
21015
|
diffStat?: {
|
|
20570
21016
|
additions: number;
|
|
20571
21017
|
deletions: number;
|
|
@@ -20680,6 +21126,25 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20680
21126
|
directory_not_found: "directory_not_found";
|
|
20681
21127
|
}>>>>;
|
|
20682
21128
|
}, z.core.$strip>;
|
|
21129
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21130
|
+
type: z.ZodLiteral<"project.create_directory.response">;
|
|
21131
|
+
payload: z.ZodObject<{
|
|
21132
|
+
requestId: z.ZodString;
|
|
21133
|
+
directoryPath: z.ZodNullable<z.ZodString>;
|
|
21134
|
+
project: z.ZodNullable<z.ZodObject<{
|
|
21135
|
+
projectId: z.ZodString;
|
|
21136
|
+
projectDisplayName: z.ZodString;
|
|
21137
|
+
projectCustomName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21138
|
+
projectRootPath: z.ZodString;
|
|
21139
|
+
projectKind: z.ZodEnum<{
|
|
21140
|
+
git: "git";
|
|
21141
|
+
directory: "directory";
|
|
21142
|
+
non_git: "non_git";
|
|
21143
|
+
}>;
|
|
21144
|
+
}, z.core.$strip>>;
|
|
21145
|
+
error: z.ZodNullable<z.ZodString>;
|
|
21146
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
21147
|
+
}, z.core.$strip>;
|
|
20683
21148
|
}, z.core.$strip>, z.ZodObject<{
|
|
20684
21149
|
type: z.ZodLiteral<"open_project_response">;
|
|
20685
21150
|
payload: z.ZodObject<{
|
|
@@ -20704,6 +21169,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20704
21169
|
}>;
|
|
20705
21170
|
name: z.ZodString;
|
|
20706
21171
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21172
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20707
21173
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
20708
21174
|
status: z.ZodEnum<{
|
|
20709
21175
|
running: "running";
|
|
@@ -20907,6 +21373,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
20907
21373
|
}[];
|
|
20908
21374
|
projectCustomName?: string | null | undefined;
|
|
20909
21375
|
title?: string | null | undefined;
|
|
21376
|
+
pinnedAt?: string | null | undefined;
|
|
20910
21377
|
diffStat?: {
|
|
20911
21378
|
additions: number;
|
|
20912
21379
|
deletions: number;
|
|
@@ -21011,6 +21478,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21011
21478
|
projectCustomName?: string | null | undefined;
|
|
21012
21479
|
workspaceDirectory?: string | undefined;
|
|
21013
21480
|
title?: string | null | undefined;
|
|
21481
|
+
pinnedAt?: string | null | undefined;
|
|
21014
21482
|
diffStat?: {
|
|
21015
21483
|
additions: number;
|
|
21016
21484
|
deletions: number;
|
|
@@ -21093,6 +21561,101 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21093
21561
|
directory_not_found: "directory_not_found";
|
|
21094
21562
|
}>>>>;
|
|
21095
21563
|
}, z.core.$strip>;
|
|
21564
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21565
|
+
type: z.ZodLiteral<"workspace.github.search_repositories.response">;
|
|
21566
|
+
payload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
21567
|
+
status: z.ZodLiteral<"success">;
|
|
21568
|
+
requestId: z.ZodString;
|
|
21569
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
21570
|
+
id: z.ZodString;
|
|
21571
|
+
name: z.ZodString;
|
|
21572
|
+
nameWithOwner: z.ZodString;
|
|
21573
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21574
|
+
visibility: z.ZodEnum<{
|
|
21575
|
+
public: "public";
|
|
21576
|
+
private: "private";
|
|
21577
|
+
internal: "internal";
|
|
21578
|
+
}>;
|
|
21579
|
+
updatedAt: z.ZodString;
|
|
21580
|
+
cloneUrl: z.ZodString;
|
|
21581
|
+
}, z.core.$strip>>;
|
|
21582
|
+
available: z.ZodLiteral<true>;
|
|
21583
|
+
error: z.ZodNull;
|
|
21584
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21585
|
+
status: z.ZodLiteral<"unavailable">;
|
|
21586
|
+
requestId: z.ZodString;
|
|
21587
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
21588
|
+
id: z.ZodString;
|
|
21589
|
+
name: z.ZodString;
|
|
21590
|
+
nameWithOwner: z.ZodString;
|
|
21591
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21592
|
+
visibility: z.ZodEnum<{
|
|
21593
|
+
public: "public";
|
|
21594
|
+
private: "private";
|
|
21595
|
+
internal: "internal";
|
|
21596
|
+
}>;
|
|
21597
|
+
updatedAt: z.ZodString;
|
|
21598
|
+
cloneUrl: z.ZodString;
|
|
21599
|
+
}, z.core.$strip>>;
|
|
21600
|
+
reason: z.ZodLiteral<"gh_missing">;
|
|
21601
|
+
available: z.ZodLiteral<false>;
|
|
21602
|
+
error: z.ZodString;
|
|
21603
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21604
|
+
status: z.ZodLiteral<"unauthenticated">;
|
|
21605
|
+
requestId: z.ZodString;
|
|
21606
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
21607
|
+
id: z.ZodString;
|
|
21608
|
+
name: z.ZodString;
|
|
21609
|
+
nameWithOwner: z.ZodString;
|
|
21610
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21611
|
+
visibility: z.ZodEnum<{
|
|
21612
|
+
public: "public";
|
|
21613
|
+
private: "private";
|
|
21614
|
+
internal: "internal";
|
|
21615
|
+
}>;
|
|
21616
|
+
updatedAt: z.ZodString;
|
|
21617
|
+
cloneUrl: z.ZodString;
|
|
21618
|
+
}, z.core.$strip>>;
|
|
21619
|
+
available: z.ZodLiteral<false>;
|
|
21620
|
+
error: z.ZodString;
|
|
21621
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21622
|
+
status: z.ZodLiteral<"error">;
|
|
21623
|
+
requestId: z.ZodString;
|
|
21624
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
21625
|
+
id: z.ZodString;
|
|
21626
|
+
name: z.ZodString;
|
|
21627
|
+
nameWithOwner: z.ZodString;
|
|
21628
|
+
description: z.ZodNullable<z.ZodString>;
|
|
21629
|
+
visibility: z.ZodEnum<{
|
|
21630
|
+
public: "public";
|
|
21631
|
+
private: "private";
|
|
21632
|
+
internal: "internal";
|
|
21633
|
+
}>;
|
|
21634
|
+
updatedAt: z.ZodString;
|
|
21635
|
+
cloneUrl: z.ZodString;
|
|
21636
|
+
}, z.core.$strip>>;
|
|
21637
|
+
available: z.ZodLiteral<true>;
|
|
21638
|
+
error: z.ZodString;
|
|
21639
|
+
}, z.core.$strip>], "status">;
|
|
21640
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
21641
|
+
type: z.ZodLiteral<"project.github.clone.response">;
|
|
21642
|
+
payload: z.ZodObject<{
|
|
21643
|
+
requestId: z.ZodString;
|
|
21644
|
+
repo: z.ZodString;
|
|
21645
|
+
checkoutPath: z.ZodNullable<z.ZodString>;
|
|
21646
|
+
project: z.ZodNullable<z.ZodObject<{
|
|
21647
|
+
projectId: z.ZodString;
|
|
21648
|
+
projectDisplayName: z.ZodString;
|
|
21649
|
+
projectCustomName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21650
|
+
projectRootPath: z.ZodString;
|
|
21651
|
+
projectKind: z.ZodEnum<{
|
|
21652
|
+
git: "git";
|
|
21653
|
+
directory: "directory";
|
|
21654
|
+
non_git: "non_git";
|
|
21655
|
+
}>;
|
|
21656
|
+
}, z.core.$strip>>;
|
|
21657
|
+
error: z.ZodNullable<z.ZodString>;
|
|
21658
|
+
}, z.core.$strip>;
|
|
21096
21659
|
}, z.core.$strip>, z.ZodObject<{
|
|
21097
21660
|
type: z.ZodLiteral<"start_workspace_script_response">;
|
|
21098
21661
|
payload: z.ZodObject<{
|
|
@@ -21500,6 +22063,10 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21500
22063
|
}>>>;
|
|
21501
22064
|
itemCount: z.ZodNumber;
|
|
21502
22065
|
boundaryMessageId: z.ZodNullable<z.ZodString>;
|
|
22066
|
+
boundaryCursor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
22067
|
+
epoch: z.ZodString;
|
|
22068
|
+
seq: z.ZodNumber;
|
|
22069
|
+
}, z.core.$strip>>>;
|
|
21503
22070
|
error: z.ZodNullable<z.ZodString>;
|
|
21504
22071
|
}, z.core.$strip>;
|
|
21505
22072
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -21569,6 +22136,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21569
22136
|
archivedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21570
22137
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
21571
22138
|
}, z.core.$strip>>;
|
|
22139
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21572
22140
|
}, z.core.$strip>;
|
|
21573
22141
|
}, z.core.$strip>, z.ZodObject<{
|
|
21574
22142
|
type: z.ZodLiteral<"clear_agent_attention_response">;
|
|
@@ -21661,6 +22229,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21661
22229
|
}>;
|
|
21662
22230
|
name: z.ZodString;
|
|
21663
22231
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22232
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21664
22233
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
21665
22234
|
status: z.ZodEnum<{
|
|
21666
22235
|
running: "running";
|
|
@@ -21864,6 +22433,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21864
22433
|
}[];
|
|
21865
22434
|
projectCustomName?: string | null | undefined;
|
|
21866
22435
|
title?: string | null | undefined;
|
|
22436
|
+
pinnedAt?: string | null | undefined;
|
|
21867
22437
|
diffStat?: {
|
|
21868
22438
|
additions: number;
|
|
21869
22439
|
deletions: number;
|
|
@@ -21968,6 +22538,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
21968
22538
|
projectCustomName?: string | null | undefined;
|
|
21969
22539
|
workspaceDirectory?: string | undefined;
|
|
21970
22540
|
title?: string | null | undefined;
|
|
22541
|
+
pinnedAt?: string | null | undefined;
|
|
21971
22542
|
diffStat?: {
|
|
21972
22543
|
additions: number;
|
|
21973
22544
|
deletions: number;
|
|
@@ -22397,6 +22968,15 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
22397
22968
|
title: z.ZodNullable<z.ZodString>;
|
|
22398
22969
|
error: z.ZodNullable<z.ZodString>;
|
|
22399
22970
|
}, z.core.$strip>;
|
|
22971
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22972
|
+
type: z.ZodLiteral<"workspace.pin.set.response">;
|
|
22973
|
+
payload: z.ZodObject<{
|
|
22974
|
+
requestId: z.ZodString;
|
|
22975
|
+
workspaceId: z.ZodString;
|
|
22976
|
+
accepted: z.ZodBoolean;
|
|
22977
|
+
pinnedAt: z.ZodNullable<z.ZodString>;
|
|
22978
|
+
error: z.ZodNullable<z.ZodString>;
|
|
22979
|
+
}, z.core.$strip>;
|
|
22400
22980
|
}, z.core.$strip>, z.ZodObject<{
|
|
22401
22981
|
type: z.ZodLiteral<"wait_for_finish_response">;
|
|
22402
22982
|
payload: z.ZodObject<{
|
|
@@ -23348,6 +23928,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23348
23928
|
}>;
|
|
23349
23929
|
name: z.ZodString;
|
|
23350
23930
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23931
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23351
23932
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
23352
23933
|
status: z.ZodEnum<{
|
|
23353
23934
|
running: "running";
|
|
@@ -23551,6 +24132,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23551
24132
|
}[];
|
|
23552
24133
|
projectCustomName?: string | null | undefined;
|
|
23553
24134
|
title?: string | null | undefined;
|
|
24135
|
+
pinnedAt?: string | null | undefined;
|
|
23554
24136
|
diffStat?: {
|
|
23555
24137
|
additions: number;
|
|
23556
24138
|
deletions: number;
|
|
@@ -23655,6 +24237,7 @@ export declare const WSSessionOutboundSchema: z.ZodObject<{
|
|
|
23655
24237
|
projectCustomName?: string | null | undefined;
|
|
23656
24238
|
workspaceDirectory?: string | undefined;
|
|
23657
24239
|
title?: string | null | undefined;
|
|
24240
|
+
pinnedAt?: string | null | undefined;
|
|
23658
24241
|
diffStat?: {
|
|
23659
24242
|
additions: number;
|
|
23660
24243
|
deletions: number;
|
|
@@ -25557,6 +26140,11 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
25557
26140
|
workspaceId: z.ZodString;
|
|
25558
26141
|
title: z.ZodNullable<z.ZodString>;
|
|
25559
26142
|
requestId: z.ZodString;
|
|
26143
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26144
|
+
type: z.ZodLiteral<"workspace.pin.set.request">;
|
|
26145
|
+
workspaceId: z.ZodString;
|
|
26146
|
+
pinned: z.ZodBoolean;
|
|
26147
|
+
requestId: z.ZodString;
|
|
25560
26148
|
}, z.core.$strip>, z.ZodObject<{
|
|
25561
26149
|
type: z.ZodLiteral<"set_voice_mode">;
|
|
25562
26150
|
enabled: z.ZodBoolean;
|
|
@@ -26015,6 +26603,10 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26015
26603
|
}, z.core.$strip>, z.ZodObject<{
|
|
26016
26604
|
type: z.ZodLiteral<"agent.fork_context.request">;
|
|
26017
26605
|
agentId: z.ZodString;
|
|
26606
|
+
boundaryCursor: z.ZodOptional<z.ZodObject<{
|
|
26607
|
+
epoch: z.ZodString;
|
|
26608
|
+
seq: z.ZodNumber;
|
|
26609
|
+
}, z.core.$strip>>;
|
|
26018
26610
|
boundaryMessageId: z.ZodOptional<z.ZodString>;
|
|
26019
26611
|
requestId: z.ZodString;
|
|
26020
26612
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -26386,6 +26978,25 @@ export declare const WSInboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObjec
|
|
|
26386
26978
|
type: z.ZodLiteral<"project.add.request">;
|
|
26387
26979
|
cwd: z.ZodString;
|
|
26388
26980
|
requestId: z.ZodString;
|
|
26981
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26982
|
+
type: z.ZodLiteral<"project.create_directory.request">;
|
|
26983
|
+
parentPath: z.ZodString;
|
|
26984
|
+
name: z.ZodString;
|
|
26985
|
+
requestId: z.ZodString;
|
|
26986
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26987
|
+
type: z.ZodLiteral<"workspace.github.search_repositories.request">;
|
|
26988
|
+
query: z.ZodString;
|
|
26989
|
+
limit: z.ZodOptional<z.ZodNumber>;
|
|
26990
|
+
requestId: z.ZodString;
|
|
26991
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
26992
|
+
type: z.ZodLiteral<"project.github.clone.request">;
|
|
26993
|
+
repo: z.ZodString;
|
|
26994
|
+
cloneProtocol: z.ZodOptional<z.ZodEnum<{
|
|
26995
|
+
https: "https";
|
|
26996
|
+
ssh: "ssh";
|
|
26997
|
+
}>>;
|
|
26998
|
+
targetDirectory: z.ZodString;
|
|
26999
|
+
requestId: z.ZodString;
|
|
26389
27000
|
}, z.core.$strip>, z.ZodObject<{
|
|
26390
27001
|
type: z.ZodLiteral<"archive_workspace_request">;
|
|
26391
27002
|
workspaceId: z.ZodString;
|
|
@@ -27250,6 +27861,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
27250
27861
|
}>;
|
|
27251
27862
|
name: z.ZodString;
|
|
27252
27863
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27864
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
27253
27865
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
27254
27866
|
status: z.ZodEnum<{
|
|
27255
27867
|
running: "running";
|
|
@@ -27453,6 +28065,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
27453
28065
|
}[];
|
|
27454
28066
|
projectCustomName?: string | null | undefined;
|
|
27455
28067
|
title?: string | null | undefined;
|
|
28068
|
+
pinnedAt?: string | null | undefined;
|
|
27456
28069
|
diffStat?: {
|
|
27457
28070
|
additions: number;
|
|
27458
28071
|
deletions: number;
|
|
@@ -27557,6 +28170,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
27557
28170
|
projectCustomName?: string | null | undefined;
|
|
27558
28171
|
workspaceDirectory?: string | undefined;
|
|
27559
28172
|
title?: string | null | undefined;
|
|
28173
|
+
pinnedAt?: string | null | undefined;
|
|
27560
28174
|
diffStat?: {
|
|
27561
28175
|
additions: number;
|
|
27562
28176
|
deletions: number;
|
|
@@ -28222,6 +28836,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28222
28836
|
}>;
|
|
28223
28837
|
name: z.ZodString;
|
|
28224
28838
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28839
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28225
28840
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
28226
28841
|
status: z.ZodEnum<{
|
|
28227
28842
|
running: "running";
|
|
@@ -28425,6 +29040,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28425
29040
|
}[];
|
|
28426
29041
|
projectCustomName?: string | null | undefined;
|
|
28427
29042
|
title?: string | null | undefined;
|
|
29043
|
+
pinnedAt?: string | null | undefined;
|
|
28428
29044
|
diffStat?: {
|
|
28429
29045
|
additions: number;
|
|
28430
29046
|
deletions: number;
|
|
@@ -28529,6 +29145,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28529
29145
|
projectCustomName?: string | null | undefined;
|
|
28530
29146
|
workspaceDirectory?: string | undefined;
|
|
28531
29147
|
title?: string | null | undefined;
|
|
29148
|
+
pinnedAt?: string | null | undefined;
|
|
28532
29149
|
diffStat?: {
|
|
28533
29150
|
additions: number;
|
|
28534
29151
|
deletions: number;
|
|
@@ -28643,6 +29260,25 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28643
29260
|
directory_not_found: "directory_not_found";
|
|
28644
29261
|
}>>>>;
|
|
28645
29262
|
}, z.core.$strip>;
|
|
29263
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29264
|
+
type: z.ZodLiteral<"project.create_directory.response">;
|
|
29265
|
+
payload: z.ZodObject<{
|
|
29266
|
+
requestId: z.ZodString;
|
|
29267
|
+
directoryPath: z.ZodNullable<z.ZodString>;
|
|
29268
|
+
project: z.ZodNullable<z.ZodObject<{
|
|
29269
|
+
projectId: z.ZodString;
|
|
29270
|
+
projectDisplayName: z.ZodString;
|
|
29271
|
+
projectCustomName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29272
|
+
projectRootPath: z.ZodString;
|
|
29273
|
+
projectKind: z.ZodEnum<{
|
|
29274
|
+
git: "git";
|
|
29275
|
+
directory: "directory";
|
|
29276
|
+
non_git: "non_git";
|
|
29277
|
+
}>;
|
|
29278
|
+
}, z.core.$strip>>;
|
|
29279
|
+
error: z.ZodNullable<z.ZodString>;
|
|
29280
|
+
errorCode: z.ZodNullable<z.ZodString>;
|
|
29281
|
+
}, z.core.$strip>;
|
|
28646
29282
|
}, z.core.$strip>, z.ZodObject<{
|
|
28647
29283
|
type: z.ZodLiteral<"open_project_response">;
|
|
28648
29284
|
payload: z.ZodObject<{
|
|
@@ -28667,6 +29303,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28667
29303
|
}>;
|
|
28668
29304
|
name: z.ZodString;
|
|
28669
29305
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29306
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
28670
29307
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
28671
29308
|
status: z.ZodEnum<{
|
|
28672
29309
|
running: "running";
|
|
@@ -28870,6 +29507,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28870
29507
|
}[];
|
|
28871
29508
|
projectCustomName?: string | null | undefined;
|
|
28872
29509
|
title?: string | null | undefined;
|
|
29510
|
+
pinnedAt?: string | null | undefined;
|
|
28873
29511
|
diffStat?: {
|
|
28874
29512
|
additions: number;
|
|
28875
29513
|
deletions: number;
|
|
@@ -28974,6 +29612,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
28974
29612
|
projectCustomName?: string | null | undefined;
|
|
28975
29613
|
workspaceDirectory?: string | undefined;
|
|
28976
29614
|
title?: string | null | undefined;
|
|
29615
|
+
pinnedAt?: string | null | undefined;
|
|
28977
29616
|
diffStat?: {
|
|
28978
29617
|
additions: number;
|
|
28979
29618
|
deletions: number;
|
|
@@ -29056,6 +29695,101 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29056
29695
|
directory_not_found: "directory_not_found";
|
|
29057
29696
|
}>>>>;
|
|
29058
29697
|
}, z.core.$strip>;
|
|
29698
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29699
|
+
type: z.ZodLiteral<"workspace.github.search_repositories.response">;
|
|
29700
|
+
payload: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
29701
|
+
status: z.ZodLiteral<"success">;
|
|
29702
|
+
requestId: z.ZodString;
|
|
29703
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
29704
|
+
id: z.ZodString;
|
|
29705
|
+
name: z.ZodString;
|
|
29706
|
+
nameWithOwner: z.ZodString;
|
|
29707
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29708
|
+
visibility: z.ZodEnum<{
|
|
29709
|
+
public: "public";
|
|
29710
|
+
private: "private";
|
|
29711
|
+
internal: "internal";
|
|
29712
|
+
}>;
|
|
29713
|
+
updatedAt: z.ZodString;
|
|
29714
|
+
cloneUrl: z.ZodString;
|
|
29715
|
+
}, z.core.$strip>>;
|
|
29716
|
+
available: z.ZodLiteral<true>;
|
|
29717
|
+
error: z.ZodNull;
|
|
29718
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29719
|
+
status: z.ZodLiteral<"unavailable">;
|
|
29720
|
+
requestId: z.ZodString;
|
|
29721
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
29722
|
+
id: z.ZodString;
|
|
29723
|
+
name: z.ZodString;
|
|
29724
|
+
nameWithOwner: z.ZodString;
|
|
29725
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29726
|
+
visibility: z.ZodEnum<{
|
|
29727
|
+
public: "public";
|
|
29728
|
+
private: "private";
|
|
29729
|
+
internal: "internal";
|
|
29730
|
+
}>;
|
|
29731
|
+
updatedAt: z.ZodString;
|
|
29732
|
+
cloneUrl: z.ZodString;
|
|
29733
|
+
}, z.core.$strip>>;
|
|
29734
|
+
reason: z.ZodLiteral<"gh_missing">;
|
|
29735
|
+
available: z.ZodLiteral<false>;
|
|
29736
|
+
error: z.ZodString;
|
|
29737
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29738
|
+
status: z.ZodLiteral<"unauthenticated">;
|
|
29739
|
+
requestId: z.ZodString;
|
|
29740
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
29741
|
+
id: z.ZodString;
|
|
29742
|
+
name: z.ZodString;
|
|
29743
|
+
nameWithOwner: z.ZodString;
|
|
29744
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29745
|
+
visibility: z.ZodEnum<{
|
|
29746
|
+
public: "public";
|
|
29747
|
+
private: "private";
|
|
29748
|
+
internal: "internal";
|
|
29749
|
+
}>;
|
|
29750
|
+
updatedAt: z.ZodString;
|
|
29751
|
+
cloneUrl: z.ZodString;
|
|
29752
|
+
}, z.core.$strip>>;
|
|
29753
|
+
available: z.ZodLiteral<false>;
|
|
29754
|
+
error: z.ZodString;
|
|
29755
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29756
|
+
status: z.ZodLiteral<"error">;
|
|
29757
|
+
requestId: z.ZodString;
|
|
29758
|
+
repositories: z.ZodArray<z.ZodObject<{
|
|
29759
|
+
id: z.ZodString;
|
|
29760
|
+
name: z.ZodString;
|
|
29761
|
+
nameWithOwner: z.ZodString;
|
|
29762
|
+
description: z.ZodNullable<z.ZodString>;
|
|
29763
|
+
visibility: z.ZodEnum<{
|
|
29764
|
+
public: "public";
|
|
29765
|
+
private: "private";
|
|
29766
|
+
internal: "internal";
|
|
29767
|
+
}>;
|
|
29768
|
+
updatedAt: z.ZodString;
|
|
29769
|
+
cloneUrl: z.ZodString;
|
|
29770
|
+
}, z.core.$strip>>;
|
|
29771
|
+
available: z.ZodLiteral<true>;
|
|
29772
|
+
error: z.ZodString;
|
|
29773
|
+
}, z.core.$strip>], "status">;
|
|
29774
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29775
|
+
type: z.ZodLiteral<"project.github.clone.response">;
|
|
29776
|
+
payload: z.ZodObject<{
|
|
29777
|
+
requestId: z.ZodString;
|
|
29778
|
+
repo: z.ZodString;
|
|
29779
|
+
checkoutPath: z.ZodNullable<z.ZodString>;
|
|
29780
|
+
project: z.ZodNullable<z.ZodObject<{
|
|
29781
|
+
projectId: z.ZodString;
|
|
29782
|
+
projectDisplayName: z.ZodString;
|
|
29783
|
+
projectCustomName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29784
|
+
projectRootPath: z.ZodString;
|
|
29785
|
+
projectKind: z.ZodEnum<{
|
|
29786
|
+
git: "git";
|
|
29787
|
+
directory: "directory";
|
|
29788
|
+
non_git: "non_git";
|
|
29789
|
+
}>;
|
|
29790
|
+
}, z.core.$strip>>;
|
|
29791
|
+
error: z.ZodNullable<z.ZodString>;
|
|
29792
|
+
}, z.core.$strip>;
|
|
29059
29793
|
}, z.core.$strip>, z.ZodObject<{
|
|
29060
29794
|
type: z.ZodLiteral<"start_workspace_script_response">;
|
|
29061
29795
|
payload: z.ZodObject<{
|
|
@@ -29463,6 +30197,10 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29463
30197
|
}>>>;
|
|
29464
30198
|
itemCount: z.ZodNumber;
|
|
29465
30199
|
boundaryMessageId: z.ZodNullable<z.ZodString>;
|
|
30200
|
+
boundaryCursor: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
30201
|
+
epoch: z.ZodString;
|
|
30202
|
+
seq: z.ZodNumber;
|
|
30203
|
+
}, z.core.$strip>>>;
|
|
29466
30204
|
error: z.ZodNullable<z.ZodString>;
|
|
29467
30205
|
}, z.core.$strip>;
|
|
29468
30206
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -29532,6 +30270,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29532
30270
|
archivedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29533
30271
|
providerUnavailable: z.ZodOptional<z.ZodBoolean>;
|
|
29534
30272
|
}, z.core.$strip>>;
|
|
30273
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29535
30274
|
}, z.core.$strip>;
|
|
29536
30275
|
}, z.core.$strip>, z.ZodObject<{
|
|
29537
30276
|
type: z.ZodLiteral<"clear_agent_attention_response">;
|
|
@@ -29624,6 +30363,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29624
30363
|
}>;
|
|
29625
30364
|
name: z.ZodString;
|
|
29626
30365
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30366
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29627
30367
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
29628
30368
|
status: z.ZodEnum<{
|
|
29629
30369
|
running: "running";
|
|
@@ -29827,6 +30567,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29827
30567
|
}[];
|
|
29828
30568
|
projectCustomName?: string | null | undefined;
|
|
29829
30569
|
title?: string | null | undefined;
|
|
30570
|
+
pinnedAt?: string | null | undefined;
|
|
29830
30571
|
diffStat?: {
|
|
29831
30572
|
additions: number;
|
|
29832
30573
|
deletions: number;
|
|
@@ -29931,6 +30672,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
29931
30672
|
projectCustomName?: string | null | undefined;
|
|
29932
30673
|
workspaceDirectory?: string | undefined;
|
|
29933
30674
|
title?: string | null | undefined;
|
|
30675
|
+
pinnedAt?: string | null | undefined;
|
|
29934
30676
|
diffStat?: {
|
|
29935
30677
|
additions: number;
|
|
29936
30678
|
deletions: number;
|
|
@@ -30360,6 +31102,15 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
30360
31102
|
title: z.ZodNullable<z.ZodString>;
|
|
30361
31103
|
error: z.ZodNullable<z.ZodString>;
|
|
30362
31104
|
}, z.core.$strip>;
|
|
31105
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
31106
|
+
type: z.ZodLiteral<"workspace.pin.set.response">;
|
|
31107
|
+
payload: z.ZodObject<{
|
|
31108
|
+
requestId: z.ZodString;
|
|
31109
|
+
workspaceId: z.ZodString;
|
|
31110
|
+
accepted: z.ZodBoolean;
|
|
31111
|
+
pinnedAt: z.ZodNullable<z.ZodString>;
|
|
31112
|
+
error: z.ZodNullable<z.ZodString>;
|
|
31113
|
+
}, z.core.$strip>;
|
|
30363
31114
|
}, z.core.$strip>, z.ZodObject<{
|
|
30364
31115
|
type: z.ZodLiteral<"wait_for_finish_response">;
|
|
30365
31116
|
payload: z.ZodObject<{
|
|
@@ -31311,6 +32062,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31311
32062
|
}>;
|
|
31312
32063
|
name: z.ZodString;
|
|
31313
32064
|
title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32065
|
+
pinnedAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
31314
32066
|
archivingAt: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
31315
32067
|
status: z.ZodEnum<{
|
|
31316
32068
|
running: "running";
|
|
@@ -31514,6 +32266,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31514
32266
|
}[];
|
|
31515
32267
|
projectCustomName?: string | null | undefined;
|
|
31516
32268
|
title?: string | null | undefined;
|
|
32269
|
+
pinnedAt?: string | null | undefined;
|
|
31517
32270
|
diffStat?: {
|
|
31518
32271
|
additions: number;
|
|
31519
32272
|
deletions: number;
|
|
@@ -31618,6 +32371,7 @@ export declare const WSOutboundMessageSchema: z.ZodDiscriminatedUnion<[z.ZodObje
|
|
|
31618
32371
|
projectCustomName?: string | null | undefined;
|
|
31619
32372
|
workspaceDirectory?: string | undefined;
|
|
31620
32373
|
title?: string | null | undefined;
|
|
32374
|
+
pinnedAt?: string | null | undefined;
|
|
31621
32375
|
diffStat?: {
|
|
31622
32376
|
additions: number;
|
|
31623
32377
|
deletions: number;
|