@getpaseo/protocol 0.1.106 → 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/client-capabilities.d.ts +1 -0
- package/dist/client-capabilities.js +3 -0
- package/dist/generated/validation/ws-outbound.aot.js +24464 -16009
- package/dist/git-remote.d.ts +10 -0
- package/dist/git-remote.js +12 -0
- package/dist/messages.d.ts +1241 -11
- package/dist/messages.js +239 -0
- package/dist/provider-manifest.js +25 -22
- package/dist/validation/ws-outbound-schema-metadata.d.ts +232 -0
- package/package.json +1 -1
|
@@ -449,6 +449,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
449
449
|
}>;
|
|
450
450
|
name: import("zod").ZodString;
|
|
451
451
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
452
|
+
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
452
453
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
453
454
|
status: import("zod").ZodEnum<{
|
|
454
455
|
running: "running";
|
|
@@ -652,6 +653,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
652
653
|
}[];
|
|
653
654
|
projectCustomName?: string | null | undefined;
|
|
654
655
|
title?: string | null | undefined;
|
|
656
|
+
pinnedAt?: string | null | undefined;
|
|
655
657
|
diffStat?: {
|
|
656
658
|
additions: number;
|
|
657
659
|
deletions: number;
|
|
@@ -756,6 +758,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
756
758
|
projectCustomName?: string | null | undefined;
|
|
757
759
|
workspaceDirectory?: string | undefined;
|
|
758
760
|
title?: string | null | undefined;
|
|
761
|
+
pinnedAt?: string | null | undefined;
|
|
759
762
|
diffStat?: {
|
|
760
763
|
additions: number;
|
|
761
764
|
deletions: number;
|
|
@@ -1421,6 +1424,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1421
1424
|
}>;
|
|
1422
1425
|
name: import("zod").ZodString;
|
|
1423
1426
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1427
|
+
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1424
1428
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
1425
1429
|
status: import("zod").ZodEnum<{
|
|
1426
1430
|
running: "running";
|
|
@@ -1624,6 +1628,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1624
1628
|
}[];
|
|
1625
1629
|
projectCustomName?: string | null | undefined;
|
|
1626
1630
|
title?: string | null | undefined;
|
|
1631
|
+
pinnedAt?: string | null | undefined;
|
|
1627
1632
|
diffStat?: {
|
|
1628
1633
|
additions: number;
|
|
1629
1634
|
deletions: number;
|
|
@@ -1728,6 +1733,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1728
1733
|
projectCustomName?: string | null | undefined;
|
|
1729
1734
|
workspaceDirectory?: string | undefined;
|
|
1730
1735
|
title?: string | null | undefined;
|
|
1736
|
+
pinnedAt?: string | null | undefined;
|
|
1731
1737
|
diffStat?: {
|
|
1732
1738
|
additions: number;
|
|
1733
1739
|
deletions: number;
|
|
@@ -1842,6 +1848,25 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1842
1848
|
directory_not_found: "directory_not_found";
|
|
1843
1849
|
}>>>>;
|
|
1844
1850
|
}, import("zod/v4/core").$strip>;
|
|
1851
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1852
|
+
type: import("zod").ZodLiteral<"project.create_directory.response">;
|
|
1853
|
+
payload: import("zod").ZodObject<{
|
|
1854
|
+
requestId: import("zod").ZodString;
|
|
1855
|
+
directoryPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1856
|
+
project: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
1857
|
+
projectId: import("zod").ZodString;
|
|
1858
|
+
projectDisplayName: import("zod").ZodString;
|
|
1859
|
+
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1860
|
+
projectRootPath: import("zod").ZodString;
|
|
1861
|
+
projectKind: import("zod").ZodEnum<{
|
|
1862
|
+
git: "git";
|
|
1863
|
+
directory: "directory";
|
|
1864
|
+
non_git: "non_git";
|
|
1865
|
+
}>;
|
|
1866
|
+
}, import("zod/v4/core").$strip>>;
|
|
1867
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1868
|
+
errorCode: import("zod").ZodNullable<import("zod").ZodString>;
|
|
1869
|
+
}, import("zod/v4/core").$strip>;
|
|
1845
1870
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
1846
1871
|
type: import("zod").ZodLiteral<"open_project_response">;
|
|
1847
1872
|
payload: import("zod").ZodObject<{
|
|
@@ -1866,6 +1891,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
1866
1891
|
}>;
|
|
1867
1892
|
name: import("zod").ZodString;
|
|
1868
1893
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1894
|
+
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
1869
1895
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
1870
1896
|
status: import("zod").ZodEnum<{
|
|
1871
1897
|
running: "running";
|
|
@@ -2069,6 +2095,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2069
2095
|
}[];
|
|
2070
2096
|
projectCustomName?: string | null | undefined;
|
|
2071
2097
|
title?: string | null | undefined;
|
|
2098
|
+
pinnedAt?: string | null | undefined;
|
|
2072
2099
|
diffStat?: {
|
|
2073
2100
|
additions: number;
|
|
2074
2101
|
deletions: number;
|
|
@@ -2173,6 +2200,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2173
2200
|
projectCustomName?: string | null | undefined;
|
|
2174
2201
|
workspaceDirectory?: string | undefined;
|
|
2175
2202
|
title?: string | null | undefined;
|
|
2203
|
+
pinnedAt?: string | null | undefined;
|
|
2176
2204
|
diffStat?: {
|
|
2177
2205
|
additions: number;
|
|
2178
2206
|
deletions: number;
|
|
@@ -2255,6 +2283,101 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2255
2283
|
directory_not_found: "directory_not_found";
|
|
2256
2284
|
}>>>>;
|
|
2257
2285
|
}, import("zod/v4/core").$strip>;
|
|
2286
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2287
|
+
type: import("zod").ZodLiteral<"workspace.github.search_repositories.response">;
|
|
2288
|
+
payload: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2289
|
+
status: import("zod").ZodLiteral<"success">;
|
|
2290
|
+
requestId: import("zod").ZodString;
|
|
2291
|
+
repositories: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2292
|
+
id: import("zod").ZodString;
|
|
2293
|
+
name: import("zod").ZodString;
|
|
2294
|
+
nameWithOwner: import("zod").ZodString;
|
|
2295
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2296
|
+
visibility: import("zod").ZodEnum<{
|
|
2297
|
+
public: "public";
|
|
2298
|
+
private: "private";
|
|
2299
|
+
internal: "internal";
|
|
2300
|
+
}>;
|
|
2301
|
+
updatedAt: import("zod").ZodString;
|
|
2302
|
+
cloneUrl: import("zod").ZodString;
|
|
2303
|
+
}, import("zod/v4/core").$strip>>;
|
|
2304
|
+
available: import("zod").ZodLiteral<true>;
|
|
2305
|
+
error: import("zod").ZodNull;
|
|
2306
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2307
|
+
status: import("zod").ZodLiteral<"unavailable">;
|
|
2308
|
+
requestId: import("zod").ZodString;
|
|
2309
|
+
repositories: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2310
|
+
id: import("zod").ZodString;
|
|
2311
|
+
name: import("zod").ZodString;
|
|
2312
|
+
nameWithOwner: import("zod").ZodString;
|
|
2313
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2314
|
+
visibility: import("zod").ZodEnum<{
|
|
2315
|
+
public: "public";
|
|
2316
|
+
private: "private";
|
|
2317
|
+
internal: "internal";
|
|
2318
|
+
}>;
|
|
2319
|
+
updatedAt: import("zod").ZodString;
|
|
2320
|
+
cloneUrl: import("zod").ZodString;
|
|
2321
|
+
}, import("zod/v4/core").$strip>>;
|
|
2322
|
+
reason: import("zod").ZodLiteral<"gh_missing">;
|
|
2323
|
+
available: import("zod").ZodLiteral<false>;
|
|
2324
|
+
error: import("zod").ZodString;
|
|
2325
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2326
|
+
status: import("zod").ZodLiteral<"unauthenticated">;
|
|
2327
|
+
requestId: import("zod").ZodString;
|
|
2328
|
+
repositories: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2329
|
+
id: import("zod").ZodString;
|
|
2330
|
+
name: import("zod").ZodString;
|
|
2331
|
+
nameWithOwner: import("zod").ZodString;
|
|
2332
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2333
|
+
visibility: import("zod").ZodEnum<{
|
|
2334
|
+
public: "public";
|
|
2335
|
+
private: "private";
|
|
2336
|
+
internal: "internal";
|
|
2337
|
+
}>;
|
|
2338
|
+
updatedAt: import("zod").ZodString;
|
|
2339
|
+
cloneUrl: import("zod").ZodString;
|
|
2340
|
+
}, import("zod/v4/core").$strip>>;
|
|
2341
|
+
available: import("zod").ZodLiteral<false>;
|
|
2342
|
+
error: import("zod").ZodString;
|
|
2343
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2344
|
+
status: import("zod").ZodLiteral<"error">;
|
|
2345
|
+
requestId: import("zod").ZodString;
|
|
2346
|
+
repositories: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2347
|
+
id: import("zod").ZodString;
|
|
2348
|
+
name: import("zod").ZodString;
|
|
2349
|
+
nameWithOwner: import("zod").ZodString;
|
|
2350
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2351
|
+
visibility: import("zod").ZodEnum<{
|
|
2352
|
+
public: "public";
|
|
2353
|
+
private: "private";
|
|
2354
|
+
internal: "internal";
|
|
2355
|
+
}>;
|
|
2356
|
+
updatedAt: import("zod").ZodString;
|
|
2357
|
+
cloneUrl: import("zod").ZodString;
|
|
2358
|
+
}, import("zod/v4/core").$strip>>;
|
|
2359
|
+
available: import("zod").ZodLiteral<true>;
|
|
2360
|
+
error: import("zod").ZodString;
|
|
2361
|
+
}, import("zod/v4/core").$strip>], "status">;
|
|
2362
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2363
|
+
type: import("zod").ZodLiteral<"project.github.clone.response">;
|
|
2364
|
+
payload: import("zod").ZodObject<{
|
|
2365
|
+
requestId: import("zod").ZodString;
|
|
2366
|
+
repo: import("zod").ZodString;
|
|
2367
|
+
checkoutPath: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2368
|
+
project: import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2369
|
+
projectId: import("zod").ZodString;
|
|
2370
|
+
projectDisplayName: import("zod").ZodString;
|
|
2371
|
+
projectCustomName: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2372
|
+
projectRootPath: import("zod").ZodString;
|
|
2373
|
+
projectKind: import("zod").ZodEnum<{
|
|
2374
|
+
git: "git";
|
|
2375
|
+
directory: "directory";
|
|
2376
|
+
non_git: "non_git";
|
|
2377
|
+
}>;
|
|
2378
|
+
}, import("zod/v4/core").$strip>>;
|
|
2379
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2380
|
+
}, import("zod/v4/core").$strip>;
|
|
2258
2381
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2259
2382
|
type: import("zod").ZodLiteral<"start_workspace_script_response">;
|
|
2260
2383
|
payload: import("zod").ZodObject<{
|
|
@@ -2547,6 +2670,95 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2547
2670
|
}, import("zod/v4/core").$strip>>;
|
|
2548
2671
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2549
2672
|
}, import("zod/v4/core").$strip>;
|
|
2673
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2674
|
+
type: import("zod").ZodLiteral<"agent.provider_subagents.list.response">;
|
|
2675
|
+
payload: import("zod").ZodObject<{
|
|
2676
|
+
requestId: import("zod").ZodString;
|
|
2677
|
+
parentAgentId: import("zod").ZodString;
|
|
2678
|
+
subagents: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2679
|
+
id: import("zod").ZodString;
|
|
2680
|
+
parentAgentId: import("zod").ZodString;
|
|
2681
|
+
provider: import("zod").ZodString;
|
|
2682
|
+
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2683
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2684
|
+
status: import("zod").ZodEnum<{
|
|
2685
|
+
running: "running";
|
|
2686
|
+
completed: "completed";
|
|
2687
|
+
failed: "failed";
|
|
2688
|
+
canceled: "canceled";
|
|
2689
|
+
}>;
|
|
2690
|
+
createdAt: import("zod").ZodString;
|
|
2691
|
+
updatedAt: import("zod").ZodString;
|
|
2692
|
+
toolCallId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2693
|
+
cwd: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2694
|
+
}, import("zod/v4/core").$strip>>;
|
|
2695
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2696
|
+
}, import("zod/v4/core").$strip>;
|
|
2697
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2698
|
+
type: import("zod").ZodLiteral<"agent.provider_subagents.timeline.get.response">;
|
|
2699
|
+
payload: import("zod").ZodObject<{
|
|
2700
|
+
requestId: import("zod").ZodString;
|
|
2701
|
+
parentAgentId: import("zod").ZodString;
|
|
2702
|
+
subagentId: import("zod").ZodString;
|
|
2703
|
+
provider: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2704
|
+
direction: import("zod").ZodEnum<{
|
|
2705
|
+
tail: "tail";
|
|
2706
|
+
before: "before";
|
|
2707
|
+
after: "after";
|
|
2708
|
+
}>;
|
|
2709
|
+
epoch: import("zod").ZodString;
|
|
2710
|
+
reset: import("zod").ZodBoolean;
|
|
2711
|
+
staleCursor: import("zod").ZodBoolean;
|
|
2712
|
+
gap: import("zod").ZodBoolean;
|
|
2713
|
+
window: import("zod").ZodObject<{
|
|
2714
|
+
minSeq: import("zod").ZodNumber;
|
|
2715
|
+
maxSeq: import("zod").ZodNumber;
|
|
2716
|
+
nextSeq: import("zod").ZodNumber;
|
|
2717
|
+
}, import("zod/v4/core").$strip>;
|
|
2718
|
+
hasOlder: import("zod").ZodBoolean;
|
|
2719
|
+
hasNewer: import("zod").ZodBoolean;
|
|
2720
|
+
rows: import("zod").ZodArray<import("zod").ZodObject<{
|
|
2721
|
+
item: import("zod").ZodType<import("../agent-types.js").AgentTimelineItem, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentTimelineItem, unknown>>;
|
|
2722
|
+
timestamp: import("zod").ZodString;
|
|
2723
|
+
seq: import("zod").ZodNumber;
|
|
2724
|
+
}, import("zod/v4/core").$strip>>;
|
|
2725
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2726
|
+
}, import("zod/v4/core").$strip>;
|
|
2727
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2728
|
+
type: import("zod").ZodLiteral<"agent.provider_subagents.update">;
|
|
2729
|
+
payload: import("zod").ZodDiscriminatedUnion<[import("zod").ZodObject<{
|
|
2730
|
+
kind: import("zod").ZodLiteral<"upsert">;
|
|
2731
|
+
subagent: import("zod").ZodObject<{
|
|
2732
|
+
id: import("zod").ZodString;
|
|
2733
|
+
parentAgentId: import("zod").ZodString;
|
|
2734
|
+
provider: import("zod").ZodString;
|
|
2735
|
+
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2736
|
+
description: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2737
|
+
status: import("zod").ZodEnum<{
|
|
2738
|
+
running: "running";
|
|
2739
|
+
completed: "completed";
|
|
2740
|
+
failed: "failed";
|
|
2741
|
+
canceled: "canceled";
|
|
2742
|
+
}>;
|
|
2743
|
+
createdAt: import("zod").ZodString;
|
|
2744
|
+
updatedAt: import("zod").ZodString;
|
|
2745
|
+
toolCallId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2746
|
+
cwd: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2747
|
+
}, import("zod/v4/core").$strip>;
|
|
2748
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2749
|
+
kind: import("zod").ZodLiteral<"timeline">;
|
|
2750
|
+
parentAgentId: import("zod").ZodString;
|
|
2751
|
+
subagentId: import("zod").ZodString;
|
|
2752
|
+
provider: import("zod").ZodString;
|
|
2753
|
+
item: import("zod").ZodType<import("../agent-types.js").AgentTimelineItem, unknown, import("zod/v4/core").$ZodTypeInternals<import("../agent-types.js").AgentTimelineItem, unknown>>;
|
|
2754
|
+
timestamp: import("zod").ZodString;
|
|
2755
|
+
seq: import("zod").ZodNumber;
|
|
2756
|
+
epoch: import("zod").ZodString;
|
|
2757
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2758
|
+
kind: import("zod").ZodLiteral<"remove">;
|
|
2759
|
+
parentAgentId: import("zod").ZodString;
|
|
2760
|
+
subagentId: import("zod").ZodString;
|
|
2761
|
+
}, import("zod/v4/core").$strip>], "kind">;
|
|
2550
2762
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2551
2763
|
type: import("zod").ZodLiteral<"agent.fork_context.response">;
|
|
2552
2764
|
payload: import("zod").ZodObject<{
|
|
@@ -2573,6 +2785,10 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2573
2785
|
}>>>;
|
|
2574
2786
|
itemCount: import("zod").ZodNumber;
|
|
2575
2787
|
boundaryMessageId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2788
|
+
boundaryCursor: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
|
|
2789
|
+
epoch: import("zod").ZodString;
|
|
2790
|
+
seq: import("zod").ZodNumber;
|
|
2791
|
+
}, import("zod/v4/core").$strip>>>;
|
|
2576
2792
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
2577
2793
|
}, import("zod/v4/core").$strip>;
|
|
2578
2794
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
@@ -2642,6 +2858,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2642
2858
|
archivedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2643
2859
|
providerUnavailable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
2644
2860
|
}, import("zod/v4/core").$strip>>;
|
|
2861
|
+
error: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2645
2862
|
}, import("zod/v4/core").$strip>;
|
|
2646
2863
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
2647
2864
|
type: import("zod").ZodLiteral<"clear_agent_attention_response">;
|
|
@@ -2734,6 +2951,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2734
2951
|
}>;
|
|
2735
2952
|
name: import("zod").ZodString;
|
|
2736
2953
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2954
|
+
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
2737
2955
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
2738
2956
|
status: import("zod").ZodEnum<{
|
|
2739
2957
|
running: "running";
|
|
@@ -2937,6 +3155,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
2937
3155
|
}[];
|
|
2938
3156
|
projectCustomName?: string | null | undefined;
|
|
2939
3157
|
title?: string | null | undefined;
|
|
3158
|
+
pinnedAt?: string | null | undefined;
|
|
2940
3159
|
diffStat?: {
|
|
2941
3160
|
additions: number;
|
|
2942
3161
|
deletions: number;
|
|
@@ -3041,6 +3260,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3041
3260
|
projectCustomName?: string | null | undefined;
|
|
3042
3261
|
workspaceDirectory?: string | undefined;
|
|
3043
3262
|
title?: string | null | undefined;
|
|
3263
|
+
pinnedAt?: string | null | undefined;
|
|
3044
3264
|
diffStat?: {
|
|
3045
3265
|
additions: number;
|
|
3046
3266
|
deletions: number;
|
|
@@ -3470,6 +3690,15 @@ export declare const WSOutboundMessageSchema: {
|
|
|
3470
3690
|
title: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3471
3691
|
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3472
3692
|
}, import("zod/v4/core").$strip>;
|
|
3693
|
+
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3694
|
+
type: import("zod").ZodLiteral<"workspace.pin.set.response">;
|
|
3695
|
+
payload: import("zod").ZodObject<{
|
|
3696
|
+
requestId: import("zod").ZodString;
|
|
3697
|
+
workspaceId: import("zod").ZodString;
|
|
3698
|
+
accepted: import("zod").ZodBoolean;
|
|
3699
|
+
pinnedAt: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3700
|
+
error: import("zod").ZodNullable<import("zod").ZodString>;
|
|
3701
|
+
}, import("zod/v4/core").$strip>;
|
|
3473
3702
|
}, import("zod/v4/core").$strip>, import("zod").ZodObject<{
|
|
3474
3703
|
type: import("zod").ZodLiteral<"wait_for_finish_response">;
|
|
3475
3704
|
payload: import("zod").ZodObject<{
|
|
@@ -4421,6 +4650,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4421
4650
|
}>;
|
|
4422
4651
|
name: import("zod").ZodString;
|
|
4423
4652
|
title: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4653
|
+
pinnedAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
4424
4654
|
archivingAt: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>>;
|
|
4425
4655
|
status: import("zod").ZodEnum<{
|
|
4426
4656
|
running: "running";
|
|
@@ -4624,6 +4854,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4624
4854
|
}[];
|
|
4625
4855
|
projectCustomName?: string | null | undefined;
|
|
4626
4856
|
title?: string | null | undefined;
|
|
4857
|
+
pinnedAt?: string | null | undefined;
|
|
4627
4858
|
diffStat?: {
|
|
4628
4859
|
additions: number;
|
|
4629
4860
|
deletions: number;
|
|
@@ -4728,6 +4959,7 @@ export declare const WSOutboundMessageSchema: {
|
|
|
4728
4959
|
projectCustomName?: string | null | undefined;
|
|
4729
4960
|
workspaceDirectory?: string | undefined;
|
|
4730
4961
|
title?: string | null | undefined;
|
|
4962
|
+
pinnedAt?: string | null | undefined;
|
|
4731
4963
|
diffStat?: {
|
|
4732
4964
|
additions: number;
|
|
4733
4965
|
deletions: number;
|