@pepperdash/mobile-control-react-app-core 1.21.0-feature-export-useCameraBase.7 → 1.21.0-feature-add-deviceInterfaceSupport-to-joinroom-response.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/dist/mobile-control-react-app-core.es.js +507 -501
- package/dist/mobile-control-react-app-core.umd.js +9 -9
- package/dist/store/runtimeConfig/runtime.hooks.d.ts +3 -0
- package/dist/store/runtimeConfig/runtime.hooks.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtime.selectors.d.ts +35 -0
- package/dist/store/runtimeConfig/runtime.selectors.d.ts.map +1 -1
- package/dist/store/runtimeConfig/runtimeConfig.slice.d.ts +56 -0
- package/dist/store/runtimeConfig/runtimeConfig.slice.d.ts.map +1 -1
- package/dist/types/classes/room-data.d.ts +7 -1
- package/dist/types/classes/room-data.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -15,4 +15,7 @@ export declare const useRuntimeInfo: () => {
|
|
|
15
15
|
} | undefined;
|
|
16
16
|
export declare const useTouchpanelKey: () => string;
|
|
17
17
|
export declare const useIsTouchpanel: () => boolean;
|
|
18
|
+
export declare const useDeviceInterfaceSupport: () => {
|
|
19
|
+
[key: string]: import("../..").DeviceInterfaceInfo;
|
|
20
|
+
} | undefined;
|
|
18
21
|
//# sourceMappingURL=runtime.hooks.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/runtimeConfig/runtime.hooks.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"runtime.hooks.d.ts","sourceRoot":"","sources":["../../../src/lib/store/runtimeConfig/runtime.hooks.ts"],"names":[],"mappings":"AAcA,eAAO,MAAM,gBAAgB,2BAA4C,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,2BACQ,CAAC;AAE3D,eAAO,MAAM,cAAc;;;;;;;;aAA0C,CAAC;AAEtE,eAAO,MAAM,gBAAgB,cAA4C,CAAC;AAE1E,eAAO,MAAM,eAAe,eAA2C,CAAC;AAExE,eAAO,MAAM,yBAAyB;;aACQ,CAAC"}
|
|
@@ -274,4 +274,39 @@ export declare const selectIsTouchpanel: ((state: {
|
|
|
274
274
|
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
275
275
|
memoize: typeof import("reselect").weakMapMemoize;
|
|
276
276
|
};
|
|
277
|
+
export declare const selectDeviceInterfaceSupport: ((state: {
|
|
278
|
+
appConfig: import("../appConfig/appConfig.slice").AppConfigState;
|
|
279
|
+
runtimeConfig: import("./runtimeConfig.slice").RuntimeConfigState;
|
|
280
|
+
rooms: Record<string, import("../..").RoomState>;
|
|
281
|
+
devices: Record<string, import("../..").DeviceState>;
|
|
282
|
+
ui: import("../..").UiConfigState;
|
|
283
|
+
}) => {
|
|
284
|
+
[key: string]: import("../..").DeviceInterfaceInfo;
|
|
285
|
+
} | undefined) & {
|
|
286
|
+
clearCache: () => void;
|
|
287
|
+
resultsCount: () => number;
|
|
288
|
+
resetResultsCount: () => void;
|
|
289
|
+
} & {
|
|
290
|
+
resultFunc: (resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => {
|
|
291
|
+
[key: string]: import("../..").DeviceInterfaceInfo;
|
|
292
|
+
} | undefined;
|
|
293
|
+
memoizedResultFunc: ((resultFuncArgs_0: import("./runtimeConfig.slice").RuntimeConfigState) => {
|
|
294
|
+
[key: string]: import("../..").DeviceInterfaceInfo;
|
|
295
|
+
} | undefined) & {
|
|
296
|
+
clearCache: () => void;
|
|
297
|
+
resultsCount: () => number;
|
|
298
|
+
resetResultsCount: () => void;
|
|
299
|
+
};
|
|
300
|
+
lastResult: () => {
|
|
301
|
+
[key: string]: import("../..").DeviceInterfaceInfo;
|
|
302
|
+
} | undefined;
|
|
303
|
+
dependencies: [(state: RootState) => import("./runtimeConfig.slice").RuntimeConfigState];
|
|
304
|
+
recomputations: () => number;
|
|
305
|
+
resetRecomputations: () => void;
|
|
306
|
+
dependencyRecomputations: () => number;
|
|
307
|
+
resetDependencyRecomputations: () => void;
|
|
308
|
+
} & {
|
|
309
|
+
argsMemoize: typeof import("reselect").weakMapMemoize;
|
|
310
|
+
memoize: typeof import("reselect").weakMapMemoize;
|
|
311
|
+
};
|
|
277
312
|
//# sourceMappingURL=runtime.selectors.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtime.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/runtimeConfig/runtime.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"runtime.selectors.d.ts","sourceRoot":"","sources":["../../../src/lib/store/runtimeConfig/runtime.selectors.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAIlC,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;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;2BA/CZ,SAAS;;;;;;;;CAkDrC,CAAC"}
|
|
@@ -56,6 +56,13 @@ export declare const runtimeConfigActions: import("@reduxjs/toolkit").CaseReduce
|
|
|
56
56
|
codeExpires?: Date | undefined;
|
|
57
57
|
enableDebug?: boolean | undefined;
|
|
58
58
|
qrUrl: string;
|
|
59
|
+
deviceInterfaceSupport?: {
|
|
60
|
+
[x: string]: {
|
|
61
|
+
interfaces: string[];
|
|
62
|
+
key: string;
|
|
63
|
+
name: string;
|
|
64
|
+
};
|
|
65
|
+
} | undefined;
|
|
59
66
|
};
|
|
60
67
|
currentRoomKey: string;
|
|
61
68
|
touchpanelKey: string;
|
|
@@ -98,6 +105,13 @@ export declare const runtimeConfigActions: import("@reduxjs/toolkit").CaseReduce
|
|
|
98
105
|
codeExpires?: Date | undefined;
|
|
99
106
|
enableDebug?: boolean | undefined;
|
|
100
107
|
qrUrl: string;
|
|
108
|
+
deviceInterfaceSupport?: {
|
|
109
|
+
[x: string]: {
|
|
110
|
+
interfaces: string[];
|
|
111
|
+
key: string;
|
|
112
|
+
name: string;
|
|
113
|
+
};
|
|
114
|
+
} | undefined;
|
|
101
115
|
};
|
|
102
116
|
currentRoomKey: string;
|
|
103
117
|
touchpanelKey: string;
|
|
@@ -140,6 +154,13 @@ export declare const runtimeConfigActions: import("@reduxjs/toolkit").CaseReduce
|
|
|
140
154
|
codeExpires?: Date | undefined;
|
|
141
155
|
enableDebug?: boolean | undefined;
|
|
142
156
|
qrUrl: string;
|
|
157
|
+
deviceInterfaceSupport?: {
|
|
158
|
+
[x: string]: {
|
|
159
|
+
interfaces: string[];
|
|
160
|
+
key: string;
|
|
161
|
+
name: string;
|
|
162
|
+
};
|
|
163
|
+
} | undefined;
|
|
143
164
|
};
|
|
144
165
|
currentRoomKey: string;
|
|
145
166
|
touchpanelKey: string;
|
|
@@ -182,6 +203,13 @@ export declare const runtimeConfigActions: import("@reduxjs/toolkit").CaseReduce
|
|
|
182
203
|
codeExpires?: Date | undefined;
|
|
183
204
|
enableDebug?: boolean | undefined;
|
|
184
205
|
qrUrl: string;
|
|
206
|
+
deviceInterfaceSupport?: {
|
|
207
|
+
[x: string]: {
|
|
208
|
+
interfaces: string[];
|
|
209
|
+
key: string;
|
|
210
|
+
name: string;
|
|
211
|
+
};
|
|
212
|
+
} | undefined;
|
|
185
213
|
};
|
|
186
214
|
currentRoomKey: string;
|
|
187
215
|
touchpanelKey: string;
|
|
@@ -224,6 +252,13 @@ export declare const runtimeConfigActions: import("@reduxjs/toolkit").CaseReduce
|
|
|
224
252
|
codeExpires?: Date | undefined;
|
|
225
253
|
enableDebug?: boolean | undefined;
|
|
226
254
|
qrUrl: string;
|
|
255
|
+
deviceInterfaceSupport?: {
|
|
256
|
+
[x: string]: {
|
|
257
|
+
interfaces: string[];
|
|
258
|
+
key: string;
|
|
259
|
+
name: string;
|
|
260
|
+
};
|
|
261
|
+
} | undefined;
|
|
227
262
|
};
|
|
228
263
|
currentRoomKey: string;
|
|
229
264
|
touchpanelKey: string;
|
|
@@ -266,6 +301,13 @@ export declare const runtimeConfigActions: import("@reduxjs/toolkit").CaseReduce
|
|
|
266
301
|
codeExpires?: Date | undefined;
|
|
267
302
|
enableDebug?: boolean | undefined;
|
|
268
303
|
qrUrl: string;
|
|
304
|
+
deviceInterfaceSupport?: {
|
|
305
|
+
[x: string]: {
|
|
306
|
+
interfaces: string[];
|
|
307
|
+
key: string;
|
|
308
|
+
name: string;
|
|
309
|
+
};
|
|
310
|
+
} | undefined;
|
|
269
311
|
};
|
|
270
312
|
currentRoomKey: string;
|
|
271
313
|
touchpanelKey: string;
|
|
@@ -308,6 +350,13 @@ export declare const runtimeConfigActions: import("@reduxjs/toolkit").CaseReduce
|
|
|
308
350
|
codeExpires?: Date | undefined;
|
|
309
351
|
enableDebug?: boolean | undefined;
|
|
310
352
|
qrUrl: string;
|
|
353
|
+
deviceInterfaceSupport?: {
|
|
354
|
+
[x: string]: {
|
|
355
|
+
interfaces: string[];
|
|
356
|
+
key: string;
|
|
357
|
+
name: string;
|
|
358
|
+
};
|
|
359
|
+
} | undefined;
|
|
311
360
|
};
|
|
312
361
|
currentRoomKey: string;
|
|
313
362
|
touchpanelKey: string;
|
|
@@ -350,6 +399,13 @@ export declare const runtimeConfigActions: import("@reduxjs/toolkit").CaseReduce
|
|
|
350
399
|
codeExpires?: Date | undefined;
|
|
351
400
|
enableDebug?: boolean | undefined;
|
|
352
401
|
qrUrl: string;
|
|
402
|
+
deviceInterfaceSupport?: {
|
|
403
|
+
[x: string]: {
|
|
404
|
+
interfaces: string[];
|
|
405
|
+
key: string;
|
|
406
|
+
name: string;
|
|
407
|
+
};
|
|
408
|
+
} | undefined;
|
|
353
409
|
};
|
|
354
410
|
currentRoomKey: string;
|
|
355
411
|
touchpanelKey: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"runtimeConfig.slice.d.ts","sourceRoot":"","sources":["../../../src/lib/store/runtimeConfig/runtimeConfig.slice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"runtimeConfig.slice.d.ts","sourceRoot":"","sources":["../../../src/lib/store/runtimeConfig/runtimeConfig.slice.ts"],"names":[],"mappings":"AAAA,OAAO,EAAe,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAE,QAAQ,EAAE,MAAM,mBAAmB,CAAC;AAsE7C,MAAM,WAAW,kBAAkB;IACjC,UAAU,EAAE,MAAM,CAAC;IACnB,kCAAkC,EAAE,OAAO,GAAG,SAAS,CAAC;IACxD,SAAS,EAAE;QACT,WAAW,CAAC,EAAE,OAAO,CAAC;KACvB,CAAC;IACF,aAAa,EAAE,MAAM,CAAC;IACtB,oBAAoB,EAAE,MAAM,CAAC;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,QAAQ,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED,MAAM,WAAW,QAAQ;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;CACf;AAED,eAAO,MAAM,oBAAoB;;oBAlBnB,MAAM;4CACkB,OAAO,GAAG,SAAS;;;;uBAIxC,MAAM;8BACC,MAAM;eACrB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAEG,MAAM;uBACP,MAAM;eA1Ca,cAAc,kBAAkB,CAAC;;oBAgCvD,MAAM;4CACkB,OAAO,GAAG,SAAS;;;;uBAIxC,MAAM;8BACC,MAAM;eACrB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAEG,MAAM;uBACP,MAAM;eArCK,cAAc,MAAM,CAAC;;oBA2BnC,MAAM;4CACkB,OAAO,GAAG,SAAS;;;;uBAIxC,MAAM;8BACC,MAAM;eACrB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAEG,MAAM;uBACP,MAAM;eAlCoB,cAAc,OAAO,CAAC;;oBAwBnD,MAAM;4CACkB,OAAO,GAAG,SAAS;;;;uBAIxC,MAAM;8BACC,MAAM;eACrB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAEG,MAAM;uBACP,MAAM;eA/Ba,cAAc,MAAM,CAAC;;oBAqB3C,MAAM;4CACkB,OAAO,GAAG,SAAS;;;;uBAIxC,MAAM;8BACC,MAAM;eACrB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAEG,MAAM;uBACP,MAAM;eA5BQ,cAAc,QAAQ,CAAC;;oBAkBxC,MAAM;4CACkB,OAAO,GAAG,SAAS;;;;uBAIxC,MAAM;8BACC,MAAM;eACrB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAEG,MAAM;uBACP,MAAM;eAzBc,cAAc,MAAM,CAAC;;oBAe5C,MAAM;4CACkB,OAAO,GAAG,SAAS;;;;uBAIxC,MAAM;8BACC,MAAM;eACrB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAEG,MAAM;uBACP,MAAM;eArBQ,cAAc,QAAQ,CAAC;;oBAWxC,MAAM;4CACkB,OAAO,GAAG,SAAS;;;;uBAIxC,MAAM;8BACC,MAAM;eACrB,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAEG,MAAM;uBACP,MAAM;eAjBa,cAAc,MAAM,CAAC;mBAyBK,CAAC;AAC/D,eAAO,MAAM,oBAAoB,6CAA6B,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IKeyName } from
|
|
1
|
+
import { IKeyName } from '../interfaces';
|
|
2
2
|
export interface RoomData {
|
|
3
3
|
clientId: string | number;
|
|
4
4
|
roomKey: string;
|
|
@@ -10,6 +10,12 @@ export interface RoomData {
|
|
|
10
10
|
codeExpires?: Date;
|
|
11
11
|
enableDebug?: boolean;
|
|
12
12
|
qrUrl: string;
|
|
13
|
+
deviceInterfaceSupport?: {
|
|
14
|
+
[key: string]: DeviceInterfaceInfo;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
export interface DeviceInterfaceInfo extends IKeyName {
|
|
18
|
+
interfaces: string[];
|
|
13
19
|
}
|
|
14
20
|
export interface EssentialsConfig {
|
|
15
21
|
runtimeInfo: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"room-data.d.ts","sourceRoot":"","sources":["../../../src/lib/types/classes/room-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,MAAM,WAAW,QAAQ;IACvB,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"room-data.d.ts","sourceRoot":"","sources":["../../../src/lib/types/classes/room-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,MAAM,WAAW,QAAQ;IACvB,QAAQ,EAAE,MAAM,GAAG,MAAM,CAAC;IAC1B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,sBAAsB,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,mBAAmB,CAAA;KAAE,CAAC;CACjE;AAED,MAAM,WAAW,mBAAoB,SAAQ,QAAQ;IACnD,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB;AAED,MAAM,WAAW,gBAAgB;IAC/B,WAAW,EAAE;QACX,aAAa,EAAE,MAAM,CAAC;QACtB,iBAAiB,EAAE,MAAM,CAAC;QAC1B,qBAAqB,EAAE,MAAM,CAAC;QAC9B,iBAAiB,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,OAAO,EAAE,MAAM,CAAA;SAAE,EAAE,CAAC;KACxD,CAAC;IACF,KAAK,EAAE,cAAc,EAAE,CAAC;IACxB,OAAO,EAAE,gBAAgB,EAAE,CAAC;CAC7B;AAED,MAAM,WAAW,cAAe,SAAQ,QAAQ;CAAG;AAEnD,MAAM,WAAW,gBAAiB,SAAQ,QAAQ;CAAG"}
|
package/package.json
CHANGED