@pellux/goodvibes-contracts 0.33.36 → 0.33.38
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 +84 -10
- 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 +84 -10
- 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 +1 -0
- package/package.json +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.33.
|
|
6
|
+
"version": "0.33.38"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -5770,7 +5770,7 @@
|
|
|
5770
5770
|
{
|
|
5771
5771
|
"id": "automation.jobs.list",
|
|
5772
5772
|
"title": "List Automation Jobs",
|
|
5773
|
-
"description": "Return automation jobs and recent runs.",
|
|
5773
|
+
"description": "Return automation jobs and recent runs. Without ?limit/?cursor returns { jobs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400.",
|
|
5774
5774
|
"category": "automation",
|
|
5775
5775
|
"source": "builtin",
|
|
5776
5776
|
"access": "authenticated",
|
|
@@ -5790,7 +5790,14 @@
|
|
|
5790
5790
|
],
|
|
5791
5791
|
"inputSchema": {
|
|
5792
5792
|
"type": "object",
|
|
5793
|
-
"properties": {
|
|
5793
|
+
"properties": {
|
|
5794
|
+
"limit": {
|
|
5795
|
+
"type": "number"
|
|
5796
|
+
},
|
|
5797
|
+
"cursor": {
|
|
5798
|
+
"type": "string"
|
|
5799
|
+
}
|
|
5800
|
+
},
|
|
5794
5801
|
"additionalProperties": false
|
|
5795
5802
|
},
|
|
5796
5803
|
"outputSchema": {
|
|
@@ -10115,7 +10122,7 @@
|
|
|
10115
10122
|
{
|
|
10116
10123
|
"id": "automation.runs.list",
|
|
10117
10124
|
"title": "List Automation Runs",
|
|
10118
|
-
"description": "Return automation run history.",
|
|
10125
|
+
"description": "Return automation run history. Without ?limit/?cursor returns { runs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400.",
|
|
10119
10126
|
"category": "automation",
|
|
10120
10127
|
"source": "builtin",
|
|
10121
10128
|
"access": "authenticated",
|
|
@@ -10132,7 +10139,14 @@
|
|
|
10132
10139
|
},
|
|
10133
10140
|
"inputSchema": {
|
|
10134
10141
|
"type": "object",
|
|
10135
|
-
"properties": {
|
|
10142
|
+
"properties": {
|
|
10143
|
+
"limit": {
|
|
10144
|
+
"type": "number"
|
|
10145
|
+
},
|
|
10146
|
+
"cursor": {
|
|
10147
|
+
"type": "string"
|
|
10148
|
+
}
|
|
10149
|
+
},
|
|
10136
10150
|
"additionalProperties": false
|
|
10137
10151
|
},
|
|
10138
10152
|
"outputSchema": {
|
|
@@ -39211,7 +39225,7 @@
|
|
|
39211
39225
|
{
|
|
39212
39226
|
"id": "knowledge.nodes.list",
|
|
39213
39227
|
"title": "List Knowledge Nodes",
|
|
39214
|
-
"description": "Return compiled knowledge nodes.",
|
|
39228
|
+
"description": "Return compiled knowledge nodes. Without ?limit/?cursor returns { nodes: [...] } (backward compatible). With ?limit=N (1–1000, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Fetch cap is 5 000 items per request (knowledge store does not support cursor/offset range queries natively). Invalid cursors return HTTP 400.",
|
|
39215
39229
|
"category": "knowledge",
|
|
39216
39230
|
"source": "builtin",
|
|
39217
39231
|
"access": "authenticated",
|
|
@@ -39232,6 +39246,9 @@
|
|
|
39232
39246
|
"limit": {
|
|
39233
39247
|
"type": "number"
|
|
39234
39248
|
},
|
|
39249
|
+
"cursor": {
|
|
39250
|
+
"type": "string"
|
|
39251
|
+
},
|
|
39235
39252
|
"knowledgeSpaceId": {
|
|
39236
39253
|
"type": "string"
|
|
39237
39254
|
},
|
|
@@ -43071,7 +43088,7 @@
|
|
|
43071
43088
|
{
|
|
43072
43089
|
"id": "knowledge.sources.list",
|
|
43073
43090
|
"title": "List Knowledge Sources",
|
|
43074
|
-
"description": "Return ingested structured knowledge sources.",
|
|
43091
|
+
"description": "Return ingested structured knowledge sources. Without ?limit/?cursor returns { sources: [...] } (backward compatible). With ?limit=N (1–1000, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Fetch cap is 5 000 items per request (knowledge store does not support cursor/offset range queries natively). Invalid cursors return HTTP 400.",
|
|
43075
43092
|
"category": "knowledge",
|
|
43076
43093
|
"source": "builtin",
|
|
43077
43094
|
"access": "authenticated",
|
|
@@ -43092,6 +43109,9 @@
|
|
|
43092
43109
|
"limit": {
|
|
43093
43110
|
"type": "number"
|
|
43094
43111
|
},
|
|
43112
|
+
"cursor": {
|
|
43113
|
+
"type": "string"
|
|
43114
|
+
},
|
|
43095
43115
|
"knowledgeSpaceId": {
|
|
43096
43116
|
"type": "string"
|
|
43097
43117
|
},
|
|
@@ -54793,6 +54813,60 @@
|
|
|
54793
54813
|
},
|
|
54794
54814
|
"invokable": true
|
|
54795
54815
|
},
|
|
54816
|
+
{
|
|
54817
|
+
"id": "memory.review-queue",
|
|
54818
|
+
"title": "Memory Review Queue",
|
|
54819
|
+
"description": "Return memory records prioritised for review. Accepts optional limit (?limit=N) and scope filter (?scope=session|project|team). A scope query parameter that is present but not one of the three valid values returns 400.",
|
|
54820
|
+
"category": "memory",
|
|
54821
|
+
"source": "builtin",
|
|
54822
|
+
"access": "authenticated",
|
|
54823
|
+
"transport": [
|
|
54824
|
+
"http",
|
|
54825
|
+
"ws"
|
|
54826
|
+
],
|
|
54827
|
+
"scopes": [
|
|
54828
|
+
"read:memory"
|
|
54829
|
+
],
|
|
54830
|
+
"http": {
|
|
54831
|
+
"method": "GET",
|
|
54832
|
+
"path": "/api/memory/review-queue"
|
|
54833
|
+
},
|
|
54834
|
+
"inputSchema": {
|
|
54835
|
+
"type": "object",
|
|
54836
|
+
"properties": {
|
|
54837
|
+
"limit": {
|
|
54838
|
+
"type": "number"
|
|
54839
|
+
},
|
|
54840
|
+
"scope": {
|
|
54841
|
+
"type": "string",
|
|
54842
|
+
"enum": [
|
|
54843
|
+
"session",
|
|
54844
|
+
"project",
|
|
54845
|
+
"team"
|
|
54846
|
+
]
|
|
54847
|
+
}
|
|
54848
|
+
},
|
|
54849
|
+
"additionalProperties": false
|
|
54850
|
+
},
|
|
54851
|
+
"outputSchema": {
|
|
54852
|
+
"type": "object",
|
|
54853
|
+
"properties": {
|
|
54854
|
+
"records": {
|
|
54855
|
+
"type": "array",
|
|
54856
|
+
"items": {
|
|
54857
|
+
"type": "object",
|
|
54858
|
+
"properties": {},
|
|
54859
|
+
"additionalProperties": true
|
|
54860
|
+
}
|
|
54861
|
+
}
|
|
54862
|
+
},
|
|
54863
|
+
"required": [
|
|
54864
|
+
"records"
|
|
54865
|
+
],
|
|
54866
|
+
"additionalProperties": false
|
|
54867
|
+
},
|
|
54868
|
+
"invokable": true
|
|
54869
|
+
},
|
|
54796
54870
|
{
|
|
54797
54871
|
"id": "memory.vector.rebuild",
|
|
54798
54872
|
"title": "Rebuild Memory Vector Index",
|
|
@@ -75035,10 +75109,10 @@
|
|
|
75035
75109
|
}
|
|
75036
75110
|
],
|
|
75037
75111
|
"schemaCoverage": {
|
|
75038
|
-
"methods":
|
|
75039
|
-
"typedInputs":
|
|
75112
|
+
"methods": 280,
|
|
75113
|
+
"typedInputs": 280,
|
|
75040
75114
|
"genericInputs": 0,
|
|
75041
|
-
"typedOutputs":
|
|
75115
|
+
"typedOutputs": 280,
|
|
75042
75116
|
"genericOutputs": 0
|
|
75043
75117
|
},
|
|
75044
75118
|
"eventCoverage": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const FOUNDATION_METADATA: {
|
|
2
2
|
readonly productId: "goodvibes";
|
|
3
|
-
readonly productVersion: "0.33.
|
|
4
|
-
readonly operatorMethodCount:
|
|
3
|
+
readonly productVersion: "0.33.38";
|
|
4
|
+
readonly operatorMethodCount: 280;
|
|
5
5
|
readonly operatorEventCount: 30;
|
|
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,wBAu3yEtB,CAAC"}
|
|
@@ -3,7 +3,7 @@ export const OPERATOR_CONTRACT = {
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.33.
|
|
6
|
+
"version": "0.33.38"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -5770,7 +5770,7 @@ export const OPERATOR_CONTRACT = {
|
|
|
5770
5770
|
{
|
|
5771
5771
|
"id": "automation.jobs.list",
|
|
5772
5772
|
"title": "List Automation Jobs",
|
|
5773
|
-
"description": "Return automation jobs and recent runs.",
|
|
5773
|
+
"description": "Return automation jobs and recent runs. Without ?limit/?cursor returns { jobs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400.",
|
|
5774
5774
|
"category": "automation",
|
|
5775
5775
|
"source": "builtin",
|
|
5776
5776
|
"access": "authenticated",
|
|
@@ -5790,7 +5790,14 @@ export const OPERATOR_CONTRACT = {
|
|
|
5790
5790
|
],
|
|
5791
5791
|
"inputSchema": {
|
|
5792
5792
|
"type": "object",
|
|
5793
|
-
"properties": {
|
|
5793
|
+
"properties": {
|
|
5794
|
+
"limit": {
|
|
5795
|
+
"type": "number"
|
|
5796
|
+
},
|
|
5797
|
+
"cursor": {
|
|
5798
|
+
"type": "string"
|
|
5799
|
+
}
|
|
5800
|
+
},
|
|
5794
5801
|
"additionalProperties": false
|
|
5795
5802
|
},
|
|
5796
5803
|
"outputSchema": {
|
|
@@ -10115,7 +10122,7 @@ export const OPERATOR_CONTRACT = {
|
|
|
10115
10122
|
{
|
|
10116
10123
|
"id": "automation.runs.list",
|
|
10117
10124
|
"title": "List Automation Runs",
|
|
10118
|
-
"description": "Return automation run history.",
|
|
10125
|
+
"description": "Return automation run history. Without ?limit/?cursor returns { runs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400.",
|
|
10119
10126
|
"category": "automation",
|
|
10120
10127
|
"source": "builtin",
|
|
10121
10128
|
"access": "authenticated",
|
|
@@ -10132,7 +10139,14 @@ export const OPERATOR_CONTRACT = {
|
|
|
10132
10139
|
},
|
|
10133
10140
|
"inputSchema": {
|
|
10134
10141
|
"type": "object",
|
|
10135
|
-
"properties": {
|
|
10142
|
+
"properties": {
|
|
10143
|
+
"limit": {
|
|
10144
|
+
"type": "number"
|
|
10145
|
+
},
|
|
10146
|
+
"cursor": {
|
|
10147
|
+
"type": "string"
|
|
10148
|
+
}
|
|
10149
|
+
},
|
|
10136
10150
|
"additionalProperties": false
|
|
10137
10151
|
},
|
|
10138
10152
|
"outputSchema": {
|
|
@@ -39211,7 +39225,7 @@ export const OPERATOR_CONTRACT = {
|
|
|
39211
39225
|
{
|
|
39212
39226
|
"id": "knowledge.nodes.list",
|
|
39213
39227
|
"title": "List Knowledge Nodes",
|
|
39214
|
-
"description": "Return compiled knowledge nodes.",
|
|
39228
|
+
"description": "Return compiled knowledge nodes. Without ?limit/?cursor returns { nodes: [...] } (backward compatible). With ?limit=N (1–1000, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Fetch cap is 5 000 items per request (knowledge store does not support cursor/offset range queries natively). Invalid cursors return HTTP 400.",
|
|
39215
39229
|
"category": "knowledge",
|
|
39216
39230
|
"source": "builtin",
|
|
39217
39231
|
"access": "authenticated",
|
|
@@ -39232,6 +39246,9 @@ export const OPERATOR_CONTRACT = {
|
|
|
39232
39246
|
"limit": {
|
|
39233
39247
|
"type": "number"
|
|
39234
39248
|
},
|
|
39249
|
+
"cursor": {
|
|
39250
|
+
"type": "string"
|
|
39251
|
+
},
|
|
39235
39252
|
"knowledgeSpaceId": {
|
|
39236
39253
|
"type": "string"
|
|
39237
39254
|
},
|
|
@@ -43071,7 +43088,7 @@ export const OPERATOR_CONTRACT = {
|
|
|
43071
43088
|
{
|
|
43072
43089
|
"id": "knowledge.sources.list",
|
|
43073
43090
|
"title": "List Knowledge Sources",
|
|
43074
|
-
"description": "Return ingested structured knowledge sources.",
|
|
43091
|
+
"description": "Return ingested structured knowledge sources. Without ?limit/?cursor returns { sources: [...] } (backward compatible). With ?limit=N (1–1000, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Fetch cap is 5 000 items per request (knowledge store does not support cursor/offset range queries natively). Invalid cursors return HTTP 400.",
|
|
43075
43092
|
"category": "knowledge",
|
|
43076
43093
|
"source": "builtin",
|
|
43077
43094
|
"access": "authenticated",
|
|
@@ -43092,6 +43109,9 @@ export const OPERATOR_CONTRACT = {
|
|
|
43092
43109
|
"limit": {
|
|
43093
43110
|
"type": "number"
|
|
43094
43111
|
},
|
|
43112
|
+
"cursor": {
|
|
43113
|
+
"type": "string"
|
|
43114
|
+
},
|
|
43095
43115
|
"knowledgeSpaceId": {
|
|
43096
43116
|
"type": "string"
|
|
43097
43117
|
},
|
|
@@ -54793,6 +54813,60 @@ export const OPERATOR_CONTRACT = {
|
|
|
54793
54813
|
},
|
|
54794
54814
|
"invokable": true
|
|
54795
54815
|
},
|
|
54816
|
+
{
|
|
54817
|
+
"id": "memory.review-queue",
|
|
54818
|
+
"title": "Memory Review Queue",
|
|
54819
|
+
"description": "Return memory records prioritised for review. Accepts optional limit (?limit=N) and scope filter (?scope=session|project|team). A scope query parameter that is present but not one of the three valid values returns 400.",
|
|
54820
|
+
"category": "memory",
|
|
54821
|
+
"source": "builtin",
|
|
54822
|
+
"access": "authenticated",
|
|
54823
|
+
"transport": [
|
|
54824
|
+
"http",
|
|
54825
|
+
"ws"
|
|
54826
|
+
],
|
|
54827
|
+
"scopes": [
|
|
54828
|
+
"read:memory"
|
|
54829
|
+
],
|
|
54830
|
+
"http": {
|
|
54831
|
+
"method": "GET",
|
|
54832
|
+
"path": "/api/memory/review-queue"
|
|
54833
|
+
},
|
|
54834
|
+
"inputSchema": {
|
|
54835
|
+
"type": "object",
|
|
54836
|
+
"properties": {
|
|
54837
|
+
"limit": {
|
|
54838
|
+
"type": "number"
|
|
54839
|
+
},
|
|
54840
|
+
"scope": {
|
|
54841
|
+
"type": "string",
|
|
54842
|
+
"enum": [
|
|
54843
|
+
"session",
|
|
54844
|
+
"project",
|
|
54845
|
+
"team"
|
|
54846
|
+
]
|
|
54847
|
+
}
|
|
54848
|
+
},
|
|
54849
|
+
"additionalProperties": false
|
|
54850
|
+
},
|
|
54851
|
+
"outputSchema": {
|
|
54852
|
+
"type": "object",
|
|
54853
|
+
"properties": {
|
|
54854
|
+
"records": {
|
|
54855
|
+
"type": "array",
|
|
54856
|
+
"items": {
|
|
54857
|
+
"type": "object",
|
|
54858
|
+
"properties": {},
|
|
54859
|
+
"additionalProperties": true
|
|
54860
|
+
}
|
|
54861
|
+
}
|
|
54862
|
+
},
|
|
54863
|
+
"required": [
|
|
54864
|
+
"records"
|
|
54865
|
+
],
|
|
54866
|
+
"additionalProperties": false
|
|
54867
|
+
},
|
|
54868
|
+
"invokable": true
|
|
54869
|
+
},
|
|
54796
54870
|
{
|
|
54797
54871
|
"id": "memory.vector.rebuild",
|
|
54798
54872
|
"title": "Rebuild Memory Vector Index",
|
|
@@ -75035,10 +75109,10 @@ export const OPERATOR_CONTRACT = {
|
|
|
75035
75109
|
}
|
|
75036
75110
|
],
|
|
75037
75111
|
"schemaCoverage": {
|
|
75038
|
-
"methods":
|
|
75039
|
-
"typedInputs":
|
|
75112
|
+
"methods": 280,
|
|
75113
|
+
"typedInputs": 280,
|
|
75040
75114
|
"genericInputs": 0,
|
|
75041
|
-
"typedOutputs":
|
|
75115
|
+
"typedOutputs": 280,
|
|
75042
75116
|
"genericOutputs": 0
|
|
75043
75117
|
},
|
|
75044
75118
|
"eventCoverage": {
|
|
@@ -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.patch", "automation.jobs.pause", "automation.jobs.resume", "automation.jobs.run", "automation.runs.cancel", "automation.runs.get", "automation.runs.list", "automation.runs.retry", "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.lifecycle.get", "channels.policies.audit", "channels.policies.list", "channels.policies.update", "channels.repairs.list", "channels.setup.get", "channels.status", "channels.targets.resolve", "channels.tools.invoke", "channels.tools.list", "channels.tools.surface.list", "companion.chat.events.stream", "companion.chat.messages.create", "companion.chat.messages.list", "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", "deliveries.get", "deliveries.list", "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.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", "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.patch", "routes.snapshot", "scheduler.capacity", "schedules.create", "schedules.delete", "schedules.disable", "schedules.enable", "schedules.list", "schedules.run", "security.settings", "services.install", "services.restart", "services.start", "services.status", "services.stop", "services.uninstall", "sessions.close", "sessions.create", "sessions.followUp", "sessions.get", "sessions.inputs.cancel", "sessions.inputs.list", "sessions.integration.snapshot", "sessions.list", "sessions.messages.create", "sessions.messages.list", "sessions.reopen", "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.patch", "watchers.run", "watchers.start", "watchers.stop", "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.patch", "automation.jobs.pause", "automation.jobs.resume", "automation.jobs.run", "automation.runs.cancel", "automation.runs.get", "automation.runs.list", "automation.runs.retry", "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.lifecycle.get", "channels.policies.audit", "channels.policies.list", "channels.policies.update", "channels.repairs.list", "channels.setup.get", "channels.status", "channels.targets.resolve", "channels.tools.invoke", "channels.tools.list", "channels.tools.surface.list", "companion.chat.events.stream", "companion.chat.messages.create", "companion.chat.messages.list", "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", "deliveries.get", "deliveries.list", "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.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", "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.patch", "routes.snapshot", "scheduler.capacity", "schedules.create", "schedules.delete", "schedules.disable", "schedules.enable", "schedules.list", "schedules.run", "security.settings", "services.install", "services.restart", "services.start", "services.status", "services.stop", "services.uninstall", "sessions.close", "sessions.create", "sessions.followUp", "sessions.get", "sessions.inputs.cancel", "sessions.inputs.list", "sessions.integration.snapshot", "sessions.list", "sessions.messages.create", "sessions.messages.list", "sessions.reopen", "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.patch", "watchers.run", "watchers.start", "watchers.stop", "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,+tOAyRtB,CAAC;AACX,MAAM,MAAM,gBAAgB,GAAG,OAAO,mBAAmB,CAAC,MAAM,CAAC,CAAC"}
|