tering-serieuze-types 1.3.0 → 1.3.2
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/interfaces/index.ts +7 -0
- package/package.json +1 -1
- package/dto/index.ts +0 -41
package/interfaces/index.ts
CHANGED
|
@@ -26,6 +26,13 @@ export interface ButtonInterface {
|
|
|
26
26
|
[key: string]: any;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
export interface Jingle {
|
|
30
|
+
folder: string;
|
|
31
|
+
file: string;
|
|
32
|
+
keywords: string[];
|
|
33
|
+
hash: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
29
36
|
export interface WebsocketAction {
|
|
30
37
|
serviceName: string;
|
|
31
38
|
methodName: string;
|
package/package.json
CHANGED
package/dto/index.ts
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { ToggleableUserInterfaceProperties } from '../interfaces';
|
|
2
|
-
|
|
3
|
-
export class PlayJingleDto {
|
|
4
|
-
folder: string;
|
|
5
|
-
|
|
6
|
-
file: string;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export class AddUserDto {
|
|
10
|
-
email: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export class RemoveUserDto {
|
|
14
|
-
id: number;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export class ToggleBoolDto {
|
|
18
|
-
id: number;
|
|
19
|
-
field: keyof ToggleableUserInterfaceProperties;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
export class EmulateFireDepartmentDto {
|
|
23
|
-
city: string;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export class RemoveButtonDto {
|
|
27
|
-
buttonId: string;
|
|
28
|
-
owner: number;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export class SaveButtonEventDto {
|
|
32
|
-
ButtonSingleClick: string[];
|
|
33
|
-
ButtonDoubleClick: string[];
|
|
34
|
-
ButtonHold: string[];
|
|
35
|
-
[key: string]: string[];
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
export class HandleClickDto {
|
|
39
|
-
bdAddr: string;
|
|
40
|
-
clickType: string;
|
|
41
|
-
}
|