@m1kad0/hannah-proto 3.10.0 → 4.1.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/dist/compat_versions.js +9 -5
- package/dist/control.d.ts +54 -4
- package/dist/control.js +531 -16
- package/dist/descriptor.binpb +0 -0
- package/dist/hannah.d.ts +56 -1
- package/dist/hannah.js +37 -0
- package/dist/satellite_proxy.d.ts +0 -8
- package/dist/satellite_proxy.js +1 -12
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/wakeword_capture.d.ts +0 -7
- package/dist/wakeword_capture.js +0 -7
- package/package.json +1 -1
package/dist/compat_versions.js
CHANGED
|
@@ -35,8 +35,8 @@ exports.REQUIRED_COMPAT_VERSIONS = {
|
|
|
35
35
|
"DeleteGroup": 1,
|
|
36
36
|
"SetGroupSatellites": 1,
|
|
37
37
|
"GetTriggers": 1,
|
|
38
|
-
"CreateTrigger":
|
|
39
|
-
"UpdateTrigger":
|
|
38
|
+
"CreateTrigger": 2,
|
|
39
|
+
"UpdateTrigger": 2,
|
|
40
40
|
"DeleteTrigger": 1,
|
|
41
41
|
"GetAlarms": 1,
|
|
42
42
|
"CreateAlarm": 1,
|
|
@@ -48,6 +48,10 @@ exports.REQUIRED_COMPAT_VERSIONS = {
|
|
|
48
48
|
"CreateBleTag": 1,
|
|
49
49
|
"UpdateBleTag": 1,
|
|
50
50
|
"DeleteBleTag": 1,
|
|
51
|
+
"GetPresenceSources": 1,
|
|
52
|
+
"CreatePresenceSource": 1,
|
|
53
|
+
"UpdatePresenceSource": 1,
|
|
54
|
+
"DeletePresenceSource": 1,
|
|
51
55
|
"GetCars": 1,
|
|
52
56
|
"CreateCar": 1,
|
|
53
57
|
"UpdateCar": 1,
|
|
@@ -61,10 +65,10 @@ exports.REQUIRED_COMPAT_VERSIONS = {
|
|
|
61
65
|
"ReleaseSatelliteCapture": 1,
|
|
62
66
|
"StreamSatelliteAudio": 1,
|
|
63
67
|
"TriggerPlink": 1,
|
|
64
|
-
"CollectorConnect":
|
|
65
|
-
"TriggerCollectorCapture":
|
|
68
|
+
"CollectorConnect": 2,
|
|
69
|
+
"TriggerCollectorCapture": 2,
|
|
66
70
|
"RegisterProxy": 1,
|
|
67
|
-
"SubmitSatelliteAudio":
|
|
71
|
+
"SubmitSatelliteAudio": 3,
|
|
68
72
|
"NotifySatelliteRegistered": 1,
|
|
69
73
|
"NotifySatelliteGone": 1,
|
|
70
74
|
"ProvisionSatellite": 1,
|
package/dist/control.d.ts
CHANGED
|
@@ -103,11 +103,12 @@ export interface Trigger {
|
|
|
103
103
|
say: string;
|
|
104
104
|
ask: string;
|
|
105
105
|
rephrase: boolean;
|
|
106
|
-
room
|
|
106
|
+
/** was "room" (hannah-proto#5) */
|
|
107
|
+
target: string;
|
|
107
108
|
cooldown: number;
|
|
108
109
|
/** duration string e.g. "5h"/"30m"/"90s", "" = none */
|
|
109
110
|
delay: string;
|
|
110
|
-
/** JSON list[{say,
|
|
111
|
+
/** JSON list[{say,target} | {set_state:{id,value}}], "" = none (falls back to say) */
|
|
111
112
|
actionsJson: string;
|
|
112
113
|
}
|
|
113
114
|
export interface GetTriggersResponse {
|
|
@@ -121,7 +122,8 @@ export interface CreateTriggerRequest {
|
|
|
121
122
|
say: string;
|
|
122
123
|
ask: string;
|
|
123
124
|
rephrase: boolean;
|
|
124
|
-
room
|
|
125
|
+
/** was "room" (hannah-proto#5) */
|
|
126
|
+
target: string;
|
|
125
127
|
cooldown: number;
|
|
126
128
|
delay: string;
|
|
127
129
|
actionsJson: string;
|
|
@@ -134,7 +136,8 @@ export interface UpdateTriggerRequest {
|
|
|
134
136
|
say: string;
|
|
135
137
|
ask: string;
|
|
136
138
|
rephrase: boolean;
|
|
137
|
-
room
|
|
139
|
+
/** was "room" (hannah-proto#5) */
|
|
140
|
+
target: string;
|
|
138
141
|
cooldown: number;
|
|
139
142
|
delay: string;
|
|
140
143
|
actionsJson: string;
|
|
@@ -241,6 +244,47 @@ export interface UpdateBleTagRequest {
|
|
|
241
244
|
export interface DeleteBleTagRequest {
|
|
242
245
|
id: number;
|
|
243
246
|
}
|
|
247
|
+
export interface PresenceSource {
|
|
248
|
+
id: number;
|
|
249
|
+
userId: number;
|
|
250
|
+
/** "iobroker_state" | "ble_tag" */
|
|
251
|
+
sourceType: string;
|
|
252
|
+
/** state_id (iobroker_state) bzw. BleTag-Referenz (ble_tag) */
|
|
253
|
+
reference: string;
|
|
254
|
+
/** 0.0-1.0 */
|
|
255
|
+
homeConfidence: number;
|
|
256
|
+
/** 0.0-1.0 */
|
|
257
|
+
awayConfidence: number;
|
|
258
|
+
enabled: boolean;
|
|
259
|
+
}
|
|
260
|
+
export interface GetPresenceSourcesResponse {
|
|
261
|
+
presenceSources: PresenceSource[];
|
|
262
|
+
}
|
|
263
|
+
export interface CreatePresenceSourceRequest {
|
|
264
|
+
userId: number;
|
|
265
|
+
sourceType: string;
|
|
266
|
+
reference: string;
|
|
267
|
+
homeConfidence: number;
|
|
268
|
+
awayConfidence: number;
|
|
269
|
+
enabled: boolean;
|
|
270
|
+
}
|
|
271
|
+
export interface CreatePresenceSourceResponse {
|
|
272
|
+
ok: boolean;
|
|
273
|
+
id: number;
|
|
274
|
+
message: string;
|
|
275
|
+
}
|
|
276
|
+
export interface UpdatePresenceSourceRequest {
|
|
277
|
+
id: number;
|
|
278
|
+
userId: number;
|
|
279
|
+
sourceType: string;
|
|
280
|
+
reference: string;
|
|
281
|
+
homeConfidence: number;
|
|
282
|
+
awayConfidence: number;
|
|
283
|
+
enabled: boolean;
|
|
284
|
+
}
|
|
285
|
+
export interface DeletePresenceSourceRequest {
|
|
286
|
+
id: number;
|
|
287
|
+
}
|
|
244
288
|
export interface Car {
|
|
245
289
|
id: number;
|
|
246
290
|
topicPrefix: string;
|
|
@@ -308,6 +352,12 @@ export declare const CreateBleTagRequest: MessageFns<CreateBleTagRequest>;
|
|
|
308
352
|
export declare const CreateBleTagResponse: MessageFns<CreateBleTagResponse>;
|
|
309
353
|
export declare const UpdateBleTagRequest: MessageFns<UpdateBleTagRequest>;
|
|
310
354
|
export declare const DeleteBleTagRequest: MessageFns<DeleteBleTagRequest>;
|
|
355
|
+
export declare const PresenceSource: MessageFns<PresenceSource>;
|
|
356
|
+
export declare const GetPresenceSourcesResponse: MessageFns<GetPresenceSourcesResponse>;
|
|
357
|
+
export declare const CreatePresenceSourceRequest: MessageFns<CreatePresenceSourceRequest>;
|
|
358
|
+
export declare const CreatePresenceSourceResponse: MessageFns<CreatePresenceSourceResponse>;
|
|
359
|
+
export declare const UpdatePresenceSourceRequest: MessageFns<UpdatePresenceSourceRequest>;
|
|
360
|
+
export declare const DeletePresenceSourceRequest: MessageFns<DeletePresenceSourceRequest>;
|
|
311
361
|
export declare const Car: MessageFns<Car>;
|
|
312
362
|
export declare const GetCarsResponse: MessageFns<GetCarsResponse>;
|
|
313
363
|
export declare const CreateCarRequest: MessageFns<CreateCarRequest>;
|
package/dist/control.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
// protoc unknown
|
|
6
6
|
// source: hannah/control.proto
|
|
7
7
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
8
|
-
exports.DeleteCarRequest = exports.UpdateCarRequest = exports.CreateCarResponse = exports.CreateCarRequest = exports.GetCarsResponse = exports.Car = exports.DeleteBleTagRequest = exports.UpdateBleTagRequest = exports.CreateBleTagResponse = exports.CreateBleTagRequest = exports.GetBleTagsResponse = exports.BleTag = exports.UpdateConfigRequest = exports.SettingUpdate = exports.GetSettingsResponse = exports.Setting = exports.Category = exports.DeleteAlarmRequest = exports.UpdateAlarmRequest = exports.CreateAlarmResponse = exports.CreateAlarmRequest = exports.GetAlarmsResponse = exports.Alarm = exports.DeleteTriggerRequest = exports.UpdateTriggerRequest = exports.CreateTriggerRequest = exports.GetTriggersResponse = exports.Trigger = exports.SetGroupSatellitesRequest = exports.DeleteGroupRequest = exports.UpdateGroupRequest = exports.CreateGroupRequest = exports.GetGroupsResponse = exports.Group = exports.GroupSatellite = exports.GetRoomsResponse = exports.Room = exports.AnnounceRequest = exports.SubmitVoiceResponse = exports.SubmitVoiceRequest = exports.SubmitTextResponse = exports.SubmitTextRequest = exports.protobufPackage = void 0;
|
|
8
|
+
exports.DeleteCarRequest = exports.UpdateCarRequest = exports.CreateCarResponse = exports.CreateCarRequest = exports.GetCarsResponse = exports.Car = exports.DeletePresenceSourceRequest = exports.UpdatePresenceSourceRequest = exports.CreatePresenceSourceResponse = exports.CreatePresenceSourceRequest = exports.GetPresenceSourcesResponse = exports.PresenceSource = exports.DeleteBleTagRequest = exports.UpdateBleTagRequest = exports.CreateBleTagResponse = exports.CreateBleTagRequest = exports.GetBleTagsResponse = exports.BleTag = exports.UpdateConfigRequest = exports.SettingUpdate = exports.GetSettingsResponse = exports.Setting = exports.Category = exports.DeleteAlarmRequest = exports.UpdateAlarmRequest = exports.CreateAlarmResponse = exports.CreateAlarmRequest = exports.GetAlarmsResponse = exports.Alarm = exports.DeleteTriggerRequest = exports.UpdateTriggerRequest = exports.CreateTriggerRequest = exports.GetTriggersResponse = exports.Trigger = exports.SetGroupSatellitesRequest = exports.DeleteGroupRequest = exports.UpdateGroupRequest = exports.CreateGroupRequest = exports.GetGroupsResponse = exports.Group = exports.GroupSatellite = exports.GetRoomsResponse = exports.Room = exports.AnnounceRequest = exports.SubmitVoiceResponse = exports.SubmitVoiceRequest = exports.SubmitTextResponse = exports.SubmitTextRequest = exports.protobufPackage = void 0;
|
|
9
9
|
/* eslint-disable */
|
|
10
10
|
const wire_1 = require("@bufbuild/protobuf/wire");
|
|
11
11
|
exports.protobufPackage = "hannah";
|
|
@@ -941,7 +941,7 @@ function createBaseTrigger() {
|
|
|
941
941
|
say: "",
|
|
942
942
|
ask: "",
|
|
943
943
|
rephrase: false,
|
|
944
|
-
|
|
944
|
+
target: "",
|
|
945
945
|
cooldown: 0,
|
|
946
946
|
delay: "",
|
|
947
947
|
actionsJson: "",
|
|
@@ -970,8 +970,8 @@ exports.Trigger = {
|
|
|
970
970
|
if (message.rephrase !== false) {
|
|
971
971
|
writer.uint32(56).bool(message.rephrase);
|
|
972
972
|
}
|
|
973
|
-
if (message.
|
|
974
|
-
writer.uint32(66).string(message.
|
|
973
|
+
if (message.target !== "") {
|
|
974
|
+
writer.uint32(66).string(message.target);
|
|
975
975
|
}
|
|
976
976
|
if (message.cooldown !== 0) {
|
|
977
977
|
writer.uint32(72).int32(message.cooldown);
|
|
@@ -1050,7 +1050,7 @@ exports.Trigger = {
|
|
|
1050
1050
|
if (tag !== 66) {
|
|
1051
1051
|
break;
|
|
1052
1052
|
}
|
|
1053
|
-
message.
|
|
1053
|
+
message.target = reader.string();
|
|
1054
1054
|
continue;
|
|
1055
1055
|
}
|
|
1056
1056
|
case 9: {
|
|
@@ -1098,7 +1098,7 @@ exports.Trigger = {
|
|
|
1098
1098
|
message.say = object.say ?? "";
|
|
1099
1099
|
message.ask = object.ask ?? "";
|
|
1100
1100
|
message.rephrase = object.rephrase ?? false;
|
|
1101
|
-
message.
|
|
1101
|
+
message.target = object.target ?? "";
|
|
1102
1102
|
message.cooldown = object.cooldown ?? 0;
|
|
1103
1103
|
message.delay = object.delay ?? "";
|
|
1104
1104
|
message.actionsJson = object.actionsJson ?? "";
|
|
@@ -1165,7 +1165,7 @@ function createBaseCreateTriggerRequest() {
|
|
|
1165
1165
|
say: "",
|
|
1166
1166
|
ask: "",
|
|
1167
1167
|
rephrase: false,
|
|
1168
|
-
|
|
1168
|
+
target: "",
|
|
1169
1169
|
cooldown: 0,
|
|
1170
1170
|
delay: "",
|
|
1171
1171
|
actionsJson: "",
|
|
@@ -1194,8 +1194,8 @@ exports.CreateTriggerRequest = {
|
|
|
1194
1194
|
if (message.rephrase !== false) {
|
|
1195
1195
|
writer.uint32(56).bool(message.rephrase);
|
|
1196
1196
|
}
|
|
1197
|
-
if (message.
|
|
1198
|
-
writer.uint32(66).string(message.
|
|
1197
|
+
if (message.target !== "") {
|
|
1198
|
+
writer.uint32(66).string(message.target);
|
|
1199
1199
|
}
|
|
1200
1200
|
if (message.cooldown !== 0) {
|
|
1201
1201
|
writer.uint32(72).int32(message.cooldown);
|
|
@@ -1274,7 +1274,7 @@ exports.CreateTriggerRequest = {
|
|
|
1274
1274
|
if (tag !== 66) {
|
|
1275
1275
|
break;
|
|
1276
1276
|
}
|
|
1277
|
-
message.
|
|
1277
|
+
message.target = reader.string();
|
|
1278
1278
|
continue;
|
|
1279
1279
|
}
|
|
1280
1280
|
case 9: {
|
|
@@ -1322,7 +1322,7 @@ exports.CreateTriggerRequest = {
|
|
|
1322
1322
|
message.say = object.say ?? "";
|
|
1323
1323
|
message.ask = object.ask ?? "";
|
|
1324
1324
|
message.rephrase = object.rephrase ?? false;
|
|
1325
|
-
message.
|
|
1325
|
+
message.target = object.target ?? "";
|
|
1326
1326
|
message.cooldown = object.cooldown ?? 0;
|
|
1327
1327
|
message.delay = object.delay ?? "";
|
|
1328
1328
|
message.actionsJson = object.actionsJson ?? "";
|
|
@@ -1338,7 +1338,7 @@ function createBaseUpdateTriggerRequest() {
|
|
|
1338
1338
|
say: "",
|
|
1339
1339
|
ask: "",
|
|
1340
1340
|
rephrase: false,
|
|
1341
|
-
|
|
1341
|
+
target: "",
|
|
1342
1342
|
cooldown: 0,
|
|
1343
1343
|
delay: "",
|
|
1344
1344
|
actionsJson: "",
|
|
@@ -1367,8 +1367,8 @@ exports.UpdateTriggerRequest = {
|
|
|
1367
1367
|
if (message.rephrase !== false) {
|
|
1368
1368
|
writer.uint32(56).bool(message.rephrase);
|
|
1369
1369
|
}
|
|
1370
|
-
if (message.
|
|
1371
|
-
writer.uint32(66).string(message.
|
|
1370
|
+
if (message.target !== "") {
|
|
1371
|
+
writer.uint32(66).string(message.target);
|
|
1372
1372
|
}
|
|
1373
1373
|
if (message.cooldown !== 0) {
|
|
1374
1374
|
writer.uint32(72).int32(message.cooldown);
|
|
@@ -1447,7 +1447,7 @@ exports.UpdateTriggerRequest = {
|
|
|
1447
1447
|
if (tag !== 66) {
|
|
1448
1448
|
break;
|
|
1449
1449
|
}
|
|
1450
|
-
message.
|
|
1450
|
+
message.target = reader.string();
|
|
1451
1451
|
continue;
|
|
1452
1452
|
}
|
|
1453
1453
|
case 9: {
|
|
@@ -1495,7 +1495,7 @@ exports.UpdateTriggerRequest = {
|
|
|
1495
1495
|
message.say = object.say ?? "";
|
|
1496
1496
|
message.ask = object.ask ?? "";
|
|
1497
1497
|
message.rephrase = object.rephrase ?? false;
|
|
1498
|
-
message.
|
|
1498
|
+
message.target = object.target ?? "";
|
|
1499
1499
|
message.cooldown = object.cooldown ?? 0;
|
|
1500
1500
|
message.delay = object.delay ?? "";
|
|
1501
1501
|
message.actionsJson = object.actionsJson ?? "";
|
|
@@ -2886,6 +2886,521 @@ exports.DeleteBleTagRequest = {
|
|
|
2886
2886
|
return message;
|
|
2887
2887
|
},
|
|
2888
2888
|
};
|
|
2889
|
+
function createBasePresenceSource() {
|
|
2890
|
+
return { id: 0, userId: 0, sourceType: "", reference: "", homeConfidence: 0, awayConfidence: 0, enabled: false };
|
|
2891
|
+
}
|
|
2892
|
+
exports.PresenceSource = {
|
|
2893
|
+
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
2894
|
+
if (message.id !== 0) {
|
|
2895
|
+
writer.uint32(8).int32(message.id);
|
|
2896
|
+
}
|
|
2897
|
+
if (message.userId !== 0) {
|
|
2898
|
+
writer.uint32(16).int32(message.userId);
|
|
2899
|
+
}
|
|
2900
|
+
if (message.sourceType !== "") {
|
|
2901
|
+
writer.uint32(26).string(message.sourceType);
|
|
2902
|
+
}
|
|
2903
|
+
if (message.reference !== "") {
|
|
2904
|
+
writer.uint32(34).string(message.reference);
|
|
2905
|
+
}
|
|
2906
|
+
if (message.homeConfidence !== 0) {
|
|
2907
|
+
writer.uint32(45).float(message.homeConfidence);
|
|
2908
|
+
}
|
|
2909
|
+
if (message.awayConfidence !== 0) {
|
|
2910
|
+
writer.uint32(53).float(message.awayConfidence);
|
|
2911
|
+
}
|
|
2912
|
+
if (message.enabled !== false) {
|
|
2913
|
+
writer.uint32(56).bool(message.enabled);
|
|
2914
|
+
}
|
|
2915
|
+
return writer;
|
|
2916
|
+
},
|
|
2917
|
+
decode(input, length) {
|
|
2918
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
2919
|
+
const previousRecursionDepth = reader.__tsProtoDecodeDepth ?? 0;
|
|
2920
|
+
if (previousRecursionDepth >= 100) {
|
|
2921
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
2922
|
+
}
|
|
2923
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
2924
|
+
try {
|
|
2925
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
2926
|
+
const message = createBasePresenceSource();
|
|
2927
|
+
while (reader.pos < end) {
|
|
2928
|
+
const tag = reader.uint32();
|
|
2929
|
+
switch (tag >>> 3) {
|
|
2930
|
+
case 1: {
|
|
2931
|
+
if (tag !== 8) {
|
|
2932
|
+
break;
|
|
2933
|
+
}
|
|
2934
|
+
message.id = reader.int32();
|
|
2935
|
+
continue;
|
|
2936
|
+
}
|
|
2937
|
+
case 2: {
|
|
2938
|
+
if (tag !== 16) {
|
|
2939
|
+
break;
|
|
2940
|
+
}
|
|
2941
|
+
message.userId = reader.int32();
|
|
2942
|
+
continue;
|
|
2943
|
+
}
|
|
2944
|
+
case 3: {
|
|
2945
|
+
if (tag !== 26) {
|
|
2946
|
+
break;
|
|
2947
|
+
}
|
|
2948
|
+
message.sourceType = reader.string();
|
|
2949
|
+
continue;
|
|
2950
|
+
}
|
|
2951
|
+
case 4: {
|
|
2952
|
+
if (tag !== 34) {
|
|
2953
|
+
break;
|
|
2954
|
+
}
|
|
2955
|
+
message.reference = reader.string();
|
|
2956
|
+
continue;
|
|
2957
|
+
}
|
|
2958
|
+
case 5: {
|
|
2959
|
+
if (tag !== 45) {
|
|
2960
|
+
break;
|
|
2961
|
+
}
|
|
2962
|
+
message.homeConfidence = reader.float();
|
|
2963
|
+
continue;
|
|
2964
|
+
}
|
|
2965
|
+
case 6: {
|
|
2966
|
+
if (tag !== 53) {
|
|
2967
|
+
break;
|
|
2968
|
+
}
|
|
2969
|
+
message.awayConfidence = reader.float();
|
|
2970
|
+
continue;
|
|
2971
|
+
}
|
|
2972
|
+
case 7: {
|
|
2973
|
+
if (tag !== 56) {
|
|
2974
|
+
break;
|
|
2975
|
+
}
|
|
2976
|
+
message.enabled = reader.bool();
|
|
2977
|
+
continue;
|
|
2978
|
+
}
|
|
2979
|
+
}
|
|
2980
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
2981
|
+
break;
|
|
2982
|
+
}
|
|
2983
|
+
reader.skip(tag & 7);
|
|
2984
|
+
}
|
|
2985
|
+
return message;
|
|
2986
|
+
}
|
|
2987
|
+
finally {
|
|
2988
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth;
|
|
2989
|
+
}
|
|
2990
|
+
},
|
|
2991
|
+
create(base) {
|
|
2992
|
+
return exports.PresenceSource.fromPartial(base ?? {});
|
|
2993
|
+
},
|
|
2994
|
+
fromPartial(object) {
|
|
2995
|
+
const message = createBasePresenceSource();
|
|
2996
|
+
message.id = object.id ?? 0;
|
|
2997
|
+
message.userId = object.userId ?? 0;
|
|
2998
|
+
message.sourceType = object.sourceType ?? "";
|
|
2999
|
+
message.reference = object.reference ?? "";
|
|
3000
|
+
message.homeConfidence = object.homeConfidence ?? 0;
|
|
3001
|
+
message.awayConfidence = object.awayConfidence ?? 0;
|
|
3002
|
+
message.enabled = object.enabled ?? false;
|
|
3003
|
+
return message;
|
|
3004
|
+
},
|
|
3005
|
+
};
|
|
3006
|
+
function createBaseGetPresenceSourcesResponse() {
|
|
3007
|
+
return { presenceSources: [] };
|
|
3008
|
+
}
|
|
3009
|
+
exports.GetPresenceSourcesResponse = {
|
|
3010
|
+
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
3011
|
+
for (const v of message.presenceSources) {
|
|
3012
|
+
exports.PresenceSource.encode(v, writer.uint32(10).fork()).join();
|
|
3013
|
+
}
|
|
3014
|
+
return writer;
|
|
3015
|
+
},
|
|
3016
|
+
decode(input, length) {
|
|
3017
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
3018
|
+
const previousRecursionDepth = reader.__tsProtoDecodeDepth ?? 0;
|
|
3019
|
+
if (previousRecursionDepth >= 100) {
|
|
3020
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
3021
|
+
}
|
|
3022
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
3023
|
+
try {
|
|
3024
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
3025
|
+
const message = createBaseGetPresenceSourcesResponse();
|
|
3026
|
+
while (reader.pos < end) {
|
|
3027
|
+
const tag = reader.uint32();
|
|
3028
|
+
switch (tag >>> 3) {
|
|
3029
|
+
case 1: {
|
|
3030
|
+
if (tag !== 10) {
|
|
3031
|
+
break;
|
|
3032
|
+
}
|
|
3033
|
+
message.presenceSources.push(exports.PresenceSource.decode(reader, reader.uint32()));
|
|
3034
|
+
continue;
|
|
3035
|
+
}
|
|
3036
|
+
}
|
|
3037
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
3038
|
+
break;
|
|
3039
|
+
}
|
|
3040
|
+
reader.skip(tag & 7);
|
|
3041
|
+
}
|
|
3042
|
+
return message;
|
|
3043
|
+
}
|
|
3044
|
+
finally {
|
|
3045
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth;
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
create(base) {
|
|
3049
|
+
return exports.GetPresenceSourcesResponse.fromPartial(base ?? {});
|
|
3050
|
+
},
|
|
3051
|
+
fromPartial(object) {
|
|
3052
|
+
const message = createBaseGetPresenceSourcesResponse();
|
|
3053
|
+
message.presenceSources = object.presenceSources?.map((e) => exports.PresenceSource.fromPartial(e)) || [];
|
|
3054
|
+
return message;
|
|
3055
|
+
},
|
|
3056
|
+
};
|
|
3057
|
+
function createBaseCreatePresenceSourceRequest() {
|
|
3058
|
+
return { userId: 0, sourceType: "", reference: "", homeConfidence: 0, awayConfidence: 0, enabled: false };
|
|
3059
|
+
}
|
|
3060
|
+
exports.CreatePresenceSourceRequest = {
|
|
3061
|
+
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
3062
|
+
if (message.userId !== 0) {
|
|
3063
|
+
writer.uint32(8).int32(message.userId);
|
|
3064
|
+
}
|
|
3065
|
+
if (message.sourceType !== "") {
|
|
3066
|
+
writer.uint32(18).string(message.sourceType);
|
|
3067
|
+
}
|
|
3068
|
+
if (message.reference !== "") {
|
|
3069
|
+
writer.uint32(26).string(message.reference);
|
|
3070
|
+
}
|
|
3071
|
+
if (message.homeConfidence !== 0) {
|
|
3072
|
+
writer.uint32(37).float(message.homeConfidence);
|
|
3073
|
+
}
|
|
3074
|
+
if (message.awayConfidence !== 0) {
|
|
3075
|
+
writer.uint32(45).float(message.awayConfidence);
|
|
3076
|
+
}
|
|
3077
|
+
if (message.enabled !== false) {
|
|
3078
|
+
writer.uint32(48).bool(message.enabled);
|
|
3079
|
+
}
|
|
3080
|
+
return writer;
|
|
3081
|
+
},
|
|
3082
|
+
decode(input, length) {
|
|
3083
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
3084
|
+
const previousRecursionDepth = reader.__tsProtoDecodeDepth ?? 0;
|
|
3085
|
+
if (previousRecursionDepth >= 100) {
|
|
3086
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
3087
|
+
}
|
|
3088
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
3089
|
+
try {
|
|
3090
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
3091
|
+
const message = createBaseCreatePresenceSourceRequest();
|
|
3092
|
+
while (reader.pos < end) {
|
|
3093
|
+
const tag = reader.uint32();
|
|
3094
|
+
switch (tag >>> 3) {
|
|
3095
|
+
case 1: {
|
|
3096
|
+
if (tag !== 8) {
|
|
3097
|
+
break;
|
|
3098
|
+
}
|
|
3099
|
+
message.userId = reader.int32();
|
|
3100
|
+
continue;
|
|
3101
|
+
}
|
|
3102
|
+
case 2: {
|
|
3103
|
+
if (tag !== 18) {
|
|
3104
|
+
break;
|
|
3105
|
+
}
|
|
3106
|
+
message.sourceType = reader.string();
|
|
3107
|
+
continue;
|
|
3108
|
+
}
|
|
3109
|
+
case 3: {
|
|
3110
|
+
if (tag !== 26) {
|
|
3111
|
+
break;
|
|
3112
|
+
}
|
|
3113
|
+
message.reference = reader.string();
|
|
3114
|
+
continue;
|
|
3115
|
+
}
|
|
3116
|
+
case 4: {
|
|
3117
|
+
if (tag !== 37) {
|
|
3118
|
+
break;
|
|
3119
|
+
}
|
|
3120
|
+
message.homeConfidence = reader.float();
|
|
3121
|
+
continue;
|
|
3122
|
+
}
|
|
3123
|
+
case 5: {
|
|
3124
|
+
if (tag !== 45) {
|
|
3125
|
+
break;
|
|
3126
|
+
}
|
|
3127
|
+
message.awayConfidence = reader.float();
|
|
3128
|
+
continue;
|
|
3129
|
+
}
|
|
3130
|
+
case 6: {
|
|
3131
|
+
if (tag !== 48) {
|
|
3132
|
+
break;
|
|
3133
|
+
}
|
|
3134
|
+
message.enabled = reader.bool();
|
|
3135
|
+
continue;
|
|
3136
|
+
}
|
|
3137
|
+
}
|
|
3138
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
3139
|
+
break;
|
|
3140
|
+
}
|
|
3141
|
+
reader.skip(tag & 7);
|
|
3142
|
+
}
|
|
3143
|
+
return message;
|
|
3144
|
+
}
|
|
3145
|
+
finally {
|
|
3146
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth;
|
|
3147
|
+
}
|
|
3148
|
+
},
|
|
3149
|
+
create(base) {
|
|
3150
|
+
return exports.CreatePresenceSourceRequest.fromPartial(base ?? {});
|
|
3151
|
+
},
|
|
3152
|
+
fromPartial(object) {
|
|
3153
|
+
const message = createBaseCreatePresenceSourceRequest();
|
|
3154
|
+
message.userId = object.userId ?? 0;
|
|
3155
|
+
message.sourceType = object.sourceType ?? "";
|
|
3156
|
+
message.reference = object.reference ?? "";
|
|
3157
|
+
message.homeConfidence = object.homeConfidence ?? 0;
|
|
3158
|
+
message.awayConfidence = object.awayConfidence ?? 0;
|
|
3159
|
+
message.enabled = object.enabled ?? false;
|
|
3160
|
+
return message;
|
|
3161
|
+
},
|
|
3162
|
+
};
|
|
3163
|
+
function createBaseCreatePresenceSourceResponse() {
|
|
3164
|
+
return { ok: false, id: 0, message: "" };
|
|
3165
|
+
}
|
|
3166
|
+
exports.CreatePresenceSourceResponse = {
|
|
3167
|
+
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
3168
|
+
if (message.ok !== false) {
|
|
3169
|
+
writer.uint32(8).bool(message.ok);
|
|
3170
|
+
}
|
|
3171
|
+
if (message.id !== 0) {
|
|
3172
|
+
writer.uint32(16).int32(message.id);
|
|
3173
|
+
}
|
|
3174
|
+
if (message.message !== "") {
|
|
3175
|
+
writer.uint32(26).string(message.message);
|
|
3176
|
+
}
|
|
3177
|
+
return writer;
|
|
3178
|
+
},
|
|
3179
|
+
decode(input, length) {
|
|
3180
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
3181
|
+
const previousRecursionDepth = reader.__tsProtoDecodeDepth ?? 0;
|
|
3182
|
+
if (previousRecursionDepth >= 100) {
|
|
3183
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
3184
|
+
}
|
|
3185
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
3186
|
+
try {
|
|
3187
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
3188
|
+
const message = createBaseCreatePresenceSourceResponse();
|
|
3189
|
+
while (reader.pos < end) {
|
|
3190
|
+
const tag = reader.uint32();
|
|
3191
|
+
switch (tag >>> 3) {
|
|
3192
|
+
case 1: {
|
|
3193
|
+
if (tag !== 8) {
|
|
3194
|
+
break;
|
|
3195
|
+
}
|
|
3196
|
+
message.ok = reader.bool();
|
|
3197
|
+
continue;
|
|
3198
|
+
}
|
|
3199
|
+
case 2: {
|
|
3200
|
+
if (tag !== 16) {
|
|
3201
|
+
break;
|
|
3202
|
+
}
|
|
3203
|
+
message.id = reader.int32();
|
|
3204
|
+
continue;
|
|
3205
|
+
}
|
|
3206
|
+
case 3: {
|
|
3207
|
+
if (tag !== 26) {
|
|
3208
|
+
break;
|
|
3209
|
+
}
|
|
3210
|
+
message.message = reader.string();
|
|
3211
|
+
continue;
|
|
3212
|
+
}
|
|
3213
|
+
}
|
|
3214
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
3215
|
+
break;
|
|
3216
|
+
}
|
|
3217
|
+
reader.skip(tag & 7);
|
|
3218
|
+
}
|
|
3219
|
+
return message;
|
|
3220
|
+
}
|
|
3221
|
+
finally {
|
|
3222
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth;
|
|
3223
|
+
}
|
|
3224
|
+
},
|
|
3225
|
+
create(base) {
|
|
3226
|
+
return exports.CreatePresenceSourceResponse.fromPartial(base ?? {});
|
|
3227
|
+
},
|
|
3228
|
+
fromPartial(object) {
|
|
3229
|
+
const message = createBaseCreatePresenceSourceResponse();
|
|
3230
|
+
message.ok = object.ok ?? false;
|
|
3231
|
+
message.id = object.id ?? 0;
|
|
3232
|
+
message.message = object.message ?? "";
|
|
3233
|
+
return message;
|
|
3234
|
+
},
|
|
3235
|
+
};
|
|
3236
|
+
function createBaseUpdatePresenceSourceRequest() {
|
|
3237
|
+
return { id: 0, userId: 0, sourceType: "", reference: "", homeConfidence: 0, awayConfidence: 0, enabled: false };
|
|
3238
|
+
}
|
|
3239
|
+
exports.UpdatePresenceSourceRequest = {
|
|
3240
|
+
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
3241
|
+
if (message.id !== 0) {
|
|
3242
|
+
writer.uint32(8).int32(message.id);
|
|
3243
|
+
}
|
|
3244
|
+
if (message.userId !== 0) {
|
|
3245
|
+
writer.uint32(16).int32(message.userId);
|
|
3246
|
+
}
|
|
3247
|
+
if (message.sourceType !== "") {
|
|
3248
|
+
writer.uint32(26).string(message.sourceType);
|
|
3249
|
+
}
|
|
3250
|
+
if (message.reference !== "") {
|
|
3251
|
+
writer.uint32(34).string(message.reference);
|
|
3252
|
+
}
|
|
3253
|
+
if (message.homeConfidence !== 0) {
|
|
3254
|
+
writer.uint32(45).float(message.homeConfidence);
|
|
3255
|
+
}
|
|
3256
|
+
if (message.awayConfidence !== 0) {
|
|
3257
|
+
writer.uint32(53).float(message.awayConfidence);
|
|
3258
|
+
}
|
|
3259
|
+
if (message.enabled !== false) {
|
|
3260
|
+
writer.uint32(56).bool(message.enabled);
|
|
3261
|
+
}
|
|
3262
|
+
return writer;
|
|
3263
|
+
},
|
|
3264
|
+
decode(input, length) {
|
|
3265
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
3266
|
+
const previousRecursionDepth = reader.__tsProtoDecodeDepth ?? 0;
|
|
3267
|
+
if (previousRecursionDepth >= 100) {
|
|
3268
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
3269
|
+
}
|
|
3270
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
3271
|
+
try {
|
|
3272
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
3273
|
+
const message = createBaseUpdatePresenceSourceRequest();
|
|
3274
|
+
while (reader.pos < end) {
|
|
3275
|
+
const tag = reader.uint32();
|
|
3276
|
+
switch (tag >>> 3) {
|
|
3277
|
+
case 1: {
|
|
3278
|
+
if (tag !== 8) {
|
|
3279
|
+
break;
|
|
3280
|
+
}
|
|
3281
|
+
message.id = reader.int32();
|
|
3282
|
+
continue;
|
|
3283
|
+
}
|
|
3284
|
+
case 2: {
|
|
3285
|
+
if (tag !== 16) {
|
|
3286
|
+
break;
|
|
3287
|
+
}
|
|
3288
|
+
message.userId = reader.int32();
|
|
3289
|
+
continue;
|
|
3290
|
+
}
|
|
3291
|
+
case 3: {
|
|
3292
|
+
if (tag !== 26) {
|
|
3293
|
+
break;
|
|
3294
|
+
}
|
|
3295
|
+
message.sourceType = reader.string();
|
|
3296
|
+
continue;
|
|
3297
|
+
}
|
|
3298
|
+
case 4: {
|
|
3299
|
+
if (tag !== 34) {
|
|
3300
|
+
break;
|
|
3301
|
+
}
|
|
3302
|
+
message.reference = reader.string();
|
|
3303
|
+
continue;
|
|
3304
|
+
}
|
|
3305
|
+
case 5: {
|
|
3306
|
+
if (tag !== 45) {
|
|
3307
|
+
break;
|
|
3308
|
+
}
|
|
3309
|
+
message.homeConfidence = reader.float();
|
|
3310
|
+
continue;
|
|
3311
|
+
}
|
|
3312
|
+
case 6: {
|
|
3313
|
+
if (tag !== 53) {
|
|
3314
|
+
break;
|
|
3315
|
+
}
|
|
3316
|
+
message.awayConfidence = reader.float();
|
|
3317
|
+
continue;
|
|
3318
|
+
}
|
|
3319
|
+
case 7: {
|
|
3320
|
+
if (tag !== 56) {
|
|
3321
|
+
break;
|
|
3322
|
+
}
|
|
3323
|
+
message.enabled = reader.bool();
|
|
3324
|
+
continue;
|
|
3325
|
+
}
|
|
3326
|
+
}
|
|
3327
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
3328
|
+
break;
|
|
3329
|
+
}
|
|
3330
|
+
reader.skip(tag & 7);
|
|
3331
|
+
}
|
|
3332
|
+
return message;
|
|
3333
|
+
}
|
|
3334
|
+
finally {
|
|
3335
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth;
|
|
3336
|
+
}
|
|
3337
|
+
},
|
|
3338
|
+
create(base) {
|
|
3339
|
+
return exports.UpdatePresenceSourceRequest.fromPartial(base ?? {});
|
|
3340
|
+
},
|
|
3341
|
+
fromPartial(object) {
|
|
3342
|
+
const message = createBaseUpdatePresenceSourceRequest();
|
|
3343
|
+
message.id = object.id ?? 0;
|
|
3344
|
+
message.userId = object.userId ?? 0;
|
|
3345
|
+
message.sourceType = object.sourceType ?? "";
|
|
3346
|
+
message.reference = object.reference ?? "";
|
|
3347
|
+
message.homeConfidence = object.homeConfidence ?? 0;
|
|
3348
|
+
message.awayConfidence = object.awayConfidence ?? 0;
|
|
3349
|
+
message.enabled = object.enabled ?? false;
|
|
3350
|
+
return message;
|
|
3351
|
+
},
|
|
3352
|
+
};
|
|
3353
|
+
function createBaseDeletePresenceSourceRequest() {
|
|
3354
|
+
return { id: 0 };
|
|
3355
|
+
}
|
|
3356
|
+
exports.DeletePresenceSourceRequest = {
|
|
3357
|
+
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
3358
|
+
if (message.id !== 0) {
|
|
3359
|
+
writer.uint32(8).int32(message.id);
|
|
3360
|
+
}
|
|
3361
|
+
return writer;
|
|
3362
|
+
},
|
|
3363
|
+
decode(input, length) {
|
|
3364
|
+
const reader = input instanceof wire_1.BinaryReader ? input : new wire_1.BinaryReader(input);
|
|
3365
|
+
const previousRecursionDepth = reader.__tsProtoDecodeDepth ?? 0;
|
|
3366
|
+
if (previousRecursionDepth >= 100) {
|
|
3367
|
+
throw new globalThis.Error("protobuf decode recursion limit exceeded");
|
|
3368
|
+
}
|
|
3369
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth + 1;
|
|
3370
|
+
try {
|
|
3371
|
+
const end = length === undefined ? reader.len : reader.pos + length;
|
|
3372
|
+
const message = createBaseDeletePresenceSourceRequest();
|
|
3373
|
+
while (reader.pos < end) {
|
|
3374
|
+
const tag = reader.uint32();
|
|
3375
|
+
switch (tag >>> 3) {
|
|
3376
|
+
case 1: {
|
|
3377
|
+
if (tag !== 8) {
|
|
3378
|
+
break;
|
|
3379
|
+
}
|
|
3380
|
+
message.id = reader.int32();
|
|
3381
|
+
continue;
|
|
3382
|
+
}
|
|
3383
|
+
}
|
|
3384
|
+
if ((tag & 7) === 4 || tag === 0) {
|
|
3385
|
+
break;
|
|
3386
|
+
}
|
|
3387
|
+
reader.skip(tag & 7);
|
|
3388
|
+
}
|
|
3389
|
+
return message;
|
|
3390
|
+
}
|
|
3391
|
+
finally {
|
|
3392
|
+
reader.__tsProtoDecodeDepth = previousRecursionDepth;
|
|
3393
|
+
}
|
|
3394
|
+
},
|
|
3395
|
+
create(base) {
|
|
3396
|
+
return exports.DeletePresenceSourceRequest.fromPartial(base ?? {});
|
|
3397
|
+
},
|
|
3398
|
+
fromPartial(object) {
|
|
3399
|
+
const message = createBaseDeletePresenceSourceRequest();
|
|
3400
|
+
message.id = object.id ?? 0;
|
|
3401
|
+
return message;
|
|
3402
|
+
},
|
|
3403
|
+
};
|
|
2889
3404
|
function createBaseCar() {
|
|
2890
3405
|
return { id: 0, topicPrefix: "", homeAddress: "", ownerUserIds: [], name: "" };
|
|
2891
3406
|
}
|
package/dist/descriptor.binpb
CHANGED
|
Binary file
|
package/dist/hannah.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { ActivityAudioChunk, ListActivityLogRequest, ListActivityLogResponse, St
|
|
|
3
3
|
import { AgentCommand, AgentMessage, AgentNotification } from "./agent";
|
|
4
4
|
import { AutomationCommand, AutomationMessage } from "./automation";
|
|
5
5
|
import { CarStateResponse, GetAllCarStatesResponse } from "./car_state";
|
|
6
|
-
import { AnnounceRequest, CreateAlarmRequest, CreateAlarmResponse, CreateBleTagRequest, CreateBleTagResponse, CreateCarRequest, CreateCarResponse, CreateGroupRequest, CreateTriggerRequest, DeleteAlarmRequest, DeleteBleTagRequest, DeleteCarRequest, DeleteGroupRequest, DeleteTriggerRequest, GetAlarmsResponse, GetBleTagsResponse, GetCarsResponse, GetGroupsResponse, GetRoomsResponse, GetSettingsResponse, GetTriggersResponse, SetGroupSatellitesRequest, SubmitTextRequest, SubmitTextResponse, SubmitVoiceRequest, SubmitVoiceResponse, UpdateAlarmRequest, UpdateBleTagRequest, UpdateCarRequest, UpdateConfigRequest, UpdateGroupRequest, UpdateTriggerRequest } from "./control";
|
|
6
|
+
import { AnnounceRequest, CreateAlarmRequest, CreateAlarmResponse, CreateBleTagRequest, CreateBleTagResponse, CreateCarRequest, CreateCarResponse, CreateGroupRequest, CreatePresenceSourceRequest, CreatePresenceSourceResponse, CreateTriggerRequest, DeleteAlarmRequest, DeleteBleTagRequest, DeleteCarRequest, DeleteGroupRequest, DeletePresenceSourceRequest, DeleteTriggerRequest, GetAlarmsResponse, GetBleTagsResponse, GetCarsResponse, GetGroupsResponse, GetPresenceSourcesResponse, GetRoomsResponse, GetSettingsResponse, GetTriggersResponse, SetGroupSatellitesRequest, SubmitTextRequest, SubmitTextResponse, SubmitVoiceRequest, SubmitVoiceResponse, UpdateAlarmRequest, UpdateBleTagRequest, UpdateCarRequest, UpdateConfigRequest, UpdateGroupRequest, UpdatePresenceSourceRequest, UpdateTriggerRequest } from "./control";
|
|
7
7
|
import { ControlDeviceRequest, GetDevicesResponse } from "./device_control_menu";
|
|
8
8
|
import { EventFilter, HannahEvent, TriggerFirmwareUpdateRequest, TriggerSatelliteRestartRequest } from "./event_stream";
|
|
9
9
|
import { CreateMessageRequest, DeleteMessageRequest, ListMessagesRequest, ListMessagesResponse } from "./messages";
|
|
@@ -455,6 +455,43 @@ export declare const HannahServiceService: {
|
|
|
455
455
|
readonly responseSerialize: (value: StatusResponse) => Buffer;
|
|
456
456
|
readonly responseDeserialize: (value: Buffer) => StatusResponse;
|
|
457
457
|
};
|
|
458
|
+
/** --- Presence Sources (Admin-UI, hannah#294 — presence fusion) --- */
|
|
459
|
+
readonly getPresenceSources: {
|
|
460
|
+
readonly path: "/hannah.HannahService/GetPresenceSources";
|
|
461
|
+
readonly requestStream: false;
|
|
462
|
+
readonly responseStream: false;
|
|
463
|
+
readonly requestSerialize: (value: Empty) => Buffer;
|
|
464
|
+
readonly requestDeserialize: (value: Buffer) => Empty;
|
|
465
|
+
readonly responseSerialize: (value: GetPresenceSourcesResponse) => Buffer;
|
|
466
|
+
readonly responseDeserialize: (value: Buffer) => GetPresenceSourcesResponse;
|
|
467
|
+
};
|
|
468
|
+
readonly createPresenceSource: {
|
|
469
|
+
readonly path: "/hannah.HannahService/CreatePresenceSource";
|
|
470
|
+
readonly requestStream: false;
|
|
471
|
+
readonly responseStream: false;
|
|
472
|
+
readonly requestSerialize: (value: CreatePresenceSourceRequest) => Buffer;
|
|
473
|
+
readonly requestDeserialize: (value: Buffer) => CreatePresenceSourceRequest;
|
|
474
|
+
readonly responseSerialize: (value: CreatePresenceSourceResponse) => Buffer;
|
|
475
|
+
readonly responseDeserialize: (value: Buffer) => CreatePresenceSourceResponse;
|
|
476
|
+
};
|
|
477
|
+
readonly updatePresenceSource: {
|
|
478
|
+
readonly path: "/hannah.HannahService/UpdatePresenceSource";
|
|
479
|
+
readonly requestStream: false;
|
|
480
|
+
readonly responseStream: false;
|
|
481
|
+
readonly requestSerialize: (value: UpdatePresenceSourceRequest) => Buffer;
|
|
482
|
+
readonly requestDeserialize: (value: Buffer) => UpdatePresenceSourceRequest;
|
|
483
|
+
readonly responseSerialize: (value: StatusResponse) => Buffer;
|
|
484
|
+
readonly responseDeserialize: (value: Buffer) => StatusResponse;
|
|
485
|
+
};
|
|
486
|
+
readonly deletePresenceSource: {
|
|
487
|
+
readonly path: "/hannah.HannahService/DeletePresenceSource";
|
|
488
|
+
readonly requestStream: false;
|
|
489
|
+
readonly responseStream: false;
|
|
490
|
+
readonly requestSerialize: (value: DeletePresenceSourceRequest) => Buffer;
|
|
491
|
+
readonly requestDeserialize: (value: Buffer) => DeletePresenceSourceRequest;
|
|
492
|
+
readonly responseSerialize: (value: StatusResponse) => Buffer;
|
|
493
|
+
readonly responseDeserialize: (value: Buffer) => StatusResponse;
|
|
494
|
+
};
|
|
458
495
|
/** --- Cars (Admin-UI, #115 — eigenes Modell + user_to_car-Pivot statt Settings-JSON-Blob) --- */
|
|
459
496
|
readonly getCars: {
|
|
460
497
|
readonly path: "/hannah.HannahService/GetCars";
|
|
@@ -934,6 +971,11 @@ export interface HannahServiceServer extends UntypedServiceImplementation {
|
|
|
934
971
|
createBleTag: handleUnaryCall<CreateBleTagRequest, CreateBleTagResponse>;
|
|
935
972
|
updateBleTag: handleUnaryCall<UpdateBleTagRequest, StatusResponse>;
|
|
936
973
|
deleteBleTag: handleUnaryCall<DeleteBleTagRequest, StatusResponse>;
|
|
974
|
+
/** --- Presence Sources (Admin-UI, hannah#294 — presence fusion) --- */
|
|
975
|
+
getPresenceSources: handleUnaryCall<Empty, GetPresenceSourcesResponse>;
|
|
976
|
+
createPresenceSource: handleUnaryCall<CreatePresenceSourceRequest, CreatePresenceSourceResponse>;
|
|
977
|
+
updatePresenceSource: handleUnaryCall<UpdatePresenceSourceRequest, StatusResponse>;
|
|
978
|
+
deletePresenceSource: handleUnaryCall<DeletePresenceSourceRequest, StatusResponse>;
|
|
937
979
|
/** --- Cars (Admin-UI, #115 — eigenes Modell + user_to_car-Pivot statt Settings-JSON-Blob) --- */
|
|
938
980
|
getCars: handleUnaryCall<Empty, GetCarsResponse>;
|
|
939
981
|
createCar: handleUnaryCall<CreateCarRequest, CreateCarResponse>;
|
|
@@ -1245,6 +1287,19 @@ export interface HannahServiceClient extends Client {
|
|
|
1245
1287
|
deleteBleTag(request: DeleteBleTagRequest, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1246
1288
|
deleteBleTag(request: DeleteBleTagRequest, metadata: Metadata, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1247
1289
|
deleteBleTag(request: DeleteBleTagRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1290
|
+
/** --- Presence Sources (Admin-UI, hannah#294 — presence fusion) --- */
|
|
1291
|
+
getPresenceSources(request: Empty, callback: (error: ServiceError | null, response: GetPresenceSourcesResponse) => void): ClientUnaryCall;
|
|
1292
|
+
getPresenceSources(request: Empty, metadata: Metadata, callback: (error: ServiceError | null, response: GetPresenceSourcesResponse) => void): ClientUnaryCall;
|
|
1293
|
+
getPresenceSources(request: Empty, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: GetPresenceSourcesResponse) => void): ClientUnaryCall;
|
|
1294
|
+
createPresenceSource(request: CreatePresenceSourceRequest, callback: (error: ServiceError | null, response: CreatePresenceSourceResponse) => void): ClientUnaryCall;
|
|
1295
|
+
createPresenceSource(request: CreatePresenceSourceRequest, metadata: Metadata, callback: (error: ServiceError | null, response: CreatePresenceSourceResponse) => void): ClientUnaryCall;
|
|
1296
|
+
createPresenceSource(request: CreatePresenceSourceRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: CreatePresenceSourceResponse) => void): ClientUnaryCall;
|
|
1297
|
+
updatePresenceSource(request: UpdatePresenceSourceRequest, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1298
|
+
updatePresenceSource(request: UpdatePresenceSourceRequest, metadata: Metadata, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1299
|
+
updatePresenceSource(request: UpdatePresenceSourceRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1300
|
+
deletePresenceSource(request: DeletePresenceSourceRequest, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1301
|
+
deletePresenceSource(request: DeletePresenceSourceRequest, metadata: Metadata, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1302
|
+
deletePresenceSource(request: DeletePresenceSourceRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: ServiceError | null, response: StatusResponse) => void): ClientUnaryCall;
|
|
1248
1303
|
/** --- Cars (Admin-UI, #115 — eigenes Modell + user_to_car-Pivot statt Settings-JSON-Blob) --- */
|
|
1249
1304
|
getCars(request: Empty, callback: (error: ServiceError | null, response: GetCarsResponse) => void): ClientUnaryCall;
|
|
1250
1305
|
getCars(request: Empty, metadata: Metadata, callback: (error: ServiceError | null, response: GetCarsResponse) => void): ClientUnaryCall;
|
package/dist/hannah.js
CHANGED
|
@@ -463,6 +463,43 @@ exports.HannahServiceService = {
|
|
|
463
463
|
responseSerialize: (value) => Buffer.from(shared_1.StatusResponse.encode(value).finish()),
|
|
464
464
|
responseDeserialize: (value) => shared_1.StatusResponse.decode(value),
|
|
465
465
|
},
|
|
466
|
+
/** --- Presence Sources (Admin-UI, hannah#294 — presence fusion) --- */
|
|
467
|
+
getPresenceSources: {
|
|
468
|
+
path: "/hannah.HannahService/GetPresenceSources",
|
|
469
|
+
requestStream: false,
|
|
470
|
+
responseStream: false,
|
|
471
|
+
requestSerialize: (value) => Buffer.from(shared_1.Empty.encode(value).finish()),
|
|
472
|
+
requestDeserialize: (value) => shared_1.Empty.decode(value),
|
|
473
|
+
responseSerialize: (value) => Buffer.from(control_1.GetPresenceSourcesResponse.encode(value).finish()),
|
|
474
|
+
responseDeserialize: (value) => control_1.GetPresenceSourcesResponse.decode(value),
|
|
475
|
+
},
|
|
476
|
+
createPresenceSource: {
|
|
477
|
+
path: "/hannah.HannahService/CreatePresenceSource",
|
|
478
|
+
requestStream: false,
|
|
479
|
+
responseStream: false,
|
|
480
|
+
requestSerialize: (value) => Buffer.from(control_1.CreatePresenceSourceRequest.encode(value).finish()),
|
|
481
|
+
requestDeserialize: (value) => control_1.CreatePresenceSourceRequest.decode(value),
|
|
482
|
+
responseSerialize: (value) => Buffer.from(control_1.CreatePresenceSourceResponse.encode(value).finish()),
|
|
483
|
+
responseDeserialize: (value) => control_1.CreatePresenceSourceResponse.decode(value),
|
|
484
|
+
},
|
|
485
|
+
updatePresenceSource: {
|
|
486
|
+
path: "/hannah.HannahService/UpdatePresenceSource",
|
|
487
|
+
requestStream: false,
|
|
488
|
+
responseStream: false,
|
|
489
|
+
requestSerialize: (value) => Buffer.from(control_1.UpdatePresenceSourceRequest.encode(value).finish()),
|
|
490
|
+
requestDeserialize: (value) => control_1.UpdatePresenceSourceRequest.decode(value),
|
|
491
|
+
responseSerialize: (value) => Buffer.from(shared_1.StatusResponse.encode(value).finish()),
|
|
492
|
+
responseDeserialize: (value) => shared_1.StatusResponse.decode(value),
|
|
493
|
+
},
|
|
494
|
+
deletePresenceSource: {
|
|
495
|
+
path: "/hannah.HannahService/DeletePresenceSource",
|
|
496
|
+
requestStream: false,
|
|
497
|
+
responseStream: false,
|
|
498
|
+
requestSerialize: (value) => Buffer.from(control_1.DeletePresenceSourceRequest.encode(value).finish()),
|
|
499
|
+
requestDeserialize: (value) => control_1.DeletePresenceSourceRequest.decode(value),
|
|
500
|
+
responseSerialize: (value) => Buffer.from(shared_1.StatusResponse.encode(value).finish()),
|
|
501
|
+
responseDeserialize: (value) => shared_1.StatusResponse.decode(value),
|
|
502
|
+
},
|
|
466
503
|
/** --- Cars (Admin-UI, #115 — eigenes Modell + user_to_car-Pivot statt Settings-JSON-Blob) --- */
|
|
467
504
|
getCars: {
|
|
468
505
|
path: "/hannah.HannahService/GetCars",
|
|
@@ -53,14 +53,6 @@ export interface SubmitSatelliteAudioRequest {
|
|
|
53
53
|
audioPcm: Uint8Array;
|
|
54
54
|
/** sample rate of the audio (typically 16000) */
|
|
55
55
|
sampleRate: number;
|
|
56
|
-
/**
|
|
57
|
-
* Deprecated: Hannah Core now resolves the speaker itself via its own
|
|
58
|
-
* VoiceID client, independent of proxy connectivity (hannah#210). The
|
|
59
|
-
* proxy no longer populates this field and Core no longer reads it.
|
|
60
|
-
*
|
|
61
|
-
* @deprecated
|
|
62
|
-
*/
|
|
63
|
-
speakerUserId: string;
|
|
64
56
|
}
|
|
65
57
|
export interface SubmitSatelliteAudioResponse {
|
|
66
58
|
/** STT result */
|
package/dist/satellite_proxy.js
CHANGED
|
@@ -293,7 +293,7 @@ exports.PlayAudioCommand = {
|
|
|
293
293
|
},
|
|
294
294
|
};
|
|
295
295
|
function createBaseSubmitSatelliteAudioRequest() {
|
|
296
|
-
return { deviceId: "", room: "", audioPcm: new Uint8Array(0), sampleRate: 0
|
|
296
|
+
return { deviceId: "", room: "", audioPcm: new Uint8Array(0), sampleRate: 0 };
|
|
297
297
|
}
|
|
298
298
|
exports.SubmitSatelliteAudioRequest = {
|
|
299
299
|
encode(message, writer = new wire_1.BinaryWriter()) {
|
|
@@ -309,9 +309,6 @@ exports.SubmitSatelliteAudioRequest = {
|
|
|
309
309
|
if (message.sampleRate !== 0) {
|
|
310
310
|
writer.uint32(32).int32(message.sampleRate);
|
|
311
311
|
}
|
|
312
|
-
if (message.speakerUserId !== "") {
|
|
313
|
-
writer.uint32(42).string(message.speakerUserId);
|
|
314
|
-
}
|
|
315
312
|
return writer;
|
|
316
313
|
},
|
|
317
314
|
decode(input, length) {
|
|
@@ -355,13 +352,6 @@ exports.SubmitSatelliteAudioRequest = {
|
|
|
355
352
|
message.sampleRate = reader.int32();
|
|
356
353
|
continue;
|
|
357
354
|
}
|
|
358
|
-
case 5: {
|
|
359
|
-
if (tag !== 42) {
|
|
360
|
-
break;
|
|
361
|
-
}
|
|
362
|
-
message.speakerUserId = reader.string();
|
|
363
|
-
continue;
|
|
364
|
-
}
|
|
365
355
|
}
|
|
366
356
|
if ((tag & 7) === 4 || tag === 0) {
|
|
367
357
|
break;
|
|
@@ -383,7 +373,6 @@ exports.SubmitSatelliteAudioRequest = {
|
|
|
383
373
|
message.room = object.room ?? "";
|
|
384
374
|
message.audioPcm = object.audioPcm ?? new Uint8Array(0);
|
|
385
375
|
message.sampleRate = object.sampleRate ?? 0;
|
|
386
|
-
message.speakerUserId = object.speakerUserId ?? "";
|
|
387
376
|
return message;
|
|
388
377
|
},
|
|
389
378
|
};
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PROTO_VERSION =
|
|
1
|
+
export declare const PROTO_VERSION = 9;
|
package/dist/version.js
CHANGED
|
@@ -2,13 +2,6 @@ import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
|
2
2
|
export declare const protobufPackage = "hannah";
|
|
3
3
|
export declare enum CaptureMode {
|
|
4
4
|
CAPTURE_MODE_UNSPECIFIED = 0,
|
|
5
|
-
/**
|
|
6
|
-
* CAPTURE_MODE_MANUAL - Deprecated: identical in practice to CAPTURE_MODE_PTT (both mean "hand-triggered
|
|
7
|
-
* via the PTT button") — never produce this value, use CAPTURE_MODE_PTT instead.
|
|
8
|
-
*
|
|
9
|
-
* @deprecated
|
|
10
|
-
*/
|
|
11
|
-
CAPTURE_MODE_MANUAL = 1,
|
|
12
5
|
CAPTURE_MODE_PTT = 2,
|
|
13
6
|
CAPTURE_MODE_PLINK = 3,
|
|
14
7
|
UNRECOGNIZED = -1
|
package/dist/wakeword_capture.js
CHANGED
|
@@ -12,13 +12,6 @@ exports.protobufPackage = "hannah";
|
|
|
12
12
|
var CaptureMode;
|
|
13
13
|
(function (CaptureMode) {
|
|
14
14
|
CaptureMode[CaptureMode["CAPTURE_MODE_UNSPECIFIED"] = 0] = "CAPTURE_MODE_UNSPECIFIED";
|
|
15
|
-
/**
|
|
16
|
-
* CAPTURE_MODE_MANUAL - Deprecated: identical in practice to CAPTURE_MODE_PTT (both mean "hand-triggered
|
|
17
|
-
* via the PTT button") — never produce this value, use CAPTURE_MODE_PTT instead.
|
|
18
|
-
*
|
|
19
|
-
* @deprecated
|
|
20
|
-
*/
|
|
21
|
-
CaptureMode[CaptureMode["CAPTURE_MODE_MANUAL"] = 1] = "CAPTURE_MODE_MANUAL";
|
|
22
15
|
CaptureMode[CaptureMode["CAPTURE_MODE_PTT"] = 2] = "CAPTURE_MODE_PTT";
|
|
23
16
|
CaptureMode[CaptureMode["CAPTURE_MODE_PLINK"] = 3] = "CAPTURE_MODE_PLINK";
|
|
24
17
|
CaptureMode[CaptureMode["UNRECOGNIZED"] = -1] = "UNRECOGNIZED";
|
package/package.json
CHANGED