@evalops/sdk-ts 0.1.97 → 0.1.99

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.
@@ -2032,6 +2032,466 @@ export type GetRunResponse = Message<"agentruntime.v1.GetRunResponse"> & {
2032
2032
  * Use `create(GetRunResponseSchema)` to create a new message.
2033
2033
  */
2034
2034
  export declare const GetRunResponseSchema: GenMessage<GetRunResponse>;
2035
+ /**
2036
+ * @generated from message agentruntime.v1.GetTeammateWorkLedgerRequest
2037
+ */
2038
+ export type GetTeammateWorkLedgerRequest = Message<"agentruntime.v1.GetTeammateWorkLedgerRequest"> & {
2039
+ /**
2040
+ * @generated from field: string run_id = 1;
2041
+ */
2042
+ runId: string;
2043
+ };
2044
+ /**
2045
+ * Describes the message agentruntime.v1.GetTeammateWorkLedgerRequest.
2046
+ * Use `create(GetTeammateWorkLedgerRequestSchema)` to create a new message.
2047
+ */
2048
+ export declare const GetTeammateWorkLedgerRequestSchema: GenMessage<GetTeammateWorkLedgerRequest>;
2049
+ /**
2050
+ * @generated from message agentruntime.v1.GetTeammateWorkLedgerResponse
2051
+ */
2052
+ export type GetTeammateWorkLedgerResponse = Message<"agentruntime.v1.GetTeammateWorkLedgerResponse"> & {
2053
+ /**
2054
+ * @generated from field: agentruntime.v1.TeammateWorkLedger ledger = 1;
2055
+ */
2056
+ ledger?: TeammateWorkLedger | undefined;
2057
+ /**
2058
+ * @generated from field: agentruntime.v1.RuntimeVirtualFile ledger_file = 2;
2059
+ */
2060
+ ledgerFile?: RuntimeVirtualFile | undefined;
2061
+ };
2062
+ /**
2063
+ * Describes the message agentruntime.v1.GetTeammateWorkLedgerResponse.
2064
+ * Use `create(GetTeammateWorkLedgerResponseSchema)` to create a new message.
2065
+ */
2066
+ export declare const GetTeammateWorkLedgerResponseSchema: GenMessage<GetTeammateWorkLedgerResponse>;
2067
+ /**
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
2074
+ */
2075
+ export type TeammateWorkLedger = Message<"agentruntime.v1.TeammateWorkLedger"> & {
2076
+ /**
2077
+ * @generated from field: string schema_version = 1;
2078
+ */
2079
+ schemaVersion: string;
2080
+ /**
2081
+ * @generated from field: string run_id = 2;
2082
+ */
2083
+ runId: string;
2084
+ /**
2085
+ * @generated from field: agentruntime.v1.AgentRunLinkage linkage = 3;
2086
+ */
2087
+ linkage?: AgentRunLinkage | undefined;
2088
+ /**
2089
+ * @generated from field: agentruntime.v1.AgentRunState state = 4;
2090
+ */
2091
+ state: AgentRunState;
2092
+ /**
2093
+ * @generated from field: string objective_title = 5;
2094
+ */
2095
+ objectiveTitle: string;
2096
+ /**
2097
+ * @generated from field: string worker_queue = 6;
2098
+ */
2099
+ workerQueue: string;
2100
+ /**
2101
+ * @generated from field: int32 attempt = 7;
2102
+ */
2103
+ attempt: number;
2104
+ /**
2105
+ * @generated from field: string work_envelope_id = 8;
2106
+ */
2107
+ workEnvelopeId: string;
2108
+ /**
2109
+ * @generated from field: string work_envelope_kind = 9;
2110
+ */
2111
+ workEnvelopeKind: string;
2112
+ /**
2113
+ * @generated from field: string workstream_id = 10;
2114
+ */
2115
+ workstreamId: string;
2116
+ /**
2117
+ * @generated from field: string next_action = 11;
2118
+ */
2119
+ nextAction: string;
2120
+ /**
2121
+ * @generated from field: repeated agentruntime.v1.TeammateWorkLedgerBlocker blockers = 12;
2122
+ */
2123
+ blockers: TeammateWorkLedgerBlocker[];
2124
+ /**
2125
+ * @generated from field: repeated agentruntime.v1.TeammateWorkLedgerConnectorAccess connector_access = 13;
2126
+ */
2127
+ connectorAccess: TeammateWorkLedgerConnectorAccess[];
2128
+ /**
2129
+ * @generated from field: repeated agentruntime.v1.TeammateWorkLedgerMemoryCitation memory_citations = 14;
2130
+ */
2131
+ memoryCitations: TeammateWorkLedgerMemoryCitation[];
2132
+ /**
2133
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerVfsSummary vfs_summary = 15;
2134
+ */
2135
+ vfsSummary?: TeammateWorkLedgerVfsSummary | undefined;
2136
+ /**
2137
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerCerebroContext cerebro_context = 16;
2138
+ */
2139
+ cerebroContext?: TeammateWorkLedgerCerebroContext | undefined;
2140
+ /**
2141
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerProactivePolicy proactive_policy = 17;
2142
+ */
2143
+ proactivePolicy?: TeammateWorkLedgerProactivePolicy | undefined;
2144
+ /**
2145
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerChannelStatus channel_status = 18;
2146
+ */
2147
+ channelStatus?: TeammateWorkLedgerChannelStatus | undefined;
2148
+ /**
2149
+ * @generated from field: repeated string evidence_paths = 19;
2150
+ */
2151
+ evidencePaths: string[];
2152
+ /**
2153
+ * @generated from field: string handoff_policy = 20;
2154
+ */
2155
+ handoffPolicy: string;
2156
+ /**
2157
+ * @generated from field: string resume_checkpoint_path = 21;
2158
+ */
2159
+ resumeCheckpointPath: string;
2160
+ /**
2161
+ * @generated from field: google.protobuf.Timestamp updated_at = 22;
2162
+ */
2163
+ updatedAt?: Timestamp | undefined;
2164
+ /**
2165
+ * @generated from field: int32 event_count = 23;
2166
+ */
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"> & {
2178
+ /**
2179
+ * @generated from field: string wait_id = 1;
2180
+ */
2181
+ waitId: string;
2182
+ /**
2183
+ * @generated from field: agentruntime.v1.AgentRunWaitType type = 2;
2184
+ */
2185
+ type: AgentRunWaitType;
2186
+ /**
2187
+ * @generated from field: string reason = 3;
2188
+ */
2189
+ reason: string;
2190
+ /**
2191
+ * @generated from field: string external_ref = 4;
2192
+ */
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
+ * @generated from field: agentruntime.v1.TeammateWorkLedgerWaitResumeContract resume_contract = 7;
2204
+ */
2205
+ resumeContract?: TeammateWorkLedgerWaitResumeContract | undefined;
2206
+ };
2207
+ /**
2208
+ * Describes the message agentruntime.v1.TeammateWorkLedgerBlocker.
2209
+ * Use `create(TeammateWorkLedgerBlockerSchema)` to create a new message.
2210
+ */
2211
+ export declare const TeammateWorkLedgerBlockerSchema: GenMessage<TeammateWorkLedgerBlocker>;
2212
+ /**
2213
+ * TeammateWorkLedgerWaitResumeContract makes parked-run resumption
2214
+ * machine-readable for channel adapters and workers. Slack actions can carry
2215
+ * only the compact value fields, then resolve the durable wait through
2216
+ * ListRunWaits before calling ResumeRun.
2217
+ *
2218
+ * @generated from message agentruntime.v1.TeammateWorkLedgerWaitResumeContract
2219
+ */
2220
+ export type TeammateWorkLedgerWaitResumeContract = Message<"agentruntime.v1.TeammateWorkLedgerWaitResumeContract"> & {
2221
+ /**
2222
+ * @generated from field: string schema_version = 1;
2223
+ */
2224
+ schemaVersion: string;
2225
+ /**
2226
+ * @generated from field: string resume_rpc = 2;
2227
+ */
2228
+ resumeRpc: string;
2229
+ /**
2230
+ * @generated from field: string lookup_rpc = 3;
2231
+ */
2232
+ lookupRpc: string;
2233
+ /**
2234
+ * @generated from field: string lookup_external_ref_field = 4;
2235
+ */
2236
+ lookupExternalRefField: string;
2237
+ /**
2238
+ * @generated from field: repeated string required_resume_fields = 5;
2239
+ */
2240
+ requiredResumeFields: string[];
2241
+ /**
2242
+ * @generated from field: repeated string allowed_decisions = 6;
2243
+ */
2244
+ allowedDecisions: string[];
2245
+ /**
2246
+ * @generated from field: repeated string channel_action_value_fields = 7;
2247
+ */
2248
+ channelActionValueFields: string[];
2249
+ /**
2250
+ * @generated from field: string idempotency_join_key = 8;
2251
+ */
2252
+ idempotencyJoinKey: string;
2253
+ /**
2254
+ * @generated from field: string approval_request_id = 9;
2255
+ */
2256
+ approvalRequestId: string;
2257
+ /**
2258
+ * @generated from field: bool requires_safe_summary = 10;
2259
+ */
2260
+ requiresSafeSummary: boolean;
2261
+ };
2262
+ /**
2263
+ * Describes the message agentruntime.v1.TeammateWorkLedgerWaitResumeContract.
2264
+ * Use `create(TeammateWorkLedgerWaitResumeContractSchema)` to create a new message.
2265
+ */
2266
+ export declare const TeammateWorkLedgerWaitResumeContractSchema: GenMessage<TeammateWorkLedgerWaitResumeContract>;
2267
+ /**
2268
+ * @generated from message agentruntime.v1.TeammateWorkLedgerConnectorAccess
2269
+ */
2270
+ export type TeammateWorkLedgerConnectorAccess = Message<"agentruntime.v1.TeammateWorkLedgerConnectorAccess"> & {
2271
+ /**
2272
+ * @generated from field: string mount_path = 1;
2273
+ */
2274
+ mountPath: string;
2275
+ /**
2276
+ * @generated from field: string provider_id = 2;
2277
+ */
2278
+ providerId: string;
2279
+ /**
2280
+ * @generated from field: string connection_id = 3;
2281
+ */
2282
+ connectionId: string;
2283
+ /**
2284
+ * @generated from field: repeated string capabilities = 4;
2285
+ */
2286
+ capabilities: string[];
2287
+ /**
2288
+ * @generated from field: bool grant_required = 5;
2289
+ */
2290
+ grantRequired: boolean;
2291
+ /**
2292
+ * @generated from field: string lease_policy = 6;
2293
+ */
2294
+ leasePolicy: string;
2295
+ /**
2296
+ * @generated from field: string identity_mode = 7;
2297
+ */
2298
+ identityMode: string;
2299
+ /**
2300
+ * @generated from field: string credential_version_strategy = 8;
2301
+ */
2302
+ credentialVersionStrategy: string;
2303
+ /**
2304
+ * @generated from field: int32 secret_ref_count = 9;
2305
+ */
2306
+ secretRefCount: number;
2307
+ /**
2308
+ * @generated from field: repeated string credential_ref_names = 10;
2309
+ */
2310
+ credentialRefNames: string[];
2311
+ };
2312
+ /**
2313
+ * Describes the message agentruntime.v1.TeammateWorkLedgerConnectorAccess.
2314
+ * Use `create(TeammateWorkLedgerConnectorAccessSchema)` to create a new message.
2315
+ */
2316
+ export declare const TeammateWorkLedgerConnectorAccessSchema: GenMessage<TeammateWorkLedgerConnectorAccess>;
2317
+ /**
2318
+ * @generated from message agentruntime.v1.TeammateWorkLedgerMemoryCitation
2319
+ */
2320
+ export type TeammateWorkLedgerMemoryCitation = Message<"agentruntime.v1.TeammateWorkLedgerMemoryCitation"> & {
2321
+ /**
2322
+ * @generated from field: string memory_id = 1;
2323
+ */
2324
+ memoryId: string;
2325
+ /**
2326
+ * @generated from field: string memory_type = 2;
2327
+ */
2328
+ memoryType: string;
2329
+ /**
2330
+ * @generated from field: string source = 3;
2331
+ */
2332
+ source: string;
2333
+ /**
2334
+ * @generated from field: repeated string source_uris = 4;
2335
+ */
2336
+ sourceUris: string[];
2337
+ /**
2338
+ * @generated from field: string supersedes_memory_id = 5;
2339
+ */
2340
+ supersedesMemoryId: string;
2341
+ /**
2342
+ * @generated from field: string superseded_by_memory_id = 6;
2343
+ */
2344
+ supersededByMemoryId: string;
2345
+ /**
2346
+ * @generated from field: string review_status = 7;
2347
+ */
2348
+ reviewStatus: string;
2349
+ /**
2350
+ * @generated from field: repeated string entity_ids = 8;
2351
+ */
2352
+ entityIds: string[];
2353
+ /**
2354
+ * @generated from field: string content_preview = 9;
2355
+ */
2356
+ contentPreview: string;
2357
+ };
2358
+ /**
2359
+ * Describes the message agentruntime.v1.TeammateWorkLedgerMemoryCitation.
2360
+ * Use `create(TeammateWorkLedgerMemoryCitationSchema)` to create a new message.
2361
+ */
2362
+ export declare const TeammateWorkLedgerMemoryCitationSchema: GenMessage<TeammateWorkLedgerMemoryCitation>;
2363
+ /**
2364
+ * @generated from message agentruntime.v1.TeammateWorkLedgerVfsSummary
2365
+ */
2366
+ export type TeammateWorkLedgerVfsSummary = Message<"agentruntime.v1.TeammateWorkLedgerVfsSummary"> & {
2367
+ /**
2368
+ * @generated from field: int32 file_count = 1;
2369
+ */
2370
+ fileCount: number;
2371
+ /**
2372
+ * @generated from field: int32 mount_count = 2;
2373
+ */
2374
+ mountCount: number;
2375
+ /**
2376
+ * @generated from field: int32 connector_mount_count = 3;
2377
+ */
2378
+ connectorMountCount: number;
2379
+ /**
2380
+ * @generated from field: int32 memory_record_count = 4;
2381
+ */
2382
+ memoryRecordCount: number;
2383
+ /**
2384
+ * @generated from field: int32 transaction_count = 5;
2385
+ */
2386
+ transactionCount: number;
2387
+ /**
2388
+ * @generated from field: int32 cerebro_index_eligible_file_count = 6;
2389
+ */
2390
+ cerebroIndexEligibleFileCount: number;
2391
+ /**
2392
+ * @generated from field: bool has_resume_checkpoint = 7;
2393
+ */
2394
+ hasResumeCheckpoint: boolean;
2395
+ };
2396
+ /**
2397
+ * Describes the message agentruntime.v1.TeammateWorkLedgerVfsSummary.
2398
+ * Use `create(TeammateWorkLedgerVfsSummarySchema)` to create a new message.
2399
+ */
2400
+ export declare const TeammateWorkLedgerVfsSummarySchema: GenMessage<TeammateWorkLedgerVfsSummary>;
2401
+ /**
2402
+ * @generated from message agentruntime.v1.TeammateWorkLedgerCerebroContext
2403
+ */
2404
+ export type TeammateWorkLedgerCerebroContext = Message<"agentruntime.v1.TeammateWorkLedgerCerebroContext"> & {
2405
+ /**
2406
+ * @generated from field: string provider = 1;
2407
+ */
2408
+ provider: string;
2409
+ /**
2410
+ * @generated from field: string query = 2;
2411
+ */
2412
+ query: string;
2413
+ /**
2414
+ * @generated from field: repeated string thing_ids = 3;
2415
+ */
2416
+ thingIds: string[];
2417
+ /**
2418
+ * @generated from field: repeated string fact_ids = 4;
2419
+ */
2420
+ factIds: string[];
2421
+ /**
2422
+ * @generated from field: repeated string event_ids = 5;
2423
+ */
2424
+ eventIds: string[];
2425
+ /**
2426
+ * @generated from field: int32 eligible_file_count = 6;
2427
+ */
2428
+ eligibleFileCount: number;
2429
+ };
2430
+ /**
2431
+ * Describes the message agentruntime.v1.TeammateWorkLedgerCerebroContext.
2432
+ * Use `create(TeammateWorkLedgerCerebroContextSchema)` to create a new message.
2433
+ */
2434
+ export declare const TeammateWorkLedgerCerebroContextSchema: GenMessage<TeammateWorkLedgerCerebroContext>;
2435
+ /**
2436
+ * @generated from message agentruntime.v1.TeammateWorkLedgerProactivePolicy
2437
+ */
2438
+ export type TeammateWorkLedgerProactivePolicy = Message<"agentruntime.v1.TeammateWorkLedgerProactivePolicy"> & {
2439
+ /**
2440
+ * @generated from field: bool enabled = 1;
2441
+ */
2442
+ enabled: boolean;
2443
+ /**
2444
+ * @generated from field: repeated string trigger_kinds = 2;
2445
+ */
2446
+ triggerKinds: string[];
2447
+ /**
2448
+ * @generated from field: repeated string progress_update_triggers = 3;
2449
+ */
2450
+ progressUpdateTriggers: string[];
2451
+ /**
2452
+ * @generated from field: string presence_policy = 4;
2453
+ */
2454
+ presencePolicy: string;
2455
+ /**
2456
+ * @generated from field: int32 update_budget = 5;
2457
+ */
2458
+ updateBudget: number;
2459
+ };
2460
+ /**
2461
+ * Describes the message agentruntime.v1.TeammateWorkLedgerProactivePolicy.
2462
+ * Use `create(TeammateWorkLedgerProactivePolicySchema)` to create a new message.
2463
+ */
2464
+ export declare const TeammateWorkLedgerProactivePolicySchema: GenMessage<TeammateWorkLedgerProactivePolicy>;
2465
+ /**
2466
+ * @generated from message agentruntime.v1.TeammateWorkLedgerChannelStatus
2467
+ */
2468
+ export type TeammateWorkLedgerChannelStatus = Message<"agentruntime.v1.TeammateWorkLedgerChannelStatus"> & {
2469
+ /**
2470
+ * @generated from field: string channel_kind = 1;
2471
+ */
2472
+ channelKind: string;
2473
+ /**
2474
+ * @generated from field: string channel_id = 2;
2475
+ */
2476
+ channelId: string;
2477
+ /**
2478
+ * @generated from field: string thread_id = 3;
2479
+ */
2480
+ threadId: string;
2481
+ /**
2482
+ * @generated from field: string last_visible_event_id = 4;
2483
+ */
2484
+ lastVisibleEventId: string;
2485
+ /**
2486
+ * @generated from field: string last_visible_summary = 5;
2487
+ */
2488
+ lastVisibleSummary: string;
2489
+ };
2490
+ /**
2491
+ * Describes the message agentruntime.v1.TeammateWorkLedgerChannelStatus.
2492
+ * Use `create(TeammateWorkLedgerChannelStatusSchema)` to create a new message.
2493
+ */
2494
+ export declare const TeammateWorkLedgerChannelStatusSchema: GenMessage<TeammateWorkLedgerChannelStatus>;
2035
2495
  /**
2036
2496
  * @generated from message agentruntime.v1.ListRunsByWorkEnvelopeRequest
2037
2497
  */
@@ -2112,6 +2572,13 @@ export type ListRunWaitsRequest = Message<"agentruntime.v1.ListRunWaitsRequest">
2112
2572
  * @generated from field: string page_token = 10;
2113
2573
  */
2114
2574
  pageToken: string;
2575
+ /**
2576
+ * external_ref filters waits by their external join key, such as an
2577
+ * approvals.v1 ApprovalRequest id carried by desktop-control approval waits.
2578
+ *
2579
+ * @generated from field: string external_ref = 11;
2580
+ */
2581
+ externalRef: string;
2115
2582
  };
2116
2583
  /**
2117
2584
  * Describes the message agentruntime.v1.ListRunWaitsRequest.
@@ -3588,7 +4055,11 @@ export declare enum RuntimeChannelKind {
3588
4055
  /**
3589
4056
  * @generated from enum value: RUNTIME_CHANNEL_KIND_BROWSER_EXTENSION = 10;
3590
4057
  */
3591
- BROWSER_EXTENSION = 10
4058
+ BROWSER_EXTENSION = 10,
4059
+ /**
4060
+ * @generated from enum value: RUNTIME_CHANNEL_KIND_DESKTOP_HELPER = 11;
4061
+ */
4062
+ DESKTOP_HELPER = 11
3592
4063
  }
3593
4064
  /**
3594
4065
  * Describes the enum agentruntime.v1.RuntimeChannelKind.
@@ -3677,7 +4148,15 @@ export declare enum RuntimeTriggerKind {
3677
4148
  /**
3678
4149
  * @generated from enum value: RUNTIME_TRIGGER_KIND_PROACTIVE_PATTERN = 18;
3679
4150
  */
3680
- PROACTIVE_PATTERN = 18
4151
+ PROACTIVE_PATTERN = 18,
4152
+ /**
4153
+ * @generated from enum value: RUNTIME_TRIGGER_KIND_SLACK_ASSISTANT_THREAD_STARTED = 19;
4154
+ */
4155
+ SLACK_ASSISTANT_THREAD_STARTED = 19,
4156
+ /**
4157
+ * @generated from enum value: RUNTIME_TRIGGER_KIND_SLACK_ASSISTANT_THREAD_CONTEXT_CHANGED = 20;
4158
+ */
4159
+ SLACK_ASSISTANT_THREAD_CONTEXT_CHANGED = 20
3681
4160
  }
3682
4161
  /**
3683
4162
  * Describes the enum agentruntime.v1.RuntimeTriggerKind.
@@ -3803,7 +4282,11 @@ export declare enum ChannelActionKind {
3803
4282
  /**
3804
4283
  * @generated from enum value: CHANNEL_ACTION_KIND_BROWSER_CONTROL = 8;
3805
4284
  */
3806
- BROWSER_CONTROL = 8
4285
+ BROWSER_CONTROL = 8,
4286
+ /**
4287
+ * @generated from enum value: CHANNEL_ACTION_KIND_DESKTOP_CONTROL = 9;
4288
+ */
4289
+ DESKTOP_CONTROL = 9
3807
4290
  }
3808
4291
  /**
3809
4292
  * Describes the enum agentruntime.v1.ChannelActionKind.
@@ -3871,7 +4354,11 @@ export declare enum ChannelActionTargetKind {
3871
4354
  /**
3872
4355
  * @generated from enum value: CHANNEL_ACTION_TARGET_KIND_BROWSER_NATIVE_HOST = 13;
3873
4356
  */
3874
- BROWSER_NATIVE_HOST = 13
4357
+ BROWSER_NATIVE_HOST = 13,
4358
+ /**
4359
+ * @generated from enum value: CHANNEL_ACTION_TARGET_KIND_DESKTOP_SESSION = 14;
4360
+ */
4361
+ DESKTOP_SESSION = 14
3875
4362
  }
3876
4363
  /**
3877
4364
  * Describes the enum agentruntime.v1.ChannelActionTargetKind.
@@ -4258,8 +4745,21 @@ export declare const AgentRuntimeService: GenService<{
4258
4745
  output: typeof GetRunResponseSchema;
4259
4746
  };
4260
4747
  /**
4261
- * ListRunsByWorkEnvelope retrieves runs that belong to one durable channel
4262
- * work envelope, such as a Slack thread or future email/Jira/Teams object.
4748
+ * GetTeammateWorkLedger retrieves the durable teammate work projection for
4749
+ * one run. It joins run state, waits, memory citations, connector grants,
4750
+ * VFS state, proactive policy, and channel-visible status into the compact
4751
+ * read model workers and operator consoles use for long-horizon handoff.
4752
+ *
4753
+ * @generated from rpc agentruntime.v1.AgentRuntimeService.GetTeammateWorkLedger
4754
+ */
4755
+ getTeammateWorkLedger: {
4756
+ methodKind: "unary";
4757
+ input: typeof GetTeammateWorkLedgerRequestSchema;
4758
+ output: typeof GetTeammateWorkLedgerResponseSchema;
4759
+ };
4760
+ /**
4761
+ * ListRunsByWorkEnvelope retrieves newest runs that belong to one durable
4762
+ * channel work envelope, such as a Slack thread or future email/Jira/Teams object.
4263
4763
  *
4264
4764
  * @generated from rpc agentruntime.v1.AgentRuntimeService.ListRunsByWorkEnvelope
4265
4765
  */