@pepperdash/mobile-control-react-app-core 1.20.4 → 1.20.5
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/mobile-control-react-app-core.es.js +1579 -1501
- package/dist/mobile-control-react-app-core.umd.js +10 -10
- package/dist/shared/hooks/interfaces/useIHasSelectableItems.d.ts +2 -1
- package/dist/shared/hooks/interfaces/useIHasSelectableItems.d.ts.map +1 -1
- package/dist/store/appConfig/appConfig.hooks.d.ts +110 -0
- package/dist/store/appConfig/appConfig.hooks.d.ts.map +1 -0
- package/dist/store/appConfig/{appConfigSelectors.d.ts → appConfig.selectors.d.ts} +2 -3
- package/dist/store/appConfig/appConfig.selectors.d.ts.map +1 -0
- package/dist/store/devices/devices.hooks.d.ts +56 -0
- package/dist/store/devices/devices.hooks.d.ts.map +1 -0
- package/dist/store/devices/devices.selectors.d.ts +13 -0
- package/dist/store/devices/devices.selectors.d.ts.map +1 -0
- package/dist/store/devices/devices.slice.d.ts +4 -35
- package/dist/store/devices/devices.slice.d.ts.map +1 -1
- package/dist/store/index.d.ts +5 -5
- package/dist/store/index.d.ts.map +1 -1
- package/dist/store/rooms/rooms.hooks.d.ts +542 -0
- package/dist/store/rooms/rooms.hooks.d.ts.map +1 -0
- package/dist/store/rooms/{roomsSelectors.d.ts → rooms.selectors.d.ts} +10 -7
- package/dist/store/rooms/rooms.selectors.d.ts.map +1 -0
- package/dist/store/rooms/rooms.slice.d.ts +4 -321
- package/dist/store/rooms/rooms.slice.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtime.hooks.d.ts +277 -0
- package/dist/store/runtimeConfig/runtime.hooks.d.ts.map +1 -0
- package/dist/store/runtimeConfig/{runtimeSelectors.d.ts → runtime.selectors.d.ts} +1 -1
- package/dist/store/runtimeConfig/runtime.selectors.d.ts.map +1 -0
- package/dist/types/state/state/CommunicationMonitorState.d.ts +2 -1
- package/dist/types/state/state/CommunicationMonitorState.d.ts.map +1 -1
- package/dist/types/state/state/DeviceInfoState.d.ts +2 -1
- package/dist/types/state/state/DeviceInfoState.d.ts.map +1 -1
- package/dist/types/state/state/IBasicVolumeWithFeedbackState.d.ts +2 -1
- package/dist/types/state/state/IBasicVolumeWithFeedbackState.d.ts.map +1 -1
- package/dist/types/state/state/IHasInputsState.d.ts +2 -1
- package/dist/types/state/state/IHasInputsState.d.ts.map +1 -1
- package/dist/types/state/state/IHasSurroundSoundModesState.d.ts +2 -1
- package/dist/types/state/state/IHasSurroundSoundModesState.d.ts.map +1 -1
- package/dist/types/state/state/MatrixRoutingState.d.ts +1 -1
- package/dist/types/state/state/MatrixRoutingState.d.ts.map +1 -1
- package/dist/types/state/state/PowerState.d.ts +2 -1
- package/dist/types/state/state/PowerState.d.ts.map +1 -1
- package/dist/types/state/state/RoutingState.d.ts +2 -1
- package/dist/types/state/state/RoutingState.d.ts.map +1 -1
- package/dist/types/state/state/SwitchedOutputState.d.ts +2 -1
- package/dist/types/state/state/SwitchedOutputState.d.ts.map +1 -1
- package/package.json +2 -2
- package/dist/store/appConfig/appConfigSelectors.d.ts.map +0 -1
- package/dist/store/devices/devicesSelectors.d.ts +0 -12
- package/dist/store/devices/devicesSelectors.d.ts.map +0 -1
- package/dist/store/rooms/roomsSelectors.d.ts.map +0 -1
- package/dist/store/runtimeConfig/runtimeSelectors.d.ts.map +0 -1
- /package/dist/{style.css → mobile-control-react-app-core.css} +0 -0
|
@@ -1,325 +1,8 @@
|
|
|
1
|
-
import { PayloadAction } from '@reduxjs/toolkit';
|
|
2
1
|
import { Message } from '../../types/state/index';
|
|
3
2
|
import { RoomState } from '../../types/state/state/index';
|
|
4
|
-
export declare const roomsActions:
|
|
5
|
-
setRoomState
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
advancedSharingActive?: boolean | undefined;
|
|
9
|
-
configuration?: {
|
|
10
|
-
accessoryDeviceKeys?: string[] | undefined;
|
|
11
|
-
audioCodecKey?: string | undefined;
|
|
12
|
-
audioControlPointList: {
|
|
13
|
-
levelControls: {
|
|
14
|
-
[x: string]: {
|
|
15
|
-
type: import("../../types/state/LevelControlListItem").LevelControlType;
|
|
16
|
-
parentDeviceKey: string;
|
|
17
|
-
itemKey: string;
|
|
18
|
-
deviceKey: string;
|
|
19
|
-
name: string;
|
|
20
|
-
preferredName: string;
|
|
21
|
-
includeInUserList: boolean;
|
|
22
|
-
order: number;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
25
|
-
presets: {
|
|
26
|
-
[x: string]: {
|
|
27
|
-
parentDeviceKey: string;
|
|
28
|
-
itemKey: string;
|
|
29
|
-
deviceKey: string;
|
|
30
|
-
name: string;
|
|
31
|
-
preferredName: string;
|
|
32
|
-
includeInUserList: boolean;
|
|
33
|
-
order: number;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
cameraList?: {
|
|
38
|
-
[x: string]: {
|
|
39
|
-
deviceKey: string;
|
|
40
|
-
name: string;
|
|
41
|
-
preferredName: string;
|
|
42
|
-
icon: import("../../shared/Icons/iconsDictionary").IconNames;
|
|
43
|
-
altIcon: import("../../shared/Icons/iconsDictionary").IconNames;
|
|
44
|
-
includeInUserList: boolean;
|
|
45
|
-
order: number;
|
|
46
|
-
};
|
|
47
|
-
} | undefined;
|
|
48
|
-
ciscoNavigatorKey?: string | undefined;
|
|
49
|
-
defaultDisplayKey?: string | undefined;
|
|
50
|
-
defaultPresentationSourceKey: string;
|
|
51
|
-
destinationList: {
|
|
52
|
-
[x: string]: {
|
|
53
|
-
sinkKey: string;
|
|
54
|
-
preferredName: string;
|
|
55
|
-
name: string;
|
|
56
|
-
includeInDestinationList: boolean;
|
|
57
|
-
isCodecContentDestination: boolean;
|
|
58
|
-
isProgramAudioDestination: boolean;
|
|
59
|
-
order: number;
|
|
60
|
-
surfaceLocation: number;
|
|
61
|
-
verticalLocation: number;
|
|
62
|
-
horizontalLocation: number;
|
|
63
|
-
sinkType: import("../..").SignalType;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
destinations: {
|
|
67
|
-
defaultDisplay: string;
|
|
68
|
-
leftDisplay: string;
|
|
69
|
-
centerDisplay: string;
|
|
70
|
-
rightDisplay: string;
|
|
71
|
-
programAudio: string;
|
|
72
|
-
codecContent: string;
|
|
73
|
-
};
|
|
74
|
-
endpointKeys?: string[] | undefined;
|
|
75
|
-
environmentalDevices: {
|
|
76
|
-
deviceKey?: string | undefined;
|
|
77
|
-
deviceType?: import("../../types/state/index").EnvironmentalDeviceTypes | undefined;
|
|
78
|
-
}[];
|
|
79
|
-
hasAudioConferencing?: boolean | undefined;
|
|
80
|
-
hasEnvironmentalControls?: boolean | undefined;
|
|
81
|
-
hasVideoConferencing?: boolean | undefined;
|
|
82
|
-
helpMessage?: string | undefined;
|
|
83
|
-
matrixRoutingKey?: string | undefined;
|
|
84
|
-
roomCombinerKey?: string | undefined;
|
|
85
|
-
sourceList: {
|
|
86
|
-
[x: string]: {
|
|
87
|
-
disableCodecSharing: boolean;
|
|
88
|
-
disableRoutedSharing: boolean;
|
|
89
|
-
sourceKey: string;
|
|
90
|
-
order: number;
|
|
91
|
-
type: string;
|
|
92
|
-
icon: import("../../shared/Icons/iconsDictionary").IconNames;
|
|
93
|
-
sourceDevice: {
|
|
94
|
-
key: string;
|
|
95
|
-
name: string;
|
|
96
|
-
type: string;
|
|
97
|
-
group: string;
|
|
98
|
-
id: string;
|
|
99
|
-
properties: unknown;
|
|
100
|
-
};
|
|
101
|
-
name: string;
|
|
102
|
-
preferredName: string;
|
|
103
|
-
includeInSourceList: boolean;
|
|
104
|
-
isControllable: boolean;
|
|
105
|
-
isAudioSource: boolean;
|
|
106
|
-
};
|
|
107
|
-
};
|
|
108
|
-
supportsAdvancedSharing?: boolean | undefined;
|
|
109
|
-
techPassword?: string | undefined;
|
|
110
|
-
touchpanelKeys?: string[] | undefined;
|
|
111
|
-
uiBehavior?: {
|
|
112
|
-
disableActivityButtonsWhileWarmingCooling: boolean;
|
|
113
|
-
} | undefined;
|
|
114
|
-
userCanChangeShareMode?: boolean | undefined;
|
|
115
|
-
videoCodecIsZoomRoom?: boolean | undefined;
|
|
116
|
-
videoCodecKey?: string | undefined;
|
|
117
|
-
zoomRoomControllerKey?: string | undefined;
|
|
118
|
-
} | undefined;
|
|
119
|
-
isCoolingDown?: boolean | undefined;
|
|
120
|
-
isInCall?: boolean | undefined;
|
|
121
|
-
isOn?: boolean | undefined;
|
|
122
|
-
isWarmingUp?: boolean | undefined;
|
|
123
|
-
selectedSourceKey?: string | undefined;
|
|
124
|
-
share?: {
|
|
125
|
-
currentShareText: string;
|
|
126
|
-
enabled: boolean;
|
|
127
|
-
isSharing: boolean;
|
|
128
|
-
} | undefined;
|
|
129
|
-
volumes: {
|
|
130
|
-
[x: string]: {
|
|
131
|
-
key: string;
|
|
132
|
-
level: number;
|
|
133
|
-
muted: boolean;
|
|
134
|
-
hasMute?: boolean | undefined;
|
|
135
|
-
hasPrivacyMute?: boolean | undefined;
|
|
136
|
-
privacyMuted: boolean;
|
|
137
|
-
muteIconName?: string | undefined;
|
|
138
|
-
label: string;
|
|
139
|
-
rawValue: string;
|
|
140
|
-
units: import("../../types/state/index").VolumeLevelUnits;
|
|
141
|
-
};
|
|
142
|
-
};
|
|
143
|
-
scheduleEvents: {
|
|
144
|
-
key: string;
|
|
145
|
-
name: string;
|
|
146
|
-
time: string;
|
|
147
|
-
days: import("../../types/state/daysOfWeek").DaysOfWeek;
|
|
148
|
-
enable: boolean;
|
|
149
|
-
}[];
|
|
150
|
-
key: string;
|
|
151
|
-
name: string;
|
|
152
|
-
messageType?: string | undefined;
|
|
153
|
-
eventType?: string | undefined;
|
|
154
|
-
content?: unknown;
|
|
155
|
-
interfaces: string[];
|
|
156
|
-
commMonitor?: {
|
|
157
|
-
isOnline: boolean;
|
|
158
|
-
status: import("../../types/state/index").MonitorStatus;
|
|
159
|
-
} | undefined;
|
|
160
|
-
state: unknown;
|
|
161
|
-
Name: string;
|
|
162
|
-
};
|
|
163
|
-
}, action: PayloadAction<Message>): {
|
|
164
|
-
[x: string]: {
|
|
165
|
-
activityMode?: number | undefined;
|
|
166
|
-
advancedSharingActive?: boolean | undefined;
|
|
167
|
-
configuration?: {
|
|
168
|
-
accessoryDeviceKeys?: string[] | undefined;
|
|
169
|
-
audioCodecKey?: string | undefined;
|
|
170
|
-
audioControlPointList: {
|
|
171
|
-
levelControls: {
|
|
172
|
-
[x: string]: {
|
|
173
|
-
type: import("../../types/state/LevelControlListItem").LevelControlType;
|
|
174
|
-
parentDeviceKey: string;
|
|
175
|
-
itemKey: string;
|
|
176
|
-
deviceKey: string;
|
|
177
|
-
name: string;
|
|
178
|
-
preferredName: string;
|
|
179
|
-
includeInUserList: boolean;
|
|
180
|
-
order: number;
|
|
181
|
-
};
|
|
182
|
-
};
|
|
183
|
-
presets: {
|
|
184
|
-
[x: string]: {
|
|
185
|
-
parentDeviceKey: string;
|
|
186
|
-
itemKey: string;
|
|
187
|
-
deviceKey: string;
|
|
188
|
-
name: string;
|
|
189
|
-
preferredName: string;
|
|
190
|
-
includeInUserList: boolean;
|
|
191
|
-
order: number;
|
|
192
|
-
};
|
|
193
|
-
};
|
|
194
|
-
};
|
|
195
|
-
cameraList?: {
|
|
196
|
-
[x: string]: {
|
|
197
|
-
deviceKey: string;
|
|
198
|
-
name: string;
|
|
199
|
-
preferredName: string;
|
|
200
|
-
icon: import("../../shared/Icons/iconsDictionary").IconNames;
|
|
201
|
-
altIcon: import("../../shared/Icons/iconsDictionary").IconNames;
|
|
202
|
-
includeInUserList: boolean;
|
|
203
|
-
order: number;
|
|
204
|
-
};
|
|
205
|
-
} | undefined;
|
|
206
|
-
ciscoNavigatorKey?: string | undefined;
|
|
207
|
-
defaultDisplayKey?: string | undefined;
|
|
208
|
-
defaultPresentationSourceKey: string;
|
|
209
|
-
destinationList: {
|
|
210
|
-
[x: string]: {
|
|
211
|
-
sinkKey: string;
|
|
212
|
-
preferredName: string;
|
|
213
|
-
name: string;
|
|
214
|
-
includeInDestinationList: boolean;
|
|
215
|
-
isCodecContentDestination: boolean;
|
|
216
|
-
isProgramAudioDestination: boolean;
|
|
217
|
-
order: number;
|
|
218
|
-
surfaceLocation: number;
|
|
219
|
-
verticalLocation: number;
|
|
220
|
-
horizontalLocation: number;
|
|
221
|
-
sinkType: import("../..").SignalType;
|
|
222
|
-
};
|
|
223
|
-
};
|
|
224
|
-
destinations: {
|
|
225
|
-
defaultDisplay: string;
|
|
226
|
-
leftDisplay: string;
|
|
227
|
-
centerDisplay: string;
|
|
228
|
-
rightDisplay: string;
|
|
229
|
-
programAudio: string;
|
|
230
|
-
codecContent: string;
|
|
231
|
-
};
|
|
232
|
-
endpointKeys?: string[] | undefined;
|
|
233
|
-
environmentalDevices: {
|
|
234
|
-
deviceKey?: string | undefined;
|
|
235
|
-
deviceType?: import("../../types/state/index").EnvironmentalDeviceTypes | undefined;
|
|
236
|
-
}[];
|
|
237
|
-
hasAudioConferencing?: boolean | undefined;
|
|
238
|
-
hasEnvironmentalControls?: boolean | undefined;
|
|
239
|
-
hasVideoConferencing?: boolean | undefined;
|
|
240
|
-
helpMessage?: string | undefined;
|
|
241
|
-
matrixRoutingKey?: string | undefined;
|
|
242
|
-
roomCombinerKey?: string | undefined;
|
|
243
|
-
sourceList: {
|
|
244
|
-
[x: string]: {
|
|
245
|
-
disableCodecSharing: boolean;
|
|
246
|
-
disableRoutedSharing: boolean;
|
|
247
|
-
sourceKey: string;
|
|
248
|
-
order: number;
|
|
249
|
-
type: string;
|
|
250
|
-
icon: import("../../shared/Icons/iconsDictionary").IconNames;
|
|
251
|
-
sourceDevice: {
|
|
252
|
-
key: string;
|
|
253
|
-
name: string;
|
|
254
|
-
type: string;
|
|
255
|
-
group: string;
|
|
256
|
-
id: string;
|
|
257
|
-
properties: unknown;
|
|
258
|
-
};
|
|
259
|
-
name: string;
|
|
260
|
-
preferredName: string;
|
|
261
|
-
includeInSourceList: boolean;
|
|
262
|
-
isControllable: boolean;
|
|
263
|
-
isAudioSource: boolean;
|
|
264
|
-
};
|
|
265
|
-
};
|
|
266
|
-
supportsAdvancedSharing?: boolean | undefined;
|
|
267
|
-
techPassword?: string | undefined;
|
|
268
|
-
touchpanelKeys?: string[] | undefined;
|
|
269
|
-
uiBehavior?: {
|
|
270
|
-
disableActivityButtonsWhileWarmingCooling: boolean;
|
|
271
|
-
} | undefined;
|
|
272
|
-
userCanChangeShareMode?: boolean | undefined;
|
|
273
|
-
videoCodecIsZoomRoom?: boolean | undefined;
|
|
274
|
-
videoCodecKey?: string | undefined;
|
|
275
|
-
zoomRoomControllerKey?: string | undefined;
|
|
276
|
-
} | undefined;
|
|
277
|
-
isCoolingDown?: boolean | undefined;
|
|
278
|
-
isInCall?: boolean | undefined;
|
|
279
|
-
isOn?: boolean | undefined;
|
|
280
|
-
isWarmingUp?: boolean | undefined;
|
|
281
|
-
selectedSourceKey?: string | undefined;
|
|
282
|
-
share?: {
|
|
283
|
-
currentShareText: string;
|
|
284
|
-
enabled: boolean;
|
|
285
|
-
isSharing: boolean;
|
|
286
|
-
} | undefined;
|
|
287
|
-
volumes: {
|
|
288
|
-
[x: string]: {
|
|
289
|
-
key: string;
|
|
290
|
-
level: number;
|
|
291
|
-
muted: boolean;
|
|
292
|
-
hasMute?: boolean | undefined;
|
|
293
|
-
hasPrivacyMute?: boolean | undefined;
|
|
294
|
-
privacyMuted: boolean;
|
|
295
|
-
muteIconName?: string | undefined;
|
|
296
|
-
label: string;
|
|
297
|
-
rawValue: string;
|
|
298
|
-
units: import("../../types/state/index").VolumeLevelUnits;
|
|
299
|
-
};
|
|
300
|
-
};
|
|
301
|
-
scheduleEvents: {
|
|
302
|
-
key: string;
|
|
303
|
-
name: string;
|
|
304
|
-
time: string;
|
|
305
|
-
days: import("../../types/state/daysOfWeek").DaysOfWeek;
|
|
306
|
-
enable: boolean;
|
|
307
|
-
}[];
|
|
308
|
-
key: string;
|
|
309
|
-
name: string;
|
|
310
|
-
messageType?: string | undefined;
|
|
311
|
-
eventType?: string | undefined;
|
|
312
|
-
content?: unknown;
|
|
313
|
-
interfaces: string[];
|
|
314
|
-
commMonitor?: {
|
|
315
|
-
isOnline: boolean;
|
|
316
|
-
status: import("../../types/state/index").MonitorStatus;
|
|
317
|
-
} | undefined;
|
|
318
|
-
state: unknown;
|
|
319
|
-
Name: string;
|
|
320
|
-
};
|
|
321
|
-
} | undefined;
|
|
322
|
-
clearRooms(): Record<string, RoomState>;
|
|
323
|
-
}, "rooms">;
|
|
3
|
+
export declare const roomsActions: {
|
|
4
|
+
setRoomState: import("@reduxjs/toolkit").ActionCreatorWithPayload<Message, "rooms/setRoomState">;
|
|
5
|
+
clearRooms: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"rooms/clearRooms">;
|
|
6
|
+
};
|
|
324
7
|
export declare const roomsReducer: import("redux").Reducer<Record<string, RoomState>>;
|
|
325
8
|
//# sourceMappingURL=rooms.slice.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"rooms.slice.d.ts","sourceRoot":"","sources":["../../../src/lib/store/rooms/rooms.slice.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"rooms.slice.d.ts","sourceRoot":"","sources":["../../../src/lib/store/rooms/rooms.slice.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,OAAO,EAAE,MAAM,yBAAyB,CAAA;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,+BAA+B,CAAA;AA4CzD,eAAO,MAAM,YAAY;;;CAGxB,CAAA;AACD,eAAO,MAAM,YAAY,oDAAsB,CAAC"}
|
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
import { RootState } from 'src/lib';
|
|
2
|
+
export declare const selectWsIsConnected: ((state: {
|
|
3
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
4
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
5
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
6
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
7
|
+
ui: import("src/lib").UiConfigState;
|
|
8
|
+
}) => boolean) & {
|
|
9
|
+
clearCache: () => void;
|
|
10
|
+
resultsCount: () => number;
|
|
11
|
+
resetResultsCount: () => void;
|
|
12
|
+
} & {
|
|
13
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => boolean;
|
|
14
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => boolean) & {
|
|
15
|
+
clearCache: () => void;
|
|
16
|
+
resultsCount: () => number;
|
|
17
|
+
resetResultsCount: () => void;
|
|
18
|
+
};
|
|
19
|
+
lastResult: () => boolean;
|
|
20
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
21
|
+
recomputations: () => number;
|
|
22
|
+
resetRecomputations: () => void;
|
|
23
|
+
dependencyRecomputations: () => number;
|
|
24
|
+
resetDependencyRecomputations: () => void;
|
|
25
|
+
} & {
|
|
26
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
27
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
28
|
+
};
|
|
29
|
+
export declare const selectRoomKey: ((state: {
|
|
30
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
31
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
32
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
33
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
34
|
+
ui: import("src/lib").UiConfigState;
|
|
35
|
+
}) => string) & {
|
|
36
|
+
clearCache: () => void;
|
|
37
|
+
resultsCount: () => number;
|
|
38
|
+
resetResultsCount: () => void;
|
|
39
|
+
} & {
|
|
40
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string;
|
|
41
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string) & {
|
|
42
|
+
clearCache: () => void;
|
|
43
|
+
resultsCount: () => number;
|
|
44
|
+
resetResultsCount: () => void;
|
|
45
|
+
};
|
|
46
|
+
lastResult: () => string;
|
|
47
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
48
|
+
recomputations: () => number;
|
|
49
|
+
resetRecomputations: () => void;
|
|
50
|
+
dependencyRecomputations: () => number;
|
|
51
|
+
resetDependencyRecomputations: () => void;
|
|
52
|
+
} & {
|
|
53
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
54
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
55
|
+
};
|
|
56
|
+
export declare const selectClientId: ((state: {
|
|
57
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
58
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
59
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
60
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
61
|
+
ui: import("src/lib").UiConfigState;
|
|
62
|
+
}) => string | number) & {
|
|
63
|
+
clearCache: () => void;
|
|
64
|
+
resultsCount: () => number;
|
|
65
|
+
resetResultsCount: () => void;
|
|
66
|
+
} & {
|
|
67
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string | number;
|
|
68
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string | number) & {
|
|
69
|
+
clearCache: () => void;
|
|
70
|
+
resultsCount: () => number;
|
|
71
|
+
resetResultsCount: () => void;
|
|
72
|
+
};
|
|
73
|
+
lastResult: () => string | number;
|
|
74
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
75
|
+
recomputations: () => number;
|
|
76
|
+
resetRecomputations: () => void;
|
|
77
|
+
dependencyRecomputations: () => number;
|
|
78
|
+
resetDependencyRecomputations: () => void;
|
|
79
|
+
} & {
|
|
80
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
81
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
82
|
+
};
|
|
83
|
+
export declare const selectSystemUuid: ((state: {
|
|
84
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
85
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
86
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
87
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
88
|
+
ui: import("src/lib").UiConfigState;
|
|
89
|
+
}) => string) & {
|
|
90
|
+
clearCache: () => void;
|
|
91
|
+
resultsCount: () => number;
|
|
92
|
+
resetResultsCount: () => void;
|
|
93
|
+
} & {
|
|
94
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string;
|
|
95
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string) & {
|
|
96
|
+
clearCache: () => void;
|
|
97
|
+
resultsCount: () => number;
|
|
98
|
+
resetResultsCount: () => void;
|
|
99
|
+
};
|
|
100
|
+
lastResult: () => string;
|
|
101
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
102
|
+
recomputations: () => number;
|
|
103
|
+
resetRecomputations: () => void;
|
|
104
|
+
dependencyRecomputations: () => number;
|
|
105
|
+
resetDependencyRecomputations: () => void;
|
|
106
|
+
} & {
|
|
107
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
108
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
109
|
+
};
|
|
110
|
+
export declare const selectUserCode: ((state: {
|
|
111
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
112
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
113
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
114
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
115
|
+
ui: import("src/lib").UiConfigState;
|
|
116
|
+
}) => string) & {
|
|
117
|
+
clearCache: () => void;
|
|
118
|
+
resultsCount: () => number;
|
|
119
|
+
resetResultsCount: () => void;
|
|
120
|
+
} & {
|
|
121
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string;
|
|
122
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string) & {
|
|
123
|
+
clearCache: () => void;
|
|
124
|
+
resultsCount: () => number;
|
|
125
|
+
resetResultsCount: () => void;
|
|
126
|
+
};
|
|
127
|
+
lastResult: () => string;
|
|
128
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
129
|
+
recomputations: () => number;
|
|
130
|
+
resetRecomputations: () => void;
|
|
131
|
+
dependencyRecomputations: () => number;
|
|
132
|
+
resetDependencyRecomputations: () => void;
|
|
133
|
+
} & {
|
|
134
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
135
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
136
|
+
};
|
|
137
|
+
export declare const selectServerIsRunningOnProcessorHardware: ((state: {
|
|
138
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
139
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
140
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
141
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
142
|
+
ui: import("src/lib").UiConfigState;
|
|
143
|
+
}) => boolean | undefined) & {
|
|
144
|
+
clearCache: () => void;
|
|
145
|
+
resultsCount: () => number;
|
|
146
|
+
resetResultsCount: () => void;
|
|
147
|
+
} & {
|
|
148
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => boolean | undefined;
|
|
149
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => boolean | undefined) & {
|
|
150
|
+
clearCache: () => void;
|
|
151
|
+
resultsCount: () => number;
|
|
152
|
+
resetResultsCount: () => void;
|
|
153
|
+
};
|
|
154
|
+
lastResult: () => boolean | undefined;
|
|
155
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
156
|
+
recomputations: () => number;
|
|
157
|
+
resetRecomputations: () => void;
|
|
158
|
+
dependencyRecomputations: () => number;
|
|
159
|
+
resetDependencyRecomputations: () => void;
|
|
160
|
+
} & {
|
|
161
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
162
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
163
|
+
};
|
|
164
|
+
export declare const selectRuntimeInfo: ((state: {
|
|
165
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
166
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
167
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
168
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
169
|
+
ui: import("src/lib").UiConfigState;
|
|
170
|
+
}) => {
|
|
171
|
+
pluginVersion: string;
|
|
172
|
+
essentialsVersion: string;
|
|
173
|
+
pepperDashCoreVersion: string;
|
|
174
|
+
essentialsPlugins: {
|
|
175
|
+
name: string;
|
|
176
|
+
version: string;
|
|
177
|
+
}[];
|
|
178
|
+
} | undefined) & {
|
|
179
|
+
clearCache: () => void;
|
|
180
|
+
resultsCount: () => number;
|
|
181
|
+
resetResultsCount: () => void;
|
|
182
|
+
} & {
|
|
183
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => {
|
|
184
|
+
pluginVersion: string;
|
|
185
|
+
essentialsVersion: string;
|
|
186
|
+
pepperDashCoreVersion: string;
|
|
187
|
+
essentialsPlugins: {
|
|
188
|
+
name: string;
|
|
189
|
+
version: string;
|
|
190
|
+
}[];
|
|
191
|
+
} | undefined;
|
|
192
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => {
|
|
193
|
+
pluginVersion: string;
|
|
194
|
+
essentialsVersion: string;
|
|
195
|
+
pepperDashCoreVersion: string;
|
|
196
|
+
essentialsPlugins: {
|
|
197
|
+
name: string;
|
|
198
|
+
version: string;
|
|
199
|
+
}[];
|
|
200
|
+
} | undefined) & {
|
|
201
|
+
clearCache: () => void;
|
|
202
|
+
resultsCount: () => number;
|
|
203
|
+
resetResultsCount: () => void;
|
|
204
|
+
};
|
|
205
|
+
lastResult: () => {
|
|
206
|
+
pluginVersion: string;
|
|
207
|
+
essentialsVersion: string;
|
|
208
|
+
pepperDashCoreVersion: string;
|
|
209
|
+
essentialsPlugins: {
|
|
210
|
+
name: string;
|
|
211
|
+
version: string;
|
|
212
|
+
}[];
|
|
213
|
+
} | undefined;
|
|
214
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
215
|
+
recomputations: () => number;
|
|
216
|
+
resetRecomputations: () => void;
|
|
217
|
+
dependencyRecomputations: () => number;
|
|
218
|
+
resetDependencyRecomputations: () => void;
|
|
219
|
+
} & {
|
|
220
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
221
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
222
|
+
};
|
|
223
|
+
export declare const selectTouchpanelKey: ((state: {
|
|
224
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
225
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
226
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
227
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
228
|
+
ui: import("src/lib").UiConfigState;
|
|
229
|
+
}) => string) & {
|
|
230
|
+
clearCache: () => void;
|
|
231
|
+
resultsCount: () => number;
|
|
232
|
+
resetResultsCount: () => void;
|
|
233
|
+
} & {
|
|
234
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string;
|
|
235
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => string) & {
|
|
236
|
+
clearCache: () => void;
|
|
237
|
+
resultsCount: () => number;
|
|
238
|
+
resetResultsCount: () => void;
|
|
239
|
+
};
|
|
240
|
+
lastResult: () => string;
|
|
241
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
242
|
+
recomputations: () => number;
|
|
243
|
+
resetRecomputations: () => void;
|
|
244
|
+
dependencyRecomputations: () => number;
|
|
245
|
+
resetDependencyRecomputations: () => void;
|
|
246
|
+
} & {
|
|
247
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
248
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
249
|
+
};
|
|
250
|
+
export declare const selectIsTouchpanel: ((state: {
|
|
251
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
252
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
253
|
+
rooms: Record<string, import("src/lib").RoomState>;
|
|
254
|
+
devices: Record<string, import("src/lib").DeviceState>;
|
|
255
|
+
ui: import("src/lib").UiConfigState;
|
|
256
|
+
}) => boolean) & {
|
|
257
|
+
clearCache: () => void;
|
|
258
|
+
resultsCount: () => number;
|
|
259
|
+
resetResultsCount: () => void;
|
|
260
|
+
} & {
|
|
261
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => boolean;
|
|
262
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => boolean) & {
|
|
263
|
+
clearCache: () => void;
|
|
264
|
+
resultsCount: () => number;
|
|
265
|
+
resetResultsCount: () => void;
|
|
266
|
+
};
|
|
267
|
+
lastResult: () => boolean;
|
|
268
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
269
|
+
recomputations: () => number;
|
|
270
|
+
resetRecomputations: () => void;
|
|
271
|
+
dependencyRecomputations: () => number;
|
|
272
|
+
resetDependencyRecomputations: () => void;
|
|
273
|
+
} & {
|
|
274
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
275
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
276
|
+
};
|
|
277
|
+
//# sourceMappingURL=runtime.hooks.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runtime.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/runtimeConfig/runtime.hooks.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAKpC,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;2BAFH,SAAS;;;;;;;;CAKrC,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;2BAPG,SAAS;;;;;;;;CAUrC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;2BAZE,SAAS;;;;;;;;CAerC,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;2BAjBA,SAAS;;;;;;;;CAoBrC,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;2BAtBE,SAAS;;;;;;;;CAyBrC,CAAC;AAEF,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;2BA3BxB,SAAS;;;;;;;;CA8BrC,CAAC;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2BAhCD,SAAS;;;;;;;;CAmCrC,CAAC;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;2BArCH,SAAS;;;;;;;;CAwCrC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;2BA1CF,SAAS;;;;;;;;CA6CrC,CAAC"}
|
|
@@ -15,4 +15,4 @@ export declare const useRuntimeInfo: () => {
|
|
|
15
15
|
} | undefined;
|
|
16
16
|
export declare const useTouchpanelKey: () => string;
|
|
17
17
|
export declare const useIsTouchpanel: () => boolean;
|
|
18
|
-
//# sourceMappingURL=
|
|
18
|
+
//# sourceMappingURL=runtime.selectors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"runtime.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/runtimeConfig/runtime.selectors.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,gBAAgB,eAA4C,CAAC;AAE1E,eAAO,MAAM,UAAU,cAAsC,CAAC;AAE9D,eAAO,MAAM,WAAW,uBAAuC,CAAC;AAEhE,eAAO,MAAM,aAAa,cAAyC,CAAC;AAEpE,eAAO,MAAM,WAAW,cAAuC,CAAC;AAEhE,eAAO,MAAM,qCAAqC,2BAAiE,CAAC;AAEpH,eAAO,MAAM,cAAc;;;;;;;;aAA0C,CAAC;AAEtE,eAAO,MAAM,gBAAgB,cAA4C,CAAC;AAE1E,eAAO,MAAM,eAAe,eAA2C,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { DeviceState } from 'src/lib';
|
|
1
2
|
export type MonitorStatus = 'StatusUnknown' | 'IsOk' | 'InWarning' | 'InError';
|
|
2
|
-
export interface CommunicationMonitorState {
|
|
3
|
+
export interface CommunicationMonitorState extends DeviceState {
|
|
3
4
|
isOnline: boolean;
|
|
4
5
|
status: MonitorStatus;
|
|
5
6
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CommunicationMonitorState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/CommunicationMonitorState.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,aAAa,GAAG,eAAe,GAAG,MAAM,GAAG,WAAW,GAAG,SAAS,CAAC;AAE/E,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"CommunicationMonitorState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/CommunicationMonitorState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,MAAM,MAAM,aAAa,GAAG,eAAe,GAAG,MAAM,GAAG,WAAW,GAAG,SAAS,CAAC;AAE/E,MAAM,WAAW,yBAA0B,SAAQ,WAAW;IAC5D,QAAQ,EAAE,OAAO,CAAC;IAElB,MAAM,EAAE,aAAa,CAAC;CACvB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DeviceInfoState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/DeviceInfoState.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"DeviceInfoState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/DeviceInfoState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC,MAAM,WAAW,eAAiB,SAAQ,WAAW;IACjD,UAAU,EAAE,UAAU,CAAC;CAC1B;AAED,MAAM,WAAW,UAAU;IACvB,QAAQ,EAAE,MAAM,CAAC;IAEjB,SAAS,EAAE,MAAM,CAAC;IAElB,UAAU,EAAE,MAAM,CAAC;IAEnB,YAAY,EAAE,MAAM,CAAC;IAErB,eAAe,EAAE,MAAM,CAAC;CAC3B"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { DeviceState } from 'src/lib';
|
|
1
2
|
import { Volume } from '../volume/volume';
|
|
2
|
-
export interface IBasicVolumeWithFeedbackState {
|
|
3
|
+
export interface IBasicVolumeWithFeedbackState extends DeviceState {
|
|
3
4
|
volume: Volume;
|
|
4
5
|
}
|
|
5
6
|
//# sourceMappingURL=IBasicVolumeWithFeedbackState.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"IBasicVolumeWithFeedbackState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/IBasicVolumeWithFeedbackState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE1C,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"IBasicVolumeWithFeedbackState.d.ts","sourceRoot":"","sources":["../../../../src/lib/types/state/state/IBasicVolumeWithFeedbackState.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AACtC,OAAO,EAAE,MAAM,EAAE,MAAM,kBAAkB,CAAC;AAE1C,MAAM,WAAW,6BAA8B,SAAQ,WAAW;IAChE,MAAM,EAAE,MAAM,CAAC;CAChB"}
|