@evalops/sdk-ts 0.1.110 → 0.1.111
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
2
|
import type { Agent, AgentConfig } from "../../agents/v1/agents_pb.js";
|
|
3
3
|
import type { CodexInteractionDecision, CodexInteractionRequest, CodexOutcomeSignal, CodexOutputTarget, CodexRunProgress, CodexWorkRequest } from "../../codex/v1/codex_pb.js";
|
|
4
|
+
import type { RiskLevel } from "../../common/v1/risk_pb.js";
|
|
4
5
|
import type { Surface } from "../../common/v1/surface_pb.js";
|
|
5
6
|
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
6
7
|
import type { Objective } from "../../objectives/v1/objectives_pb.js";
|
|
@@ -1927,12 +1928,427 @@ export type RuntimeEvent = Message<"agentruntime.v1.RuntimeEvent"> & {
|
|
|
1927
1928
|
* @generated from field: agentruntime.v1.RuntimeTraceContext trace_context = 21;
|
|
1928
1929
|
*/
|
|
1929
1930
|
traceContext?: RuntimeTraceContext | undefined;
|
|
1931
|
+
/**
|
|
1932
|
+
* @generated from field: agentruntime.v1.NativeToolAttemptEvidence native_tool_attempt = 22;
|
|
1933
|
+
*/
|
|
1934
|
+
nativeToolAttempt?: NativeToolAttemptEvidence | undefined;
|
|
1935
|
+
/**
|
|
1936
|
+
* @generated from field: agentruntime.v1.NativeAgentEventEvidence native_agent_event = 23;
|
|
1937
|
+
*/
|
|
1938
|
+
nativeAgentEvent?: NativeAgentEventEvidence | undefined;
|
|
1930
1939
|
};
|
|
1931
1940
|
/**
|
|
1932
1941
|
* Describes the message agentruntime.v1.RuntimeEvent.
|
|
1933
1942
|
* Use `create(RuntimeEventSchema)` to create a new message.
|
|
1934
1943
|
*/
|
|
1935
1944
|
export declare const RuntimeEventSchema: GenMessage<RuntimeEvent>;
|
|
1945
|
+
/**
|
|
1946
|
+
* RuntimeEvidenceGap records a typed, safe reason why a runtime observation is
|
|
1947
|
+
* not yet approval-ready. It carries only proof-state metadata and debug refs;
|
|
1948
|
+
* raw credentials, grants, prompts, and tool arguments must not be copied here.
|
|
1949
|
+
*
|
|
1950
|
+
* @generated from message agentruntime.v1.RuntimeEvidenceGap
|
|
1951
|
+
*/
|
|
1952
|
+
export type RuntimeEvidenceGap = Message<"agentruntime.v1.RuntimeEvidenceGap"> & {
|
|
1953
|
+
/**
|
|
1954
|
+
* @generated from field: agentruntime.v1.RuntimeEvidenceGapReason reason = 1;
|
|
1955
|
+
*/
|
|
1956
|
+
reason: RuntimeEvidenceGapReason;
|
|
1957
|
+
/**
|
|
1958
|
+
* @generated from field: agentruntime.v1.RuntimeEvidenceState evidence_state = 2;
|
|
1959
|
+
*/
|
|
1960
|
+
evidenceState: RuntimeEvidenceState;
|
|
1961
|
+
/**
|
|
1962
|
+
* @generated from field: string message = 3;
|
|
1963
|
+
*/
|
|
1964
|
+
message: string;
|
|
1965
|
+
/**
|
|
1966
|
+
* @generated from field: string source = 4;
|
|
1967
|
+
*/
|
|
1968
|
+
source: string;
|
|
1969
|
+
/**
|
|
1970
|
+
* @generated from field: string source_event_id = 5;
|
|
1971
|
+
*/
|
|
1972
|
+
sourceEventId: string;
|
|
1973
|
+
/**
|
|
1974
|
+
* @generated from field: string runtime_event_id = 6;
|
|
1975
|
+
*/
|
|
1976
|
+
runtimeEventId: string;
|
|
1977
|
+
/**
|
|
1978
|
+
* @generated from field: string trace_id = 7;
|
|
1979
|
+
*/
|
|
1980
|
+
traceId: string;
|
|
1981
|
+
/**
|
|
1982
|
+
* @generated from field: bool approval_blocking = 8;
|
|
1983
|
+
*/
|
|
1984
|
+
approvalBlocking: boolean;
|
|
1985
|
+
};
|
|
1986
|
+
/**
|
|
1987
|
+
* Describes the message agentruntime.v1.RuntimeEvidenceGap.
|
|
1988
|
+
* Use `create(RuntimeEvidenceGapSchema)` to create a new message.
|
|
1989
|
+
*/
|
|
1990
|
+
export declare const RuntimeEvidenceGapSchema: GenMessage<RuntimeEvidenceGap>;
|
|
1991
|
+
/**
|
|
1992
|
+
* NativeToolAttemptEvidence is the typed Platform primitive for answering
|
|
1993
|
+
* "What did the agent try to do?" from a native Maestro/Codex tool-attempt
|
|
1994
|
+
* event. It intentionally carries only redaction-safe identifiers, summaries,
|
|
1995
|
+
* and digest references; raw prompts, tool arguments, and credential grants
|
|
1996
|
+
* must not be copied here.
|
|
1997
|
+
*
|
|
1998
|
+
* @generated from message agentruntime.v1.NativeToolAttemptEvidence
|
|
1999
|
+
*/
|
|
2000
|
+
export type NativeToolAttemptEvidence = Message<"agentruntime.v1.NativeToolAttemptEvidence"> & {
|
|
2001
|
+
/**
|
|
2002
|
+
* @generated from field: agentruntime.v1.RuntimeEvidenceState evidence_state = 1;
|
|
2003
|
+
*/
|
|
2004
|
+
evidenceState: RuntimeEvidenceState;
|
|
2005
|
+
/**
|
|
2006
|
+
* @generated from field: agentruntime.v1.RuntimeEvidenceState credential_evidence_state = 2;
|
|
2007
|
+
*/
|
|
2008
|
+
credentialEvidenceState: RuntimeEvidenceState;
|
|
2009
|
+
/**
|
|
2010
|
+
* @generated from field: string native_kind = 3;
|
|
2011
|
+
*/
|
|
2012
|
+
nativeKind: string;
|
|
2013
|
+
/**
|
|
2014
|
+
* @generated from field: string source_event_id = 4;
|
|
2015
|
+
*/
|
|
2016
|
+
sourceEventId: string;
|
|
2017
|
+
/**
|
|
2018
|
+
* @generated from field: string source_event_type = 5;
|
|
2019
|
+
*/
|
|
2020
|
+
sourceEventType: string;
|
|
2021
|
+
/**
|
|
2022
|
+
* @generated from field: string source_event_source = 6;
|
|
2023
|
+
*/
|
|
2024
|
+
sourceEventSource: string;
|
|
2025
|
+
/**
|
|
2026
|
+
* @generated from field: string source_event_subject = 7;
|
|
2027
|
+
*/
|
|
2028
|
+
sourceEventSubject: string;
|
|
2029
|
+
/**
|
|
2030
|
+
* @generated from field: string tenant_id = 8;
|
|
2031
|
+
*/
|
|
2032
|
+
tenantId: string;
|
|
2033
|
+
/**
|
|
2034
|
+
* @generated from field: string organization_id = 9;
|
|
2035
|
+
*/
|
|
2036
|
+
organizationId: string;
|
|
2037
|
+
/**
|
|
2038
|
+
* @generated from field: string workspace_id = 10;
|
|
2039
|
+
*/
|
|
2040
|
+
workspaceId: string;
|
|
2041
|
+
/**
|
|
2042
|
+
* @generated from field: string session_id = 11;
|
|
2043
|
+
*/
|
|
2044
|
+
sessionId: string;
|
|
2045
|
+
/**
|
|
2046
|
+
* @generated from field: string agent_run_id = 12;
|
|
2047
|
+
*/
|
|
2048
|
+
agentRunId: string;
|
|
2049
|
+
/**
|
|
2050
|
+
* @generated from field: string agent_run_step_id = 13;
|
|
2051
|
+
*/
|
|
2052
|
+
agentRunStepId: string;
|
|
2053
|
+
/**
|
|
2054
|
+
* @generated from field: string agent_id = 14;
|
|
2055
|
+
*/
|
|
2056
|
+
agentId: string;
|
|
2057
|
+
/**
|
|
2058
|
+
* @generated from field: string actor_id = 15;
|
|
2059
|
+
*/
|
|
2060
|
+
actorId: string;
|
|
2061
|
+
/**
|
|
2062
|
+
* @generated from field: string principal_id = 16;
|
|
2063
|
+
*/
|
|
2064
|
+
principalId: string;
|
|
2065
|
+
/**
|
|
2066
|
+
* @generated from field: string trace_id = 17;
|
|
2067
|
+
*/
|
|
2068
|
+
traceId: string;
|
|
2069
|
+
/**
|
|
2070
|
+
* @generated from field: string request_id = 18;
|
|
2071
|
+
*/
|
|
2072
|
+
requestId: string;
|
|
2073
|
+
/**
|
|
2074
|
+
* @generated from field: string response_id = 19;
|
|
2075
|
+
*/
|
|
2076
|
+
responseId: string;
|
|
2077
|
+
/**
|
|
2078
|
+
* @generated from field: string parent_event_id = 20;
|
|
2079
|
+
*/
|
|
2080
|
+
parentEventId: string;
|
|
2081
|
+
/**
|
|
2082
|
+
* @generated from field: string tool_call_id = 21;
|
|
2083
|
+
*/
|
|
2084
|
+
toolCallId: string;
|
|
2085
|
+
/**
|
|
2086
|
+
* @generated from field: string tool_execution_id = 22;
|
|
2087
|
+
*/
|
|
2088
|
+
toolExecutionId: string;
|
|
2089
|
+
/**
|
|
2090
|
+
* @generated from field: string tool_namespace = 23;
|
|
2091
|
+
*/
|
|
2092
|
+
toolNamespace: string;
|
|
2093
|
+
/**
|
|
2094
|
+
* @generated from field: string tool_name = 24;
|
|
2095
|
+
*/
|
|
2096
|
+
toolName: string;
|
|
2097
|
+
/**
|
|
2098
|
+
* @generated from field: string tool_version = 25;
|
|
2099
|
+
*/
|
|
2100
|
+
toolVersion: string;
|
|
2101
|
+
/**
|
|
2102
|
+
* @generated from field: string capability = 26;
|
|
2103
|
+
*/
|
|
2104
|
+
capability: string;
|
|
2105
|
+
/**
|
|
2106
|
+
* @generated from field: string connector_id = 27;
|
|
2107
|
+
*/
|
|
2108
|
+
connectorId: string;
|
|
2109
|
+
/**
|
|
2110
|
+
* @generated from field: bool mutates_resource = 28;
|
|
2111
|
+
*/
|
|
2112
|
+
mutatesResource: boolean;
|
|
2113
|
+
/**
|
|
2114
|
+
* @generated from field: common.v1.RiskLevel risk_level = 29;
|
|
2115
|
+
*/
|
|
2116
|
+
riskLevel: RiskLevel;
|
|
2117
|
+
/**
|
|
2118
|
+
* @generated from field: bool arguments_redacted = 30;
|
|
2119
|
+
*/
|
|
2120
|
+
argumentsRedacted: boolean;
|
|
2121
|
+
/**
|
|
2122
|
+
* @generated from field: string safe_arguments_ref = 31;
|
|
2123
|
+
*/
|
|
2124
|
+
safeArgumentsRef: string;
|
|
2125
|
+
/**
|
|
2126
|
+
* @generated from field: string safe_arguments_sha256 = 32;
|
|
2127
|
+
*/
|
|
2128
|
+
safeArgumentsSha256: string;
|
|
2129
|
+
/**
|
|
2130
|
+
* @generated from field: int32 safe_arguments_key_count = 33;
|
|
2131
|
+
*/
|
|
2132
|
+
safeArgumentsKeyCount: number;
|
|
2133
|
+
/**
|
|
2134
|
+
* @generated from field: int32 redaction_count = 34;
|
|
2135
|
+
*/
|
|
2136
|
+
redactionCount: number;
|
|
2137
|
+
/**
|
|
2138
|
+
* @generated from field: repeated string redactions = 35;
|
|
2139
|
+
*/
|
|
2140
|
+
redactions: string[];
|
|
2141
|
+
/**
|
|
2142
|
+
* @generated from field: repeated agentruntime.v1.RuntimeEvidenceGap evidence_gaps = 36;
|
|
2143
|
+
*/
|
|
2144
|
+
evidenceGaps: RuntimeEvidenceGap[];
|
|
2145
|
+
};
|
|
2146
|
+
/**
|
|
2147
|
+
* Describes the message agentruntime.v1.NativeToolAttemptEvidence.
|
|
2148
|
+
* Use `create(NativeToolAttemptEvidenceSchema)` to create a new message.
|
|
2149
|
+
*/
|
|
2150
|
+
export declare const NativeToolAttemptEvidenceSchema: GenMessage<NativeToolAttemptEvidence>;
|
|
2151
|
+
/**
|
|
2152
|
+
* NativeAgentEventEvidence is the typed receipt primitive for safe native
|
|
2153
|
+
* Agent Workforce events from Maestro and Codex. It carries source/correlation
|
|
2154
|
+
* identifiers, redaction metadata, and safe refs only; raw prompts, tool
|
|
2155
|
+
* arguments, shell output, MCP result bodies, image bytes, transcripts, token
|
|
2156
|
+
* values, provider response bodies, and credential grants must not be copied
|
|
2157
|
+
* here.
|
|
2158
|
+
*
|
|
2159
|
+
* @generated from message agentruntime.v1.NativeAgentEventEvidence
|
|
2160
|
+
*/
|
|
2161
|
+
export type NativeAgentEventEvidence = Message<"agentruntime.v1.NativeAgentEventEvidence"> & {
|
|
2162
|
+
/**
|
|
2163
|
+
* @generated from field: agentruntime.v1.RuntimeEvidenceState evidence_state = 1;
|
|
2164
|
+
*/
|
|
2165
|
+
evidenceState: RuntimeEvidenceState;
|
|
2166
|
+
/**
|
|
2167
|
+
* @generated from field: agentruntime.v1.RuntimeEvidenceState principal_evidence_state = 2;
|
|
2168
|
+
*/
|
|
2169
|
+
principalEvidenceState: RuntimeEvidenceState;
|
|
2170
|
+
/**
|
|
2171
|
+
* @generated from field: agentruntime.v1.RuntimeEvidenceState credential_evidence_state = 3;
|
|
2172
|
+
*/
|
|
2173
|
+
credentialEvidenceState: RuntimeEvidenceState;
|
|
2174
|
+
/**
|
|
2175
|
+
* @generated from field: agentruntime.v1.RuntimeEvidenceState cost_evidence_state = 4;
|
|
2176
|
+
*/
|
|
2177
|
+
costEvidenceState: RuntimeEvidenceState;
|
|
2178
|
+
/**
|
|
2179
|
+
* @generated from field: agentruntime.v1.NativeAgentEventSource native_source = 5;
|
|
2180
|
+
*/
|
|
2181
|
+
nativeSource: NativeAgentEventSource;
|
|
2182
|
+
/**
|
|
2183
|
+
* @generated from field: string native_kind = 6;
|
|
2184
|
+
*/
|
|
2185
|
+
nativeKind: string;
|
|
2186
|
+
/**
|
|
2187
|
+
* @generated from field: string source_event_id = 7;
|
|
2188
|
+
*/
|
|
2189
|
+
sourceEventId: string;
|
|
2190
|
+
/**
|
|
2191
|
+
* @generated from field: string source_event_type = 8;
|
|
2192
|
+
*/
|
|
2193
|
+
sourceEventType: string;
|
|
2194
|
+
/**
|
|
2195
|
+
* @generated from field: google.protobuf.Timestamp source_event_time = 9;
|
|
2196
|
+
*/
|
|
2197
|
+
sourceEventTime?: Timestamp | undefined;
|
|
2198
|
+
/**
|
|
2199
|
+
* @generated from field: string tenant_id = 10;
|
|
2200
|
+
*/
|
|
2201
|
+
tenantId: string;
|
|
2202
|
+
/**
|
|
2203
|
+
* @generated from field: string organization_id = 11;
|
|
2204
|
+
*/
|
|
2205
|
+
organizationId: string;
|
|
2206
|
+
/**
|
|
2207
|
+
* @generated from field: string workspace_id = 12;
|
|
2208
|
+
*/
|
|
2209
|
+
workspaceId: string;
|
|
2210
|
+
/**
|
|
2211
|
+
* @generated from field: string session_id = 13;
|
|
2212
|
+
*/
|
|
2213
|
+
sessionId: string;
|
|
2214
|
+
/**
|
|
2215
|
+
* @generated from field: string agent_run_id = 14;
|
|
2216
|
+
*/
|
|
2217
|
+
agentRunId: string;
|
|
2218
|
+
/**
|
|
2219
|
+
* @generated from field: string agent_run_step_id = 15;
|
|
2220
|
+
*/
|
|
2221
|
+
agentRunStepId: string;
|
|
2222
|
+
/**
|
|
2223
|
+
* @generated from field: string agent_id = 16;
|
|
2224
|
+
*/
|
|
2225
|
+
agentId: string;
|
|
2226
|
+
/**
|
|
2227
|
+
* @generated from field: string actor_id = 17;
|
|
2228
|
+
*/
|
|
2229
|
+
actorId: string;
|
|
2230
|
+
/**
|
|
2231
|
+
* @generated from field: string principal_id = 18;
|
|
2232
|
+
*/
|
|
2233
|
+
principalId: string;
|
|
2234
|
+
/**
|
|
2235
|
+
* @generated from field: string thread_id = 19;
|
|
2236
|
+
*/
|
|
2237
|
+
threadId: string;
|
|
2238
|
+
/**
|
|
2239
|
+
* @generated from field: string turn_id = 20;
|
|
2240
|
+
*/
|
|
2241
|
+
turnId: string;
|
|
2242
|
+
/**
|
|
2243
|
+
* @generated from field: string trace_id = 21;
|
|
2244
|
+
*/
|
|
2245
|
+
traceId: string;
|
|
2246
|
+
/**
|
|
2247
|
+
* @generated from field: string request_id = 22;
|
|
2248
|
+
*/
|
|
2249
|
+
requestId: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* @generated from field: string response_id = 23;
|
|
2252
|
+
*/
|
|
2253
|
+
responseId: string;
|
|
2254
|
+
/**
|
|
2255
|
+
* @generated from field: string parent_event_id = 24;
|
|
2256
|
+
*/
|
|
2257
|
+
parentEventId: string;
|
|
2258
|
+
/**
|
|
2259
|
+
* @generated from field: string tool_call_id = 25;
|
|
2260
|
+
*/
|
|
2261
|
+
toolCallId: string;
|
|
2262
|
+
/**
|
|
2263
|
+
* @generated from field: string tool_execution_id = 26;
|
|
2264
|
+
*/
|
|
2265
|
+
toolExecutionId: string;
|
|
2266
|
+
/**
|
|
2267
|
+
* @generated from field: string action_id = 27;
|
|
2268
|
+
*/
|
|
2269
|
+
actionId: string;
|
|
2270
|
+
/**
|
|
2271
|
+
* @generated from field: string tool_namespace = 28;
|
|
2272
|
+
*/
|
|
2273
|
+
toolNamespace: string;
|
|
2274
|
+
/**
|
|
2275
|
+
* @generated from field: string tool_name = 29;
|
|
2276
|
+
*/
|
|
2277
|
+
toolName: string;
|
|
2278
|
+
/**
|
|
2279
|
+
* @generated from field: string tool_version = 30;
|
|
2280
|
+
*/
|
|
2281
|
+
toolVersion: string;
|
|
2282
|
+
/**
|
|
2283
|
+
* @generated from field: string capability = 31;
|
|
2284
|
+
*/
|
|
2285
|
+
capability: string;
|
|
2286
|
+
/**
|
|
2287
|
+
* @generated from field: string connector_id = 32;
|
|
2288
|
+
*/
|
|
2289
|
+
connectorId: string;
|
|
2290
|
+
/**
|
|
2291
|
+
* @generated from field: bool mutates_resource = 33;
|
|
2292
|
+
*/
|
|
2293
|
+
mutatesResource: boolean;
|
|
2294
|
+
/**
|
|
2295
|
+
* @generated from field: common.v1.RiskLevel risk_level = 34;
|
|
2296
|
+
*/
|
|
2297
|
+
riskLevel: RiskLevel;
|
|
2298
|
+
/**
|
|
2299
|
+
* @generated from field: bool arguments_redacted = 35;
|
|
2300
|
+
*/
|
|
2301
|
+
argumentsRedacted: boolean;
|
|
2302
|
+
/**
|
|
2303
|
+
* @generated from field: bool output_redacted = 36;
|
|
2304
|
+
*/
|
|
2305
|
+
outputRedacted: boolean;
|
|
2306
|
+
/**
|
|
2307
|
+
* @generated from field: string safe_arguments_ref = 37;
|
|
2308
|
+
*/
|
|
2309
|
+
safeArgumentsRef: string;
|
|
2310
|
+
/**
|
|
2311
|
+
* @generated from field: string safe_arguments_sha256 = 38;
|
|
2312
|
+
*/
|
|
2313
|
+
safeArgumentsSha256: string;
|
|
2314
|
+
/**
|
|
2315
|
+
* @generated from field: int32 safe_arguments_key_count = 39;
|
|
2316
|
+
*/
|
|
2317
|
+
safeArgumentsKeyCount: number;
|
|
2318
|
+
/**
|
|
2319
|
+
* @generated from field: string safe_output_ref = 40;
|
|
2320
|
+
*/
|
|
2321
|
+
safeOutputRef: string;
|
|
2322
|
+
/**
|
|
2323
|
+
* @generated from field: string safe_output_sha256 = 41;
|
|
2324
|
+
*/
|
|
2325
|
+
safeOutputSha256: string;
|
|
2326
|
+
/**
|
|
2327
|
+
* @generated from field: int32 safe_output_key_count = 42;
|
|
2328
|
+
*/
|
|
2329
|
+
safeOutputKeyCount: number;
|
|
2330
|
+
/**
|
|
2331
|
+
* @generated from field: int32 redaction_count = 43;
|
|
2332
|
+
*/
|
|
2333
|
+
redactionCount: number;
|
|
2334
|
+
/**
|
|
2335
|
+
* @generated from field: repeated string redactions = 44;
|
|
2336
|
+
*/
|
|
2337
|
+
redactions: string[];
|
|
2338
|
+
/**
|
|
2339
|
+
* @generated from field: repeated agentruntime.v1.RuntimeEvidenceGap evidence_gaps = 45;
|
|
2340
|
+
*/
|
|
2341
|
+
evidenceGaps: RuntimeEvidenceGap[];
|
|
2342
|
+
/**
|
|
2343
|
+
* @generated from field: string schema = 46;
|
|
2344
|
+
*/
|
|
2345
|
+
schema: string;
|
|
2346
|
+
};
|
|
2347
|
+
/**
|
|
2348
|
+
* Describes the message agentruntime.v1.NativeAgentEventEvidence.
|
|
2349
|
+
* Use `create(NativeAgentEventEvidenceSchema)` to create a new message.
|
|
2350
|
+
*/
|
|
2351
|
+
export declare const NativeAgentEventEvidenceSchema: GenMessage<NativeAgentEventEvidence>;
|
|
1936
2352
|
/**
|
|
1937
2353
|
* AgentAutonomySession is the durable teammate session projected over one
|
|
1938
2354
|
* objective/work envelope. Platform owns this identity so Slack can wake,
|
|
@@ -2568,6 +2984,14 @@ export type RecordRunEventRequest = Message<"agentruntime.v1.RecordRunEventReque
|
|
|
2568
2984
|
* @generated from field: agentruntime.v1.RuntimeVisibilityMetadata visibility = 10;
|
|
2569
2985
|
*/
|
|
2570
2986
|
visibility?: RuntimeVisibilityMetadata | undefined;
|
|
2987
|
+
/**
|
|
2988
|
+
* @generated from field: agentruntime.v1.NativeToolAttemptEvidence native_tool_attempt = 11;
|
|
2989
|
+
*/
|
|
2990
|
+
nativeToolAttempt?: NativeToolAttemptEvidence | undefined;
|
|
2991
|
+
/**
|
|
2992
|
+
* @generated from field: agentruntime.v1.NativeAgentEventEvidence native_agent_event = 12;
|
|
2993
|
+
*/
|
|
2994
|
+
nativeAgentEvent?: NativeAgentEventEvidence | undefined;
|
|
2571
2995
|
};
|
|
2572
2996
|
/**
|
|
2573
2997
|
* Describes the message agentruntime.v1.RecordRunEventRequest.
|
|
@@ -6522,6 +6946,84 @@ export declare enum RuntimeEventType {
|
|
|
6522
6946
|
* Describes the enum agentruntime.v1.RuntimeEventType.
|
|
6523
6947
|
*/
|
|
6524
6948
|
export declare const RuntimeEventTypeSchema: GenEnum<RuntimeEventType>;
|
|
6949
|
+
/**
|
|
6950
|
+
* RuntimeEvidenceState records whether Platform merely observed a native event
|
|
6951
|
+
* or has joined it to a resolver/proof source.
|
|
6952
|
+
*
|
|
6953
|
+
* @generated from enum agentruntime.v1.RuntimeEvidenceState
|
|
6954
|
+
*/
|
|
6955
|
+
export declare enum RuntimeEvidenceState {
|
|
6956
|
+
/**
|
|
6957
|
+
* @generated from enum value: RUNTIME_EVIDENCE_STATE_UNSPECIFIED = 0;
|
|
6958
|
+
*/
|
|
6959
|
+
UNSPECIFIED = 0,
|
|
6960
|
+
/**
|
|
6961
|
+
* @generated from enum value: RUNTIME_EVIDENCE_STATE_NATIVE_OBSERVED = 1;
|
|
6962
|
+
*/
|
|
6963
|
+
NATIVE_OBSERVED = 1,
|
|
6964
|
+
/**
|
|
6965
|
+
* @generated from enum value: RUNTIME_EVIDENCE_STATE_PLATFORM_PROVEN = 2;
|
|
6966
|
+
*/
|
|
6967
|
+
PLATFORM_PROVEN = 2,
|
|
6968
|
+
/**
|
|
6969
|
+
* @generated from enum value: RUNTIME_EVIDENCE_STATE_MISSING = 3;
|
|
6970
|
+
*/
|
|
6971
|
+
MISSING = 3,
|
|
6972
|
+
/**
|
|
6973
|
+
* @generated from enum value: RUNTIME_EVIDENCE_STATE_UNVERIFIED = 4;
|
|
6974
|
+
*/
|
|
6975
|
+
UNVERIFIED = 4
|
|
6976
|
+
}
|
|
6977
|
+
/**
|
|
6978
|
+
* Describes the enum agentruntime.v1.RuntimeEvidenceState.
|
|
6979
|
+
*/
|
|
6980
|
+
export declare const RuntimeEvidenceStateSchema: GenEnum<RuntimeEvidenceState>;
|
|
6981
|
+
/**
|
|
6982
|
+
* NativeAgentEventSource identifies the native Agent Workforce emitter that
|
|
6983
|
+
* produced an observed event. Platform does not infer authority from this
|
|
6984
|
+
* source; proof states below remain missing/unverified until joined to a
|
|
6985
|
+
* Platform resolver, credential, or meter authority.
|
|
6986
|
+
*
|
|
6987
|
+
* @generated from enum agentruntime.v1.NativeAgentEventSource
|
|
6988
|
+
*/
|
|
6989
|
+
export declare enum NativeAgentEventSource {
|
|
6990
|
+
/**
|
|
6991
|
+
* @generated from enum value: NATIVE_AGENT_EVENT_SOURCE_UNSPECIFIED = 0;
|
|
6992
|
+
*/
|
|
6993
|
+
UNSPECIFIED = 0,
|
|
6994
|
+
/**
|
|
6995
|
+
* @generated from enum value: NATIVE_AGENT_EVENT_SOURCE_MAESTRO = 1;
|
|
6996
|
+
*/
|
|
6997
|
+
MAESTRO = 1,
|
|
6998
|
+
/**
|
|
6999
|
+
* @generated from enum value: NATIVE_AGENT_EVENT_SOURCE_CODEX = 2;
|
|
7000
|
+
*/
|
|
7001
|
+
CODEX = 2
|
|
7002
|
+
}
|
|
7003
|
+
/**
|
|
7004
|
+
* Describes the enum agentruntime.v1.NativeAgentEventSource.
|
|
7005
|
+
*/
|
|
7006
|
+
export declare const NativeAgentEventSourceSchema: GenEnum<NativeAgentEventSource>;
|
|
7007
|
+
/**
|
|
7008
|
+
* RuntimeEvidenceGapReason identifies the missing proof that prevents a
|
|
7009
|
+
* runtime action from being considered approval-ready.
|
|
7010
|
+
*
|
|
7011
|
+
* @generated from enum agentruntime.v1.RuntimeEvidenceGapReason
|
|
7012
|
+
*/
|
|
7013
|
+
export declare enum RuntimeEvidenceGapReason {
|
|
7014
|
+
/**
|
|
7015
|
+
* @generated from enum value: RUNTIME_EVIDENCE_GAP_REASON_UNSPECIFIED = 0;
|
|
7016
|
+
*/
|
|
7017
|
+
UNSPECIFIED = 0,
|
|
7018
|
+
/**
|
|
7019
|
+
* @generated from enum value: RUNTIME_EVIDENCE_GAP_REASON_CREDENTIAL_UNVERIFIED = 1;
|
|
7020
|
+
*/
|
|
7021
|
+
CREDENTIAL_UNVERIFIED = 1
|
|
7022
|
+
}
|
|
7023
|
+
/**
|
|
7024
|
+
* Describes the enum agentruntime.v1.RuntimeEvidenceGapReason.
|
|
7025
|
+
*/
|
|
7026
|
+
export declare const RuntimeEvidenceGapReasonSchema: GenEnum<RuntimeEvidenceGapReason>;
|
|
6525
7027
|
/**
|
|
6526
7028
|
* RunControlMode describes durable input applied to an autonomous run/session.
|
|
6527
7029
|
* Steering and followups are optional controls; they are not the worker loop.
|