@matterbridge/types 3.7.2-dev-20260331-ac050d8 → 3.7.2-dev-20260402-c12a10e
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.
|
@@ -8,9 +8,12 @@ export declare const typ = "\u001B[38;5;207m";
|
|
|
8
8
|
export declare const MATTERBRIDGE_LOGGER_FILE = "matterbridge.log";
|
|
9
9
|
export declare const MATTER_LOGGER_FILE = "matter.log";
|
|
10
10
|
export declare const NODE_STORAGE_DIR = "storage";
|
|
11
|
-
export declare const
|
|
11
|
+
export declare const MATTER_STORAGE_DIR = "matterstorage";
|
|
12
12
|
export declare const MATTERBRIDGE_DIAGNOSTIC_FILE = "diagnostic.log";
|
|
13
13
|
export declare const MATTERBRIDGE_HISTORY_FILE = "history.html";
|
|
14
|
+
export declare const MATTERBRIDGE_BACKUP_FILE = "matterbridge.backup.zip";
|
|
15
|
+
export declare const MATTERBRIDGE_PLUGIN_STORAGE_FILE = "matterbridge.pluginstorage.zip";
|
|
16
|
+
export declare const MATTERBRIDGE_PLUGIN_CONFIG_FILE = "matterbridge.pluginconfig.zip";
|
|
14
17
|
export type MaybePromise<T> = T | Promise<T>;
|
|
15
18
|
export type PluginName = string;
|
|
16
19
|
export type SharedMatterbridge = Readonly<{
|
|
@@ -64,8 +67,6 @@ export type SharedMatterbridge = Readonly<{
|
|
|
64
67
|
port: number | undefined;
|
|
65
68
|
discriminator: number | undefined;
|
|
66
69
|
passcode: number | undefined;
|
|
67
|
-
shellySysUpdate: boolean;
|
|
68
|
-
shellyMainUpdate: boolean;
|
|
69
70
|
}>;
|
|
70
71
|
export interface ApiPlugin extends StoragePlugin {
|
|
71
72
|
latestVersion?: string;
|
|
@@ -143,7 +144,7 @@ export interface MatterbridgeInformation {
|
|
|
143
144
|
shellyMainUpdate: boolean;
|
|
144
145
|
loggerLevel: LogLevel;
|
|
145
146
|
fileLogger: boolean;
|
|
146
|
-
matterLoggerLevel:
|
|
147
|
+
matterLoggerLevel: LogLevel;
|
|
147
148
|
matterFileLogger: boolean;
|
|
148
149
|
matterMdnsInterface: string | undefined;
|
|
149
150
|
matterIpv4Address: string | undefined;
|
|
@@ -4,6 +4,9 @@ export const typ = '\u001B[38;5;207m';
|
|
|
4
4
|
export const MATTERBRIDGE_LOGGER_FILE = 'matterbridge.log';
|
|
5
5
|
export const MATTER_LOGGER_FILE = 'matter.log';
|
|
6
6
|
export const NODE_STORAGE_DIR = 'storage';
|
|
7
|
-
export const
|
|
7
|
+
export const MATTER_STORAGE_DIR = 'matterstorage';
|
|
8
8
|
export const MATTERBRIDGE_DIAGNOSTIC_FILE = 'diagnostic.log';
|
|
9
9
|
export const MATTERBRIDGE_HISTORY_FILE = 'history.html';
|
|
10
|
+
export const MATTERBRIDGE_BACKUP_FILE = 'matterbridge.backup.zip';
|
|
11
|
+
export const MATTERBRIDGE_PLUGIN_STORAGE_FILE = 'matterbridge.pluginstorage.zip';
|
|
12
|
+
export const MATTERBRIDGE_PLUGIN_CONFIG_FILE = 'matterbridge.pluginconfig.zip';
|
package/package.json
CHANGED