@m1kad0/hannah-proto 3.6.0 → 3.6.1
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/descriptor.binpb
CHANGED
|
Binary file
|
|
@@ -2,6 +2,12 @@ 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
|
+
*/
|
|
5
11
|
CAPTURE_MODE_MANUAL = 1,
|
|
6
12
|
CAPTURE_MODE_PTT = 2,
|
|
7
13
|
CAPTURE_MODE_PLINK = 3,
|
package/dist/wakeword_capture.js
CHANGED
|
@@ -12,6 +12,12 @@ 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
|
+
*/
|
|
15
21
|
CaptureMode[CaptureMode["CAPTURE_MODE_MANUAL"] = 1] = "CAPTURE_MODE_MANUAL";
|
|
16
22
|
CaptureMode[CaptureMode["CAPTURE_MODE_PTT"] = 2] = "CAPTURE_MODE_PTT";
|
|
17
23
|
CaptureMode[CaptureMode["CAPTURE_MODE_PLINK"] = 3] = "CAPTURE_MODE_PLINK";
|
package/package.json
CHANGED