@placeos/ts-client 4.7.7 → 4.7.10
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/drivers/driver.d.ts +3 -0
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +948 -934
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/modules/module.d.ts +3 -0
- package/dist/systems/system.d.ts +2 -2
- package/package.json +1 -1
- package/src/auth/functions.ts +28 -5
- package/src/drivers/driver.ts +4 -0
- package/src/modules/module.ts +4 -0
- package/src/systems/system.ts +3 -3
package/dist/drivers/driver.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AlertSeverity } from '../alerts/alert';
|
|
1
2
|
import { PlaceResource } from '../resources/resource';
|
|
2
3
|
import { PlaceSettings } from '../settings/settings';
|
|
3
4
|
import { PlaceDriverRole } from './enums';
|
|
@@ -30,6 +31,8 @@ export declare class PlaceDriver extends PlaceResource {
|
|
|
30
31
|
author: string;
|
|
31
32
|
date: string;
|
|
32
33
|
};
|
|
34
|
+
/** */
|
|
35
|
+
readonly alert_level: AlertSeverity;
|
|
33
36
|
/** Tuple of user settings of differring encryption levels for the driver */
|
|
34
37
|
readonly settings: [
|
|
35
38
|
PlaceSettings | null,
|