@evalops/sdk-ts 0.1.96 → 0.1.98

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.
@@ -39,6 +39,11 @@ export type RuntimeChannelContext = Message<"agentruntime.v1.RuntimeChannelConte
39
39
  */
40
40
  messageId: string;
41
41
  /**
42
+ * Deprecated overloaded actor field. New Slack and channel adapters should
43
+ * set actor_channel_id for the provider-local respondent, actor_entity_id for
44
+ * the resolved canonical entity, and principal_id for the authenticated
45
+ * platform principal when available.
46
+ *
42
47
  * @generated from field: string actor_id = 6;
43
48
  */
44
49
  actorId: string;
@@ -52,6 +57,18 @@ export type RuntimeChannelContext = Message<"agentruntime.v1.RuntimeChannelConte
52
57
  attributes: {
53
58
  [key: string]: string;
54
59
  };
60
+ /**
61
+ * @generated from field: string actor_channel_id = 9;
62
+ */
63
+ actorChannelId: string;
64
+ /**
65
+ * @generated from field: string actor_entity_id = 10;
66
+ */
67
+ actorEntityId: string;
68
+ /**
69
+ * @generated from field: string principal_id = 11;
70
+ */
71
+ principalId: string;
55
72
  };
56
73
  /**
57
74
  * Describes the message agentruntime.v1.RuntimeChannelContext.
@@ -425,12 +442,191 @@ export type RuntimeContext = Message<"agentruntime.v1.RuntimeContext"> & {
425
442
  attributes: {
426
443
  [key: string]: string;
427
444
  };
445
+ /**
446
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFile virtual_files = 3;
447
+ */
448
+ virtualFiles: RuntimeVirtualFile[];
428
449
  };
429
450
  /**
430
451
  * Describes the message agentruntime.v1.RuntimeContext.
431
452
  * Use `create(RuntimeContextSchema)` to create a new message.
432
453
  */
433
454
  export declare const RuntimeContextSchema: GenMessage<RuntimeContext>;
455
+ /**
456
+ * RuntimeVirtualFile is a read-only file projected into an agent run from
457
+ * platform services. It lets workers consume rich context through a stable VFS
458
+ * instead of parsing flat runtime attributes.
459
+ *
460
+ * @generated from message agentruntime.v1.RuntimeVirtualFile
461
+ */
462
+ export type RuntimeVirtualFile = Message<"agentruntime.v1.RuntimeVirtualFile"> & {
463
+ /**
464
+ * @generated from field: string path = 1;
465
+ */
466
+ path: string;
467
+ /**
468
+ * @generated from field: string media_type = 2;
469
+ */
470
+ mediaType: string;
471
+ /**
472
+ * @generated from field: string content = 3;
473
+ */
474
+ content: string;
475
+ /**
476
+ * @generated from field: string source_service = 4;
477
+ */
478
+ sourceService: string;
479
+ /**
480
+ * @generated from field: string source_reference_id = 5;
481
+ */
482
+ sourceReferenceId: string;
483
+ /**
484
+ * @generated from field: map<string, string> metadata = 6;
485
+ */
486
+ metadata: {
487
+ [key: string]: string;
488
+ };
489
+ };
490
+ /**
491
+ * Describes the message agentruntime.v1.RuntimeVirtualFile.
492
+ * Use `create(RuntimeVirtualFileSchema)` to create a new message.
493
+ */
494
+ export declare const RuntimeVirtualFileSchema: GenMessage<RuntimeVirtualFile>;
495
+ /**
496
+ * RuntimeVirtualFileEntry is an ls/stat-friendly projection of one virtual
497
+ * file. It intentionally omits content so callers can discover before reading.
498
+ *
499
+ * @generated from message agentruntime.v1.RuntimeVirtualFileEntry
500
+ */
501
+ export type RuntimeVirtualFileEntry = Message<"agentruntime.v1.RuntimeVirtualFileEntry"> & {
502
+ /**
503
+ * @generated from field: string path = 1;
504
+ */
505
+ path: string;
506
+ /**
507
+ * @generated from field: string media_type = 2;
508
+ */
509
+ mediaType: string;
510
+ /**
511
+ * @generated from field: string source_service = 3;
512
+ */
513
+ sourceService: string;
514
+ /**
515
+ * @generated from field: string source_reference_id = 4;
516
+ */
517
+ sourceReferenceId: string;
518
+ /**
519
+ * @generated from field: map<string, string> metadata = 5;
520
+ */
521
+ metadata: {
522
+ [key: string]: string;
523
+ };
524
+ /**
525
+ * @generated from field: int64 size_bytes = 6;
526
+ */
527
+ sizeBytes: bigint;
528
+ /**
529
+ * @generated from field: string content_sha256 = 7;
530
+ */
531
+ contentSha256: string;
532
+ /**
533
+ * @generated from field: bool content_truncated = 8;
534
+ */
535
+ contentTruncated: boolean;
536
+ /**
537
+ * @generated from field: string mount = 9;
538
+ */
539
+ mount: string;
540
+ /**
541
+ * @generated from field: string kind = 10;
542
+ */
543
+ kind: string;
544
+ /**
545
+ * @generated from field: string permissions = 11;
546
+ */
547
+ permissions: string;
548
+ /**
549
+ * @generated from field: string view = 12;
550
+ */
551
+ view: string;
552
+ /**
553
+ * @generated from field: string revision_id = 13;
554
+ */
555
+ revisionId: string;
556
+ /**
557
+ * @generated from field: string parent_revision_id = 14;
558
+ */
559
+ parentRevisionId: string;
560
+ /**
561
+ * @generated from field: string provider_id = 15;
562
+ */
563
+ providerId: string;
564
+ /**
565
+ * @generated from field: string connection_id = 16;
566
+ */
567
+ connectionId: string;
568
+ /**
569
+ * @generated from field: string cache_policy = 17;
570
+ */
571
+ cachePolicy: string;
572
+ /**
573
+ * @generated from field: string policy = 18;
574
+ */
575
+ policy: string;
576
+ /**
577
+ * @generated from field: bool lazy = 19;
578
+ */
579
+ lazy: boolean;
580
+ /**
581
+ * @generated from field: int32 secret_ref_count = 20;
582
+ */
583
+ secretRefCount: number;
584
+ /**
585
+ * @generated from field: string cerebro_index = 21;
586
+ */
587
+ cerebroIndex: string;
588
+ /**
589
+ * @generated from field: string content_address = 22;
590
+ */
591
+ contentAddress: string;
592
+ };
593
+ /**
594
+ * Describes the message agentruntime.v1.RuntimeVirtualFileEntry.
595
+ * Use `create(RuntimeVirtualFileEntrySchema)` to create a new message.
596
+ */
597
+ export declare const RuntimeVirtualFileEntrySchema: GenMessage<RuntimeVirtualFileEntry>;
598
+ /**
599
+ * RuntimeVirtualFileMatch is one bounded literal match in a virtual file.
600
+ *
601
+ * @generated from message agentruntime.v1.RuntimeVirtualFileMatch
602
+ */
603
+ export type RuntimeVirtualFileMatch = Message<"agentruntime.v1.RuntimeVirtualFileMatch"> & {
604
+ /**
605
+ * @generated from field: string path = 1;
606
+ */
607
+ path: string;
608
+ /**
609
+ * @generated from field: int32 line_number = 2;
610
+ */
611
+ lineNumber: number;
612
+ /**
613
+ * @generated from field: string snippet = 3;
614
+ */
615
+ snippet: string;
616
+ /**
617
+ * @generated from field: string mount = 4;
618
+ */
619
+ mount: string;
620
+ /**
621
+ * @generated from field: string source_service = 5;
622
+ */
623
+ sourceService: string;
624
+ };
625
+ /**
626
+ * Describes the message agentruntime.v1.RuntimeVirtualFileMatch.
627
+ * Use `create(RuntimeVirtualFileMatchSchema)` to create a new message.
628
+ */
629
+ export declare const RuntimeVirtualFileMatchSchema: GenMessage<RuntimeVirtualFileMatch>;
434
630
  /**
435
631
  * RuntimeDependency names one platform service boundary the runtime depends on.
436
632
  *
@@ -1432,6 +1628,74 @@ export type RecordRunStreamCursorResponse = Message<"agentruntime.v1.RecordRunSt
1432
1628
  * Use `create(RecordRunStreamCursorResponseSchema)` to create a new message.
1433
1629
  */
1434
1630
  export declare const RecordRunStreamCursorResponseSchema: GenMessage<RecordRunStreamCursorResponse>;
1631
+ /**
1632
+ * @generated from message agentruntime.v1.RecordRunEventRequest
1633
+ */
1634
+ export type RecordRunEventRequest = Message<"agentruntime.v1.RecordRunEventRequest"> & {
1635
+ /**
1636
+ * @generated from field: string run_id = 1;
1637
+ */
1638
+ runId: string;
1639
+ /**
1640
+ * @generated from field: agentruntime.v1.RuntimeEventType type = 2;
1641
+ */
1642
+ type: RuntimeEventType;
1643
+ /**
1644
+ * @generated from field: string message = 3;
1645
+ */
1646
+ message: string;
1647
+ /**
1648
+ * @generated from field: google.protobuf.Struct attributes = 4;
1649
+ */
1650
+ attributes?: JsonObject | undefined;
1651
+ /**
1652
+ * @generated from field: string step_id = 5;
1653
+ */
1654
+ stepId: string;
1655
+ /**
1656
+ * @generated from field: string checkpoint_id = 6;
1657
+ */
1658
+ checkpointId: string;
1659
+ /**
1660
+ * @generated from field: string artifact_id = 7;
1661
+ */
1662
+ artifactId: string;
1663
+ /**
1664
+ * @generated from field: string cost_id = 8;
1665
+ */
1666
+ costId: string;
1667
+ /**
1668
+ * @generated from field: string wait_id = 9;
1669
+ */
1670
+ waitId: string;
1671
+ /**
1672
+ * @generated from field: agentruntime.v1.RuntimeVisibilityMetadata visibility = 10;
1673
+ */
1674
+ visibility?: RuntimeVisibilityMetadata | undefined;
1675
+ };
1676
+ /**
1677
+ * Describes the message agentruntime.v1.RecordRunEventRequest.
1678
+ * Use `create(RecordRunEventRequestSchema)` to create a new message.
1679
+ */
1680
+ export declare const RecordRunEventRequestSchema: GenMessage<RecordRunEventRequest>;
1681
+ /**
1682
+ * @generated from message agentruntime.v1.RecordRunEventResponse
1683
+ */
1684
+ export type RecordRunEventResponse = Message<"agentruntime.v1.RecordRunEventResponse"> & {
1685
+ /**
1686
+ * @generated from field: agentruntime.v1.AgentRun run = 1;
1687
+ */
1688
+ run?: AgentRun | undefined;
1689
+ /**
1690
+ * @generated from field: agentruntime.v1.RuntimeEvent event = 2;
1691
+ */
1692
+ event?: RuntimeEvent | undefined;
1693
+ };
1694
+ /**
1695
+ * Describes the message agentruntime.v1.RecordRunEventResponse.
1696
+ * Use `create(RecordRunEventResponseSchema)` to create a new message.
1697
+ */
1698
+ export declare const RecordRunEventResponseSchema: GenMessage<RecordRunEventResponse>;
1435
1699
  /**
1436
1700
  * @generated from message agentruntime.v1.WaitRunRequest
1437
1701
  */
@@ -1769,375 +2033,1413 @@ export type GetRunResponse = Message<"agentruntime.v1.GetRunResponse"> & {
1769
2033
  */
1770
2034
  export declare const GetRunResponseSchema: GenMessage<GetRunResponse>;
1771
2035
  /**
1772
- * @generated from message agentruntime.v1.ListRunsByWorkEnvelopeRequest
2036
+ * @generated from message agentruntime.v1.GetTeammateWorkLedgerRequest
1773
2037
  */
1774
- export type ListRunsByWorkEnvelopeRequest = Message<"agentruntime.v1.ListRunsByWorkEnvelopeRequest"> & {
1775
- /**
1776
- * @generated from field: string workspace_id = 1;
1777
- */
1778
- workspaceId: string;
1779
- /**
1780
- * @generated from field: string work_envelope_id = 2;
1781
- */
1782
- workEnvelopeId: string;
2038
+ export type GetTeammateWorkLedgerRequest = Message<"agentruntime.v1.GetTeammateWorkLedgerRequest"> & {
1783
2039
  /**
1784
- * @generated from field: int32 limit = 3;
2040
+ * @generated from field: string run_id = 1;
1785
2041
  */
1786
- limit: number;
2042
+ runId: string;
1787
2043
  };
1788
2044
  /**
1789
- * Describes the message agentruntime.v1.ListRunsByWorkEnvelopeRequest.
1790
- * Use `create(ListRunsByWorkEnvelopeRequestSchema)` to create a new message.
2045
+ * Describes the message agentruntime.v1.GetTeammateWorkLedgerRequest.
2046
+ * Use `create(GetTeammateWorkLedgerRequestSchema)` to create a new message.
1791
2047
  */
1792
- export declare const ListRunsByWorkEnvelopeRequestSchema: GenMessage<ListRunsByWorkEnvelopeRequest>;
2048
+ export declare const GetTeammateWorkLedgerRequestSchema: GenMessage<GetTeammateWorkLedgerRequest>;
1793
2049
  /**
1794
- * @generated from message agentruntime.v1.ListRunsByWorkEnvelopeResponse
2050
+ * @generated from message agentruntime.v1.GetTeammateWorkLedgerResponse
1795
2051
  */
1796
- export type ListRunsByWorkEnvelopeResponse = Message<"agentruntime.v1.ListRunsByWorkEnvelopeResponse"> & {
2052
+ export type GetTeammateWorkLedgerResponse = Message<"agentruntime.v1.GetTeammateWorkLedgerResponse"> & {
1797
2053
  /**
1798
- * @generated from field: repeated agentruntime.v1.AgentRun runs = 1;
2054
+ * @generated from field: agentruntime.v1.TeammateWorkLedger ledger = 1;
1799
2055
  */
1800
- runs: AgentRun[];
2056
+ ledger?: TeammateWorkLedger | undefined;
2057
+ /**
2058
+ * @generated from field: agentruntime.v1.RuntimeVirtualFile ledger_file = 2;
2059
+ */
2060
+ ledgerFile?: RuntimeVirtualFile | undefined;
1801
2061
  };
1802
2062
  /**
1803
- * Describes the message agentruntime.v1.ListRunsByWorkEnvelopeResponse.
1804
- * Use `create(ListRunsByWorkEnvelopeResponseSchema)` to create a new message.
2063
+ * Describes the message agentruntime.v1.GetTeammateWorkLedgerResponse.
2064
+ * Use `create(GetTeammateWorkLedgerResponseSchema)` to create a new message.
1805
2065
  */
1806
- export declare const ListRunsByWorkEnvelopeResponseSchema: GenMessage<ListRunsByWorkEnvelopeResponse>;
2066
+ export declare const GetTeammateWorkLedgerResponseSchema: GenMessage<GetTeammateWorkLedgerResponse>;
1807
2067
  /**
1808
- * @generated from message agentruntime.v1.ListRunWaitsRequest
2068
+ * TeammateWorkLedger is the compact, durable read model a persistent digital
2069
+ * teammate uses to resume work, explain what it has actually checked, and keep
2070
+ * Slack or other human-facing channels clean while tool-heavy work happens
2071
+ * under the hood.
2072
+ *
2073
+ * @generated from message agentruntime.v1.TeammateWorkLedger
1809
2074
  */
1810
- export type ListRunWaitsRequest = Message<"agentruntime.v1.ListRunWaitsRequest"> & {
2075
+ export type TeammateWorkLedger = Message<"agentruntime.v1.TeammateWorkLedger"> & {
1811
2076
  /**
1812
- * @generated from field: string workspace_id = 1;
2077
+ * @generated from field: string schema_version = 1;
1813
2078
  */
1814
- workspaceId: string;
2079
+ schemaVersion: string;
1815
2080
  /**
1816
2081
  * @generated from field: string run_id = 2;
1817
2082
  */
1818
2083
  runId: string;
1819
2084
  /**
1820
- * @generated from field: string agent_id = 3;
2085
+ * @generated from field: agentruntime.v1.AgentRunLinkage linkage = 3;
1821
2086
  */
1822
- agentId: string;
2087
+ linkage?: AgentRunLinkage | undefined;
1823
2088
  /**
1824
- * @generated from field: string objective_id = 4;
2089
+ * @generated from field: agentruntime.v1.AgentRunState state = 4;
1825
2090
  */
1826
- objectiveId: string;
2091
+ state: AgentRunState;
1827
2092
  /**
1828
- * @generated from field: string work_envelope_id = 5;
2093
+ * @generated from field: string objective_title = 5;
1829
2094
  */
1830
- workEnvelopeId: string;
2095
+ objectiveTitle: string;
1831
2096
  /**
1832
- * @generated from field: agentruntime.v1.AgentRunWaitState state = 6;
2097
+ * @generated from field: string worker_queue = 6;
1833
2098
  */
1834
- state: AgentRunWaitState;
2099
+ workerQueue: string;
1835
2100
  /**
1836
- * @generated from field: agentruntime.v1.AgentRunWaitType type = 7;
2101
+ * @generated from field: int32 attempt = 7;
1837
2102
  */
1838
- type: AgentRunWaitType;
2103
+ attempt: number;
1839
2104
  /**
1840
- * @generated from field: agentruntime.v1.RuntimeAudience audience = 8;
2105
+ * @generated from field: string work_envelope_id = 8;
1841
2106
  */
1842
- audience: RuntimeAudience;
2107
+ workEnvelopeId: string;
1843
2108
  /**
1844
- * @generated from field: int32 limit = 9;
2109
+ * @generated from field: string work_envelope_kind = 9;
1845
2110
  */
1846
- limit: number;
2111
+ workEnvelopeKind: string;
1847
2112
  /**
1848
- * @generated from field: string page_token = 10;
2113
+ * @generated from field: string workstream_id = 10;
1849
2114
  */
1850
- pageToken: string;
1851
- };
1852
- /**
1853
- * Describes the message agentruntime.v1.ListRunWaitsRequest.
1854
- * Use `create(ListRunWaitsRequestSchema)` to create a new message.
1855
- */
1856
- export declare const ListRunWaitsRequestSchema: GenMessage<ListRunWaitsRequest>;
1857
- /**
1858
- * @generated from message agentruntime.v1.AgentRunWaitSummary
1859
- */
1860
- export type AgentRunWaitSummary = Message<"agentruntime.v1.AgentRunWaitSummary"> & {
2115
+ workstreamId: string;
1861
2116
  /**
1862
- * @generated from field: string run_id = 1;
2117
+ * @generated from field: string next_action = 11;
1863
2118
  */
1864
- runId: string;
2119
+ nextAction: string;
1865
2120
  /**
1866
- * @generated from field: string wait_id = 2;
2121
+ * @generated from field: repeated agentruntime.v1.TeammateWorkLedgerBlocker blockers = 12;
1867
2122
  */
1868
- waitId: string;
2123
+ blockers: TeammateWorkLedgerBlocker[];
1869
2124
  /**
1870
- * @generated from field: string workspace_id = 3;
2125
+ * @generated from field: repeated agentruntime.v1.TeammateWorkLedgerConnectorAccess connector_access = 13;
1871
2126
  */
1872
- workspaceId: string;
2127
+ connectorAccess: TeammateWorkLedgerConnectorAccess[];
1873
2128
  /**
1874
- * @generated from field: string agent_id = 4;
2129
+ * @generated from field: repeated agentruntime.v1.TeammateWorkLedgerMemoryCitation memory_citations = 14;
1875
2130
  */
1876
- agentId: string;
2131
+ memoryCitations: TeammateWorkLedgerMemoryCitation[];
1877
2132
  /**
1878
- * @generated from field: string objective_id = 5;
2133
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerVfsSummary vfs_summary = 15;
1879
2134
  */
1880
- objectiveId: string;
2135
+ vfsSummary?: TeammateWorkLedgerVfsSummary | undefined;
1881
2136
  /**
1882
- * @generated from field: string step_id = 6;
2137
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerCerebroContext cerebro_context = 16;
1883
2138
  */
1884
- stepId: string;
2139
+ cerebroContext?: TeammateWorkLedgerCerebroContext | undefined;
1885
2140
  /**
1886
- * @generated from field: agentruntime.v1.AgentRunWaitType type = 7;
2141
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerProactivePolicy proactive_policy = 17;
1887
2142
  */
1888
- type: AgentRunWaitType;
2143
+ proactivePolicy?: TeammateWorkLedgerProactivePolicy | undefined;
1889
2144
  /**
1890
- * @generated from field: agentruntime.v1.AgentRunWaitState state = 8;
2145
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerChannelStatus channel_status = 18;
1891
2146
  */
1892
- state: AgentRunWaitState;
2147
+ channelStatus?: TeammateWorkLedgerChannelStatus | undefined;
1893
2148
  /**
1894
- * @generated from field: string external_ref = 9;
2149
+ * @generated from field: repeated string evidence_paths = 19;
1895
2150
  */
1896
- externalRef: string;
2151
+ evidencePaths: string[];
1897
2152
  /**
1898
- * @generated from field: string reason = 10;
2153
+ * @generated from field: string handoff_policy = 20;
1899
2154
  */
1900
- reason: string;
2155
+ handoffPolicy: string;
1901
2156
  /**
1902
- * @generated from field: google.protobuf.Struct payload = 11;
2157
+ * @generated from field: string resume_checkpoint_path = 21;
1903
2158
  */
1904
- payload?: JsonObject | undefined;
2159
+ resumeCheckpointPath: string;
1905
2160
  /**
1906
- * @generated from field: google.protobuf.Timestamp created_at = 12;
2161
+ * @generated from field: google.protobuf.Timestamp updated_at = 22;
1907
2162
  */
1908
- createdAt?: Timestamp | undefined;
2163
+ updatedAt?: Timestamp | undefined;
1909
2164
  /**
1910
- * @generated from field: google.protobuf.Timestamp resume_after = 13;
2165
+ * @generated from field: int32 event_count = 23;
1911
2166
  */
1912
- resumeAfter?: Timestamp | undefined;
2167
+ eventCount: number;
2168
+ };
2169
+ /**
2170
+ * Describes the message agentruntime.v1.TeammateWorkLedger.
2171
+ * Use `create(TeammateWorkLedgerSchema)` to create a new message.
2172
+ */
2173
+ export declare const TeammateWorkLedgerSchema: GenMessage<TeammateWorkLedger>;
2174
+ /**
2175
+ * @generated from message agentruntime.v1.TeammateWorkLedgerBlocker
2176
+ */
2177
+ export type TeammateWorkLedgerBlocker = Message<"agentruntime.v1.TeammateWorkLedgerBlocker"> & {
1913
2178
  /**
1914
- * @generated from field: google.protobuf.Timestamp expires_at = 14;
2179
+ * @generated from field: string wait_id = 1;
1915
2180
  */
1916
- expiresAt?: Timestamp | undefined;
2181
+ waitId: string;
1917
2182
  /**
1918
- * @generated from field: google.protobuf.Timestamp resolved_at = 15;
2183
+ * @generated from field: agentruntime.v1.AgentRunWaitType type = 2;
1919
2184
  */
1920
- resolvedAt?: Timestamp | undefined;
2185
+ type: AgentRunWaitType;
1921
2186
  /**
1922
- * @generated from field: string resolved_by_event_id = 16;
2187
+ * @generated from field: string reason = 3;
1923
2188
  */
1924
- resolvedByEventId: string;
2189
+ reason: string;
1925
2190
  /**
1926
- * @generated from field: agentruntime.v1.RuntimeVisibilityMetadata visibility = 17;
2191
+ * @generated from field: string external_ref = 4;
1927
2192
  */
1928
- visibility?: RuntimeVisibilityMetadata | undefined;
2193
+ externalRef: string;
2194
+ /**
2195
+ * @generated from field: google.protobuf.Timestamp resume_after = 5;
2196
+ */
2197
+ resumeAfter?: Timestamp | undefined;
2198
+ /**
2199
+ * @generated from field: string visibility_summary = 6;
2200
+ */
2201
+ visibilitySummary: string;
2202
+ };
2203
+ /**
2204
+ * Describes the message agentruntime.v1.TeammateWorkLedgerBlocker.
2205
+ * Use `create(TeammateWorkLedgerBlockerSchema)` to create a new message.
2206
+ */
2207
+ export declare const TeammateWorkLedgerBlockerSchema: GenMessage<TeammateWorkLedgerBlocker>;
2208
+ /**
2209
+ * @generated from message agentruntime.v1.TeammateWorkLedgerConnectorAccess
2210
+ */
2211
+ export type TeammateWorkLedgerConnectorAccess = Message<"agentruntime.v1.TeammateWorkLedgerConnectorAccess"> & {
2212
+ /**
2213
+ * @generated from field: string mount_path = 1;
2214
+ */
2215
+ mountPath: string;
2216
+ /**
2217
+ * @generated from field: string provider_id = 2;
2218
+ */
2219
+ providerId: string;
2220
+ /**
2221
+ * @generated from field: string connection_id = 3;
2222
+ */
2223
+ connectionId: string;
2224
+ /**
2225
+ * @generated from field: repeated string capabilities = 4;
2226
+ */
2227
+ capabilities: string[];
2228
+ /**
2229
+ * @generated from field: bool grant_required = 5;
2230
+ */
2231
+ grantRequired: boolean;
2232
+ /**
2233
+ * @generated from field: string lease_policy = 6;
2234
+ */
2235
+ leasePolicy: string;
2236
+ /**
2237
+ * @generated from field: string identity_mode = 7;
2238
+ */
2239
+ identityMode: string;
2240
+ /**
2241
+ * @generated from field: string credential_version_strategy = 8;
2242
+ */
2243
+ credentialVersionStrategy: string;
2244
+ /**
2245
+ * @generated from field: int32 secret_ref_count = 9;
2246
+ */
2247
+ secretRefCount: number;
2248
+ /**
2249
+ * @generated from field: repeated string credential_ref_names = 10;
2250
+ */
2251
+ credentialRefNames: string[];
2252
+ };
2253
+ /**
2254
+ * Describes the message agentruntime.v1.TeammateWorkLedgerConnectorAccess.
2255
+ * Use `create(TeammateWorkLedgerConnectorAccessSchema)` to create a new message.
2256
+ */
2257
+ export declare const TeammateWorkLedgerConnectorAccessSchema: GenMessage<TeammateWorkLedgerConnectorAccess>;
2258
+ /**
2259
+ * @generated from message agentruntime.v1.TeammateWorkLedgerMemoryCitation
2260
+ */
2261
+ export type TeammateWorkLedgerMemoryCitation = Message<"agentruntime.v1.TeammateWorkLedgerMemoryCitation"> & {
2262
+ /**
2263
+ * @generated from field: string memory_id = 1;
2264
+ */
2265
+ memoryId: string;
2266
+ /**
2267
+ * @generated from field: string memory_type = 2;
2268
+ */
2269
+ memoryType: string;
2270
+ /**
2271
+ * @generated from field: string source = 3;
2272
+ */
2273
+ source: string;
2274
+ /**
2275
+ * @generated from field: repeated string source_uris = 4;
2276
+ */
2277
+ sourceUris: string[];
2278
+ /**
2279
+ * @generated from field: string supersedes_memory_id = 5;
2280
+ */
2281
+ supersedesMemoryId: string;
2282
+ /**
2283
+ * @generated from field: string superseded_by_memory_id = 6;
2284
+ */
2285
+ supersededByMemoryId: string;
2286
+ /**
2287
+ * @generated from field: string review_status = 7;
2288
+ */
2289
+ reviewStatus: string;
2290
+ /**
2291
+ * @generated from field: repeated string entity_ids = 8;
2292
+ */
2293
+ entityIds: string[];
2294
+ /**
2295
+ * @generated from field: string content_preview = 9;
2296
+ */
2297
+ contentPreview: string;
2298
+ };
2299
+ /**
2300
+ * Describes the message agentruntime.v1.TeammateWorkLedgerMemoryCitation.
2301
+ * Use `create(TeammateWorkLedgerMemoryCitationSchema)` to create a new message.
2302
+ */
2303
+ export declare const TeammateWorkLedgerMemoryCitationSchema: GenMessage<TeammateWorkLedgerMemoryCitation>;
2304
+ /**
2305
+ * @generated from message agentruntime.v1.TeammateWorkLedgerVfsSummary
2306
+ */
2307
+ export type TeammateWorkLedgerVfsSummary = Message<"agentruntime.v1.TeammateWorkLedgerVfsSummary"> & {
2308
+ /**
2309
+ * @generated from field: int32 file_count = 1;
2310
+ */
2311
+ fileCount: number;
2312
+ /**
2313
+ * @generated from field: int32 mount_count = 2;
2314
+ */
2315
+ mountCount: number;
2316
+ /**
2317
+ * @generated from field: int32 connector_mount_count = 3;
2318
+ */
2319
+ connectorMountCount: number;
2320
+ /**
2321
+ * @generated from field: int32 memory_record_count = 4;
2322
+ */
2323
+ memoryRecordCount: number;
2324
+ /**
2325
+ * @generated from field: int32 transaction_count = 5;
2326
+ */
2327
+ transactionCount: number;
2328
+ /**
2329
+ * @generated from field: int32 cerebro_index_eligible_file_count = 6;
2330
+ */
2331
+ cerebroIndexEligibleFileCount: number;
2332
+ /**
2333
+ * @generated from field: bool has_resume_checkpoint = 7;
2334
+ */
2335
+ hasResumeCheckpoint: boolean;
2336
+ };
2337
+ /**
2338
+ * Describes the message agentruntime.v1.TeammateWorkLedgerVfsSummary.
2339
+ * Use `create(TeammateWorkLedgerVfsSummarySchema)` to create a new message.
2340
+ */
2341
+ export declare const TeammateWorkLedgerVfsSummarySchema: GenMessage<TeammateWorkLedgerVfsSummary>;
2342
+ /**
2343
+ * @generated from message agentruntime.v1.TeammateWorkLedgerCerebroContext
2344
+ */
2345
+ export type TeammateWorkLedgerCerebroContext = Message<"agentruntime.v1.TeammateWorkLedgerCerebroContext"> & {
2346
+ /**
2347
+ * @generated from field: string provider = 1;
2348
+ */
2349
+ provider: string;
2350
+ /**
2351
+ * @generated from field: string query = 2;
2352
+ */
2353
+ query: string;
2354
+ /**
2355
+ * @generated from field: repeated string thing_ids = 3;
2356
+ */
2357
+ thingIds: string[];
2358
+ /**
2359
+ * @generated from field: repeated string fact_ids = 4;
2360
+ */
2361
+ factIds: string[];
2362
+ /**
2363
+ * @generated from field: repeated string event_ids = 5;
2364
+ */
2365
+ eventIds: string[];
2366
+ /**
2367
+ * @generated from field: int32 eligible_file_count = 6;
2368
+ */
2369
+ eligibleFileCount: number;
2370
+ };
2371
+ /**
2372
+ * Describes the message agentruntime.v1.TeammateWorkLedgerCerebroContext.
2373
+ * Use `create(TeammateWorkLedgerCerebroContextSchema)` to create a new message.
2374
+ */
2375
+ export declare const TeammateWorkLedgerCerebroContextSchema: GenMessage<TeammateWorkLedgerCerebroContext>;
2376
+ /**
2377
+ * @generated from message agentruntime.v1.TeammateWorkLedgerProactivePolicy
2378
+ */
2379
+ export type TeammateWorkLedgerProactivePolicy = Message<"agentruntime.v1.TeammateWorkLedgerProactivePolicy"> & {
2380
+ /**
2381
+ * @generated from field: bool enabled = 1;
2382
+ */
2383
+ enabled: boolean;
2384
+ /**
2385
+ * @generated from field: repeated string trigger_kinds = 2;
2386
+ */
2387
+ triggerKinds: string[];
2388
+ /**
2389
+ * @generated from field: repeated string progress_update_triggers = 3;
2390
+ */
2391
+ progressUpdateTriggers: string[];
2392
+ /**
2393
+ * @generated from field: string presence_policy = 4;
2394
+ */
2395
+ presencePolicy: string;
2396
+ /**
2397
+ * @generated from field: int32 update_budget = 5;
2398
+ */
2399
+ updateBudget: number;
2400
+ };
2401
+ /**
2402
+ * Describes the message agentruntime.v1.TeammateWorkLedgerProactivePolicy.
2403
+ * Use `create(TeammateWorkLedgerProactivePolicySchema)` to create a new message.
2404
+ */
2405
+ export declare const TeammateWorkLedgerProactivePolicySchema: GenMessage<TeammateWorkLedgerProactivePolicy>;
2406
+ /**
2407
+ * @generated from message agentruntime.v1.TeammateWorkLedgerChannelStatus
2408
+ */
2409
+ export type TeammateWorkLedgerChannelStatus = Message<"agentruntime.v1.TeammateWorkLedgerChannelStatus"> & {
2410
+ /**
2411
+ * @generated from field: string channel_kind = 1;
2412
+ */
2413
+ channelKind: string;
2414
+ /**
2415
+ * @generated from field: string channel_id = 2;
2416
+ */
2417
+ channelId: string;
2418
+ /**
2419
+ * @generated from field: string thread_id = 3;
2420
+ */
2421
+ threadId: string;
2422
+ /**
2423
+ * @generated from field: string last_visible_event_id = 4;
2424
+ */
2425
+ lastVisibleEventId: string;
2426
+ /**
2427
+ * @generated from field: string last_visible_summary = 5;
2428
+ */
2429
+ lastVisibleSummary: string;
2430
+ };
2431
+ /**
2432
+ * Describes the message agentruntime.v1.TeammateWorkLedgerChannelStatus.
2433
+ * Use `create(TeammateWorkLedgerChannelStatusSchema)` to create a new message.
2434
+ */
2435
+ export declare const TeammateWorkLedgerChannelStatusSchema: GenMessage<TeammateWorkLedgerChannelStatus>;
2436
+ /**
2437
+ * @generated from message agentruntime.v1.ListRunsByWorkEnvelopeRequest
2438
+ */
2439
+ export type ListRunsByWorkEnvelopeRequest = Message<"agentruntime.v1.ListRunsByWorkEnvelopeRequest"> & {
2440
+ /**
2441
+ * @generated from field: string workspace_id = 1;
2442
+ */
2443
+ workspaceId: string;
2444
+ /**
2445
+ * @generated from field: string work_envelope_id = 2;
2446
+ */
2447
+ workEnvelopeId: string;
2448
+ /**
2449
+ * @generated from field: int32 limit = 3;
2450
+ */
2451
+ limit: number;
2452
+ };
2453
+ /**
2454
+ * Describes the message agentruntime.v1.ListRunsByWorkEnvelopeRequest.
2455
+ * Use `create(ListRunsByWorkEnvelopeRequestSchema)` to create a new message.
2456
+ */
2457
+ export declare const ListRunsByWorkEnvelopeRequestSchema: GenMessage<ListRunsByWorkEnvelopeRequest>;
2458
+ /**
2459
+ * @generated from message agentruntime.v1.ListRunsByWorkEnvelopeResponse
2460
+ */
2461
+ export type ListRunsByWorkEnvelopeResponse = Message<"agentruntime.v1.ListRunsByWorkEnvelopeResponse"> & {
2462
+ /**
2463
+ * @generated from field: repeated agentruntime.v1.AgentRun runs = 1;
2464
+ */
2465
+ runs: AgentRun[];
2466
+ };
2467
+ /**
2468
+ * Describes the message agentruntime.v1.ListRunsByWorkEnvelopeResponse.
2469
+ * Use `create(ListRunsByWorkEnvelopeResponseSchema)` to create a new message.
2470
+ */
2471
+ export declare const ListRunsByWorkEnvelopeResponseSchema: GenMessage<ListRunsByWorkEnvelopeResponse>;
2472
+ /**
2473
+ * @generated from message agentruntime.v1.ListRunWaitsRequest
2474
+ */
2475
+ export type ListRunWaitsRequest = Message<"agentruntime.v1.ListRunWaitsRequest"> & {
2476
+ /**
2477
+ * @generated from field: string workspace_id = 1;
2478
+ */
2479
+ workspaceId: string;
2480
+ /**
2481
+ * @generated from field: string run_id = 2;
2482
+ */
2483
+ runId: string;
2484
+ /**
2485
+ * @generated from field: string agent_id = 3;
2486
+ */
2487
+ agentId: string;
2488
+ /**
2489
+ * @generated from field: string objective_id = 4;
2490
+ */
2491
+ objectiveId: string;
2492
+ /**
2493
+ * @generated from field: string work_envelope_id = 5;
2494
+ */
2495
+ workEnvelopeId: string;
2496
+ /**
2497
+ * @generated from field: agentruntime.v1.AgentRunWaitState state = 6;
2498
+ */
2499
+ state: AgentRunWaitState;
2500
+ /**
2501
+ * @generated from field: agentruntime.v1.AgentRunWaitType type = 7;
2502
+ */
2503
+ type: AgentRunWaitType;
2504
+ /**
2505
+ * @generated from field: agentruntime.v1.RuntimeAudience audience = 8;
2506
+ */
2507
+ audience: RuntimeAudience;
2508
+ /**
2509
+ * @generated from field: int32 limit = 9;
2510
+ */
2511
+ limit: number;
2512
+ /**
2513
+ * @generated from field: string page_token = 10;
2514
+ */
2515
+ pageToken: string;
2516
+ /**
2517
+ * external_ref filters waits by their external join key, such as an
2518
+ * approvals.v1 ApprovalRequest id carried by desktop-control approval waits.
2519
+ *
2520
+ * @generated from field: string external_ref = 11;
2521
+ */
2522
+ externalRef: string;
2523
+ };
2524
+ /**
2525
+ * Describes the message agentruntime.v1.ListRunWaitsRequest.
2526
+ * Use `create(ListRunWaitsRequestSchema)` to create a new message.
2527
+ */
2528
+ export declare const ListRunWaitsRequestSchema: GenMessage<ListRunWaitsRequest>;
2529
+ /**
2530
+ * @generated from message agentruntime.v1.AgentRunWaitSummary
2531
+ */
2532
+ export type AgentRunWaitSummary = Message<"agentruntime.v1.AgentRunWaitSummary"> & {
2533
+ /**
2534
+ * @generated from field: string run_id = 1;
2535
+ */
2536
+ runId: string;
2537
+ /**
2538
+ * @generated from field: string wait_id = 2;
2539
+ */
2540
+ waitId: string;
2541
+ /**
2542
+ * @generated from field: string workspace_id = 3;
2543
+ */
2544
+ workspaceId: string;
2545
+ /**
2546
+ * @generated from field: string agent_id = 4;
2547
+ */
2548
+ agentId: string;
2549
+ /**
2550
+ * @generated from field: string objective_id = 5;
2551
+ */
2552
+ objectiveId: string;
2553
+ /**
2554
+ * @generated from field: string step_id = 6;
2555
+ */
2556
+ stepId: string;
2557
+ /**
2558
+ * @generated from field: agentruntime.v1.AgentRunWaitType type = 7;
2559
+ */
2560
+ type: AgentRunWaitType;
2561
+ /**
2562
+ * @generated from field: agentruntime.v1.AgentRunWaitState state = 8;
2563
+ */
2564
+ state: AgentRunWaitState;
2565
+ /**
2566
+ * @generated from field: string external_ref = 9;
2567
+ */
2568
+ externalRef: string;
2569
+ /**
2570
+ * @generated from field: string reason = 10;
2571
+ */
2572
+ reason: string;
2573
+ /**
2574
+ * @generated from field: google.protobuf.Struct payload = 11;
2575
+ */
2576
+ payload?: JsonObject | undefined;
2577
+ /**
2578
+ * @generated from field: google.protobuf.Timestamp created_at = 12;
2579
+ */
2580
+ createdAt?: Timestamp | undefined;
2581
+ /**
2582
+ * @generated from field: google.protobuf.Timestamp resume_after = 13;
2583
+ */
2584
+ resumeAfter?: Timestamp | undefined;
2585
+ /**
2586
+ * @generated from field: google.protobuf.Timestamp expires_at = 14;
2587
+ */
2588
+ expiresAt?: Timestamp | undefined;
2589
+ /**
2590
+ * @generated from field: google.protobuf.Timestamp resolved_at = 15;
2591
+ */
2592
+ resolvedAt?: Timestamp | undefined;
2593
+ /**
2594
+ * @generated from field: string resolved_by_event_id = 16;
2595
+ */
2596
+ resolvedByEventId: string;
2597
+ /**
2598
+ * @generated from field: agentruntime.v1.RuntimeVisibilityMetadata visibility = 17;
2599
+ */
2600
+ visibility?: RuntimeVisibilityMetadata | undefined;
2601
+ /**
2602
+ * @generated from field: agentruntime.v1.RuntimeChannelContext channel_context = 18;
2603
+ */
2604
+ channelContext?: RuntimeChannelContext | undefined;
2605
+ /**
2606
+ * @generated from field: agentruntime.v1.RuntimeWorkEnvelope work_envelope = 19;
2607
+ */
2608
+ workEnvelope?: RuntimeWorkEnvelope | undefined;
2609
+ };
2610
+ /**
2611
+ * Describes the message agentruntime.v1.AgentRunWaitSummary.
2612
+ * Use `create(AgentRunWaitSummarySchema)` to create a new message.
2613
+ */
2614
+ export declare const AgentRunWaitSummarySchema: GenMessage<AgentRunWaitSummary>;
2615
+ /**
2616
+ * @generated from message agentruntime.v1.ListRunWaitsResponse
2617
+ */
2618
+ export type ListRunWaitsResponse = Message<"agentruntime.v1.ListRunWaitsResponse"> & {
2619
+ /**
2620
+ * @generated from field: repeated agentruntime.v1.AgentRunWaitSummary waits = 1;
2621
+ */
2622
+ waits: AgentRunWaitSummary[];
2623
+ /**
2624
+ * @generated from field: string next_page_token = 2;
2625
+ */
2626
+ nextPageToken: string;
2627
+ };
2628
+ /**
2629
+ * Describes the message agentruntime.v1.ListRunWaitsResponse.
2630
+ * Use `create(ListRunWaitsResponseSchema)` to create a new message.
2631
+ */
2632
+ export declare const ListRunWaitsResponseSchema: GenMessage<ListRunWaitsResponse>;
2633
+ /**
2634
+ * @generated from message agentruntime.v1.RecordChannelActionReceiptRequest
2635
+ */
2636
+ export type RecordChannelActionReceiptRequest = Message<"agentruntime.v1.RecordChannelActionReceiptRequest"> & {
2637
+ /**
2638
+ * @generated from field: agentruntime.v1.ChannelActionReceipt receipt = 1;
2639
+ */
2640
+ receipt?: ChannelActionReceipt | undefined;
2641
+ };
2642
+ /**
2643
+ * Describes the message agentruntime.v1.RecordChannelActionReceiptRequest.
2644
+ * Use `create(RecordChannelActionReceiptRequestSchema)` to create a new message.
2645
+ */
2646
+ export declare const RecordChannelActionReceiptRequestSchema: GenMessage<RecordChannelActionReceiptRequest>;
2647
+ /**
2648
+ * @generated from message agentruntime.v1.RecordChannelActionReceiptResponse
2649
+ */
2650
+ export type RecordChannelActionReceiptResponse = Message<"agentruntime.v1.RecordChannelActionReceiptResponse"> & {
2651
+ /**
2652
+ * @generated from field: agentruntime.v1.ChannelActionReceipt receipt = 1;
2653
+ */
2654
+ receipt?: ChannelActionReceipt | undefined;
2655
+ /**
2656
+ * @generated from field: bool idempotent_replay = 2;
2657
+ */
2658
+ idempotentReplay: boolean;
2659
+ };
2660
+ /**
2661
+ * Describes the message agentruntime.v1.RecordChannelActionReceiptResponse.
2662
+ * Use `create(RecordChannelActionReceiptResponseSchema)` to create a new message.
2663
+ */
2664
+ export declare const RecordChannelActionReceiptResponseSchema: GenMessage<RecordChannelActionReceiptResponse>;
2665
+ /**
2666
+ * @generated from message agentruntime.v1.GetChannelActionReceiptRequest
2667
+ */
2668
+ export type GetChannelActionReceiptRequest = Message<"agentruntime.v1.GetChannelActionReceiptRequest"> & {
2669
+ /**
2670
+ * @generated from field: string id = 1;
2671
+ */
2672
+ id: string;
2673
+ };
2674
+ /**
2675
+ * Describes the message agentruntime.v1.GetChannelActionReceiptRequest.
2676
+ * Use `create(GetChannelActionReceiptRequestSchema)` to create a new message.
2677
+ */
2678
+ export declare const GetChannelActionReceiptRequestSchema: GenMessage<GetChannelActionReceiptRequest>;
2679
+ /**
2680
+ * @generated from message agentruntime.v1.GetChannelActionReceiptResponse
2681
+ */
2682
+ export type GetChannelActionReceiptResponse = Message<"agentruntime.v1.GetChannelActionReceiptResponse"> & {
2683
+ /**
2684
+ * @generated from field: agentruntime.v1.ChannelActionReceipt receipt = 1;
2685
+ */
2686
+ receipt?: ChannelActionReceipt | undefined;
2687
+ };
2688
+ /**
2689
+ * Describes the message agentruntime.v1.GetChannelActionReceiptResponse.
2690
+ * Use `create(GetChannelActionReceiptResponseSchema)` to create a new message.
2691
+ */
2692
+ export declare const GetChannelActionReceiptResponseSchema: GenMessage<GetChannelActionReceiptResponse>;
2693
+ /**
2694
+ * @generated from message agentruntime.v1.ListChannelActionReceiptsRequest
2695
+ */
2696
+ export type ListChannelActionReceiptsRequest = Message<"agentruntime.v1.ListChannelActionReceiptsRequest"> & {
2697
+ /**
2698
+ * @generated from field: string workspace_id = 1;
2699
+ */
2700
+ workspaceId: string;
2701
+ /**
2702
+ * @generated from field: string idempotency_key = 2;
2703
+ */
2704
+ idempotencyKey: string;
2705
+ /**
2706
+ * @generated from field: string actor_entity_id = 3;
2707
+ */
2708
+ actorEntityId: string;
2709
+ /**
2710
+ * @generated from field: agentruntime.v1.ChannelActionTargetKind target_kind = 4;
2711
+ */
2712
+ targetKind: ChannelActionTargetKind;
2713
+ /**
2714
+ * @generated from field: string target_id = 5;
2715
+ */
2716
+ targetId: string;
2717
+ /**
2718
+ * @generated from field: string run_id = 6;
2719
+ */
2720
+ runId: string;
2721
+ /**
2722
+ * @generated from field: string wait_id = 7;
2723
+ */
2724
+ waitId: string;
2725
+ /**
2726
+ * @generated from field: string approval_request_id = 8;
2727
+ */
2728
+ approvalRequestId: string;
2729
+ /**
2730
+ * @generated from field: string objective_id = 9;
2731
+ */
2732
+ objectiveId: string;
2733
+ /**
2734
+ * @generated from field: agentruntime.v1.RuntimeChannelKind channel_kind = 10;
2735
+ */
2736
+ channelKind: RuntimeChannelKind;
2737
+ /**
2738
+ * @generated from field: string provider_workspace_id = 11;
2739
+ */
2740
+ providerWorkspaceId: string;
2741
+ /**
2742
+ * @generated from field: string channel_id = 12;
2743
+ */
2744
+ channelId: string;
2745
+ /**
2746
+ * @generated from field: string thread_id = 13;
2747
+ */
2748
+ threadId: string;
2749
+ /**
2750
+ * @generated from field: string message_id = 14;
2751
+ */
2752
+ messageId: string;
2753
+ /**
2754
+ * @generated from field: string action_id = 15;
2755
+ */
2756
+ actionId: string;
2757
+ /**
2758
+ * @generated from field: int32 limit = 16;
2759
+ */
2760
+ limit: number;
2761
+ };
2762
+ /**
2763
+ * Describes the message agentruntime.v1.ListChannelActionReceiptsRequest.
2764
+ * Use `create(ListChannelActionReceiptsRequestSchema)` to create a new message.
2765
+ */
2766
+ export declare const ListChannelActionReceiptsRequestSchema: GenMessage<ListChannelActionReceiptsRequest>;
2767
+ /**
2768
+ * @generated from message agentruntime.v1.ListChannelActionReceiptsResponse
2769
+ */
2770
+ export type ListChannelActionReceiptsResponse = Message<"agentruntime.v1.ListChannelActionReceiptsResponse"> & {
2771
+ /**
2772
+ * @generated from field: repeated agentruntime.v1.ChannelActionReceipt receipts = 1;
2773
+ */
2774
+ receipts: ChannelActionReceipt[];
2775
+ };
2776
+ /**
2777
+ * Describes the message agentruntime.v1.ListChannelActionReceiptsResponse.
2778
+ * Use `create(ListChannelActionReceiptsResponseSchema)` to create a new message.
2779
+ */
2780
+ export declare const ListChannelActionReceiptsResponseSchema: GenMessage<ListChannelActionReceiptsResponse>;
2781
+ /**
2782
+ * @generated from message agentruntime.v1.ListRunEventsRequest
2783
+ */
2784
+ export type ListRunEventsRequest = Message<"agentruntime.v1.ListRunEventsRequest"> & {
1929
2785
  /**
1930
- * @generated from field: agentruntime.v1.RuntimeChannelContext channel_context = 18;
2786
+ * @generated from field: string run_id = 1;
1931
2787
  */
1932
- channelContext?: RuntimeChannelContext | undefined;
2788
+ runId: string;
1933
2789
  /**
1934
- * @generated from field: agentruntime.v1.RuntimeWorkEnvelope work_envelope = 19;
2790
+ * @generated from field: agentruntime.v1.RuntimeAudience audience = 2;
1935
2791
  */
1936
- workEnvelope?: RuntimeWorkEnvelope | undefined;
2792
+ audience: RuntimeAudience;
1937
2793
  };
1938
2794
  /**
1939
- * Describes the message agentruntime.v1.AgentRunWaitSummary.
1940
- * Use `create(AgentRunWaitSummarySchema)` to create a new message.
2795
+ * Describes the message agentruntime.v1.ListRunEventsRequest.
2796
+ * Use `create(ListRunEventsRequestSchema)` to create a new message.
1941
2797
  */
1942
- export declare const AgentRunWaitSummarySchema: GenMessage<AgentRunWaitSummary>;
2798
+ export declare const ListRunEventsRequestSchema: GenMessage<ListRunEventsRequest>;
1943
2799
  /**
1944
- * @generated from message agentruntime.v1.ListRunWaitsResponse
2800
+ * @generated from message agentruntime.v1.ListRunEventsResponse
1945
2801
  */
1946
- export type ListRunWaitsResponse = Message<"agentruntime.v1.ListRunWaitsResponse"> & {
2802
+ export type ListRunEventsResponse = Message<"agentruntime.v1.ListRunEventsResponse"> & {
2803
+ /**
2804
+ * @generated from field: repeated agentruntime.v1.RuntimeEvent events = 1;
2805
+ */
2806
+ events: RuntimeEvent[];
2807
+ };
2808
+ /**
2809
+ * Describes the message agentruntime.v1.ListRunEventsResponse.
2810
+ * Use `create(ListRunEventsResponseSchema)` to create a new message.
2811
+ */
2812
+ export declare const ListRunEventsResponseSchema: GenMessage<ListRunEventsResponse>;
2813
+ /**
2814
+ * @generated from message agentruntime.v1.ListRunVirtualFilesRequest
2815
+ */
2816
+ export type ListRunVirtualFilesRequest = Message<"agentruntime.v1.ListRunVirtualFilesRequest"> & {
2817
+ /**
2818
+ * @generated from field: string run_id = 1;
2819
+ */
2820
+ runId: string;
2821
+ /**
2822
+ * @generated from field: string path_prefix = 2;
2823
+ */
2824
+ pathPrefix: string;
2825
+ /**
2826
+ * @generated from field: int32 limit = 3;
2827
+ */
2828
+ limit: number;
2829
+ };
2830
+ /**
2831
+ * Describes the message agentruntime.v1.ListRunVirtualFilesRequest.
2832
+ * Use `create(ListRunVirtualFilesRequestSchema)` to create a new message.
2833
+ */
2834
+ export declare const ListRunVirtualFilesRequestSchema: GenMessage<ListRunVirtualFilesRequest>;
2835
+ /**
2836
+ * @generated from message agentruntime.v1.ListRunVirtualFilesResponse
2837
+ */
2838
+ export type ListRunVirtualFilesResponse = Message<"agentruntime.v1.ListRunVirtualFilesResponse"> & {
2839
+ /**
2840
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFileEntry entries = 1;
2841
+ */
2842
+ entries: RuntimeVirtualFileEntry[];
2843
+ };
2844
+ /**
2845
+ * Describes the message agentruntime.v1.ListRunVirtualFilesResponse.
2846
+ * Use `create(ListRunVirtualFilesResponseSchema)` to create a new message.
2847
+ */
2848
+ export declare const ListRunVirtualFilesResponseSchema: GenMessage<ListRunVirtualFilesResponse>;
2849
+ /**
2850
+ * @generated from message agentruntime.v1.ReadRunVirtualFileRequest
2851
+ */
2852
+ export type ReadRunVirtualFileRequest = Message<"agentruntime.v1.ReadRunVirtualFileRequest"> & {
2853
+ /**
2854
+ * @generated from field: string run_id = 1;
2855
+ */
2856
+ runId: string;
2857
+ /**
2858
+ * @generated from field: string path = 2;
2859
+ */
2860
+ path: string;
2861
+ /**
2862
+ * @generated from field: int32 offset = 3;
2863
+ */
2864
+ offset: number;
2865
+ /**
2866
+ * @generated from field: int32 limit = 4;
2867
+ */
2868
+ limit: number;
2869
+ };
2870
+ /**
2871
+ * Describes the message agentruntime.v1.ReadRunVirtualFileRequest.
2872
+ * Use `create(ReadRunVirtualFileRequestSchema)` to create a new message.
2873
+ */
2874
+ export declare const ReadRunVirtualFileRequestSchema: GenMessage<ReadRunVirtualFileRequest>;
2875
+ /**
2876
+ * @generated from message agentruntime.v1.ReadRunVirtualFileResponse
2877
+ */
2878
+ export type ReadRunVirtualFileResponse = Message<"agentruntime.v1.ReadRunVirtualFileResponse"> & {
2879
+ /**
2880
+ * @generated from field: agentruntime.v1.RuntimeVirtualFileEntry entry = 1;
2881
+ */
2882
+ entry?: RuntimeVirtualFileEntry | undefined;
2883
+ /**
2884
+ * @generated from field: string content = 2;
2885
+ */
2886
+ content: string;
2887
+ /**
2888
+ * @generated from field: int32 offset = 3;
2889
+ */
2890
+ offset: number;
2891
+ /**
2892
+ * @generated from field: int32 next_offset = 4;
2893
+ */
2894
+ nextOffset: number;
2895
+ /**
2896
+ * @generated from field: bool eof = 5;
2897
+ */
2898
+ eof: boolean;
2899
+ };
2900
+ /**
2901
+ * Describes the message agentruntime.v1.ReadRunVirtualFileResponse.
2902
+ * Use `create(ReadRunVirtualFileResponseSchema)` to create a new message.
2903
+ */
2904
+ export declare const ReadRunVirtualFileResponseSchema: GenMessage<ReadRunVirtualFileResponse>;
2905
+ /**
2906
+ * @generated from message agentruntime.v1.SearchRunVirtualFilesRequest
2907
+ */
2908
+ export type SearchRunVirtualFilesRequest = Message<"agentruntime.v1.SearchRunVirtualFilesRequest"> & {
2909
+ /**
2910
+ * @generated from field: string run_id = 1;
2911
+ */
2912
+ runId: string;
2913
+ /**
2914
+ * @generated from field: string query = 2;
2915
+ */
2916
+ query: string;
2917
+ /**
2918
+ * @generated from field: string path_prefix = 3;
2919
+ */
2920
+ pathPrefix: string;
2921
+ /**
2922
+ * @generated from field: int32 limit = 4;
2923
+ */
2924
+ limit: number;
2925
+ };
2926
+ /**
2927
+ * Describes the message agentruntime.v1.SearchRunVirtualFilesRequest.
2928
+ * Use `create(SearchRunVirtualFilesRequestSchema)` to create a new message.
2929
+ */
2930
+ export declare const SearchRunVirtualFilesRequestSchema: GenMessage<SearchRunVirtualFilesRequest>;
2931
+ /**
2932
+ * @generated from message agentruntime.v1.SearchRunVirtualFilesResponse
2933
+ */
2934
+ export type SearchRunVirtualFilesResponse = Message<"agentruntime.v1.SearchRunVirtualFilesResponse"> & {
2935
+ /**
2936
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFileMatch matches = 1;
2937
+ */
2938
+ matches: RuntimeVirtualFileMatch[];
2939
+ };
2940
+ /**
2941
+ * Describes the message agentruntime.v1.SearchRunVirtualFilesResponse.
2942
+ * Use `create(SearchRunVirtualFilesResponseSchema)` to create a new message.
2943
+ */
2944
+ export declare const SearchRunVirtualFilesResponseSchema: GenMessage<SearchRunVirtualFilesResponse>;
2945
+ /**
2946
+ * @generated from message agentruntime.v1.RecordRunVirtualFileProposalRequest
2947
+ */
2948
+ export type RecordRunVirtualFileProposalRequest = Message<"agentruntime.v1.RecordRunVirtualFileProposalRequest"> & {
2949
+ /**
2950
+ * @generated from field: string run_id = 1;
2951
+ */
2952
+ runId: string;
2953
+ /**
2954
+ * @generated from field: string lease_token = 2;
2955
+ */
2956
+ leaseToken: string;
2957
+ /**
2958
+ * @generated from field: string path = 3;
2959
+ */
2960
+ path: string;
2961
+ /**
2962
+ * @generated from field: string media_type = 4;
2963
+ */
2964
+ mediaType: string;
2965
+ /**
2966
+ * @generated from field: string content = 5;
2967
+ */
2968
+ content: string;
2969
+ /**
2970
+ * @generated from field: string proposal_kind = 6;
2971
+ */
2972
+ proposalKind: string;
2973
+ /**
2974
+ * @generated from field: string step_id = 7;
2975
+ */
2976
+ stepId: string;
2977
+ /**
2978
+ * @generated from field: map<string, string> metadata = 8;
2979
+ */
2980
+ metadata: {
2981
+ [key: string]: string;
2982
+ };
2983
+ };
2984
+ /**
2985
+ * Describes the message agentruntime.v1.RecordRunVirtualFileProposalRequest.
2986
+ * Use `create(RecordRunVirtualFileProposalRequestSchema)` to create a new message.
2987
+ */
2988
+ export declare const RecordRunVirtualFileProposalRequestSchema: GenMessage<RecordRunVirtualFileProposalRequest>;
2989
+ /**
2990
+ * @generated from message agentruntime.v1.RecordRunVirtualFileProposalResponse
2991
+ */
2992
+ export type RecordRunVirtualFileProposalResponse = Message<"agentruntime.v1.RecordRunVirtualFileProposalResponse"> & {
2993
+ /**
2994
+ * @generated from field: agentruntime.v1.AgentRun run = 1;
2995
+ */
2996
+ run?: AgentRun | undefined;
2997
+ /**
2998
+ * @generated from field: agentruntime.v1.AgentRunArtifact artifact = 2;
2999
+ */
3000
+ artifact?: AgentRunArtifact | undefined;
3001
+ /**
3002
+ * @generated from field: agentruntime.v1.RuntimeVirtualFile file = 3;
3003
+ */
3004
+ file?: RuntimeVirtualFile | undefined;
3005
+ /**
3006
+ * @generated from field: agentruntime.v1.RuntimeEvent event = 4;
3007
+ */
3008
+ event?: RuntimeEvent | undefined;
3009
+ };
3010
+ /**
3011
+ * Describes the message agentruntime.v1.RecordRunVirtualFileProposalResponse.
3012
+ * Use `create(RecordRunVirtualFileProposalResponseSchema)` to create a new message.
3013
+ */
3014
+ export declare const RecordRunVirtualFileProposalResponseSchema: GenMessage<RecordRunVirtualFileProposalResponse>;
3015
+ /**
3016
+ * @generated from message agentruntime.v1.RuntimeVirtualFileChange
3017
+ */
3018
+ export type RuntimeVirtualFileChange = Message<"agentruntime.v1.RuntimeVirtualFileChange"> & {
3019
+ /**
3020
+ * @generated from field: string path = 1;
3021
+ */
3022
+ path: string;
3023
+ /**
3024
+ * @generated from field: string media_type = 2;
3025
+ */
3026
+ mediaType: string;
3027
+ /**
3028
+ * @generated from field: string content = 3;
3029
+ */
3030
+ content: string;
3031
+ /**
3032
+ * @generated from field: string proposal_kind = 4;
3033
+ */
3034
+ proposalKind: string;
3035
+ /**
3036
+ * @generated from field: string step_id = 5;
3037
+ */
3038
+ stepId: string;
3039
+ /**
3040
+ * @generated from field: map<string, string> metadata = 6;
3041
+ */
3042
+ metadata: {
3043
+ [key: string]: string;
3044
+ };
3045
+ };
3046
+ /**
3047
+ * Describes the message agentruntime.v1.RuntimeVirtualFileChange.
3048
+ * Use `create(RuntimeVirtualFileChangeSchema)` to create a new message.
3049
+ */
3050
+ export declare const RuntimeVirtualFileChangeSchema: GenMessage<RuntimeVirtualFileChange>;
3051
+ /**
3052
+ * @generated from message agentruntime.v1.RecordRunVirtualFileTransactionRequest
3053
+ */
3054
+ export type RecordRunVirtualFileTransactionRequest = Message<"agentruntime.v1.RecordRunVirtualFileTransactionRequest"> & {
3055
+ /**
3056
+ * @generated from field: string run_id = 1;
3057
+ */
3058
+ runId: string;
3059
+ /**
3060
+ * @generated from field: string lease_token = 2;
3061
+ */
3062
+ leaseToken: string;
3063
+ /**
3064
+ * @generated from field: string transaction_id = 3;
3065
+ */
3066
+ transactionId: string;
3067
+ /**
3068
+ * @generated from field: string parent_revision_id = 4;
3069
+ */
3070
+ parentRevisionId: string;
3071
+ /**
3072
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFileChange changes = 5;
3073
+ */
3074
+ changes: RuntimeVirtualFileChange[];
3075
+ /**
3076
+ * @generated from field: map<string, string> metadata = 6;
3077
+ */
3078
+ metadata: {
3079
+ [key: string]: string;
3080
+ };
3081
+ /**
3082
+ * @generated from field: string idempotency_key = 7;
3083
+ */
3084
+ idempotencyKey: string;
3085
+ };
3086
+ /**
3087
+ * Describes the message agentruntime.v1.RecordRunVirtualFileTransactionRequest.
3088
+ * Use `create(RecordRunVirtualFileTransactionRequestSchema)` to create a new message.
3089
+ */
3090
+ export declare const RecordRunVirtualFileTransactionRequestSchema: GenMessage<RecordRunVirtualFileTransactionRequest>;
3091
+ /**
3092
+ * @generated from message agentruntime.v1.RecordRunVirtualFileTransactionResponse
3093
+ */
3094
+ export type RecordRunVirtualFileTransactionResponse = Message<"agentruntime.v1.RecordRunVirtualFileTransactionResponse"> & {
3095
+ /**
3096
+ * @generated from field: agentruntime.v1.AgentRun run = 1;
3097
+ */
3098
+ run?: AgentRun | undefined;
3099
+ /**
3100
+ * @generated from field: repeated agentruntime.v1.AgentRunArtifact artifacts = 2;
3101
+ */
3102
+ artifacts: AgentRunArtifact[];
3103
+ /**
3104
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFile files = 3;
3105
+ */
3106
+ files: RuntimeVirtualFile[];
3107
+ /**
3108
+ * @generated from field: agentruntime.v1.RuntimeEvent event = 4;
3109
+ */
3110
+ event?: RuntimeEvent | undefined;
3111
+ };
3112
+ /**
3113
+ * Describes the message agentruntime.v1.RecordRunVirtualFileTransactionResponse.
3114
+ * Use `create(RecordRunVirtualFileTransactionResponseSchema)` to create a new message.
3115
+ */
3116
+ export declare const RecordRunVirtualFileTransactionResponseSchema: GenMessage<RecordRunVirtualFileTransactionResponse>;
3117
+ /**
3118
+ * @generated from message agentruntime.v1.PromoteRunVirtualFileTransactionRequest
3119
+ */
3120
+ export type PromoteRunVirtualFileTransactionRequest = Message<"agentruntime.v1.PromoteRunVirtualFileTransactionRequest"> & {
3121
+ /**
3122
+ * @generated from field: string run_id = 1;
3123
+ */
3124
+ runId: string;
3125
+ /**
3126
+ * @generated from field: string lease_token = 2;
3127
+ */
3128
+ leaseToken: string;
3129
+ /**
3130
+ * @generated from field: string transaction_id = 3;
3131
+ */
3132
+ transactionId: string;
3133
+ /**
3134
+ * @generated from field: string expected_parent_revision_id = 4;
3135
+ */
3136
+ expectedParentRevisionId: string;
3137
+ /**
3138
+ * @generated from field: string approver_id = 5;
3139
+ */
3140
+ approverId: string;
3141
+ /**
3142
+ * @generated from field: map<string, string> metadata = 6;
3143
+ */
3144
+ metadata: {
3145
+ [key: string]: string;
3146
+ };
3147
+ };
3148
+ /**
3149
+ * Describes the message agentruntime.v1.PromoteRunVirtualFileTransactionRequest.
3150
+ * Use `create(PromoteRunVirtualFileTransactionRequestSchema)` to create a new message.
3151
+ */
3152
+ export declare const PromoteRunVirtualFileTransactionRequestSchema: GenMessage<PromoteRunVirtualFileTransactionRequest>;
3153
+ /**
3154
+ * @generated from message agentruntime.v1.PromoteRunVirtualFileTransactionResponse
3155
+ */
3156
+ export type PromoteRunVirtualFileTransactionResponse = Message<"agentruntime.v1.PromoteRunVirtualFileTransactionResponse"> & {
3157
+ /**
3158
+ * @generated from field: agentruntime.v1.AgentRun run = 1;
3159
+ */
3160
+ run?: AgentRun | undefined;
3161
+ /**
3162
+ * @generated from field: repeated agentruntime.v1.AgentRunArtifact artifacts = 2;
3163
+ */
3164
+ artifacts: AgentRunArtifact[];
1947
3165
  /**
1948
- * @generated from field: repeated agentruntime.v1.AgentRunWaitSummary waits = 1;
3166
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFile files = 3;
1949
3167
  */
1950
- waits: AgentRunWaitSummary[];
3168
+ files: RuntimeVirtualFile[];
1951
3169
  /**
1952
- * @generated from field: string next_page_token = 2;
3170
+ * @generated from field: agentruntime.v1.RuntimeEvent event = 4;
1953
3171
  */
1954
- nextPageToken: string;
3172
+ event?: RuntimeEvent | undefined;
1955
3173
  };
1956
3174
  /**
1957
- * Describes the message agentruntime.v1.ListRunWaitsResponse.
1958
- * Use `create(ListRunWaitsResponseSchema)` to create a new message.
3175
+ * Describes the message agentruntime.v1.PromoteRunVirtualFileTransactionResponse.
3176
+ * Use `create(PromoteRunVirtualFileTransactionResponseSchema)` to create a new message.
1959
3177
  */
1960
- export declare const ListRunWaitsResponseSchema: GenMessage<ListRunWaitsResponse>;
3178
+ export declare const PromoteRunVirtualFileTransactionResponseSchema: GenMessage<PromoteRunVirtualFileTransactionResponse>;
1961
3179
  /**
1962
- * @generated from message agentruntime.v1.RecordChannelActionReceiptRequest
3180
+ * @generated from message agentruntime.v1.HydrateRunVirtualFileMountRequest
1963
3181
  */
1964
- export type RecordChannelActionReceiptRequest = Message<"agentruntime.v1.RecordChannelActionReceiptRequest"> & {
3182
+ export type HydrateRunVirtualFileMountRequest = Message<"agentruntime.v1.HydrateRunVirtualFileMountRequest"> & {
1965
3183
  /**
1966
- * @generated from field: agentruntime.v1.ChannelActionReceipt receipt = 1;
3184
+ * @generated from field: string run_id = 1;
1967
3185
  */
1968
- receipt?: ChannelActionReceipt | undefined;
1969
- };
1970
- /**
1971
- * Describes the message agentruntime.v1.RecordChannelActionReceiptRequest.
1972
- * Use `create(RecordChannelActionReceiptRequestSchema)` to create a new message.
1973
- */
1974
- export declare const RecordChannelActionReceiptRequestSchema: GenMessage<RecordChannelActionReceiptRequest>;
1975
- /**
1976
- * @generated from message agentruntime.v1.RecordChannelActionReceiptResponse
1977
- */
1978
- export type RecordChannelActionReceiptResponse = Message<"agentruntime.v1.RecordChannelActionReceiptResponse"> & {
3186
+ runId: string;
1979
3187
  /**
1980
- * @generated from field: agentruntime.v1.ChannelActionReceipt receipt = 1;
3188
+ * @generated from field: string lease_token = 2;
1981
3189
  */
1982
- receipt?: ChannelActionReceipt | undefined;
3190
+ leaseToken: string;
1983
3191
  /**
1984
- * @generated from field: bool idempotent_replay = 2;
3192
+ * @generated from field: string mount = 3;
1985
3193
  */
1986
- idempotentReplay: boolean;
3194
+ mount: string;
3195
+ /**
3196
+ * @generated from field: string provider_id = 4;
3197
+ */
3198
+ providerId: string;
3199
+ /**
3200
+ * @generated from field: string connection_id = 5;
3201
+ */
3202
+ connectionId: string;
3203
+ /**
3204
+ * @generated from field: string query = 6;
3205
+ */
3206
+ query: string;
3207
+ /**
3208
+ * @generated from field: int32 limit = 7;
3209
+ */
3210
+ limit: number;
3211
+ /**
3212
+ * @generated from field: map<string, string> metadata = 8;
3213
+ */
3214
+ metadata: {
3215
+ [key: string]: string;
3216
+ };
3217
+ /**
3218
+ * @generated from field: string idempotency_key = 9;
3219
+ */
3220
+ idempotencyKey: string;
1987
3221
  };
1988
3222
  /**
1989
- * Describes the message agentruntime.v1.RecordChannelActionReceiptResponse.
1990
- * Use `create(RecordChannelActionReceiptResponseSchema)` to create a new message.
3223
+ * Describes the message agentruntime.v1.HydrateRunVirtualFileMountRequest.
3224
+ * Use `create(HydrateRunVirtualFileMountRequestSchema)` to create a new message.
1991
3225
  */
1992
- export declare const RecordChannelActionReceiptResponseSchema: GenMessage<RecordChannelActionReceiptResponse>;
3226
+ export declare const HydrateRunVirtualFileMountRequestSchema: GenMessage<HydrateRunVirtualFileMountRequest>;
1993
3227
  /**
1994
- * @generated from message agentruntime.v1.GetChannelActionReceiptRequest
3228
+ * @generated from message agentruntime.v1.HydrateRunVirtualFileMountResponse
1995
3229
  */
1996
- export type GetChannelActionReceiptRequest = Message<"agentruntime.v1.GetChannelActionReceiptRequest"> & {
3230
+ export type HydrateRunVirtualFileMountResponse = Message<"agentruntime.v1.HydrateRunVirtualFileMountResponse"> & {
1997
3231
  /**
1998
- * @generated from field: string id = 1;
3232
+ * @generated from field: agentruntime.v1.AgentRun run = 1;
1999
3233
  */
2000
- id: string;
3234
+ run?: AgentRun | undefined;
3235
+ /**
3236
+ * @generated from field: repeated agentruntime.v1.AgentRunArtifact artifacts = 2;
3237
+ */
3238
+ artifacts: AgentRunArtifact[];
3239
+ /**
3240
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFile files = 3;
3241
+ */
3242
+ files: RuntimeVirtualFile[];
3243
+ /**
3244
+ * @generated from field: agentruntime.v1.RuntimeEvent event = 4;
3245
+ */
3246
+ event?: RuntimeEvent | undefined;
2001
3247
  };
2002
3248
  /**
2003
- * Describes the message agentruntime.v1.GetChannelActionReceiptRequest.
2004
- * Use `create(GetChannelActionReceiptRequestSchema)` to create a new message.
3249
+ * Describes the message agentruntime.v1.HydrateRunVirtualFileMountResponse.
3250
+ * Use `create(HydrateRunVirtualFileMountResponseSchema)` to create a new message.
2005
3251
  */
2006
- export declare const GetChannelActionReceiptRequestSchema: GenMessage<GetChannelActionReceiptRequest>;
3252
+ export declare const HydrateRunVirtualFileMountResponseSchema: GenMessage<HydrateRunVirtualFileMountResponse>;
2007
3253
  /**
2008
- * @generated from message agentruntime.v1.GetChannelActionReceiptResponse
3254
+ * @generated from message agentruntime.v1.InspectRunVirtualFilesRequest
2009
3255
  */
2010
- export type GetChannelActionReceiptResponse = Message<"agentruntime.v1.GetChannelActionReceiptResponse"> & {
3256
+ export type InspectRunVirtualFilesRequest = Message<"agentruntime.v1.InspectRunVirtualFilesRequest"> & {
2011
3257
  /**
2012
- * @generated from field: agentruntime.v1.ChannelActionReceipt receipt = 1;
3258
+ * @generated from field: string run_id = 1;
2013
3259
  */
2014
- receipt?: ChannelActionReceipt | undefined;
3260
+ runId: string;
2015
3261
  };
2016
3262
  /**
2017
- * Describes the message agentruntime.v1.GetChannelActionReceiptResponse.
2018
- * Use `create(GetChannelActionReceiptResponseSchema)` to create a new message.
3263
+ * Describes the message agentruntime.v1.InspectRunVirtualFilesRequest.
3264
+ * Use `create(InspectRunVirtualFilesRequestSchema)` to create a new message.
2019
3265
  */
2020
- export declare const GetChannelActionReceiptResponseSchema: GenMessage<GetChannelActionReceiptResponse>;
3266
+ export declare const InspectRunVirtualFilesRequestSchema: GenMessage<InspectRunVirtualFilesRequest>;
2021
3267
  /**
2022
- * @generated from message agentruntime.v1.ListChannelActionReceiptsRequest
3268
+ * @generated from message agentruntime.v1.RuntimeVirtualFileInspectorSummary
2023
3269
  */
2024
- export type ListChannelActionReceiptsRequest = Message<"agentruntime.v1.ListChannelActionReceiptsRequest"> & {
3270
+ export type RuntimeVirtualFileInspectorSummary = Message<"agentruntime.v1.RuntimeVirtualFileInspectorSummary"> & {
2025
3271
  /**
2026
- * @generated from field: string workspace_id = 1;
3272
+ * @generated from field: int32 file_count = 1;
2027
3273
  */
2028
- workspaceId: string;
3274
+ fileCount: number;
2029
3275
  /**
2030
- * @generated from field: string idempotency_key = 2;
3276
+ * @generated from field: int32 mount_count = 2;
2031
3277
  */
2032
- idempotencyKey: string;
3278
+ mountCount: number;
2033
3279
  /**
2034
- * @generated from field: string actor_entity_id = 3;
3280
+ * @generated from field: int32 transaction_count = 3;
2035
3281
  */
2036
- actorEntityId: string;
3282
+ transactionCount: number;
2037
3283
  /**
2038
- * @generated from field: agentruntime.v1.ChannelActionTargetKind target_kind = 4;
3284
+ * @generated from field: int32 lazy_mount_count = 4;
2039
3285
  */
2040
- targetKind: ChannelActionTargetKind;
3286
+ lazyMountCount: number;
2041
3287
  /**
2042
- * @generated from field: string target_id = 5;
3288
+ * @generated from field: int32 hydrated_file_count = 5;
2043
3289
  */
2044
- targetId: string;
3290
+ hydratedFileCount: number;
2045
3291
  /**
2046
- * @generated from field: string run_id = 6;
3292
+ * @generated from field: int32 cerebro_candidate_count = 6;
2047
3293
  */
2048
- runId: string;
3294
+ cerebroCandidateCount: number;
2049
3295
  /**
2050
- * @generated from field: string wait_id = 7;
3296
+ * @generated from field: int32 cerebro_ready_count = 7;
2051
3297
  */
2052
- waitId: string;
3298
+ cerebroReadyCount: number;
2053
3299
  /**
2054
- * @generated from field: string approval_request_id = 8;
3300
+ * @generated from field: int32 accepted_file_count = 8;
2055
3301
  */
2056
- approvalRequestId: string;
3302
+ acceptedFileCount: number;
2057
3303
  /**
2058
- * @generated from field: string objective_id = 9;
3304
+ * @generated from field: int32 content_address_count = 9;
2059
3305
  */
2060
- objectiveId: string;
3306
+ contentAddressCount: number;
2061
3307
  /**
2062
- * @generated from field: agentruntime.v1.RuntimeChannelKind channel_kind = 10;
3308
+ * @generated from field: int32 hydration_cache_hit_count = 10;
2063
3309
  */
2064
- channelKind: RuntimeChannelKind;
3310
+ hydrationCacheHitCount: number;
2065
3311
  /**
2066
- * @generated from field: string provider_workspace_id = 11;
3312
+ * @generated from field: int32 stale_transaction_count = 11;
2067
3313
  */
2068
- providerWorkspaceId: string;
3314
+ staleTransactionCount: number;
2069
3315
  /**
2070
- * @generated from field: string channel_id = 12;
3316
+ * @generated from field: int32 shadowed_file_count = 12;
2071
3317
  */
2072
- channelId: string;
3318
+ shadowedFileCount: number;
3319
+ };
3320
+ /**
3321
+ * Describes the message agentruntime.v1.RuntimeVirtualFileInspectorSummary.
3322
+ * Use `create(RuntimeVirtualFileInspectorSummarySchema)` to create a new message.
3323
+ */
3324
+ export declare const RuntimeVirtualFileInspectorSummarySchema: GenMessage<RuntimeVirtualFileInspectorSummary>;
3325
+ /**
3326
+ * @generated from message agentruntime.v1.RuntimeVirtualFileInspectorMount
3327
+ */
3328
+ export type RuntimeVirtualFileInspectorMount = Message<"agentruntime.v1.RuntimeVirtualFileInspectorMount"> & {
2073
3329
  /**
2074
- * @generated from field: string thread_id = 13;
3330
+ * @generated from field: string path = 1;
2075
3331
  */
2076
- threadId: string;
3332
+ path: string;
2077
3333
  /**
2078
- * @generated from field: string message_id = 14;
3334
+ * @generated from field: int32 file_count = 2;
2079
3335
  */
2080
- messageId: string;
3336
+ fileCount: number;
2081
3337
  /**
2082
- * @generated from field: string action_id = 15;
3338
+ * @generated from field: int64 size_bytes = 3;
2083
3339
  */
2084
- actionId: string;
3340
+ sizeBytes: bigint;
2085
3341
  /**
2086
- * @generated from field: int32 limit = 16;
3342
+ * @generated from field: bool lazy = 4;
2087
3343
  */
2088
- limit: number;
2089
- };
2090
- /**
2091
- * Describes the message agentruntime.v1.ListChannelActionReceiptsRequest.
2092
- * Use `create(ListChannelActionReceiptsRequestSchema)` to create a new message.
2093
- */
2094
- export declare const ListChannelActionReceiptsRequestSchema: GenMessage<ListChannelActionReceiptsRequest>;
2095
- /**
2096
- * @generated from message agentruntime.v1.ListChannelActionReceiptsResponse
2097
- */
2098
- export type ListChannelActionReceiptsResponse = Message<"agentruntime.v1.ListChannelActionReceiptsResponse"> & {
3344
+ lazy: boolean;
2099
3345
  /**
2100
- * @generated from field: repeated agentruntime.v1.ChannelActionReceipt receipts = 1;
3346
+ * @generated from field: string provider_id = 5;
2101
3347
  */
2102
- receipts: ChannelActionReceipt[];
3348
+ providerId: string;
3349
+ /**
3350
+ * @generated from field: string connection_id = 6;
3351
+ */
3352
+ connectionId: string;
3353
+ /**
3354
+ * @generated from field: string cache_policy = 7;
3355
+ */
3356
+ cachePolicy: string;
3357
+ /**
3358
+ * @generated from field: string policy = 8;
3359
+ */
3360
+ policy: string;
3361
+ /**
3362
+ * @generated from field: string cerebro_index = 9;
3363
+ */
3364
+ cerebroIndex: string;
3365
+ /**
3366
+ * @generated from field: int32 secret_ref_count = 10;
3367
+ */
3368
+ secretRefCount: number;
3369
+ /**
3370
+ * @generated from field: repeated string source_services = 11;
3371
+ */
3372
+ sourceServices: string[];
2103
3373
  };
2104
3374
  /**
2105
- * Describes the message agentruntime.v1.ListChannelActionReceiptsResponse.
2106
- * Use `create(ListChannelActionReceiptsResponseSchema)` to create a new message.
3375
+ * Describes the message agentruntime.v1.RuntimeVirtualFileInspectorMount.
3376
+ * Use `create(RuntimeVirtualFileInspectorMountSchema)` to create a new message.
2107
3377
  */
2108
- export declare const ListChannelActionReceiptsResponseSchema: GenMessage<ListChannelActionReceiptsResponse>;
3378
+ export declare const RuntimeVirtualFileInspectorMountSchema: GenMessage<RuntimeVirtualFileInspectorMount>;
2109
3379
  /**
2110
- * @generated from message agentruntime.v1.ListRunEventsRequest
3380
+ * @generated from message agentruntime.v1.RuntimeVirtualFileInspectorTransaction
2111
3381
  */
2112
- export type ListRunEventsRequest = Message<"agentruntime.v1.ListRunEventsRequest"> & {
3382
+ export type RuntimeVirtualFileInspectorTransaction = Message<"agentruntime.v1.RuntimeVirtualFileInspectorTransaction"> & {
2113
3383
  /**
2114
- * @generated from field: string run_id = 1;
3384
+ * @generated from field: string transaction_id = 1;
2115
3385
  */
2116
- runId: string;
3386
+ transactionId: string;
2117
3387
  /**
2118
- * @generated from field: agentruntime.v1.RuntimeAudience audience = 2;
3388
+ * @generated from field: string view = 2;
2119
3389
  */
2120
- audience: RuntimeAudience;
3390
+ view: string;
3391
+ /**
3392
+ * @generated from field: string parent_revision_id = 3;
3393
+ */
3394
+ parentRevisionId: string;
3395
+ /**
3396
+ * @generated from field: int32 file_count = 4;
3397
+ */
3398
+ fileCount: number;
3399
+ /**
3400
+ * @generated from field: string policy = 5;
3401
+ */
3402
+ policy: string;
3403
+ /**
3404
+ * @generated from field: string cerebro_index = 6;
3405
+ */
3406
+ cerebroIndex: string;
3407
+ /**
3408
+ * @generated from field: repeated string content_addresses = 7;
3409
+ */
3410
+ contentAddresses: string[];
2121
3411
  };
2122
3412
  /**
2123
- * Describes the message agentruntime.v1.ListRunEventsRequest.
2124
- * Use `create(ListRunEventsRequestSchema)` to create a new message.
3413
+ * Describes the message agentruntime.v1.RuntimeVirtualFileInspectorTransaction.
3414
+ * Use `create(RuntimeVirtualFileInspectorTransactionSchema)` to create a new message.
2125
3415
  */
2126
- export declare const ListRunEventsRequestSchema: GenMessage<ListRunEventsRequest>;
3416
+ export declare const RuntimeVirtualFileInspectorTransactionSchema: GenMessage<RuntimeVirtualFileInspectorTransaction>;
2127
3417
  /**
2128
- * @generated from message agentruntime.v1.ListRunEventsResponse
3418
+ * @generated from message agentruntime.v1.InspectRunVirtualFilesResponse
2129
3419
  */
2130
- export type ListRunEventsResponse = Message<"agentruntime.v1.ListRunEventsResponse"> & {
3420
+ export type InspectRunVirtualFilesResponse = Message<"agentruntime.v1.InspectRunVirtualFilesResponse"> & {
2131
3421
  /**
2132
- * @generated from field: repeated agentruntime.v1.RuntimeEvent events = 1;
3422
+ * @generated from field: agentruntime.v1.RuntimeVirtualFileInspectorSummary summary = 1;
2133
3423
  */
2134
- events: RuntimeEvent[];
3424
+ summary?: RuntimeVirtualFileInspectorSummary | undefined;
3425
+ /**
3426
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFileInspectorMount mounts = 2;
3427
+ */
3428
+ mounts: RuntimeVirtualFileInspectorMount[];
3429
+ /**
3430
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFileInspectorTransaction transactions = 3;
3431
+ */
3432
+ transactions: RuntimeVirtualFileInspectorTransaction[];
3433
+ /**
3434
+ * @generated from field: repeated agentruntime.v1.RuntimeVirtualFileEntry entries = 4;
3435
+ */
3436
+ entries: RuntimeVirtualFileEntry[];
2135
3437
  };
2136
3438
  /**
2137
- * Describes the message agentruntime.v1.ListRunEventsResponse.
2138
- * Use `create(ListRunEventsResponseSchema)` to create a new message.
3439
+ * Describes the message agentruntime.v1.InspectRunVirtualFilesResponse.
3440
+ * Use `create(InspectRunVirtualFilesResponseSchema)` to create a new message.
2139
3441
  */
2140
- export declare const ListRunEventsResponseSchema: GenMessage<ListRunEventsResponse>;
3442
+ export declare const InspectRunVirtualFilesResponseSchema: GenMessage<InspectRunVirtualFilesResponse>;
2141
3443
  /**
2142
3444
  * AgentRunState describes the runtime lifecycle of one durable attempt.
2143
3445
  *
@@ -2533,7 +3835,35 @@ export declare enum RuntimeEventType {
2533
3835
  /**
2534
3836
  * @generated from enum value: RUNTIME_EVENT_TYPE_CODEX_OUTCOME_OBSERVED = 25;
2535
3837
  */
2536
- CODEX_OUTCOME_OBSERVED = 25
3838
+ CODEX_OUTCOME_OBSERVED = 25,
3839
+ /**
3840
+ * @generated from enum value: RUNTIME_EVENT_TYPE_CHANNEL_MESSAGE_RECORDED = 26;
3841
+ */
3842
+ CHANNEL_MESSAGE_RECORDED = 26,
3843
+ /**
3844
+ * @generated from enum value: RUNTIME_EVENT_TYPE_MODEL_RESPONSE_RECORDED = 27;
3845
+ */
3846
+ MODEL_RESPONSE_RECORDED = 27,
3847
+ /**
3848
+ * @generated from enum value: RUNTIME_EVENT_TYPE_TOOL_CALL_RECORDED = 28;
3849
+ */
3850
+ TOOL_CALL_RECORDED = 28,
3851
+ /**
3852
+ * @generated from enum value: RUNTIME_EVENT_TYPE_TOOL_RESULT_RECORDED = 29;
3853
+ */
3854
+ TOOL_RESULT_RECORDED = 29,
3855
+ /**
3856
+ * @generated from enum value: RUNTIME_EVENT_TYPE_APPROVAL_REQUESTED = 30;
3857
+ */
3858
+ APPROVAL_REQUESTED = 30,
3859
+ /**
3860
+ * @generated from enum value: RUNTIME_EVENT_TYPE_APPROVAL_RESOLVED = 31;
3861
+ */
3862
+ APPROVAL_RESOLVED = 31,
3863
+ /**
3864
+ * @generated from enum value: RUNTIME_EVENT_TYPE_AGENT_PROGRESS_RECORDED = 32;
3865
+ */
3866
+ AGENT_PROGRESS_RECORDED = 32
2537
3867
  }
2538
3868
  /**
2539
3869
  * Describes the enum agentruntime.v1.RuntimeEventType.
@@ -2662,7 +3992,15 @@ export declare enum RuntimeChannelKind {
2662
3992
  /**
2663
3993
  * @generated from enum value: RUNTIME_CHANNEL_KIND_MONITORING = 9;
2664
3994
  */
2665
- MONITORING = 9
3995
+ MONITORING = 9,
3996
+ /**
3997
+ * @generated from enum value: RUNTIME_CHANNEL_KIND_BROWSER_EXTENSION = 10;
3998
+ */
3999
+ BROWSER_EXTENSION = 10,
4000
+ /**
4001
+ * @generated from enum value: RUNTIME_CHANNEL_KIND_DESKTOP_HELPER = 11;
4002
+ */
4003
+ DESKTOP_HELPER = 11
2666
4004
  }
2667
4005
  /**
2668
4006
  * Describes the enum agentruntime.v1.RuntimeChannelKind.
@@ -2873,7 +4211,15 @@ export declare enum ChannelActionKind {
2873
4211
  /**
2874
4212
  * @generated from enum value: CHANNEL_ACTION_KIND_CODEX_INTERACTION = 7;
2875
4213
  */
2876
- CODEX_INTERACTION = 7
4214
+ CODEX_INTERACTION = 7,
4215
+ /**
4216
+ * @generated from enum value: CHANNEL_ACTION_KIND_BROWSER_CONTROL = 8;
4217
+ */
4218
+ BROWSER_CONTROL = 8,
4219
+ /**
4220
+ * @generated from enum value: CHANNEL_ACTION_KIND_DESKTOP_CONTROL = 9;
4221
+ */
4222
+ DESKTOP_CONTROL = 9
2877
4223
  }
2878
4224
  /**
2879
4225
  * Describes the enum agentruntime.v1.ChannelActionKind.
@@ -2929,7 +4275,23 @@ export declare enum ChannelActionTargetKind {
2929
4275
  /**
2930
4276
  * @generated from enum value: CHANNEL_ACTION_TARGET_KIND_PULL_REQUEST = 10;
2931
4277
  */
2932
- PULL_REQUEST = 10
4278
+ PULL_REQUEST = 10,
4279
+ /**
4280
+ * @generated from enum value: CHANNEL_ACTION_TARGET_KIND_BROWSER_SESSION = 11;
4281
+ */
4282
+ BROWSER_SESSION = 11,
4283
+ /**
4284
+ * @generated from enum value: CHANNEL_ACTION_TARGET_KIND_BROWSER_TAB = 12;
4285
+ */
4286
+ BROWSER_TAB = 12,
4287
+ /**
4288
+ * @generated from enum value: CHANNEL_ACTION_TARGET_KIND_BROWSER_NATIVE_HOST = 13;
4289
+ */
4290
+ BROWSER_NATIVE_HOST = 13,
4291
+ /**
4292
+ * @generated from enum value: CHANNEL_ACTION_TARGET_KIND_DESKTOP_SESSION = 14;
4293
+ */
4294
+ DESKTOP_SESSION = 14
2933
4295
  }
2934
4296
  /**
2935
4297
  * Describes the enum agentruntime.v1.ChannelActionTargetKind.
@@ -3220,6 +4582,19 @@ export declare const AgentRuntimeService: GenService<{
3220
4582
  input: typeof RecordRunStreamCursorRequestSchema;
3221
4583
  output: typeof RecordRunStreamCursorResponseSchema;
3222
4584
  };
4585
+ /**
4586
+ * RecordRunEvent appends an adapter-observed lifecycle event to an existing
4587
+ * AgentRun without requiring a worker lease. Channel adapters use this to
4588
+ * attach Slack/Teams/email delivery, approval, model, and tool milestones
4589
+ * while Platform remains the durable source of truth for the run timeline.
4590
+ *
4591
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.RecordRunEvent
4592
+ */
4593
+ recordRunEvent: {
4594
+ methodKind: "unary";
4595
+ input: typeof RecordRunEventRequestSchema;
4596
+ output: typeof RecordRunEventResponseSchema;
4597
+ };
3223
4598
  /**
3224
4599
  * WaitRun parks the run on an approval, input, timer, or event wait and
3225
4600
  * clears the worker lease so no compute is held while blocked.
@@ -3303,8 +4678,21 @@ export declare const AgentRuntimeService: GenService<{
3303
4678
  output: typeof GetRunResponseSchema;
3304
4679
  };
3305
4680
  /**
3306
- * ListRunsByWorkEnvelope retrieves runs that belong to one durable channel
3307
- * work envelope, such as a Slack thread or future email/Jira/Teams object.
4681
+ * GetTeammateWorkLedger retrieves the durable teammate work projection for
4682
+ * one run. It joins run state, waits, memory citations, connector grants,
4683
+ * VFS state, proactive policy, and channel-visible status into the compact
4684
+ * read model workers and operator consoles use for long-horizon handoff.
4685
+ *
4686
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.GetTeammateWorkLedger
4687
+ */
4688
+ getTeammateWorkLedger: {
4689
+ methodKind: "unary";
4690
+ input: typeof GetTeammateWorkLedgerRequestSchema;
4691
+ output: typeof GetTeammateWorkLedgerResponseSchema;
4692
+ };
4693
+ /**
4694
+ * ListRunsByWorkEnvelope retrieves newest runs that belong to one durable
4695
+ * channel work envelope, such as a Slack thread or future email/Jira/Teams object.
3308
4696
  *
3309
4697
  * @generated from rpc agentruntime.v1.AgentRuntimeService.ListRunsByWorkEnvelope
3310
4698
  */
@@ -3368,4 +4756,95 @@ export declare const AgentRuntimeService: GenService<{
3368
4756
  input: typeof ListRunEventsRequestSchema;
3369
4757
  output: typeof ListRunEventsResponseSchema;
3370
4758
  };
4759
+ /**
4760
+ * ListRunVirtualFiles lists the durable read model of a run's virtual
4761
+ * filesystem, including context files and agent-authored proposal files.
4762
+ *
4763
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.ListRunVirtualFiles
4764
+ */
4765
+ listRunVirtualFiles: {
4766
+ methodKind: "unary";
4767
+ input: typeof ListRunVirtualFilesRequestSchema;
4768
+ output: typeof ListRunVirtualFilesResponseSchema;
4769
+ };
4770
+ /**
4771
+ * ReadRunVirtualFile reads a bounded slice of one run virtual file. Workers
4772
+ * should use this instead of loading every virtual file into model context.
4773
+ *
4774
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.ReadRunVirtualFile
4775
+ */
4776
+ readRunVirtualFile: {
4777
+ methodKind: "unary";
4778
+ input: typeof ReadRunVirtualFileRequestSchema;
4779
+ output: typeof ReadRunVirtualFileResponseSchema;
4780
+ };
4781
+ /**
4782
+ * SearchRunVirtualFiles performs bounded literal search over text virtual
4783
+ * files projected for an AgentRun.
4784
+ *
4785
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.SearchRunVirtualFiles
4786
+ */
4787
+ searchRunVirtualFiles: {
4788
+ methodKind: "unary";
4789
+ input: typeof SearchRunVirtualFilesRequestSchema;
4790
+ output: typeof SearchRunVirtualFilesResponseSchema;
4791
+ };
4792
+ /**
4793
+ * RecordRunVirtualFileProposal writes an agent-authored file into the
4794
+ * proposal/workspace side of the VFS. Source mounts such as /context remain
4795
+ * read-only; promotion to real side effects happens through reviewers or
4796
+ * downstream services.
4797
+ *
4798
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.RecordRunVirtualFileProposal
4799
+ */
4800
+ recordRunVirtualFileProposal: {
4801
+ methodKind: "unary";
4802
+ input: typeof RecordRunVirtualFileProposalRequestSchema;
4803
+ output: typeof RecordRunVirtualFileProposalResponseSchema;
4804
+ };
4805
+ /**
4806
+ * RecordRunVirtualFileTransaction atomically stages a multi-file VFS change
4807
+ * set as durable proposal artifacts with shared revision and review metadata.
4808
+ *
4809
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.RecordRunVirtualFileTransaction
4810
+ */
4811
+ recordRunVirtualFileTransaction: {
4812
+ methodKind: "unary";
4813
+ input: typeof RecordRunVirtualFileTransactionRequestSchema;
4814
+ output: typeof RecordRunVirtualFileTransactionResponseSchema;
4815
+ };
4816
+ /**
4817
+ * PromoteRunVirtualFileTransaction records a reviewed transaction as the
4818
+ * accepted workspace view. Promotion is idempotent by transaction and keeps
4819
+ * proposal artifacts intact for audit.
4820
+ *
4821
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.PromoteRunVirtualFileTransaction
4822
+ */
4823
+ promoteRunVirtualFileTransaction: {
4824
+ methodKind: "unary";
4825
+ input: typeof PromoteRunVirtualFileTransactionRequestSchema;
4826
+ output: typeof PromoteRunVirtualFileTransactionResponseSchema;
4827
+ };
4828
+ /**
4829
+ * HydrateRunVirtualFileMount resolves a lazy connector mount into bounded
4830
+ * run-scoped VFS files without exposing credentials to the worker.
4831
+ *
4832
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.HydrateRunVirtualFileMount
4833
+ */
4834
+ hydrateRunVirtualFileMount: {
4835
+ methodKind: "unary";
4836
+ input: typeof HydrateRunVirtualFileMountRequestSchema;
4837
+ output: typeof HydrateRunVirtualFileMountResponseSchema;
4838
+ };
4839
+ /**
4840
+ * InspectRunVirtualFiles returns a debug projection over mounts,
4841
+ * transactions, content addresses, and Cerebro indexing readiness.
4842
+ *
4843
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.InspectRunVirtualFiles
4844
+ */
4845
+ inspectRunVirtualFiles: {
4846
+ methodKind: "unary";
4847
+ input: typeof InspectRunVirtualFilesRequestSchema;
4848
+ output: typeof InspectRunVirtualFilesResponseSchema;
4849
+ };
3371
4850
  }>;