@pellux/goodvibes-contracts 1.9.0 → 1.10.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 +531 -6
- package/artifacts/operator-openapi.json +584 -2
- package/artifacts/python/homeassistant_operator_client.py +2 -2
- package/dist/generated/foundation-client-types.d.ts +95 -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/mock-daemon-fixtures.d.ts.map +1 -1
- package/dist/generated/mock-daemon-fixtures.js +128 -0
- package/dist/generated/operator-contract.d.ts.map +1 -1
- package/dist/generated/operator-contract.js +531 -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 +3 -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 +128 -0
- package/package.json +1 -1
|
@@ -1271,10 +1271,13 @@ export interface OperatorMethodInputMap {
|
|
|
1271
1271
|
"permissions.rules.delete": {
|
|
1272
1272
|
ruleId: string;
|
|
1273
1273
|
};
|
|
1274
|
+
"ops.memory.get": {};
|
|
1274
1275
|
"power.keepAwake.set": {
|
|
1275
1276
|
enabled: boolean;
|
|
1276
1277
|
};
|
|
1277
1278
|
"power.status.get": {};
|
|
1279
|
+
"voice.local.install": {};
|
|
1280
|
+
"voice.local.status": {};
|
|
1278
1281
|
"principals.create": {
|
|
1279
1282
|
name: string;
|
|
1280
1283
|
kind: "bot" | "service" | "token" | "user";
|
|
@@ -8097,6 +8100,98 @@ export interface OperatorMethodOutputMap {
|
|
|
8097
8100
|
"permissions.rules.delete": {
|
|
8098
8101
|
deleted: boolean;
|
|
8099
8102
|
};
|
|
8103
|
+
"ops.memory.get": {
|
|
8104
|
+
tier: "critical" | "elevated" | "high" | "normal";
|
|
8105
|
+
budgetMb: number;
|
|
8106
|
+
rssMb: number;
|
|
8107
|
+
heapUsedMb: number;
|
|
8108
|
+
heapTotalMb?: number;
|
|
8109
|
+
usedPct: number;
|
|
8110
|
+
refusingExpensiveWork: boolean;
|
|
8111
|
+
caches: readonly ({
|
|
8112
|
+
id: string;
|
|
8113
|
+
name: string;
|
|
8114
|
+
entries: number;
|
|
8115
|
+
estimatedBytes?: number;
|
|
8116
|
+
})[];
|
|
8117
|
+
pausedJobs: readonly string[];
|
|
8118
|
+
tripwire: {
|
|
8119
|
+
armed: boolean;
|
|
8120
|
+
sustainedSec: number;
|
|
8121
|
+
rateMbPerSec: number;
|
|
8122
|
+
};
|
|
8123
|
+
thresholds: {
|
|
8124
|
+
elevatedPct: number;
|
|
8125
|
+
highPct: number;
|
|
8126
|
+
criticalPct: number;
|
|
8127
|
+
};
|
|
8128
|
+
};
|
|
8129
|
+
"voice.local.install": {
|
|
8130
|
+
provisioned: boolean;
|
|
8131
|
+
platform: null | string;
|
|
8132
|
+
tts: {
|
|
8133
|
+
engine: string;
|
|
8134
|
+
state: "checksum-mismatch" | "download-failed" | "provisioned" | "unsupported-platform";
|
|
8135
|
+
binaryPath?: string;
|
|
8136
|
+
modelPath?: string;
|
|
8137
|
+
reason?: string;
|
|
8138
|
+
};
|
|
8139
|
+
stt: {
|
|
8140
|
+
engine: string;
|
|
8141
|
+
state: "bundle-unavailable" | "checksum-mismatch" | "download-failed" | "provisioned" | "sideload-mismatch" | "unsupported-platform";
|
|
8142
|
+
binaryPath?: string;
|
|
8143
|
+
modelPath?: string;
|
|
8144
|
+
reason?: string;
|
|
8145
|
+
};
|
|
8146
|
+
components: readonly ({
|
|
8147
|
+
id: string;
|
|
8148
|
+
state: "failed" | "installed" | "skipped";
|
|
8149
|
+
bytes?: number;
|
|
8150
|
+
error?: string;
|
|
8151
|
+
})[];
|
|
8152
|
+
configured: {
|
|
8153
|
+
set: readonly ({
|
|
8154
|
+
key: string;
|
|
8155
|
+
value: string;
|
|
8156
|
+
})[];
|
|
8157
|
+
skipped: readonly ({
|
|
8158
|
+
key: string;
|
|
8159
|
+
reason: string;
|
|
8160
|
+
})[];
|
|
8161
|
+
};
|
|
8162
|
+
};
|
|
8163
|
+
"voice.local.status": {
|
|
8164
|
+
platform: null | string;
|
|
8165
|
+
state: "not-provisioned" | "partial" | "provisioned" | "unsupported-platform";
|
|
8166
|
+
tts: {
|
|
8167
|
+
engine: string;
|
|
8168
|
+
binaryPresent: boolean;
|
|
8169
|
+
voicePresent: boolean;
|
|
8170
|
+
binaryPath: string;
|
|
8171
|
+
modelPath: string;
|
|
8172
|
+
};
|
|
8173
|
+
stt: {
|
|
8174
|
+
engine: string;
|
|
8175
|
+
supported: boolean;
|
|
8176
|
+
state: "not-provisioned" | "partial" | "provisioned" | "unsupported-platform";
|
|
8177
|
+
binaryPresent: boolean;
|
|
8178
|
+
modelPresent: boolean;
|
|
8179
|
+
binaryPath: string;
|
|
8180
|
+
modelPath: string;
|
|
8181
|
+
reason?: string;
|
|
8182
|
+
};
|
|
8183
|
+
offerBytes: null | number;
|
|
8184
|
+
installInProgress?: {
|
|
8185
|
+
startedAt: number;
|
|
8186
|
+
components: readonly ({
|
|
8187
|
+
component: string;
|
|
8188
|
+
phase: "done" | "download" | "error" | "extract" | "skip" | "verify";
|
|
8189
|
+
message?: string;
|
|
8190
|
+
bytesTotal?: number;
|
|
8191
|
+
bytesDone?: number;
|
|
8192
|
+
})[];
|
|
8193
|
+
};
|
|
8194
|
+
};
|
|
8100
8195
|
"power.keepAwake.set": {
|
|
8101
8196
|
platform: string;
|
|
8102
8197
|
work: {
|