matterbridge 1.2.12 → 1.2.14
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/CHANGELOG.md +30 -0
- package/README.md +9 -4
- package/dist/BridgedDeviceBasicInformationCluster.d.ts +223 -0
- package/dist/BridgedDeviceBasicInformationCluster.d.ts.map +1 -0
- package/dist/BridgedDeviceBasicInformationCluster.js +176 -0
- package/dist/BridgedDeviceBasicInformationCluster.js.map +1 -0
- package/dist/defaultConfigSchema.d.ts +28 -0
- package/dist/defaultConfigSchema.d.ts.map +1 -0
- package/dist/defaultConfigSchema.js +217 -0
- package/dist/defaultConfigSchema.js.map +1 -0
- package/dist/matterbridge.d.ts +22 -0
- package/dist/matterbridge.d.ts.map +1 -1
- package/dist/matterbridge.js +284 -70
- package/dist/matterbridge.js.map +1 -1
- package/dist/matterbridgeAccessoryPlatform.d.ts.map +1 -1
- package/dist/matterbridgeAccessoryPlatform.js.map +1 -1
- package/dist/matterbridgeDevice.d.ts +60 -15
- package/dist/matterbridgeDevice.d.ts.map +1 -1
- package/dist/matterbridgeDevice.js +7 -3
- package/dist/matterbridgeDevice.js.map +1 -1
- package/dist/matterbridgePlatform.d.ts +1 -0
- package/dist/matterbridgePlatform.d.ts.map +1 -1
- package/dist/matterbridgePlatform.js +1 -0
- package/dist/matterbridgePlatform.js.map +1 -1
- package/frontend/build/asset-manifest.json +6 -6
- package/frontend/build/index.html +1 -1
- package/frontend/build/static/css/main.979e07d2.css +2 -0
- package/frontend/build/static/css/main.979e07d2.css.map +1 -0
- package/frontend/build/static/js/main.ed3f81ca.js +3 -0
- package/frontend/build/static/js/main.ed3f81ca.js.map +1 -0
- package/package.json +14 -8
- package/frontend/build/static/css/main.1880392b.css +0 -2
- package/frontend/build/static/css/main.1880392b.css.map +0 -1
- package/frontend/build/static/js/main.0c70c26b.js +0 -3
- package/frontend/build/static/js/main.0c70c26b.js.map +0 -1
- /package/frontend/build/static/js/{main.0c70c26b.js.LICENSE.txt → main.ed3f81ca.js.LICENSE.txt} +0 -0
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file contains the default config end schema for the plugins.
|
|
3
|
+
*
|
|
4
|
+
* @file utils.ts
|
|
5
|
+
* @author Luca Liguori
|
|
6
|
+
* @date 2024-05-07
|
|
7
|
+
* @version 1.0.0
|
|
8
|
+
*
|
|
9
|
+
* Copyright 2024 Luca Liguori.
|
|
10
|
+
*
|
|
11
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
12
|
+
* you may not use this file except in compliance with the License.
|
|
13
|
+
* You may obtain a copy of the License at
|
|
14
|
+
*
|
|
15
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
16
|
+
*
|
|
17
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
18
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
19
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
20
|
+
* See the License for the specific language governing permissions and
|
|
21
|
+
* limitations under the License. *
|
|
22
|
+
*/
|
|
23
|
+
export const zigbee2mqtt_config = {
|
|
24
|
+
name: 'matterbridge-zigbee2mqtt',
|
|
25
|
+
type: 'DynamicPlatform',
|
|
26
|
+
host: 'localhost',
|
|
27
|
+
username: '',
|
|
28
|
+
password: '',
|
|
29
|
+
port: 1883,
|
|
30
|
+
topic: 'zigbee2mqtt',
|
|
31
|
+
unregisterOnShutdown: false,
|
|
32
|
+
blackList: [],
|
|
33
|
+
whiteList: [],
|
|
34
|
+
switchList: [],
|
|
35
|
+
lightList: [],
|
|
36
|
+
outletList: [],
|
|
37
|
+
featureBlackList: [],
|
|
38
|
+
deviceFeatureBlackList: {},
|
|
39
|
+
};
|
|
40
|
+
export const zigbee2mqtt_schema = {
|
|
41
|
+
title: 'Matterbridge zigbee2mqtt plugin',
|
|
42
|
+
description: 'matterbridge-zigbee2mqtt v. 2.0.13 by https://github.com/Luligu',
|
|
43
|
+
type: 'object',
|
|
44
|
+
required: ['username', 'password', 'host', 'port', 'topic'],
|
|
45
|
+
properties: {
|
|
46
|
+
name: {
|
|
47
|
+
description: 'Plugin name',
|
|
48
|
+
type: 'string',
|
|
49
|
+
readOnly: true,
|
|
50
|
+
},
|
|
51
|
+
type: {
|
|
52
|
+
description: 'Plugin type',
|
|
53
|
+
type: 'string',
|
|
54
|
+
readOnly: true,
|
|
55
|
+
},
|
|
56
|
+
host: {
|
|
57
|
+
description: 'Host',
|
|
58
|
+
type: 'string',
|
|
59
|
+
},
|
|
60
|
+
username: {
|
|
61
|
+
description: 'Username',
|
|
62
|
+
type: 'string',
|
|
63
|
+
},
|
|
64
|
+
password: {
|
|
65
|
+
description: 'Password',
|
|
66
|
+
type: 'string',
|
|
67
|
+
},
|
|
68
|
+
port: {
|
|
69
|
+
description: 'Port',
|
|
70
|
+
type: 'number',
|
|
71
|
+
},
|
|
72
|
+
topic: {
|
|
73
|
+
description: 'Topic',
|
|
74
|
+
type: 'string',
|
|
75
|
+
},
|
|
76
|
+
blackList: {
|
|
77
|
+
description: 'The devices in the list will not be exposed.',
|
|
78
|
+
type: 'array',
|
|
79
|
+
items: {
|
|
80
|
+
type: 'string',
|
|
81
|
+
},
|
|
82
|
+
},
|
|
83
|
+
whiteList: {
|
|
84
|
+
description: 'Only the devices in the list will be exposed.',
|
|
85
|
+
type: 'array',
|
|
86
|
+
items: {
|
|
87
|
+
type: 'string',
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
switchList: {
|
|
91
|
+
description: 'The devices in the list will be exposed like switches.',
|
|
92
|
+
type: 'array',
|
|
93
|
+
items: {
|
|
94
|
+
type: 'string',
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
lightList: {
|
|
98
|
+
description: 'The devices in the list will be exposed like lights.',
|
|
99
|
+
type: 'array',
|
|
100
|
+
items: {
|
|
101
|
+
type: 'string',
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
outletList: {
|
|
105
|
+
description: 'The devices in the list will be exposed like outlets.',
|
|
106
|
+
type: 'array',
|
|
107
|
+
items: {
|
|
108
|
+
type: 'string',
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
featureBlackList: {
|
|
112
|
+
description: 'The features in the list will not be exposed for all devices.',
|
|
113
|
+
type: 'array',
|
|
114
|
+
items: {
|
|
115
|
+
type: 'string',
|
|
116
|
+
},
|
|
117
|
+
},
|
|
118
|
+
deviceFeatureBlackList: {
|
|
119
|
+
description: 'List of features not to be exposed for a single device. Enter in the first field the name of the device and in the second field add all the features to exclude.',
|
|
120
|
+
type: 'object',
|
|
121
|
+
additionalProperties: {
|
|
122
|
+
type: 'array',
|
|
123
|
+
items: {
|
|
124
|
+
type: 'string',
|
|
125
|
+
},
|
|
126
|
+
},
|
|
127
|
+
},
|
|
128
|
+
unregisterOnShutdown: {
|
|
129
|
+
description: 'Unregister all devices on shutdown (development only)',
|
|
130
|
+
type: 'boolean',
|
|
131
|
+
},
|
|
132
|
+
},
|
|
133
|
+
};
|
|
134
|
+
export const somfytahoma_config = {
|
|
135
|
+
name: 'matterbridge-somfy-tahoma',
|
|
136
|
+
type: 'DynamicPlatform',
|
|
137
|
+
username: '',
|
|
138
|
+
password: '',
|
|
139
|
+
service: 'somfy_europe',
|
|
140
|
+
blackList: [],
|
|
141
|
+
whiteList: [],
|
|
142
|
+
movementDuration: {},
|
|
143
|
+
};
|
|
144
|
+
export const somfytahoma_schema = {
|
|
145
|
+
title: 'Matterbridge somfy tahoma plugin',
|
|
146
|
+
description: 'matterbridge-somfy-tahoma v. 1.0.7 by https://github.com/Luligu',
|
|
147
|
+
type: 'object',
|
|
148
|
+
required: ['username', 'password', 'service'],
|
|
149
|
+
properties: {
|
|
150
|
+
name: {
|
|
151
|
+
description: 'Plugin name',
|
|
152
|
+
type: 'string',
|
|
153
|
+
readOnly: true,
|
|
154
|
+
},
|
|
155
|
+
type: {
|
|
156
|
+
description: 'Plugin type',
|
|
157
|
+
type: 'string',
|
|
158
|
+
readOnly: true,
|
|
159
|
+
},
|
|
160
|
+
username: {
|
|
161
|
+
description: 'Username',
|
|
162
|
+
type: 'string',
|
|
163
|
+
},
|
|
164
|
+
password: {
|
|
165
|
+
description: 'Password',
|
|
166
|
+
type: 'string',
|
|
167
|
+
},
|
|
168
|
+
service: {
|
|
169
|
+
description: 'Service name to connect to',
|
|
170
|
+
type: 'string',
|
|
171
|
+
oneOf: [
|
|
172
|
+
{
|
|
173
|
+
title: 'Local API (TaHoma / Switch)',
|
|
174
|
+
enum: ['local'],
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
title: 'Somfy Europe (TaHoma / Switch / Connexoon IO)',
|
|
178
|
+
enum: ['somfy_europe'],
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
title: 'Somfy Australia (Connexoon RTS)',
|
|
182
|
+
enum: ['somfy_australia'],
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
title: 'Somfy North America',
|
|
186
|
+
enum: ['somfy_north_america'],
|
|
187
|
+
},
|
|
188
|
+
],
|
|
189
|
+
},
|
|
190
|
+
blackList: {
|
|
191
|
+
description: 'The devices in the list will not be exposed.',
|
|
192
|
+
type: 'array',
|
|
193
|
+
items: {
|
|
194
|
+
type: 'string',
|
|
195
|
+
},
|
|
196
|
+
},
|
|
197
|
+
whiteList: {
|
|
198
|
+
description: 'Only the devices in the list will be exposed.',
|
|
199
|
+
type: 'array',
|
|
200
|
+
items: {
|
|
201
|
+
type: 'string',
|
|
202
|
+
},
|
|
203
|
+
},
|
|
204
|
+
movementDuration: {
|
|
205
|
+
description: 'Set the duration in seconds of the full movement for each device. Enter in the first field the name of the device and in the second field the duration in seconds.',
|
|
206
|
+
type: 'object',
|
|
207
|
+
additionalProperties: {
|
|
208
|
+
type: 'integer',
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
unregisterOnShutdown: {
|
|
212
|
+
description: 'Unregister all devices on shutdown (development only)',
|
|
213
|
+
type: 'boolean',
|
|
214
|
+
},
|
|
215
|
+
},
|
|
216
|
+
};
|
|
217
|
+
//# sourceMappingURL=defaultConfigSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaultConfigSchema.js","sourceRoot":"","sources":["../src/defaultConfigSchema.ts"],"names":[],"mappings":"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"}
|
package/dist/matterbridge.d.ts
CHANGED
|
@@ -27,7 +27,12 @@ export type PlatformConfigValue = string | number | boolean | bigint | object |
|
|
|
27
27
|
export type PlatformConfig = {
|
|
28
28
|
[key: string]: PlatformConfigValue;
|
|
29
29
|
};
|
|
30
|
+
export type PlatformSchemaValue = string | number | boolean | bigint | object | undefined | null;
|
|
31
|
+
export type PlatformSchema = {
|
|
32
|
+
[key: string]: PlatformSchemaValue;
|
|
33
|
+
};
|
|
30
34
|
interface SystemInformation {
|
|
35
|
+
macAddress: string;
|
|
31
36
|
ipv4Address: string;
|
|
32
37
|
ipv6Address: string;
|
|
33
38
|
nodeVersion: string;
|
|
@@ -223,6 +228,23 @@ export declare class Matterbridge extends EventEmitter {
|
|
|
223
228
|
*/
|
|
224
229
|
private stopStorage;
|
|
225
230
|
private testStartMatterBridge;
|
|
231
|
+
/**
|
|
232
|
+
* Loads the schema for a plugin.
|
|
233
|
+
* If the schema file exists, it reads the file and returns the parsed JSON data.
|
|
234
|
+
* If the schema file does not exist, it creates a new file with default configuration and returns it.
|
|
235
|
+
* If any error occurs during file access or creation, it logs an error and return an empty schema.
|
|
236
|
+
*
|
|
237
|
+
* @param plugin - The plugin for which to load the schema.
|
|
238
|
+
* @returns A promise that resolves to the loaded or created schema.
|
|
239
|
+
*/
|
|
240
|
+
private loadPluginSchema;
|
|
241
|
+
/**
|
|
242
|
+
* Saves the plugin configuration to a JSON file.
|
|
243
|
+
* @param plugin - The registered plugin.
|
|
244
|
+
* @param config - The platform configuration.
|
|
245
|
+
* @returns A promise that resolves when the configuration is saved successfully, or rejects with an error.
|
|
246
|
+
*/
|
|
247
|
+
private savePluginConfigFromJson;
|
|
226
248
|
/**
|
|
227
249
|
* Loads the configuration for a plugin.
|
|
228
250
|
* If the configuration file exists, it reads the file and returns the parsed JSON data.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"matterbridge.d.ts","sourceRoot":"","sources":["../src/matterbridge.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;;AAEH,OAAO,EAAE,kBAAkB,EAAgC,MAAM,yBAAyB,CAAC;AAS3F,OAAO,YAAY,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"matterbridge.d.ts","sourceRoot":"","sources":["../src/matterbridge.ts"],"names":[],"mappings":"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"}
|