@pellux/goodvibes-contracts 1.3.3 → 1.4.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 +181 -6
- package/dist/generated/foundation-client-types.d.ts +35 -0
- 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/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +181 -6
- 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 +2 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const FOUNDATION_METADATA: {
|
|
2
2
|
readonly productId: "goodvibes";
|
|
3
|
-
readonly productVersion: "1.
|
|
4
|
-
readonly operatorMethodCount:
|
|
3
|
+
readonly productVersion: "1.4.0";
|
|
4
|
+
readonly operatorMethodCount: 329;
|
|
5
5
|
readonly operatorEventCount: 31;
|
|
6
6
|
readonly peerEndpointCount: 6;
|
|
7
7
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operator-contract.d.ts","sourceRoot":"","sources":["../../src/generated/operator-contract.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,eAAO,MAAM,iBAAiB,EAAE,
|
|
1
|
+
{"version":3,"file":"operator-contract.d.ts","sourceRoot":"","sources":["../../src/generated/operator-contract.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,aAAa,CAAC;AAE5D,eAAO,MAAM,iBAAiB,EAAE,wBAwq/EtB,CAAC"}
|
|
@@ -3,7 +3,7 @@ export const OPERATOR_CONTRACT = {
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.4.0"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -22067,6 +22067,16 @@ export const OPERATOR_CONTRACT = {
|
|
|
22067
22067
|
},
|
|
22068
22068
|
"createdAt": {
|
|
22069
22069
|
"type": "number"
|
|
22070
|
+
},
|
|
22071
|
+
"deliveryState": {
|
|
22072
|
+
"type": "string",
|
|
22073
|
+
"enum": [
|
|
22074
|
+
"cancelled",
|
|
22075
|
+
"queued"
|
|
22076
|
+
]
|
|
22077
|
+
},
|
|
22078
|
+
"inReplyTo": {
|
|
22079
|
+
"type": "string"
|
|
22070
22080
|
}
|
|
22071
22081
|
},
|
|
22072
22082
|
"required": [
|
|
@@ -22145,6 +22155,99 @@ export const OPERATOR_CONTRACT = {
|
|
|
22145
22155
|
},
|
|
22146
22156
|
"invokable": true
|
|
22147
22157
|
},
|
|
22158
|
+
{
|
|
22159
|
+
"id": "companion.chat.messages.steer",
|
|
22160
|
+
"title": "Steer Companion Chat (Interrupt And Send)",
|
|
22161
|
+
"description": "Send a message that runs IMMEDIATELY, interrupting the in-flight turn if one is running. The message jumps to the front of the pending-turn queue; the active turn is cancelled through the same finalization path as companion.chat.turns.cancel (any non-empty partial reply is persisted with `deliveryState: \"cancelled\"` and the terminal `turn.cancelled` event reaches every subscriber), then the steered message's turn starts. Messages queued behind an active turn keep their places behind the steer. With no turn running this behaves as an ordinary send. Accepts the same payload as companion.chat.messages.create (`body`/`content`, `attachments`, `metadata`). Returns the new message id, `steered: true`, and `cancelledTurnId` when a turn was interrupted. Ordinary sends posted while a turn is running are QUEUED (transcript-visible immediately with `deliveryState: \"queued\"`, answered in order) — steer is the explicit jump-the-line verb.",
|
|
22162
|
+
"category": "companion",
|
|
22163
|
+
"source": "builtin",
|
|
22164
|
+
"access": "authenticated",
|
|
22165
|
+
"transport": [
|
|
22166
|
+
"http",
|
|
22167
|
+
"ws"
|
|
22168
|
+
],
|
|
22169
|
+
"scopes": [
|
|
22170
|
+
"write:sessions"
|
|
22171
|
+
],
|
|
22172
|
+
"http": {
|
|
22173
|
+
"method": "POST",
|
|
22174
|
+
"path": "/api/companion/chat/sessions/{sessionId}/messages/steer"
|
|
22175
|
+
},
|
|
22176
|
+
"inputSchema": {
|
|
22177
|
+
"type": "object",
|
|
22178
|
+
"properties": {
|
|
22179
|
+
"sessionId": {
|
|
22180
|
+
"type": "string"
|
|
22181
|
+
},
|
|
22182
|
+
"body": {
|
|
22183
|
+
"type": "string"
|
|
22184
|
+
},
|
|
22185
|
+
"content": {
|
|
22186
|
+
"type": "string"
|
|
22187
|
+
},
|
|
22188
|
+
"attachments": {
|
|
22189
|
+
"type": "array",
|
|
22190
|
+
"items": {
|
|
22191
|
+
"type": "object",
|
|
22192
|
+
"properties": {
|
|
22193
|
+
"artifactId": {
|
|
22194
|
+
"type": "string"
|
|
22195
|
+
},
|
|
22196
|
+
"label": {
|
|
22197
|
+
"type": "string"
|
|
22198
|
+
},
|
|
22199
|
+
"metadata": {
|
|
22200
|
+
"type": "object",
|
|
22201
|
+
"properties": {},
|
|
22202
|
+
"additionalProperties": false
|
|
22203
|
+
}
|
|
22204
|
+
},
|
|
22205
|
+
"required": [
|
|
22206
|
+
"artifactId"
|
|
22207
|
+
],
|
|
22208
|
+
"additionalProperties": false
|
|
22209
|
+
}
|
|
22210
|
+
},
|
|
22211
|
+
"metadata": {
|
|
22212
|
+
"type": "object",
|
|
22213
|
+
"properties": {},
|
|
22214
|
+
"additionalProperties": false
|
|
22215
|
+
}
|
|
22216
|
+
},
|
|
22217
|
+
"required": [
|
|
22218
|
+
"sessionId"
|
|
22219
|
+
],
|
|
22220
|
+
"additionalProperties": true
|
|
22221
|
+
},
|
|
22222
|
+
"outputSchema": {
|
|
22223
|
+
"type": "object",
|
|
22224
|
+
"properties": {
|
|
22225
|
+
"sessionId": {
|
|
22226
|
+
"type": "string"
|
|
22227
|
+
},
|
|
22228
|
+
"messageId": {
|
|
22229
|
+
"type": "string"
|
|
22230
|
+
},
|
|
22231
|
+
"steered": {
|
|
22232
|
+
"type": "boolean"
|
|
22233
|
+
},
|
|
22234
|
+
"cancelledTurnId": {
|
|
22235
|
+
"type": "string"
|
|
22236
|
+
},
|
|
22237
|
+
"turnStarted": {
|
|
22238
|
+
"type": "boolean"
|
|
22239
|
+
}
|
|
22240
|
+
},
|
|
22241
|
+
"required": [
|
|
22242
|
+
"sessionId",
|
|
22243
|
+
"messageId",
|
|
22244
|
+
"steered",
|
|
22245
|
+
"turnStarted"
|
|
22246
|
+
],
|
|
22247
|
+
"additionalProperties": false
|
|
22248
|
+
},
|
|
22249
|
+
"invokable": true
|
|
22250
|
+
},
|
|
22148
22251
|
{
|
|
22149
22252
|
"id": "companion.chat.sessions.close",
|
|
22150
22253
|
"title": "Close Companion Chat Session",
|
|
@@ -22611,6 +22714,16 @@ export const OPERATOR_CONTRACT = {
|
|
|
22611
22714
|
},
|
|
22612
22715
|
"createdAt": {
|
|
22613
22716
|
"type": "number"
|
|
22717
|
+
},
|
|
22718
|
+
"deliveryState": {
|
|
22719
|
+
"type": "string",
|
|
22720
|
+
"enum": [
|
|
22721
|
+
"cancelled",
|
|
22722
|
+
"queued"
|
|
22723
|
+
]
|
|
22724
|
+
},
|
|
22725
|
+
"inReplyTo": {
|
|
22726
|
+
"type": "string"
|
|
22614
22727
|
}
|
|
22615
22728
|
},
|
|
22616
22729
|
"required": [
|
|
@@ -22919,6 +23032,68 @@ export const OPERATOR_CONTRACT = {
|
|
|
22919
23032
|
},
|
|
22920
23033
|
"invokable": true
|
|
22921
23034
|
},
|
|
23035
|
+
{
|
|
23036
|
+
"id": "companion.chat.turns.cancel",
|
|
23037
|
+
"title": "Cancel Companion Chat Turn",
|
|
23038
|
+
"description": "Stop the in-flight turn for a companion chat session — a true server-side stop: the provider stream is aborted, any non-empty partial reply is persisted to the transcript with an explicit `deliveryState: \"cancelled\"` marker (an honest partial, never disguised as a complete reply) AND committed to the model-facing conversation history with an explicit interruption note — later turns can reason about what the user saw and stopped, which is usually what a follow-up or steer refers to, and the terminal `turn.cancelled` event is published to every subscriber of the session stream so a stop from one client converges on all others. Any announced tool call without a result is closed with a synthetic error `turn.tool_result` before the terminal event. Optional `turnId` guards against cancelling a newer turn a stale stop raced against (409 TURN_MISMATCH). No turn in flight is the benign 404 NO_ACTIVE_TURN (the turn finished before the stop landed). Repeat cancels are idempotent successes. The session stays open; the next message starts a fresh turn normally.",
|
|
23039
|
+
"category": "companion",
|
|
23040
|
+
"source": "builtin",
|
|
23041
|
+
"access": "authenticated",
|
|
23042
|
+
"transport": [
|
|
23043
|
+
"http",
|
|
23044
|
+
"ws"
|
|
23045
|
+
],
|
|
23046
|
+
"scopes": [
|
|
23047
|
+
"write:sessions"
|
|
23048
|
+
],
|
|
23049
|
+
"http": {
|
|
23050
|
+
"method": "POST",
|
|
23051
|
+
"path": "/api/companion/chat/sessions/{sessionId}/turns/cancel"
|
|
23052
|
+
},
|
|
23053
|
+
"inputSchema": {
|
|
23054
|
+
"type": "object",
|
|
23055
|
+
"properties": {
|
|
23056
|
+
"sessionId": {
|
|
23057
|
+
"type": "string"
|
|
23058
|
+
},
|
|
23059
|
+
"turnId": {
|
|
23060
|
+
"type": "string"
|
|
23061
|
+
}
|
|
23062
|
+
},
|
|
23063
|
+
"required": [
|
|
23064
|
+
"sessionId"
|
|
23065
|
+
],
|
|
23066
|
+
"additionalProperties": true
|
|
23067
|
+
},
|
|
23068
|
+
"outputSchema": {
|
|
23069
|
+
"type": "object",
|
|
23070
|
+
"properties": {
|
|
23071
|
+
"sessionId": {
|
|
23072
|
+
"type": "string"
|
|
23073
|
+
},
|
|
23074
|
+
"turnId": {
|
|
23075
|
+
"type": "string"
|
|
23076
|
+
},
|
|
23077
|
+
"cancelled": {
|
|
23078
|
+
"type": "boolean"
|
|
23079
|
+
},
|
|
23080
|
+
"alreadyCancelled": {
|
|
23081
|
+
"type": "boolean"
|
|
23082
|
+
},
|
|
23083
|
+
"partialPersisted": {
|
|
23084
|
+
"type": "boolean"
|
|
23085
|
+
}
|
|
23086
|
+
},
|
|
23087
|
+
"required": [
|
|
23088
|
+
"sessionId",
|
|
23089
|
+
"turnId",
|
|
23090
|
+
"cancelled",
|
|
23091
|
+
"partialPersisted"
|
|
23092
|
+
],
|
|
23093
|
+
"additionalProperties": false
|
|
23094
|
+
},
|
|
23095
|
+
"invokable": true
|
|
23096
|
+
},
|
|
22922
23097
|
{
|
|
22923
23098
|
"id": "config.get",
|
|
22924
23099
|
"title": "Get Config",
|
|
@@ -81377,10 +81552,10 @@ export const OPERATOR_CONTRACT = {
|
|
|
81377
81552
|
}
|
|
81378
81553
|
],
|
|
81379
81554
|
"schemaCoverage": {
|
|
81380
|
-
"methods":
|
|
81381
|
-
"typedInputs":
|
|
81555
|
+
"methods": 329,
|
|
81556
|
+
"typedInputs": 329,
|
|
81382
81557
|
"genericInputs": 0,
|
|
81383
|
-
"typedOutputs":
|
|
81558
|
+
"typedOutputs": 329,
|
|
81384
81559
|
"genericOutputs": 0
|
|
81385
81560
|
},
|
|
81386
81561
|
"eventCoverage": {
|
|
@@ -81389,8 +81564,8 @@ export const OPERATOR_CONTRACT = {
|
|
|
81389
81564
|
"withWireEvents": 31
|
|
81390
81565
|
},
|
|
81391
81566
|
"validationCoverage": {
|
|
81392
|
-
"methods":
|
|
81393
|
-
"validated":
|
|
81567
|
+
"methods": 329,
|
|
81568
|
+
"validated": 327,
|
|
81394
81569
|
"skippedGeneric": 0,
|
|
81395
81570
|
"skippedUntyped": 2
|
|
81396
81571
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const OPERATOR_METHOD_IDS: readonly ["accounts.snapshot", "approvals.approve", "approvals.cancel", "approvals.claim", "approvals.deny", "approvals.list", "artifacts.content.get", "artifacts.create", "artifacts.get", "artifacts.list", "automation.heartbeat.list", "automation.heartbeat.run", "automation.integration.snapshot", "automation.jobs.create", "automation.jobs.delete", "automation.jobs.disable", "automation.jobs.enable", "automation.jobs.list", "automation.jobs.run", "automation.jobs.update", "automation.runs.cancel", "automation.runs.get", "automation.runs.list", "automation.runs.retry", "automation.schedules.create", "automation.schedules.delete", "automation.schedules.disable", "automation.schedules.enable", "automation.schedules.list", "automation.schedules.run", "calendar.events.create", "calendar.events.get", "calendar.events.list", "calendar.ics.export", "calendar.ics.import", "channels.accounts.action.default", "channels.accounts.action.named", "channels.accounts.get", "channels.accounts.list", "channels.accounts.surface.list", "channels.actions.invoke", "channels.actions.list", "channels.actions.surface.list", "channels.agent_tools.list", "channels.agent_tools.surface.list", "channels.allowlist.edit", "channels.allowlist.resolve", "channels.authorize", "channels.capabilities.list", "channels.capabilities.surface.list", "channels.directory.query", "channels.doctor.get", "channels.drafts.delete", "channels.drafts.get", "channels.drafts.list", "channels.drafts.save", "channels.inbox.list", "channels.lifecycle.get", "channels.policies.audit", "channels.policies.list", "channels.policies.update", "channels.repairs.list", "channels.routing.assign", "channels.routing.delete", "channels.routing.list", "channels.setup.get", "channels.status", "channels.targets.resolve", "channels.tools.invoke", "channels.tools.list", "channels.tools.surface.list", "checkpoints.create", "checkpoints.diff", "checkpoints.list", "checkpoints.restore", "companion.chat.events.stream", "companion.chat.messages.create", "companion.chat.messages.edit", "companion.chat.messages.list", "companion.chat.messages.retry", "companion.chat.sessions.close", "companion.chat.sessions.create", "companion.chat.sessions.delete", "companion.chat.sessions.get", "companion.chat.sessions.list", "companion.chat.sessions.update", "config.get", "config.set", "continuity.snapshot", "control.auth.current", "control.auth.login", "control.clients.list", "control.contract", "control.events.catalog", "control.events.stream", "control.messages.list", "control.methods.get", "control.methods.list", "control.snapshot", "control.status", "control.web", "credentials.get", "deliveries.get", "deliveries.list", "email.draft.create", "email.inbox.list", "email.inbox.read", "email.send", "fleet.list", "fleet.snapshot", "health.snapshot", "homeassistant.homeGraph.askHomeGraph", "homeassistant.homeGraph.browse", "homeassistant.homeGraph.export", "homeassistant.homeGraph.generateHomeGraphPacket", "homeassistant.homeGraph.generateRoomPage", "homeassistant.homeGraph.import", "homeassistant.homeGraph.ingestHomeGraphArtifact", "homeassistant.homeGraph.ingestHomeGraphNote", "homeassistant.homeGraph.ingestHomeGraphUrl", "homeassistant.homeGraph.linkHomeGraphKnowledge", "homeassistant.homeGraph.listHomeGraphIssues", "homeassistant.homeGraph.map", "homeassistant.homeGraph.pages.list", "homeassistant.homeGraph.refinement.run", "homeassistant.homeGraph.refinement.task.cancel", "homeassistant.homeGraph.refinement.task.get", "homeassistant.homeGraph.refinement.tasks.list", "homeassistant.homeGraph.refreshDevicePassport", "homeassistant.homeGraph.reindex", "homeassistant.homeGraph.reset", "homeassistant.homeGraph.reviewHomeGraphFact", "homeassistant.homeGraph.sources.list", "homeassistant.homeGraph.status", "homeassistant.homeGraph.syncHomeGraph", "homeassistant.homeGraph.unlinkHomeGraphKnowledge", "intelligence.snapshot", "knowledge.ask", "knowledge.candidate.decide", "knowledge.candidate.get", "knowledge.candidates.list", "knowledge.connector.doctor", "knowledge.connector.get", "knowledge.connectors.list", "knowledge.extraction.get", "knowledge.extractions.list", "knowledge.graphql.execute", "knowledge.graphql.schema", "knowledge.ingest.artifact", "knowledge.ingest.bookmarks", "knowledge.ingest.browserHistory", "knowledge.ingest.connector", "knowledge.ingest.url", "knowledge.ingest.urls", "knowledge.issue.review", "knowledge.issues.list", "knowledge.item.get", "knowledge.job-runs.list", "knowledge.job.get", "knowledge.job.run", "knowledge.jobs.list", "knowledge.lint", "knowledge.map", "knowledge.nodes.list", "knowledge.packet", "knowledge.projection.materialize", "knowledge.projection.render", "knowledge.projections.list", "knowledge.refinement.run", "knowledge.refinement.task.cancel", "knowledge.refinement.task.get", "knowledge.refinement.tasks.list", "knowledge.reindex", "knowledge.report.get", "knowledge.reports.list", "knowledge.schedule.delete", "knowledge.schedule.enable", "knowledge.schedule.get", "knowledge.schedule.save", "knowledge.schedules.list", "knowledge.search", "knowledge.source.extraction.get", "knowledge.sources.list", "knowledge.status", "knowledge.usage.list", "local_auth.bootstrap.delete", "local_auth.sessions.delete", "local_auth.status", "local_auth.users.create", "local_auth.users.delete", "local_auth.users.password.rotate", "mcp.config.get", "mcp.config.reload", "mcp.servers.list", "mcp.servers.remove", "mcp.servers.upsert", "mcp.tools.list", "media.analyze", "media.generate", "media.providers.list", "media.transform", "memory.doctor", "memory.embeddings.default.set", "memory.records.add", "memory.records.delete", "memory.records.export", "memory.records.get", "memory.records.import", "memory.records.links.add", "memory.records.links.list", "memory.records.list", "memory.records.search", "memory.records.search-semantic", "memory.records.update", "memory.records.update-review", "memory.review-queue", "memory.vector.rebuild", "memory.vector.stats", "multimodal.analyze", "multimodal.packet", "multimodal.providers.list", "multimodal.status", "multimodal.writeback", "panels.list", "panels.open", "projectPlanning.decisions.list", "projectPlanning.decisions.record", "projectPlanning.evaluate", "projectPlanning.language.get", "projectPlanning.language.upsert", "projectPlanning.state.get", "projectPlanning.state.upsert", "projectPlanning.status", "projectPlanning.workPlan.clearCompleted", "projectPlanning.workPlan.snapshot", "projectPlanning.workPlan.task.create", "projectPlanning.workPlan.task.delete", "projectPlanning.workPlan.task.get", "projectPlanning.workPlan.task.status", "projectPlanning.workPlan.task.update", "projectPlanning.workPlan.tasks.list", "projectPlanning.workPlan.tasks.reorder", "providers.get", "providers.list", "providers.usage.get", "push.subscriptions.create", "push.subscriptions.delete", "push.subscriptions.list", "push.subscriptions.verify", "push.vapid.get", "remote.node_host.contract", "remote.pair.requests.approve", "remote.pair.requests.list", "remote.pair.requests.reject", "remote.peers.disconnect", "remote.peers.invoke", "remote.peers.list", "remote.peers.token.revoke", "remote.peers.token.rotate", "remote.snapshot", "remote.work.cancel", "remote.work.list", "review.snapshot", "routes.bindings.create", "routes.bindings.delete", "routes.bindings.list", "routes.bindings.update", "routes.snapshot", "scheduler.capacity", "security.settings", "services.install", "services.restart", "services.start", "services.status", "services.stop", "services.uninstall", "sessions.close", "sessions.create", "sessions.delete", "sessions.detach", "sessions.followUp", "sessions.get", "sessions.inputs.cancel", "sessions.inputs.deliver", "sessions.inputs.list", "sessions.integration.snapshot", "sessions.list", "sessions.messages.create", "sessions.messages.list", "sessions.register", "sessions.reopen", "sessions.search", "sessions.steer", "settings.snapshot", "surfaces.list", "tasks.cancel", "tasks.create", "tasks.get", "tasks.list", "tasks.retry", "tasks.status", "telemetry.errors.list", "telemetry.events.list", "telemetry.metrics.get", "telemetry.otlp.logs", "telemetry.otlp.metrics", "telemetry.otlp.traces", "telemetry.snapshot", "telemetry.stream", "telemetry.traces.list", "voice.providers.list", "voice.realtime.session", "voice.status", "voice.stt", "voice.tts", "voice.tts.stream", "voice.voices.list", "watchers.create", "watchers.delete", "watchers.list", "watchers.run", "watchers.start", "watchers.stop", "watchers.update", "web_search.providers.list", "web_search.query", "worktrees.snapshot"];
|
|
1
|
+
export declare const OPERATOR_METHOD_IDS: readonly ["accounts.snapshot", "approvals.approve", "approvals.cancel", "approvals.claim", "approvals.deny", "approvals.list", "artifacts.content.get", "artifacts.create", "artifacts.get", "artifacts.list", "automation.heartbeat.list", "automation.heartbeat.run", "automation.integration.snapshot", "automation.jobs.create", "automation.jobs.delete", "automation.jobs.disable", "automation.jobs.enable", "automation.jobs.list", "automation.jobs.run", "automation.jobs.update", "automation.runs.cancel", "automation.runs.get", "automation.runs.list", "automation.runs.retry", "automation.schedules.create", "automation.schedules.delete", "automation.schedules.disable", "automation.schedules.enable", "automation.schedules.list", "automation.schedules.run", "calendar.events.create", "calendar.events.get", "calendar.events.list", "calendar.ics.export", "calendar.ics.import", "channels.accounts.action.default", "channels.accounts.action.named", "channels.accounts.get", "channels.accounts.list", "channels.accounts.surface.list", "channels.actions.invoke", "channels.actions.list", "channels.actions.surface.list", "channels.agent_tools.list", "channels.agent_tools.surface.list", "channels.allowlist.edit", "channels.allowlist.resolve", "channels.authorize", "channels.capabilities.list", "channels.capabilities.surface.list", "channels.directory.query", "channels.doctor.get", "channels.drafts.delete", "channels.drafts.get", "channels.drafts.list", "channels.drafts.save", "channels.inbox.list", "channels.lifecycle.get", "channels.policies.audit", "channels.policies.list", "channels.policies.update", "channels.repairs.list", "channels.routing.assign", "channels.routing.delete", "channels.routing.list", "channels.setup.get", "channels.status", "channels.targets.resolve", "channels.tools.invoke", "channels.tools.list", "channels.tools.surface.list", "checkpoints.create", "checkpoints.diff", "checkpoints.list", "checkpoints.restore", "companion.chat.events.stream", "companion.chat.messages.create", "companion.chat.messages.edit", "companion.chat.messages.list", "companion.chat.messages.retry", "companion.chat.messages.steer", "companion.chat.sessions.close", "companion.chat.sessions.create", "companion.chat.sessions.delete", "companion.chat.sessions.get", "companion.chat.sessions.list", "companion.chat.sessions.update", "companion.chat.turns.cancel", "config.get", "config.set", "continuity.snapshot", "control.auth.current", "control.auth.login", "control.clients.list", "control.contract", "control.events.catalog", "control.events.stream", "control.messages.list", "control.methods.get", "control.methods.list", "control.snapshot", "control.status", "control.web", "credentials.get", "deliveries.get", "deliveries.list", "email.draft.create", "email.inbox.list", "email.inbox.read", "email.send", "fleet.list", "fleet.snapshot", "health.snapshot", "homeassistant.homeGraph.askHomeGraph", "homeassistant.homeGraph.browse", "homeassistant.homeGraph.export", "homeassistant.homeGraph.generateHomeGraphPacket", "homeassistant.homeGraph.generateRoomPage", "homeassistant.homeGraph.import", "homeassistant.homeGraph.ingestHomeGraphArtifact", "homeassistant.homeGraph.ingestHomeGraphNote", "homeassistant.homeGraph.ingestHomeGraphUrl", "homeassistant.homeGraph.linkHomeGraphKnowledge", "homeassistant.homeGraph.listHomeGraphIssues", "homeassistant.homeGraph.map", "homeassistant.homeGraph.pages.list", "homeassistant.homeGraph.refinement.run", "homeassistant.homeGraph.refinement.task.cancel", "homeassistant.homeGraph.refinement.task.get", "homeassistant.homeGraph.refinement.tasks.list", "homeassistant.homeGraph.refreshDevicePassport", "homeassistant.homeGraph.reindex", "homeassistant.homeGraph.reset", "homeassistant.homeGraph.reviewHomeGraphFact", "homeassistant.homeGraph.sources.list", "homeassistant.homeGraph.status", "homeassistant.homeGraph.syncHomeGraph", "homeassistant.homeGraph.unlinkHomeGraphKnowledge", "intelligence.snapshot", "knowledge.ask", "knowledge.candidate.decide", "knowledge.candidate.get", "knowledge.candidates.list", "knowledge.connector.doctor", "knowledge.connector.get", "knowledge.connectors.list", "knowledge.extraction.get", "knowledge.extractions.list", "knowledge.graphql.execute", "knowledge.graphql.schema", "knowledge.ingest.artifact", "knowledge.ingest.bookmarks", "knowledge.ingest.browserHistory", "knowledge.ingest.connector", "knowledge.ingest.url", "knowledge.ingest.urls", "knowledge.issue.review", "knowledge.issues.list", "knowledge.item.get", "knowledge.job-runs.list", "knowledge.job.get", "knowledge.job.run", "knowledge.jobs.list", "knowledge.lint", "knowledge.map", "knowledge.nodes.list", "knowledge.packet", "knowledge.projection.materialize", "knowledge.projection.render", "knowledge.projections.list", "knowledge.refinement.run", "knowledge.refinement.task.cancel", "knowledge.refinement.task.get", "knowledge.refinement.tasks.list", "knowledge.reindex", "knowledge.report.get", "knowledge.reports.list", "knowledge.schedule.delete", "knowledge.schedule.enable", "knowledge.schedule.get", "knowledge.schedule.save", "knowledge.schedules.list", "knowledge.search", "knowledge.source.extraction.get", "knowledge.sources.list", "knowledge.status", "knowledge.usage.list", "local_auth.bootstrap.delete", "local_auth.sessions.delete", "local_auth.status", "local_auth.users.create", "local_auth.users.delete", "local_auth.users.password.rotate", "mcp.config.get", "mcp.config.reload", "mcp.servers.list", "mcp.servers.remove", "mcp.servers.upsert", "mcp.tools.list", "media.analyze", "media.generate", "media.providers.list", "media.transform", "memory.doctor", "memory.embeddings.default.set", "memory.records.add", "memory.records.delete", "memory.records.export", "memory.records.get", "memory.records.import", "memory.records.links.add", "memory.records.links.list", "memory.records.list", "memory.records.search", "memory.records.search-semantic", "memory.records.update", "memory.records.update-review", "memory.review-queue", "memory.vector.rebuild", "memory.vector.stats", "multimodal.analyze", "multimodal.packet", "multimodal.providers.list", "multimodal.status", "multimodal.writeback", "panels.list", "panels.open", "projectPlanning.decisions.list", "projectPlanning.decisions.record", "projectPlanning.evaluate", "projectPlanning.language.get", "projectPlanning.language.upsert", "projectPlanning.state.get", "projectPlanning.state.upsert", "projectPlanning.status", "projectPlanning.workPlan.clearCompleted", "projectPlanning.workPlan.snapshot", "projectPlanning.workPlan.task.create", "projectPlanning.workPlan.task.delete", "projectPlanning.workPlan.task.get", "projectPlanning.workPlan.task.status", "projectPlanning.workPlan.task.update", "projectPlanning.workPlan.tasks.list", "projectPlanning.workPlan.tasks.reorder", "providers.get", "providers.list", "providers.usage.get", "push.subscriptions.create", "push.subscriptions.delete", "push.subscriptions.list", "push.subscriptions.verify", "push.vapid.get", "remote.node_host.contract", "remote.pair.requests.approve", "remote.pair.requests.list", "remote.pair.requests.reject", "remote.peers.disconnect", "remote.peers.invoke", "remote.peers.list", "remote.peers.token.revoke", "remote.peers.token.rotate", "remote.snapshot", "remote.work.cancel", "remote.work.list", "review.snapshot", "routes.bindings.create", "routes.bindings.delete", "routes.bindings.list", "routes.bindings.update", "routes.snapshot", "scheduler.capacity", "security.settings", "services.install", "services.restart", "services.start", "services.status", "services.stop", "services.uninstall", "sessions.close", "sessions.create", "sessions.delete", "sessions.detach", "sessions.followUp", "sessions.get", "sessions.inputs.cancel", "sessions.inputs.deliver", "sessions.inputs.list", "sessions.integration.snapshot", "sessions.list", "sessions.messages.create", "sessions.messages.list", "sessions.register", "sessions.reopen", "sessions.search", "sessions.steer", "settings.snapshot", "surfaces.list", "tasks.cancel", "tasks.create", "tasks.get", "tasks.list", "tasks.retry", "tasks.status", "telemetry.errors.list", "telemetry.events.list", "telemetry.metrics.get", "telemetry.otlp.logs", "telemetry.otlp.metrics", "telemetry.otlp.traces", "telemetry.snapshot", "telemetry.stream", "telemetry.traces.list", "voice.providers.list", "voice.realtime.session", "voice.status", "voice.stt", "voice.tts", "voice.tts.stream", "voice.voices.list", "watchers.create", "watchers.delete", "watchers.list", "watchers.run", "watchers.start", "watchers.stop", "watchers.update", "web_search.providers.list", "web_search.query", "worktrees.snapshot"];
|
|
2
2
|
export type OperatorMethodId = typeof OPERATOR_METHOD_IDS[number];
|
|
3
3
|
//# sourceMappingURL=operator-method-ids.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"operator-method-ids.d.ts","sourceRoot":"","sources":["../../src/generated/operator-method-ids.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,
|
|
1
|
+
{"version":3,"file":"operator-method-ids.d.ts","sourceRoot":"","sources":["../../src/generated/operator-method-ids.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,68QA0UtB,CAAC;AACX,MAAM,MAAM,gBAAgB,GAAG,OAAO,mBAAmB,CAAC,MAAM,CAAC,CAAC"}
|
|
@@ -79,12 +79,14 @@ export const OPERATOR_METHOD_IDS = [
|
|
|
79
79
|
"companion.chat.messages.edit",
|
|
80
80
|
"companion.chat.messages.list",
|
|
81
81
|
"companion.chat.messages.retry",
|
|
82
|
+
"companion.chat.messages.steer",
|
|
82
83
|
"companion.chat.sessions.close",
|
|
83
84
|
"companion.chat.sessions.create",
|
|
84
85
|
"companion.chat.sessions.delete",
|
|
85
86
|
"companion.chat.sessions.get",
|
|
86
87
|
"companion.chat.sessions.list",
|
|
87
88
|
"companion.chat.sessions.update",
|
|
89
|
+
"companion.chat.turns.cancel",
|
|
88
90
|
"config.get",
|
|
89
91
|
"config.set",
|
|
90
92
|
"continuity.snapshot",
|