@pellux/goodvibes-contracts 1.7.1 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/artifacts/operator-contract.json +3846 -166
- package/artifacts/operator-openapi.json +1949 -18
- package/artifacts/python/homeassistant_operator_client.py +5 -3
- package/dist/core-verbs.d.ts.map +1 -1
- package/dist/core-verbs.js +33 -0
- package/dist/generated/foundation-client-types.d.ts +770 -83
- package/dist/generated/foundation-client-types.d.ts.map +1 -1
- package/dist/generated/foundation-metadata.d.ts +2 -2
- package/dist/generated/foundation-metadata.js +2 -2
- package/dist/generated/mock-daemon-fixtures.d.ts.map +1 -1
- package/dist/generated/mock-daemon-fixtures.js +831 -20
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +3846 -166
- package/dist/generated/operator-method-ids.d.ts +1 -1
- package/dist/generated/operator-method-ids.d.ts.map +1 -1
- package/dist/generated/operator-method-ids.js +28 -0
- package/dist/generated/webui-facade.d.ts +2 -2
- package/dist/generated/webui-facade.d.ts.map +1 -1
- package/dist/generated/webui-facade.js +923 -27
- package/dist/zod-schemas/accounts.d.ts +7 -1
- package/dist/zod-schemas/accounts.d.ts.map +1 -1
- package/dist/zod-schemas/accounts.js +4 -1
- package/package.json +1 -1
|
@@ -48,6 +48,10 @@ export interface OperatorMethodInputMap {
|
|
|
48
48
|
approvalId: string;
|
|
49
49
|
note?: string;
|
|
50
50
|
remember?: boolean;
|
|
51
|
+
selectedHunks?: readonly number[];
|
|
52
|
+
rememberTier?: "command-class" | "exact" | "path" | "session" | "tool";
|
|
53
|
+
reason?: string;
|
|
54
|
+
modifiedArgs?: {};
|
|
51
55
|
};
|
|
52
56
|
"approvals.cancel": {
|
|
53
57
|
approvalId: string;
|
|
@@ -61,6 +65,8 @@ export interface OperatorMethodInputMap {
|
|
|
61
65
|
approvalId: string;
|
|
62
66
|
note?: string;
|
|
63
67
|
remember?: boolean;
|
|
68
|
+
rememberTier?: "command-class" | "exact" | "path" | "session" | "tool";
|
|
69
|
+
reason?: string;
|
|
64
70
|
};
|
|
65
71
|
"approvals.list": {};
|
|
66
72
|
"artifacts.content.get": {
|
|
@@ -296,7 +302,11 @@ export interface OperatorMethodInputMap {
|
|
|
296
302
|
"automation.runs.get": {
|
|
297
303
|
runId: string;
|
|
298
304
|
};
|
|
299
|
-
"automation.runs.list": {
|
|
305
|
+
"automation.runs.list": {
|
|
306
|
+
limit?: number;
|
|
307
|
+
cursor?: string;
|
|
308
|
+
since?: number;
|
|
309
|
+
};
|
|
300
310
|
"automation.runs.retry": {
|
|
301
311
|
runId: string;
|
|
302
312
|
};
|
|
@@ -690,7 +700,9 @@ export interface OperatorMethodInputMap {
|
|
|
690
700
|
source?: string;
|
|
691
701
|
};
|
|
692
702
|
"control.snapshot": {};
|
|
693
|
-
"control.status": {
|
|
703
|
+
"control.status": {
|
|
704
|
+
receipts?: "consume";
|
|
705
|
+
};
|
|
694
706
|
"control.web": {};
|
|
695
707
|
"deliveries.get": {
|
|
696
708
|
deliveryId: string;
|
|
@@ -711,6 +723,10 @@ export interface OperatorMethodInputMap {
|
|
|
711
723
|
"fleet.attempts.pick": {
|
|
712
724
|
groupId: string;
|
|
713
725
|
winnerItemId: string;
|
|
726
|
+
confirm?: boolean;
|
|
727
|
+
};
|
|
728
|
+
"fleet.graph.get": {
|
|
729
|
+
workstreamId: string;
|
|
714
730
|
};
|
|
715
731
|
"fleet.list": {
|
|
716
732
|
kinds?: readonly string[];
|
|
@@ -718,6 +734,10 @@ export interface OperatorMethodInputMap {
|
|
|
718
734
|
limit?: number;
|
|
719
735
|
cursor?: string;
|
|
720
736
|
};
|
|
737
|
+
"fleet.observed.steer": {
|
|
738
|
+
id: string;
|
|
739
|
+
text: string;
|
|
740
|
+
};
|
|
721
741
|
"fleet.snapshot": {};
|
|
722
742
|
"fleet.unarchive": {
|
|
723
743
|
id: string;
|
|
@@ -1070,6 +1090,7 @@ export interface OperatorMethodInputMap {
|
|
|
1070
1090
|
readonly [key: string]: unknown;
|
|
1071
1091
|
});
|
|
1072
1092
|
"memory.doctor": {};
|
|
1093
|
+
"memory.consolidation.receipts": {};
|
|
1073
1094
|
"memory.embeddings.default.set": ({
|
|
1074
1095
|
providerId: string;
|
|
1075
1096
|
} & {
|
|
@@ -1246,6 +1267,14 @@ export interface OperatorMethodInputMap {
|
|
|
1246
1267
|
} & {
|
|
1247
1268
|
readonly [key: string]: unknown;
|
|
1248
1269
|
});
|
|
1270
|
+
"permissions.rules.list": {};
|
|
1271
|
+
"permissions.rules.delete": {
|
|
1272
|
+
ruleId: string;
|
|
1273
|
+
};
|
|
1274
|
+
"power.keepAwake.set": {
|
|
1275
|
+
enabled: boolean;
|
|
1276
|
+
};
|
|
1277
|
+
"power.status.get": {};
|
|
1249
1278
|
"principals.create": {
|
|
1250
1279
|
name: string;
|
|
1251
1280
|
kind: "bot" | "service" | "token" | "user";
|
|
@@ -1562,6 +1591,18 @@ export interface OperatorMethodInputMap {
|
|
|
1562
1591
|
sessionId: string;
|
|
1563
1592
|
mode: "accept-edits" | "auto" | "normal" | "plan";
|
|
1564
1593
|
};
|
|
1594
|
+
"sessions.queuedMessages.delete": {
|
|
1595
|
+
sessionId: string;
|
|
1596
|
+
messageId: string;
|
|
1597
|
+
};
|
|
1598
|
+
"sessions.queuedMessages.edit": {
|
|
1599
|
+
sessionId: string;
|
|
1600
|
+
messageId: string;
|
|
1601
|
+
text: string;
|
|
1602
|
+
};
|
|
1603
|
+
"sessions.queuedMessages.list": {
|
|
1604
|
+
sessionId: string;
|
|
1605
|
+
};
|
|
1565
1606
|
"sessions.followUp": ({
|
|
1566
1607
|
body: string;
|
|
1567
1608
|
surfaceKind?: string;
|
|
@@ -1673,6 +1714,10 @@ export interface OperatorMethodInputMap {
|
|
|
1673
1714
|
} & {
|
|
1674
1715
|
readonly [key: string]: unknown;
|
|
1675
1716
|
});
|
|
1717
|
+
"sessions.toolCalls.cancel": {
|
|
1718
|
+
sessionId: string;
|
|
1719
|
+
callId: string;
|
|
1720
|
+
};
|
|
1676
1721
|
"settings.snapshot": {};
|
|
1677
1722
|
"surfaces.list": {};
|
|
1678
1723
|
"skills.create": {
|
|
@@ -2048,6 +2093,8 @@ export interface OperatorMethodInputMap {
|
|
|
2048
2093
|
"workspaces.registrations.add": {
|
|
2049
2094
|
root: string;
|
|
2050
2095
|
label?: string;
|
|
2096
|
+
origin?: string;
|
|
2097
|
+
checkpointEligible?: boolean;
|
|
2051
2098
|
};
|
|
2052
2099
|
"workspaces.registrations.remove": {
|
|
2053
2100
|
root: string;
|
|
@@ -2060,6 +2107,73 @@ export interface OperatorMethodInputMap {
|
|
|
2060
2107
|
path: string;
|
|
2061
2108
|
};
|
|
2062
2109
|
"worktrees.snapshot": {};
|
|
2110
|
+
"push.subscriptions.reconcile": {
|
|
2111
|
+
deviceId: string;
|
|
2112
|
+
endpoint: string;
|
|
2113
|
+
keys: {
|
|
2114
|
+
p256dh: string;
|
|
2115
|
+
auth: string;
|
|
2116
|
+
};
|
|
2117
|
+
};
|
|
2118
|
+
"pairing.tokens.list": {};
|
|
2119
|
+
"pairing.tokens.create": {
|
|
2120
|
+
name: string;
|
|
2121
|
+
};
|
|
2122
|
+
"pairing.tokens.migrate": {
|
|
2123
|
+
name: string;
|
|
2124
|
+
};
|
|
2125
|
+
"pairing.tokens.rename": {
|
|
2126
|
+
id: string;
|
|
2127
|
+
name: string;
|
|
2128
|
+
};
|
|
2129
|
+
"pairing.tokens.delete": {
|
|
2130
|
+
id: string;
|
|
2131
|
+
};
|
|
2132
|
+
"pairing.tokens.revokeShared": {};
|
|
2133
|
+
"pairing.handoff.create": {
|
|
2134
|
+
name: string;
|
|
2135
|
+
offers?: readonly string[];
|
|
2136
|
+
};
|
|
2137
|
+
"pairing.handoff.complete": {
|
|
2138
|
+
accept?: {
|
|
2139
|
+
notifications?: {
|
|
2140
|
+
endpoint: string;
|
|
2141
|
+
keys: {
|
|
2142
|
+
p256dh: string;
|
|
2143
|
+
auth: string;
|
|
2144
|
+
};
|
|
2145
|
+
deviceId?: string;
|
|
2146
|
+
};
|
|
2147
|
+
relay?: boolean;
|
|
2148
|
+
passkey?: {
|
|
2149
|
+
rpId: string;
|
|
2150
|
+
origin: string;
|
|
2151
|
+
credentialId: string;
|
|
2152
|
+
publicKeyCose: string;
|
|
2153
|
+
};
|
|
2154
|
+
};
|
|
2155
|
+
};
|
|
2156
|
+
"pairing.posture.get": {
|
|
2157
|
+
origin?: string;
|
|
2158
|
+
};
|
|
2159
|
+
"tailscale.get": {};
|
|
2160
|
+
"tailscale.serve.run": {};
|
|
2161
|
+
"fleet.conflicts.list": {
|
|
2162
|
+
workstreamId?: string;
|
|
2163
|
+
};
|
|
2164
|
+
"fleet.conflicts.resolve": {
|
|
2165
|
+
itemId: string;
|
|
2166
|
+
};
|
|
2167
|
+
"worktrees.discard": {
|
|
2168
|
+
path: string;
|
|
2169
|
+
};
|
|
2170
|
+
"acp.agents.list": {};
|
|
2171
|
+
"acp.sessions.create": {
|
|
2172
|
+
agentId: string;
|
|
2173
|
+
cwd: string;
|
|
2174
|
+
title?: string;
|
|
2175
|
+
prompt?: string;
|
|
2176
|
+
};
|
|
2063
2177
|
}
|
|
2064
2178
|
export interface OperatorMethodOutputMap {
|
|
2065
2179
|
"accounts.snapshot": {
|
|
@@ -2110,11 +2224,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2110
2224
|
request: {
|
|
2111
2225
|
callId: string;
|
|
2112
2226
|
tool: string;
|
|
2113
|
-
args:
|
|
2114
|
-
readonly [key: string]: ({} & {
|
|
2115
|
-
readonly [key: string]: JsonValue;
|
|
2116
|
-
}) | boolean | null | number | readonly JsonValue[] | string;
|
|
2117
|
-
});
|
|
2227
|
+
args: {};
|
|
2118
2228
|
category: "delegate" | "execute" | "read" | "write";
|
|
2119
2229
|
analysis: {
|
|
2120
2230
|
classification: string;
|
|
@@ -2129,6 +2239,23 @@ export interface OperatorMethodOutputMap {
|
|
|
2129
2239
|
host?: string;
|
|
2130
2240
|
};
|
|
2131
2241
|
workingDirectory?: string;
|
|
2242
|
+
attribution?: {
|
|
2243
|
+
kind: "background-agent";
|
|
2244
|
+
agentId: string;
|
|
2245
|
+
template?: string;
|
|
2246
|
+
} | {
|
|
2247
|
+
kind: "mcp-server";
|
|
2248
|
+
serverName: string;
|
|
2249
|
+
} | {
|
|
2250
|
+
kind: "sandbox-escalation";
|
|
2251
|
+
sandbox: string;
|
|
2252
|
+
escalations: readonly string[];
|
|
2253
|
+
};
|
|
2254
|
+
rememberOptions?: readonly ({
|
|
2255
|
+
tier: "command-class" | "exact" | "path" | "session" | "tool";
|
|
2256
|
+
label: string;
|
|
2257
|
+
detail: string;
|
|
2258
|
+
})[];
|
|
2132
2259
|
};
|
|
2133
2260
|
createdAt: number;
|
|
2134
2261
|
updatedAt: number;
|
|
@@ -2139,7 +2266,12 @@ export interface OperatorMethodOutputMap {
|
|
|
2139
2266
|
decision?: {
|
|
2140
2267
|
approved: boolean;
|
|
2141
2268
|
remember?: boolean;
|
|
2269
|
+
rememberTier?: "command-class" | "exact" | "path" | "session" | "tool";
|
|
2270
|
+
reason?: string;
|
|
2271
|
+
modifiedArgs?: {};
|
|
2142
2272
|
};
|
|
2273
|
+
fixSessionId?: string;
|
|
2274
|
+
fixSessionError?: string;
|
|
2143
2275
|
metadata: ({} & {
|
|
2144
2276
|
readonly [key: string]: ({} & {
|
|
2145
2277
|
readonly [key: string]: JsonValue;
|
|
@@ -2154,6 +2286,12 @@ export interface OperatorMethodOutputMap {
|
|
|
2154
2286
|
note?: string;
|
|
2155
2287
|
})[];
|
|
2156
2288
|
};
|
|
2289
|
+
recorded?: {
|
|
2290
|
+
approved: boolean;
|
|
2291
|
+
rememberTier: null | "command-class" | "exact" | "path" | "session" | "tool";
|
|
2292
|
+
reasonStored: boolean;
|
|
2293
|
+
modifiedArgsDelivered: boolean;
|
|
2294
|
+
};
|
|
2157
2295
|
};
|
|
2158
2296
|
"approvals.cancel": {
|
|
2159
2297
|
approval: {
|
|
@@ -2165,11 +2303,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2165
2303
|
request: {
|
|
2166
2304
|
callId: string;
|
|
2167
2305
|
tool: string;
|
|
2168
|
-
args:
|
|
2169
|
-
readonly [key: string]: ({} & {
|
|
2170
|
-
readonly [key: string]: JsonValue;
|
|
2171
|
-
}) | boolean | null | number | readonly JsonValue[] | string;
|
|
2172
|
-
});
|
|
2306
|
+
args: {};
|
|
2173
2307
|
category: "delegate" | "execute" | "read" | "write";
|
|
2174
2308
|
analysis: {
|
|
2175
2309
|
classification: string;
|
|
@@ -2184,6 +2318,23 @@ export interface OperatorMethodOutputMap {
|
|
|
2184
2318
|
host?: string;
|
|
2185
2319
|
};
|
|
2186
2320
|
workingDirectory?: string;
|
|
2321
|
+
attribution?: {
|
|
2322
|
+
kind: "background-agent";
|
|
2323
|
+
agentId: string;
|
|
2324
|
+
template?: string;
|
|
2325
|
+
} | {
|
|
2326
|
+
kind: "mcp-server";
|
|
2327
|
+
serverName: string;
|
|
2328
|
+
} | {
|
|
2329
|
+
kind: "sandbox-escalation";
|
|
2330
|
+
sandbox: string;
|
|
2331
|
+
escalations: readonly string[];
|
|
2332
|
+
};
|
|
2333
|
+
rememberOptions?: readonly ({
|
|
2334
|
+
tier: "command-class" | "exact" | "path" | "session" | "tool";
|
|
2335
|
+
label: string;
|
|
2336
|
+
detail: string;
|
|
2337
|
+
})[];
|
|
2187
2338
|
};
|
|
2188
2339
|
createdAt: number;
|
|
2189
2340
|
updatedAt: number;
|
|
@@ -2194,7 +2345,12 @@ export interface OperatorMethodOutputMap {
|
|
|
2194
2345
|
decision?: {
|
|
2195
2346
|
approved: boolean;
|
|
2196
2347
|
remember?: boolean;
|
|
2348
|
+
rememberTier?: "command-class" | "exact" | "path" | "session" | "tool";
|
|
2349
|
+
reason?: string;
|
|
2350
|
+
modifiedArgs?: {};
|
|
2197
2351
|
};
|
|
2352
|
+
fixSessionId?: string;
|
|
2353
|
+
fixSessionError?: string;
|
|
2198
2354
|
metadata: ({} & {
|
|
2199
2355
|
readonly [key: string]: ({} & {
|
|
2200
2356
|
readonly [key: string]: JsonValue;
|
|
@@ -2209,6 +2365,12 @@ export interface OperatorMethodOutputMap {
|
|
|
2209
2365
|
note?: string;
|
|
2210
2366
|
})[];
|
|
2211
2367
|
};
|
|
2368
|
+
recorded?: {
|
|
2369
|
+
approved: boolean;
|
|
2370
|
+
rememberTier: null | "command-class" | "exact" | "path" | "session" | "tool";
|
|
2371
|
+
reasonStored: boolean;
|
|
2372
|
+
modifiedArgsDelivered: boolean;
|
|
2373
|
+
};
|
|
2212
2374
|
};
|
|
2213
2375
|
"approvals.claim": {
|
|
2214
2376
|
approval: {
|
|
@@ -2220,11 +2382,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2220
2382
|
request: {
|
|
2221
2383
|
callId: string;
|
|
2222
2384
|
tool: string;
|
|
2223
|
-
args:
|
|
2224
|
-
readonly [key: string]: ({} & {
|
|
2225
|
-
readonly [key: string]: JsonValue;
|
|
2226
|
-
}) | boolean | null | number | readonly JsonValue[] | string;
|
|
2227
|
-
});
|
|
2385
|
+
args: {};
|
|
2228
2386
|
category: "delegate" | "execute" | "read" | "write";
|
|
2229
2387
|
analysis: {
|
|
2230
2388
|
classification: string;
|
|
@@ -2239,6 +2397,23 @@ export interface OperatorMethodOutputMap {
|
|
|
2239
2397
|
host?: string;
|
|
2240
2398
|
};
|
|
2241
2399
|
workingDirectory?: string;
|
|
2400
|
+
attribution?: {
|
|
2401
|
+
kind: "background-agent";
|
|
2402
|
+
agentId: string;
|
|
2403
|
+
template?: string;
|
|
2404
|
+
} | {
|
|
2405
|
+
kind: "mcp-server";
|
|
2406
|
+
serverName: string;
|
|
2407
|
+
} | {
|
|
2408
|
+
kind: "sandbox-escalation";
|
|
2409
|
+
sandbox: string;
|
|
2410
|
+
escalations: readonly string[];
|
|
2411
|
+
};
|
|
2412
|
+
rememberOptions?: readonly ({
|
|
2413
|
+
tier: "command-class" | "exact" | "path" | "session" | "tool";
|
|
2414
|
+
label: string;
|
|
2415
|
+
detail: string;
|
|
2416
|
+
})[];
|
|
2242
2417
|
};
|
|
2243
2418
|
createdAt: number;
|
|
2244
2419
|
updatedAt: number;
|
|
@@ -2249,7 +2424,12 @@ export interface OperatorMethodOutputMap {
|
|
|
2249
2424
|
decision?: {
|
|
2250
2425
|
approved: boolean;
|
|
2251
2426
|
remember?: boolean;
|
|
2427
|
+
rememberTier?: "command-class" | "exact" | "path" | "session" | "tool";
|
|
2428
|
+
reason?: string;
|
|
2429
|
+
modifiedArgs?: {};
|
|
2252
2430
|
};
|
|
2431
|
+
fixSessionId?: string;
|
|
2432
|
+
fixSessionError?: string;
|
|
2253
2433
|
metadata: ({} & {
|
|
2254
2434
|
readonly [key: string]: ({} & {
|
|
2255
2435
|
readonly [key: string]: JsonValue;
|
|
@@ -2264,6 +2444,12 @@ export interface OperatorMethodOutputMap {
|
|
|
2264
2444
|
note?: string;
|
|
2265
2445
|
})[];
|
|
2266
2446
|
};
|
|
2447
|
+
recorded?: {
|
|
2448
|
+
approved: boolean;
|
|
2449
|
+
rememberTier: null | "command-class" | "exact" | "path" | "session" | "tool";
|
|
2450
|
+
reasonStored: boolean;
|
|
2451
|
+
modifiedArgsDelivered: boolean;
|
|
2452
|
+
};
|
|
2267
2453
|
};
|
|
2268
2454
|
"approvals.deny": {
|
|
2269
2455
|
approval: {
|
|
@@ -2275,11 +2461,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2275
2461
|
request: {
|
|
2276
2462
|
callId: string;
|
|
2277
2463
|
tool: string;
|
|
2278
|
-
args:
|
|
2279
|
-
readonly [key: string]: ({} & {
|
|
2280
|
-
readonly [key: string]: JsonValue;
|
|
2281
|
-
}) | boolean | null | number | readonly JsonValue[] | string;
|
|
2282
|
-
});
|
|
2464
|
+
args: {};
|
|
2283
2465
|
category: "delegate" | "execute" | "read" | "write";
|
|
2284
2466
|
analysis: {
|
|
2285
2467
|
classification: string;
|
|
@@ -2294,6 +2476,23 @@ export interface OperatorMethodOutputMap {
|
|
|
2294
2476
|
host?: string;
|
|
2295
2477
|
};
|
|
2296
2478
|
workingDirectory?: string;
|
|
2479
|
+
attribution?: {
|
|
2480
|
+
kind: "background-agent";
|
|
2481
|
+
agentId: string;
|
|
2482
|
+
template?: string;
|
|
2483
|
+
} | {
|
|
2484
|
+
kind: "mcp-server";
|
|
2485
|
+
serverName: string;
|
|
2486
|
+
} | {
|
|
2487
|
+
kind: "sandbox-escalation";
|
|
2488
|
+
sandbox: string;
|
|
2489
|
+
escalations: readonly string[];
|
|
2490
|
+
};
|
|
2491
|
+
rememberOptions?: readonly ({
|
|
2492
|
+
tier: "command-class" | "exact" | "path" | "session" | "tool";
|
|
2493
|
+
label: string;
|
|
2494
|
+
detail: string;
|
|
2495
|
+
})[];
|
|
2297
2496
|
};
|
|
2298
2497
|
createdAt: number;
|
|
2299
2498
|
updatedAt: number;
|
|
@@ -2304,7 +2503,12 @@ export interface OperatorMethodOutputMap {
|
|
|
2304
2503
|
decision?: {
|
|
2305
2504
|
approved: boolean;
|
|
2306
2505
|
remember?: boolean;
|
|
2506
|
+
rememberTier?: "command-class" | "exact" | "path" | "session" | "tool";
|
|
2507
|
+
reason?: string;
|
|
2508
|
+
modifiedArgs?: {};
|
|
2307
2509
|
};
|
|
2510
|
+
fixSessionId?: string;
|
|
2511
|
+
fixSessionError?: string;
|
|
2308
2512
|
metadata: ({} & {
|
|
2309
2513
|
readonly [key: string]: ({} & {
|
|
2310
2514
|
readonly [key: string]: JsonValue;
|
|
@@ -2319,6 +2523,12 @@ export interface OperatorMethodOutputMap {
|
|
|
2319
2523
|
note?: string;
|
|
2320
2524
|
})[];
|
|
2321
2525
|
};
|
|
2526
|
+
recorded?: {
|
|
2527
|
+
approved: boolean;
|
|
2528
|
+
rememberTier: null | "command-class" | "exact" | "path" | "session" | "tool";
|
|
2529
|
+
reasonStored: boolean;
|
|
2530
|
+
modifiedArgsDelivered: boolean;
|
|
2531
|
+
};
|
|
2322
2532
|
};
|
|
2323
2533
|
"approvals.list": ({
|
|
2324
2534
|
awaitingDecision: boolean;
|
|
@@ -2485,13 +2695,13 @@ export interface OperatorMethodOutputMap {
|
|
|
2485
2695
|
labels: readonly string[];
|
|
2486
2696
|
createdAt: number;
|
|
2487
2697
|
updatedAt: number;
|
|
2488
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
2698
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
2489
2699
|
agentId?: string;
|
|
2490
2700
|
triggeredBy: ({
|
|
2491
2701
|
id: string;
|
|
2492
2702
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
2493
2703
|
label: string;
|
|
2494
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2704
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2495
2705
|
routeId?: string;
|
|
2496
2706
|
enabled: boolean;
|
|
2497
2707
|
createdAt: number;
|
|
@@ -2511,7 +2721,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2511
2721
|
routeId?: string;
|
|
2512
2722
|
threadId?: string;
|
|
2513
2723
|
channelId?: string;
|
|
2514
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2724
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2515
2725
|
pinnedSessionId?: string;
|
|
2516
2726
|
preserveThread?: boolean;
|
|
2517
2727
|
createIfMissing?: boolean;
|
|
@@ -2525,7 +2735,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2525
2735
|
routeId?: string;
|
|
2526
2736
|
threadId?: string;
|
|
2527
2737
|
channelId?: string;
|
|
2528
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2738
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2529
2739
|
pinnedSessionId?: string;
|
|
2530
2740
|
preserveThread?: boolean;
|
|
2531
2741
|
createIfMissing?: boolean;
|
|
@@ -2558,7 +2768,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2558
2768
|
id?: string;
|
|
2559
2769
|
url?: string;
|
|
2560
2770
|
routeId?: string;
|
|
2561
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2771
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2562
2772
|
metadata?: ({} & {
|
|
2563
2773
|
readonly [key: string]: ({} & {
|
|
2564
2774
|
readonly [key: string]: JsonValue;
|
|
@@ -2580,7 +2790,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2580
2790
|
route?: ({
|
|
2581
2791
|
id: string;
|
|
2582
2792
|
kind: "channel" | "message" | "session" | "thread";
|
|
2583
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2793
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2584
2794
|
surfaceId: string;
|
|
2585
2795
|
externalId: string;
|
|
2586
2796
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -2615,7 +2825,7 @@ export interface OperatorMethodOutputMap {
|
|
|
2615
2825
|
jobId: string;
|
|
2616
2826
|
target: {
|
|
2617
2827
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
2618
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2828
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
2619
2829
|
address?: string;
|
|
2620
2830
|
routeId?: string;
|
|
2621
2831
|
label?: string;
|
|
@@ -3189,13 +3399,13 @@ export interface OperatorMethodOutputMap {
|
|
|
3189
3399
|
labels: readonly string[];
|
|
3190
3400
|
createdAt: number;
|
|
3191
3401
|
updatedAt: number;
|
|
3192
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
3402
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
3193
3403
|
agentId?: string;
|
|
3194
3404
|
triggeredBy: ({
|
|
3195
3405
|
id: string;
|
|
3196
3406
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
3197
3407
|
label: string;
|
|
3198
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3408
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3199
3409
|
routeId?: string;
|
|
3200
3410
|
enabled: boolean;
|
|
3201
3411
|
createdAt: number;
|
|
@@ -3215,7 +3425,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3215
3425
|
routeId?: string;
|
|
3216
3426
|
threadId?: string;
|
|
3217
3427
|
channelId?: string;
|
|
3218
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3428
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3219
3429
|
pinnedSessionId?: string;
|
|
3220
3430
|
preserveThread?: boolean;
|
|
3221
3431
|
createIfMissing?: boolean;
|
|
@@ -3229,7 +3439,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3229
3439
|
routeId?: string;
|
|
3230
3440
|
threadId?: string;
|
|
3231
3441
|
channelId?: string;
|
|
3232
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3442
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3233
3443
|
pinnedSessionId?: string;
|
|
3234
3444
|
preserveThread?: boolean;
|
|
3235
3445
|
createIfMissing?: boolean;
|
|
@@ -3262,7 +3472,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3262
3472
|
id?: string;
|
|
3263
3473
|
url?: string;
|
|
3264
3474
|
routeId?: string;
|
|
3265
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3475
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3266
3476
|
metadata?: ({} & {
|
|
3267
3477
|
readonly [key: string]: ({} & {
|
|
3268
3478
|
readonly [key: string]: JsonValue;
|
|
@@ -3284,7 +3494,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3284
3494
|
route?: ({
|
|
3285
3495
|
id: string;
|
|
3286
3496
|
kind: "channel" | "message" | "session" | "thread";
|
|
3287
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3497
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3288
3498
|
surfaceId: string;
|
|
3289
3499
|
externalId: string;
|
|
3290
3500
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -3319,7 +3529,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3319
3529
|
jobId: string;
|
|
3320
3530
|
target: {
|
|
3321
3531
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
3322
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3532
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3323
3533
|
address?: string;
|
|
3324
3534
|
routeId?: string;
|
|
3325
3535
|
label?: string;
|
|
@@ -3373,13 +3583,13 @@ export interface OperatorMethodOutputMap {
|
|
|
3373
3583
|
labels: readonly string[];
|
|
3374
3584
|
createdAt: number;
|
|
3375
3585
|
updatedAt: number;
|
|
3376
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
3586
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
3377
3587
|
agentId?: string;
|
|
3378
3588
|
triggeredBy: ({
|
|
3379
3589
|
id: string;
|
|
3380
3590
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
3381
3591
|
label: string;
|
|
3382
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3592
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3383
3593
|
routeId?: string;
|
|
3384
3594
|
enabled: boolean;
|
|
3385
3595
|
createdAt: number;
|
|
@@ -3399,7 +3609,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3399
3609
|
routeId?: string;
|
|
3400
3610
|
threadId?: string;
|
|
3401
3611
|
channelId?: string;
|
|
3402
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3612
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3403
3613
|
pinnedSessionId?: string;
|
|
3404
3614
|
preserveThread?: boolean;
|
|
3405
3615
|
createIfMissing?: boolean;
|
|
@@ -3413,7 +3623,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3413
3623
|
routeId?: string;
|
|
3414
3624
|
threadId?: string;
|
|
3415
3625
|
channelId?: string;
|
|
3416
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3626
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3417
3627
|
pinnedSessionId?: string;
|
|
3418
3628
|
preserveThread?: boolean;
|
|
3419
3629
|
createIfMissing?: boolean;
|
|
@@ -3446,7 +3656,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3446
3656
|
id?: string;
|
|
3447
3657
|
url?: string;
|
|
3448
3658
|
routeId?: string;
|
|
3449
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3659
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3450
3660
|
metadata?: ({} & {
|
|
3451
3661
|
readonly [key: string]: ({} & {
|
|
3452
3662
|
readonly [key: string]: JsonValue;
|
|
@@ -3468,7 +3678,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3468
3678
|
route?: ({
|
|
3469
3679
|
id: string;
|
|
3470
3680
|
kind: "channel" | "message" | "session" | "thread";
|
|
3471
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3681
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3472
3682
|
surfaceId: string;
|
|
3473
3683
|
externalId: string;
|
|
3474
3684
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -3503,7 +3713,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3503
3713
|
jobId: string;
|
|
3504
3714
|
target: {
|
|
3505
3715
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
3506
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3716
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3507
3717
|
address?: string;
|
|
3508
3718
|
routeId?: string;
|
|
3509
3719
|
label?: string;
|
|
@@ -3555,7 +3765,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3555
3765
|
jobId: string;
|
|
3556
3766
|
target: {
|
|
3557
3767
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
3558
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3768
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3559
3769
|
address?: string;
|
|
3560
3770
|
routeId?: string;
|
|
3561
3771
|
label?: string;
|
|
@@ -3576,13 +3786,13 @@ export interface OperatorMethodOutputMap {
|
|
|
3576
3786
|
labels: readonly string[];
|
|
3577
3787
|
createdAt: number;
|
|
3578
3788
|
updatedAt: number;
|
|
3579
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
3789
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
3580
3790
|
agentId?: string;
|
|
3581
3791
|
triggeredBy: ({
|
|
3582
3792
|
id: string;
|
|
3583
3793
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
3584
3794
|
label: string;
|
|
3585
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3795
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3586
3796
|
routeId?: string;
|
|
3587
3797
|
enabled: boolean;
|
|
3588
3798
|
createdAt: number;
|
|
@@ -3602,7 +3812,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3602
3812
|
routeId?: string;
|
|
3603
3813
|
threadId?: string;
|
|
3604
3814
|
channelId?: string;
|
|
3605
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3815
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3606
3816
|
pinnedSessionId?: string;
|
|
3607
3817
|
preserveThread?: boolean;
|
|
3608
3818
|
createIfMissing?: boolean;
|
|
@@ -3616,7 +3826,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3616
3826
|
routeId?: string;
|
|
3617
3827
|
threadId?: string;
|
|
3618
3828
|
channelId?: string;
|
|
3619
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3829
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3620
3830
|
pinnedSessionId?: string;
|
|
3621
3831
|
preserveThread?: boolean;
|
|
3622
3832
|
createIfMissing?: boolean;
|
|
@@ -3649,7 +3859,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3649
3859
|
id?: string;
|
|
3650
3860
|
url?: string;
|
|
3651
3861
|
routeId?: string;
|
|
3652
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3862
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3653
3863
|
metadata?: ({} & {
|
|
3654
3864
|
readonly [key: string]: ({} & {
|
|
3655
3865
|
readonly [key: string]: JsonValue;
|
|
@@ -3671,7 +3881,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3671
3881
|
route?: ({
|
|
3672
3882
|
id: string;
|
|
3673
3883
|
kind: "channel" | "message" | "session" | "thread";
|
|
3674
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3884
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3675
3885
|
surfaceId: string;
|
|
3676
3886
|
externalId: string;
|
|
3677
3887
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -3706,7 +3916,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3706
3916
|
jobId: string;
|
|
3707
3917
|
target: {
|
|
3708
3918
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
3709
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3919
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3710
3920
|
address?: string;
|
|
3711
3921
|
routeId?: string;
|
|
3712
3922
|
label?: string;
|
|
@@ -3760,13 +3970,13 @@ export interface OperatorMethodOutputMap {
|
|
|
3760
3970
|
labels: readonly string[];
|
|
3761
3971
|
createdAt: number;
|
|
3762
3972
|
updatedAt: number;
|
|
3763
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
3973
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
3764
3974
|
agentId?: string;
|
|
3765
3975
|
triggeredBy: ({
|
|
3766
3976
|
id: string;
|
|
3767
3977
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
3768
3978
|
label: string;
|
|
3769
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3979
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3770
3980
|
routeId?: string;
|
|
3771
3981
|
enabled: boolean;
|
|
3772
3982
|
createdAt: number;
|
|
@@ -3786,7 +3996,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3786
3996
|
routeId?: string;
|
|
3787
3997
|
threadId?: string;
|
|
3788
3998
|
channelId?: string;
|
|
3789
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3999
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3790
4000
|
pinnedSessionId?: string;
|
|
3791
4001
|
preserveThread?: boolean;
|
|
3792
4002
|
createIfMissing?: boolean;
|
|
@@ -3800,7 +4010,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3800
4010
|
routeId?: string;
|
|
3801
4011
|
threadId?: string;
|
|
3802
4012
|
channelId?: string;
|
|
3803
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4013
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3804
4014
|
pinnedSessionId?: string;
|
|
3805
4015
|
preserveThread?: boolean;
|
|
3806
4016
|
createIfMissing?: boolean;
|
|
@@ -3833,7 +4043,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3833
4043
|
id?: string;
|
|
3834
4044
|
url?: string;
|
|
3835
4045
|
routeId?: string;
|
|
3836
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4046
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3837
4047
|
metadata?: ({} & {
|
|
3838
4048
|
readonly [key: string]: ({} & {
|
|
3839
4049
|
readonly [key: string]: JsonValue;
|
|
@@ -3855,7 +4065,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3855
4065
|
route?: ({
|
|
3856
4066
|
id: string;
|
|
3857
4067
|
kind: "channel" | "message" | "session" | "thread";
|
|
3858
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4068
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3859
4069
|
surfaceId: string;
|
|
3860
4070
|
externalId: string;
|
|
3861
4071
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -3890,7 +4100,7 @@ export interface OperatorMethodOutputMap {
|
|
|
3890
4100
|
jobId: string;
|
|
3891
4101
|
target: {
|
|
3892
4102
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
3893
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
4103
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
3894
4104
|
address?: string;
|
|
3895
4105
|
routeId?: string;
|
|
3896
4106
|
label?: string;
|
|
@@ -4989,6 +5199,9 @@ export interface OperatorMethodOutputMap {
|
|
|
4989
5199
|
notificationId?: string;
|
|
4990
5200
|
fixSessionTriggered: boolean;
|
|
4991
5201
|
fixSessionId?: string;
|
|
5202
|
+
fixSessionError?: string;
|
|
5203
|
+
fixSessionOffered?: boolean;
|
|
5204
|
+
retired?: boolean;
|
|
4992
5205
|
};
|
|
4993
5206
|
"companion.chat.events.stream": {};
|
|
4994
5207
|
"companion.chat.messages.create": {
|
|
@@ -5138,6 +5351,8 @@ export interface OperatorMethodOutputMap {
|
|
|
5138
5351
|
dimension: "agent" | "hook" | "mcp" | "model" | "provider" | "session" | "tool";
|
|
5139
5352
|
totalCostUsd: null | number;
|
|
5140
5353
|
costState: "estimated" | "priced" | "unpriced";
|
|
5354
|
+
costSource: null | "catalog" | "mixed" | "provider" | "user";
|
|
5355
|
+
pricingAsOf: null | string;
|
|
5141
5356
|
pricedRecordCount: number;
|
|
5142
5357
|
unpricedRecordCount: number;
|
|
5143
5358
|
tokens: {
|
|
@@ -5150,6 +5365,8 @@ export interface OperatorMethodOutputMap {
|
|
|
5150
5365
|
key: string;
|
|
5151
5366
|
costUsd: null | number;
|
|
5152
5367
|
costState: "estimated" | "priced" | "unpriced";
|
|
5368
|
+
costSource: null | "catalog" | "mixed" | "provider" | "user";
|
|
5369
|
+
pricingAsOf: null | string;
|
|
5153
5370
|
pricedRecordCount: number;
|
|
5154
5371
|
unpricedRecordCount: number;
|
|
5155
5372
|
tokens: {
|
|
@@ -5531,6 +5748,11 @@ export interface OperatorMethodOutputMap {
|
|
|
5531
5748
|
"control.status": {
|
|
5532
5749
|
status: string;
|
|
5533
5750
|
version: string;
|
|
5751
|
+
receipts?: readonly ({
|
|
5752
|
+
id: string;
|
|
5753
|
+
text: string;
|
|
5754
|
+
at: number;
|
|
5755
|
+
})[];
|
|
5534
5756
|
};
|
|
5535
5757
|
"control.web": {
|
|
5536
5758
|
html: string;
|
|
@@ -5630,7 +5852,7 @@ export interface OperatorMethodOutputMap {
|
|
|
5630
5852
|
capturedAt: number;
|
|
5631
5853
|
nodes: readonly (({
|
|
5632
5854
|
id: string;
|
|
5633
|
-
kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
5855
|
+
kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
5634
5856
|
parentId?: string;
|
|
5635
5857
|
label: string;
|
|
5636
5858
|
task?: string;
|
|
@@ -5652,6 +5874,8 @@ export interface OperatorMethodOutputMap {
|
|
|
5652
5874
|
provider?: string;
|
|
5653
5875
|
costUsd?: null | number;
|
|
5654
5876
|
costState: "estimated" | "priced" | "unpriced";
|
|
5877
|
+
costSource?: "catalog" | "mixed" | "provider" | "user";
|
|
5878
|
+
pricingAsOf?: string;
|
|
5655
5879
|
currentActivity?: {
|
|
5656
5880
|
kind: "output-line" | "phase" | "tool";
|
|
5657
5881
|
text: string;
|
|
@@ -5666,13 +5890,41 @@ export interface OperatorMethodOutputMap {
|
|
|
5666
5890
|
steerable: boolean;
|
|
5667
5891
|
};
|
|
5668
5892
|
needsAttention?: {
|
|
5669
|
-
reason: "approval" | "input";
|
|
5893
|
+
reason: "approval" | "conflict" | "input" | "pick";
|
|
5670
5894
|
detail?: string;
|
|
5671
5895
|
};
|
|
5672
5896
|
sessionRef?: {
|
|
5673
5897
|
sessionId?: string;
|
|
5674
5898
|
agentId?: string;
|
|
5675
5899
|
};
|
|
5900
|
+
review?: {
|
|
5901
|
+
score: number;
|
|
5902
|
+
passed: boolean;
|
|
5903
|
+
cycles: number;
|
|
5904
|
+
checklist: readonly ({
|
|
5905
|
+
item: string;
|
|
5906
|
+
verified: boolean;
|
|
5907
|
+
evidence: string;
|
|
5908
|
+
howExercised?: string;
|
|
5909
|
+
})[];
|
|
5910
|
+
};
|
|
5911
|
+
observed?: {
|
|
5912
|
+
externalKind: "claude-code" | "codex" | "opencode" | "unknown";
|
|
5913
|
+
pid: number;
|
|
5914
|
+
cwd?: string;
|
|
5915
|
+
liveness: {
|
|
5916
|
+
state: "active" | "quiet";
|
|
5917
|
+
cpuSeconds: number;
|
|
5918
|
+
detail: string;
|
|
5919
|
+
};
|
|
5920
|
+
steer: {
|
|
5921
|
+
kind: "none" | "tmux";
|
|
5922
|
+
paneId?: string;
|
|
5923
|
+
tty?: string;
|
|
5924
|
+
reason?: string;
|
|
5925
|
+
};
|
|
5926
|
+
steerDrillInOnly: boolean;
|
|
5927
|
+
};
|
|
5676
5928
|
} & {
|
|
5677
5929
|
readonly [key: string]: unknown;
|
|
5678
5930
|
}))[];
|
|
@@ -5707,6 +5959,8 @@ export interface OperatorMethodOutputMap {
|
|
|
5707
5959
|
toolCallCount: number;
|
|
5708
5960
|
costUsd: null | number;
|
|
5709
5961
|
costState: "estimated" | "priced" | "unpriced";
|
|
5962
|
+
costSource?: "catalog" | "mixed" | "provider" | "user";
|
|
5963
|
+
pricingAsOf?: string;
|
|
5710
5964
|
};
|
|
5711
5965
|
failureReason: null | string;
|
|
5712
5966
|
diff: null | {
|
|
@@ -5725,15 +5979,87 @@ export interface OperatorMethodOutputMap {
|
|
|
5725
5979
|
})[];
|
|
5726
5980
|
};
|
|
5727
5981
|
"fleet.attempts.pick": {
|
|
5982
|
+
applied: boolean;
|
|
5728
5983
|
groupId: string;
|
|
5729
5984
|
winnerItemId: string;
|
|
5730
|
-
loserItemIds
|
|
5731
|
-
auto
|
|
5985
|
+
loserItemIds?: readonly string[];
|
|
5986
|
+
auto?: boolean;
|
|
5987
|
+
requiresConfirm?: boolean;
|
|
5988
|
+
group?: {
|
|
5989
|
+
groupId: string;
|
|
5990
|
+
workstreamId: string;
|
|
5991
|
+
sourceTitle: string;
|
|
5992
|
+
ready: boolean;
|
|
5993
|
+
candidates: readonly ({
|
|
5994
|
+
itemId: string;
|
|
5995
|
+
attemptIndex: number;
|
|
5996
|
+
state: "failed" | "held-merge";
|
|
5997
|
+
title: string;
|
|
5998
|
+
worktreePath: null | string;
|
|
5999
|
+
branch: null | string;
|
|
6000
|
+
usage: {
|
|
6001
|
+
inputTokens: number;
|
|
6002
|
+
outputTokens: number;
|
|
6003
|
+
cacheReadTokens: number;
|
|
6004
|
+
cacheWriteTokens: number;
|
|
6005
|
+
reasoningTokens?: number;
|
|
6006
|
+
llmCallCount: number;
|
|
6007
|
+
turnCount: number;
|
|
6008
|
+
toolCallCount: number;
|
|
6009
|
+
costUsd: null | number;
|
|
6010
|
+
costState: "estimated" | "priced" | "unpriced";
|
|
6011
|
+
costSource?: "catalog" | "mixed" | "provider" | "user";
|
|
6012
|
+
pricingAsOf?: string;
|
|
6013
|
+
};
|
|
6014
|
+
failureReason: null | string;
|
|
6015
|
+
diff: null | {
|
|
6016
|
+
files: readonly string[];
|
|
6017
|
+
unifiedDiff: string;
|
|
6018
|
+
stat: string;
|
|
6019
|
+
};
|
|
6020
|
+
})[];
|
|
6021
|
+
autoAccept: boolean;
|
|
6022
|
+
judgment: null | {
|
|
6023
|
+
proposedWinnerItemId: null | string;
|
|
6024
|
+
reasons: readonly string[];
|
|
6025
|
+
model: null | string;
|
|
6026
|
+
scoredBy: "model";
|
|
6027
|
+
};
|
|
6028
|
+
};
|
|
6029
|
+
};
|
|
6030
|
+
"fleet.graph.get": {
|
|
6031
|
+
workstreamId: string;
|
|
6032
|
+
title: string;
|
|
6033
|
+
nodes: readonly ({
|
|
6034
|
+
id: string;
|
|
6035
|
+
title: string;
|
|
6036
|
+
state: string;
|
|
6037
|
+
cluster?: string;
|
|
6038
|
+
files: readonly string[];
|
|
6039
|
+
mergeState?: string;
|
|
6040
|
+
blockedReason?: string;
|
|
6041
|
+
orphaned: boolean;
|
|
6042
|
+
remainingDepth: number;
|
|
6043
|
+
stalled: boolean;
|
|
6044
|
+
agentId?: string;
|
|
6045
|
+
})[];
|
|
6046
|
+
edges: readonly ({
|
|
6047
|
+
from: string;
|
|
6048
|
+
to: string;
|
|
6049
|
+
})[];
|
|
6050
|
+
pool: null | {
|
|
6051
|
+
ready: number;
|
|
6052
|
+
running: number;
|
|
6053
|
+
atCap: boolean;
|
|
6054
|
+
capKey: string;
|
|
6055
|
+
maxSize: number;
|
|
6056
|
+
refusal?: string;
|
|
6057
|
+
};
|
|
5732
6058
|
};
|
|
5733
6059
|
"fleet.list": {
|
|
5734
6060
|
items: readonly (({
|
|
5735
6061
|
id: string;
|
|
5736
|
-
kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
6062
|
+
kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
5737
6063
|
parentId?: string;
|
|
5738
6064
|
label: string;
|
|
5739
6065
|
task?: string;
|
|
@@ -5755,6 +6081,8 @@ export interface OperatorMethodOutputMap {
|
|
|
5755
6081
|
provider?: string;
|
|
5756
6082
|
costUsd?: null | number;
|
|
5757
6083
|
costState: "estimated" | "priced" | "unpriced";
|
|
6084
|
+
costSource?: "catalog" | "mixed" | "provider" | "user";
|
|
6085
|
+
pricingAsOf?: string;
|
|
5758
6086
|
currentActivity?: {
|
|
5759
6087
|
kind: "output-line" | "phase" | "tool";
|
|
5760
6088
|
text: string;
|
|
@@ -5769,13 +6097,41 @@ export interface OperatorMethodOutputMap {
|
|
|
5769
6097
|
steerable: boolean;
|
|
5770
6098
|
};
|
|
5771
6099
|
needsAttention?: {
|
|
5772
|
-
reason: "approval" | "input";
|
|
6100
|
+
reason: "approval" | "conflict" | "input" | "pick";
|
|
5773
6101
|
detail?: string;
|
|
5774
6102
|
};
|
|
5775
6103
|
sessionRef?: {
|
|
5776
6104
|
sessionId?: string;
|
|
5777
6105
|
agentId?: string;
|
|
5778
6106
|
};
|
|
6107
|
+
review?: {
|
|
6108
|
+
score: number;
|
|
6109
|
+
passed: boolean;
|
|
6110
|
+
cycles: number;
|
|
6111
|
+
checklist: readonly ({
|
|
6112
|
+
item: string;
|
|
6113
|
+
verified: boolean;
|
|
6114
|
+
evidence: string;
|
|
6115
|
+
howExercised?: string;
|
|
6116
|
+
})[];
|
|
6117
|
+
};
|
|
6118
|
+
observed?: {
|
|
6119
|
+
externalKind: "claude-code" | "codex" | "opencode" | "unknown";
|
|
6120
|
+
pid: number;
|
|
6121
|
+
cwd?: string;
|
|
6122
|
+
liveness: {
|
|
6123
|
+
state: "active" | "quiet";
|
|
6124
|
+
cpuSeconds: number;
|
|
6125
|
+
detail: string;
|
|
6126
|
+
};
|
|
6127
|
+
steer: {
|
|
6128
|
+
kind: "none" | "tmux";
|
|
6129
|
+
paneId?: string;
|
|
6130
|
+
tty?: string;
|
|
6131
|
+
reason?: string;
|
|
6132
|
+
};
|
|
6133
|
+
steerDrillInOnly: boolean;
|
|
6134
|
+
};
|
|
5779
6135
|
} & {
|
|
5780
6136
|
readonly [key: string]: unknown;
|
|
5781
6137
|
}))[];
|
|
@@ -5783,11 +6139,16 @@ export interface OperatorMethodOutputMap {
|
|
|
5783
6139
|
hasMore: boolean;
|
|
5784
6140
|
capturedAt: number;
|
|
5785
6141
|
};
|
|
6142
|
+
"fleet.observed.steer": {
|
|
6143
|
+
queued: boolean;
|
|
6144
|
+
messageId?: string;
|
|
6145
|
+
reason?: string;
|
|
6146
|
+
};
|
|
5786
6147
|
"fleet.snapshot": {
|
|
5787
6148
|
capturedAt: number;
|
|
5788
6149
|
nodes: readonly (({
|
|
5789
6150
|
id: string;
|
|
5790
|
-
kind: "agent" | "background-process" | "code-index" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
6151
|
+
kind: "acp-agent" | "agent" | "background-process" | "code-index" | "observed-external" | "phase" | "schedule" | "trigger" | "watcher" | "work-item" | "workflow" | "workstream" | "wrfc-chain" | "wrfc-subtask";
|
|
5791
6152
|
parentId?: string;
|
|
5792
6153
|
label: string;
|
|
5793
6154
|
task?: string;
|
|
@@ -5809,6 +6170,8 @@ export interface OperatorMethodOutputMap {
|
|
|
5809
6170
|
provider?: string;
|
|
5810
6171
|
costUsd?: null | number;
|
|
5811
6172
|
costState: "estimated" | "priced" | "unpriced";
|
|
6173
|
+
costSource?: "catalog" | "mixed" | "provider" | "user";
|
|
6174
|
+
pricingAsOf?: string;
|
|
5812
6175
|
currentActivity?: {
|
|
5813
6176
|
kind: "output-line" | "phase" | "tool";
|
|
5814
6177
|
text: string;
|
|
@@ -5823,13 +6186,41 @@ export interface OperatorMethodOutputMap {
|
|
|
5823
6186
|
steerable: boolean;
|
|
5824
6187
|
};
|
|
5825
6188
|
needsAttention?: {
|
|
5826
|
-
reason: "approval" | "input";
|
|
6189
|
+
reason: "approval" | "conflict" | "input" | "pick";
|
|
5827
6190
|
detail?: string;
|
|
5828
6191
|
};
|
|
5829
6192
|
sessionRef?: {
|
|
5830
6193
|
sessionId?: string;
|
|
5831
6194
|
agentId?: string;
|
|
5832
6195
|
};
|
|
6196
|
+
review?: {
|
|
6197
|
+
score: number;
|
|
6198
|
+
passed: boolean;
|
|
6199
|
+
cycles: number;
|
|
6200
|
+
checklist: readonly ({
|
|
6201
|
+
item: string;
|
|
6202
|
+
verified: boolean;
|
|
6203
|
+
evidence: string;
|
|
6204
|
+
howExercised?: string;
|
|
6205
|
+
})[];
|
|
6206
|
+
};
|
|
6207
|
+
observed?: {
|
|
6208
|
+
externalKind: "claude-code" | "codex" | "opencode" | "unknown";
|
|
6209
|
+
pid: number;
|
|
6210
|
+
cwd?: string;
|
|
6211
|
+
liveness: {
|
|
6212
|
+
state: "active" | "quiet";
|
|
6213
|
+
cpuSeconds: number;
|
|
6214
|
+
detail: string;
|
|
6215
|
+
};
|
|
6216
|
+
steer: {
|
|
6217
|
+
kind: "none" | "tmux";
|
|
6218
|
+
paneId?: string;
|
|
6219
|
+
tty?: string;
|
|
6220
|
+
reason?: string;
|
|
6221
|
+
};
|
|
6222
|
+
steerDrillInOnly: boolean;
|
|
6223
|
+
};
|
|
5833
6224
|
} & {
|
|
5834
6225
|
readonly [key: string]: unknown;
|
|
5835
6226
|
}))[];
|
|
@@ -7394,6 +7785,38 @@ export interface OperatorMethodOutputMap {
|
|
|
7394
7785
|
};
|
|
7395
7786
|
checkedAt: number;
|
|
7396
7787
|
};
|
|
7788
|
+
"memory.consolidation.receipts": {
|
|
7789
|
+
receipts: readonly ({
|
|
7790
|
+
runId: string;
|
|
7791
|
+
ranAt: string;
|
|
7792
|
+
trigger: string;
|
|
7793
|
+
idle: boolean;
|
|
7794
|
+
scanned: number;
|
|
7795
|
+
merged: readonly (({} & {
|
|
7796
|
+
readonly [key: string]: unknown;
|
|
7797
|
+
}))[];
|
|
7798
|
+
archived: readonly (({} & {
|
|
7799
|
+
readonly [key: string]: unknown;
|
|
7800
|
+
}))[];
|
|
7801
|
+
decayed: readonly (({} & {
|
|
7802
|
+
readonly [key: string]: unknown;
|
|
7803
|
+
}))[];
|
|
7804
|
+
proposed: readonly ({
|
|
7805
|
+
kind: "contradiction" | "cross-scope-duplicate" | "stale-delete";
|
|
7806
|
+
ids: readonly string[];
|
|
7807
|
+
route: string;
|
|
7808
|
+
reason: string;
|
|
7809
|
+
})[];
|
|
7810
|
+
usageSignalAvailable: boolean;
|
|
7811
|
+
note: string;
|
|
7812
|
+
})[];
|
|
7813
|
+
pendingProposals: readonly ({
|
|
7814
|
+
kind: "contradiction" | "cross-scope-duplicate" | "stale-delete";
|
|
7815
|
+
ids: readonly string[];
|
|
7816
|
+
route: string;
|
|
7817
|
+
reason: string;
|
|
7818
|
+
})[];
|
|
7819
|
+
};
|
|
7397
7820
|
"memory.embeddings.default.set": {
|
|
7398
7821
|
vector: ({
|
|
7399
7822
|
backend: "sqlite-vec";
|
|
@@ -7661,6 +8084,59 @@ export interface OperatorMethodOutputMap {
|
|
|
7661
8084
|
id: string;
|
|
7662
8085
|
pane: "bottom" | "top";
|
|
7663
8086
|
};
|
|
8087
|
+
"permissions.rules.list": {
|
|
8088
|
+
rules: readonly ({
|
|
8089
|
+
id: string;
|
|
8090
|
+
effect: "allow" | "deny";
|
|
8091
|
+
tier: "command-class" | "exact" | "path" | "tool";
|
|
8092
|
+
tool: string;
|
|
8093
|
+
description?: string;
|
|
8094
|
+
createdAt: number;
|
|
8095
|
+
})[];
|
|
8096
|
+
};
|
|
8097
|
+
"permissions.rules.delete": {
|
|
8098
|
+
deleted: boolean;
|
|
8099
|
+
};
|
|
8100
|
+
"power.keepAwake.set": {
|
|
8101
|
+
platform: string;
|
|
8102
|
+
work: {
|
|
8103
|
+
held: boolean;
|
|
8104
|
+
grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8105
|
+
deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8106
|
+
reasons: readonly string[];
|
|
8107
|
+
heldSince: null | number;
|
|
8108
|
+
capMinutes: number;
|
|
8109
|
+
capExpiresAt: null | number;
|
|
8110
|
+
capExpired: boolean;
|
|
8111
|
+
};
|
|
8112
|
+
keepAwake: {
|
|
8113
|
+
enabled: boolean;
|
|
8114
|
+
held: boolean;
|
|
8115
|
+
grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8116
|
+
deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8117
|
+
note: null | string;
|
|
8118
|
+
};
|
|
8119
|
+
};
|
|
8120
|
+
"power.status.get": {
|
|
8121
|
+
platform: string;
|
|
8122
|
+
work: {
|
|
8123
|
+
held: boolean;
|
|
8124
|
+
grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8125
|
+
deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8126
|
+
reasons: readonly string[];
|
|
8127
|
+
heldSince: null | number;
|
|
8128
|
+
capMinutes: number;
|
|
8129
|
+
capExpiresAt: null | number;
|
|
8130
|
+
capExpired: boolean;
|
|
8131
|
+
};
|
|
8132
|
+
keepAwake: {
|
|
8133
|
+
enabled: boolean;
|
|
8134
|
+
held: boolean;
|
|
8135
|
+
grantedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8136
|
+
deniedClasses: readonly ("handle-lid-switch" | "idle" | "sleep")[];
|
|
8137
|
+
note: null | string;
|
|
8138
|
+
};
|
|
8139
|
+
};
|
|
7664
8140
|
"principals.create": {
|
|
7665
8141
|
principal: {
|
|
7666
8142
|
id: string;
|
|
@@ -7838,6 +8314,8 @@ export interface OperatorMethodOutputMap {
|
|
|
7838
8314
|
inputPerMillionTokens: number;
|
|
7839
8315
|
outputPerMillionTokens: number;
|
|
7840
8316
|
currency: "USD";
|
|
8317
|
+
source: "catalog" | "provider" | "user";
|
|
8318
|
+
asOf?: string;
|
|
7841
8319
|
};
|
|
7842
8320
|
} & {
|
|
7843
8321
|
readonly [key: string]: unknown;
|
|
@@ -7926,6 +8404,8 @@ export interface OperatorMethodOutputMap {
|
|
|
7926
8404
|
inputPerMillionTokens: number;
|
|
7927
8405
|
outputPerMillionTokens: number;
|
|
7928
8406
|
currency: "USD";
|
|
8407
|
+
source: "catalog" | "provider" | "user";
|
|
8408
|
+
asOf?: string;
|
|
7929
8409
|
};
|
|
7930
8410
|
} & {
|
|
7931
8411
|
readonly [key: string]: unknown;
|
|
@@ -7936,7 +8416,8 @@ export interface OperatorMethodOutputMap {
|
|
|
7936
8416
|
providerId: string;
|
|
7937
8417
|
active: boolean;
|
|
7938
8418
|
currentModelRegistryKey?: string;
|
|
7939
|
-
pricingSource: "catalog" | "none" | "provider";
|
|
8419
|
+
pricingSource: "catalog" | "mixed" | "none" | "provider" | "user";
|
|
8420
|
+
pricingAsOf?: string;
|
|
7940
8421
|
models: readonly (({
|
|
7941
8422
|
id: string;
|
|
7942
8423
|
registryKey: string;
|
|
@@ -7948,6 +8429,8 @@ export interface OperatorMethodOutputMap {
|
|
|
7948
8429
|
inputPerMillionTokens: number;
|
|
7949
8430
|
outputPerMillionTokens: number;
|
|
7950
8431
|
currency: "USD";
|
|
8432
|
+
source: "catalog" | "provider" | "user";
|
|
8433
|
+
asOf?: string;
|
|
7951
8434
|
};
|
|
7952
8435
|
} & {
|
|
7953
8436
|
readonly [key: string]: unknown;
|
|
@@ -9125,15 +9608,15 @@ export interface OperatorMethodOutputMap {
|
|
|
9125
9608
|
schedule: {
|
|
9126
9609
|
kind: "at";
|
|
9127
9610
|
at: number;
|
|
9611
|
+
} | {
|
|
9612
|
+
kind: "every";
|
|
9613
|
+
intervalMs: number;
|
|
9614
|
+
anchorAt?: number;
|
|
9128
9615
|
} | {
|
|
9129
9616
|
kind: "cron";
|
|
9130
9617
|
expression: string;
|
|
9131
9618
|
timezone?: string;
|
|
9132
9619
|
staggerMs?: number;
|
|
9133
|
-
} | {
|
|
9134
|
-
kind: "every";
|
|
9135
|
-
intervalMs: number;
|
|
9136
|
-
anchorAt?: number;
|
|
9137
9620
|
};
|
|
9138
9621
|
execution: {
|
|
9139
9622
|
prompt?: string;
|
|
@@ -9144,7 +9627,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9144
9627
|
routeId?: string;
|
|
9145
9628
|
threadId?: string;
|
|
9146
9629
|
channelId?: string;
|
|
9147
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9630
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9148
9631
|
pinnedSessionId?: string;
|
|
9149
9632
|
preserveThread?: boolean;
|
|
9150
9633
|
createIfMissing?: boolean;
|
|
@@ -9177,7 +9660,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9177
9660
|
id?: string;
|
|
9178
9661
|
url?: string;
|
|
9179
9662
|
routeId?: string;
|
|
9180
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9663
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9181
9664
|
metadata?: ({} & {
|
|
9182
9665
|
readonly [key: string]: ({} & {
|
|
9183
9666
|
readonly [key: string]: JsonValue;
|
|
@@ -9190,14 +9673,14 @@ export interface OperatorMethodOutputMap {
|
|
|
9190
9673
|
mode: "integration" | "link" | "none" | "surface" | "webhook";
|
|
9191
9674
|
targets: readonly ({
|
|
9192
9675
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
9193
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9676
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9194
9677
|
address?: string;
|
|
9195
9678
|
routeId?: string;
|
|
9196
9679
|
label?: string;
|
|
9197
9680
|
})[];
|
|
9198
9681
|
fallbackTargets: readonly ({
|
|
9199
9682
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
9200
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9683
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9201
9684
|
address?: string;
|
|
9202
9685
|
routeId?: string;
|
|
9203
9686
|
label?: string;
|
|
@@ -9226,7 +9709,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9226
9709
|
id: string;
|
|
9227
9710
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
9228
9711
|
label: string;
|
|
9229
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9712
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9230
9713
|
routeId?: string;
|
|
9231
9714
|
enabled: boolean;
|
|
9232
9715
|
createdAt: number;
|
|
@@ -9263,13 +9746,13 @@ export interface OperatorMethodOutputMap {
|
|
|
9263
9746
|
labels: readonly string[];
|
|
9264
9747
|
createdAt: number;
|
|
9265
9748
|
updatedAt: number;
|
|
9266
|
-
status: "cancelled" | "completed" | "failed" | "queued" | "running";
|
|
9749
|
+
status: "cancelled" | "completed" | "failed" | "missed" | "queued" | "running";
|
|
9267
9750
|
agentId?: string;
|
|
9268
9751
|
triggeredBy: ({
|
|
9269
9752
|
id: string;
|
|
9270
9753
|
kind: "hook" | "manual" | "schedule" | "surface" | "watcher" | "webhook";
|
|
9271
9754
|
label: string;
|
|
9272
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9755
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9273
9756
|
routeId?: string;
|
|
9274
9757
|
enabled: boolean;
|
|
9275
9758
|
createdAt: number;
|
|
@@ -9289,7 +9772,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9289
9772
|
routeId?: string;
|
|
9290
9773
|
threadId?: string;
|
|
9291
9774
|
channelId?: string;
|
|
9292
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9775
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9293
9776
|
pinnedSessionId?: string;
|
|
9294
9777
|
preserveThread?: boolean;
|
|
9295
9778
|
createIfMissing?: boolean;
|
|
@@ -9303,7 +9786,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9303
9786
|
routeId?: string;
|
|
9304
9787
|
threadId?: string;
|
|
9305
9788
|
channelId?: string;
|
|
9306
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9789
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9307
9790
|
pinnedSessionId?: string;
|
|
9308
9791
|
preserveThread?: boolean;
|
|
9309
9792
|
createIfMissing?: boolean;
|
|
@@ -9336,7 +9819,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9336
9819
|
id?: string;
|
|
9337
9820
|
url?: string;
|
|
9338
9821
|
routeId?: string;
|
|
9339
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9822
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9340
9823
|
metadata?: ({} & {
|
|
9341
9824
|
readonly [key: string]: ({} & {
|
|
9342
9825
|
readonly [key: string]: JsonValue;
|
|
@@ -9358,7 +9841,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9358
9841
|
route?: ({
|
|
9359
9842
|
id: string;
|
|
9360
9843
|
kind: "channel" | "message" | "session" | "thread";
|
|
9361
|
-
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9844
|
+
surfaceKind: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9362
9845
|
surfaceId: string;
|
|
9363
9846
|
externalId: string;
|
|
9364
9847
|
sessionPolicy?: "continue-existing" | "create-or-bind" | "require-existing";
|
|
@@ -9393,7 +9876,7 @@ export interface OperatorMethodOutputMap {
|
|
|
9393
9876
|
jobId: string;
|
|
9394
9877
|
target: {
|
|
9395
9878
|
kind: "integration" | "link" | "none" | "surface" | "webhook";
|
|
9396
|
-
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9879
|
+
surfaceKind?: "bluebubbles" | "discord" | "google-chat" | "homeassistant" | "imessage" | "matrix" | "mattermost" | "msteams" | "ntfy" | "service" | "signal" | "slack" | "telegram" | "telephony" | "tui" | "web" | "webhook" | "whatsapp";
|
|
9397
9880
|
address?: string;
|
|
9398
9881
|
routeId?: string;
|
|
9399
9882
|
label?: string;
|
|
@@ -9965,6 +10448,24 @@ export interface OperatorMethodOutputMap {
|
|
|
9965
10448
|
mode: "accept-edits" | "auto" | "custom" | "normal" | "plan";
|
|
9966
10449
|
previousMode: "accept-edits" | "auto" | "custom" | "normal" | "plan";
|
|
9967
10450
|
};
|
|
10451
|
+
"sessions.queuedMessages.delete": {
|
|
10452
|
+
sessionId: string;
|
|
10453
|
+
id: string;
|
|
10454
|
+
deleted: boolean;
|
|
10455
|
+
};
|
|
10456
|
+
"sessions.queuedMessages.edit": {
|
|
10457
|
+
sessionId: string;
|
|
10458
|
+
id: string;
|
|
10459
|
+
text: string;
|
|
10460
|
+
};
|
|
10461
|
+
"sessions.queuedMessages.list": {
|
|
10462
|
+
sessionId: string;
|
|
10463
|
+
messages: readonly ({
|
|
10464
|
+
id: string;
|
|
10465
|
+
queuedAt: number;
|
|
10466
|
+
text: string;
|
|
10467
|
+
})[];
|
|
10468
|
+
};
|
|
9968
10469
|
"sessions.followUp": {
|
|
9969
10470
|
session: null | {
|
|
9970
10471
|
id: string;
|
|
@@ -10626,6 +11127,11 @@ export interface OperatorMethodOutputMap {
|
|
|
10626
11127
|
operationalNotes: readonly string[];
|
|
10627
11128
|
})[];
|
|
10628
11129
|
};
|
|
11130
|
+
"sessions.toolCalls.cancel": {
|
|
11131
|
+
sessionId: string;
|
|
11132
|
+
callId: string;
|
|
11133
|
+
cancelled: boolean;
|
|
11134
|
+
};
|
|
10629
11135
|
"settings.snapshot": {
|
|
10630
11136
|
available: boolean;
|
|
10631
11137
|
liveKeyCount: number;
|
|
@@ -11785,6 +12291,8 @@ export interface OperatorMethodOutputMap {
|
|
|
11785
12291
|
root: string;
|
|
11786
12292
|
registeredAt: string;
|
|
11787
12293
|
label?: string;
|
|
12294
|
+
origin?: string;
|
|
12295
|
+
checkpointEligible?: boolean;
|
|
11788
12296
|
})[];
|
|
11789
12297
|
declines: readonly ({
|
|
11790
12298
|
root: string;
|
|
@@ -11796,6 +12304,8 @@ export interface OperatorMethodOutputMap {
|
|
|
11796
12304
|
root: string;
|
|
11797
12305
|
registeredAt: string;
|
|
11798
12306
|
label?: string;
|
|
12307
|
+
origin?: string;
|
|
12308
|
+
checkpointEligible?: boolean;
|
|
11799
12309
|
};
|
|
11800
12310
|
alreadyRegistered: boolean;
|
|
11801
12311
|
};
|
|
@@ -11864,6 +12374,183 @@ export interface OperatorMethodOutputMap {
|
|
|
11864
12374
|
updatedAt: number;
|
|
11865
12375
|
})[];
|
|
11866
12376
|
};
|
|
12377
|
+
"push.subscriptions.reconcile": {
|
|
12378
|
+
subscription: {
|
|
12379
|
+
id: string;
|
|
12380
|
+
principalId: string;
|
|
12381
|
+
deviceId?: string;
|
|
12382
|
+
endpointOrigin: string;
|
|
12383
|
+
endpointHash: string;
|
|
12384
|
+
createdAt: number;
|
|
12385
|
+
lastDeliveryAt?: number;
|
|
12386
|
+
lastOutcome?: string;
|
|
12387
|
+
consecutiveFailures?: number;
|
|
12388
|
+
};
|
|
12389
|
+
drift: string;
|
|
12390
|
+
};
|
|
12391
|
+
"pairing.tokens.list": {
|
|
12392
|
+
tokens: readonly ({
|
|
12393
|
+
id: string;
|
|
12394
|
+
name: string;
|
|
12395
|
+
createdAt: number;
|
|
12396
|
+
lastSeenAt?: number;
|
|
12397
|
+
})[];
|
|
12398
|
+
legacySharedRevoked: boolean;
|
|
12399
|
+
};
|
|
12400
|
+
"pairing.tokens.create": {
|
|
12401
|
+
token: {
|
|
12402
|
+
id: string;
|
|
12403
|
+
name: string;
|
|
12404
|
+
token: string;
|
|
12405
|
+
createdAt: number;
|
|
12406
|
+
};
|
|
12407
|
+
};
|
|
12408
|
+
"pairing.tokens.migrate": {
|
|
12409
|
+
token: {
|
|
12410
|
+
id: string;
|
|
12411
|
+
name: string;
|
|
12412
|
+
token: string;
|
|
12413
|
+
createdAt: number;
|
|
12414
|
+
};
|
|
12415
|
+
};
|
|
12416
|
+
"pairing.tokens.rename": {
|
|
12417
|
+
id: string;
|
|
12418
|
+
renamed: boolean;
|
|
12419
|
+
};
|
|
12420
|
+
"pairing.tokens.delete": {
|
|
12421
|
+
id: string;
|
|
12422
|
+
revoked: boolean;
|
|
12423
|
+
};
|
|
12424
|
+
"pairing.tokens.revokeShared": {
|
|
12425
|
+
legacySharedRevoked: boolean;
|
|
12426
|
+
};
|
|
12427
|
+
"pairing.handoff.create": {
|
|
12428
|
+
token: {
|
|
12429
|
+
id: string;
|
|
12430
|
+
name: string;
|
|
12431
|
+
token: string;
|
|
12432
|
+
createdAt: number;
|
|
12433
|
+
};
|
|
12434
|
+
offers: readonly ({
|
|
12435
|
+
kind: string;
|
|
12436
|
+
available: boolean;
|
|
12437
|
+
vapidPublicKey?: string;
|
|
12438
|
+
})[];
|
|
12439
|
+
fragment: string;
|
|
12440
|
+
deepLink?: string;
|
|
12441
|
+
posture?: {
|
|
12442
|
+
origin: string;
|
|
12443
|
+
scheme: string;
|
|
12444
|
+
privateNetwork: boolean;
|
|
12445
|
+
secureContext: boolean;
|
|
12446
|
+
notice?: string;
|
|
12447
|
+
capabilities: readonly ({
|
|
12448
|
+
capability: string;
|
|
12449
|
+
available: boolean;
|
|
12450
|
+
reason?: string;
|
|
12451
|
+
})[];
|
|
12452
|
+
};
|
|
12453
|
+
};
|
|
12454
|
+
"pairing.handoff.complete": {
|
|
12455
|
+
results: readonly ({
|
|
12456
|
+
kind: string;
|
|
12457
|
+
status: string;
|
|
12458
|
+
detail?: string;
|
|
12459
|
+
})[];
|
|
12460
|
+
};
|
|
12461
|
+
"pairing.posture.get": {
|
|
12462
|
+
posture: {
|
|
12463
|
+
origin: string;
|
|
12464
|
+
scheme: string;
|
|
12465
|
+
privateNetwork: boolean;
|
|
12466
|
+
secureContext: boolean;
|
|
12467
|
+
notice?: string;
|
|
12468
|
+
capabilities: readonly ({
|
|
12469
|
+
capability: string;
|
|
12470
|
+
available: boolean;
|
|
12471
|
+
reason?: string;
|
|
12472
|
+
})[];
|
|
12473
|
+
};
|
|
12474
|
+
};
|
|
12475
|
+
"tailscale.get": {
|
|
12476
|
+
available: boolean;
|
|
12477
|
+
loggedIn: boolean;
|
|
12478
|
+
magicDnsName?: string;
|
|
12479
|
+
httpsUrl?: string;
|
|
12480
|
+
detail: string;
|
|
12481
|
+
lastServe?: {
|
|
12482
|
+
at: number;
|
|
12483
|
+
command: string;
|
|
12484
|
+
ok: boolean;
|
|
12485
|
+
url?: string;
|
|
12486
|
+
detail: string;
|
|
12487
|
+
};
|
|
12488
|
+
};
|
|
12489
|
+
"tailscale.serve.run": {
|
|
12490
|
+
receipt: {
|
|
12491
|
+
at: number;
|
|
12492
|
+
command: string;
|
|
12493
|
+
ok: boolean;
|
|
12494
|
+
url?: string;
|
|
12495
|
+
detail: string;
|
|
12496
|
+
};
|
|
12497
|
+
publicBaseUrlUpdated: boolean;
|
|
12498
|
+
};
|
|
12499
|
+
"fleet.conflicts.list": {
|
|
12500
|
+
conflicts: readonly ({
|
|
12501
|
+
workstreamId: string;
|
|
12502
|
+
itemId: string;
|
|
12503
|
+
title: string;
|
|
12504
|
+
worktreePath: string;
|
|
12505
|
+
branch?: string;
|
|
12506
|
+
files: readonly string[];
|
|
12507
|
+
resolutionSessionId?: string;
|
|
12508
|
+
})[];
|
|
12509
|
+
};
|
|
12510
|
+
"fleet.conflicts.resolve": {
|
|
12511
|
+
itemId: string;
|
|
12512
|
+
sessionId: string;
|
|
12513
|
+
worktreePath: string;
|
|
12514
|
+
files: readonly string[];
|
|
12515
|
+
};
|
|
12516
|
+
"worktrees.discard": {
|
|
12517
|
+
path: string;
|
|
12518
|
+
ok: boolean;
|
|
12519
|
+
branch?: string;
|
|
12520
|
+
preservedCommit?: string;
|
|
12521
|
+
discardedAt: number;
|
|
12522
|
+
detail: string;
|
|
12523
|
+
};
|
|
12524
|
+
"acp.agents.list": {
|
|
12525
|
+
agents: readonly ({
|
|
12526
|
+
id: string;
|
|
12527
|
+
title: string;
|
|
12528
|
+
binaryPath: string;
|
|
12529
|
+
args: readonly string[];
|
|
12530
|
+
})[];
|
|
12531
|
+
};
|
|
12532
|
+
"acp.sessions.create": {
|
|
12533
|
+
hosted: {
|
|
12534
|
+
id: string;
|
|
12535
|
+
agentId: string;
|
|
12536
|
+
title: string;
|
|
12537
|
+
binaryPath: string;
|
|
12538
|
+
cwd: string;
|
|
12539
|
+
state: string;
|
|
12540
|
+
startedAt: number;
|
|
12541
|
+
completedAt?: number;
|
|
12542
|
+
sessionId?: string;
|
|
12543
|
+
progress?: string;
|
|
12544
|
+
pendingPermission?: string;
|
|
12545
|
+
error?: {
|
|
12546
|
+
binary: string;
|
|
12547
|
+
stage: string;
|
|
12548
|
+
message: string;
|
|
12549
|
+
};
|
|
12550
|
+
promptCount: number;
|
|
12551
|
+
};
|
|
12552
|
+
started: boolean;
|
|
12553
|
+
};
|
|
11867
12554
|
}
|
|
11868
12555
|
export interface OperatorEventPayloadMap {
|
|
11869
12556
|
"control.heartbeat": {
|