matterbridge 3.2.1-dev-20250803-c70121e → 3.2.1-dev-20250804-be73ddb

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.
@@ -15,7 +15,7 @@ export async function copyDirectory(srcDir, destDir) {
15
15
  if (srcDir === destDir) {
16
16
  throw new Error('Source and destination directories must be different.');
17
17
  }
18
- const log = new AnsiLogger({ logName: 'Archive', logTimestampFormat: 4, logLevel: "info" });
18
+ const log = new AnsiLogger({ logName: 'CopyDirectory', logTimestampFormat: 4, logLevel: "info" });
19
19
  const fs = await import('node:fs').then((mod) => mod.promises);
20
20
  const path = await import('node:path');
21
21
  log.debug(`copyDirectory: copying directory from ${srcDir} to ${destDir}`);
@@ -1,6 +1,6 @@
1
1
  import { AnsiLogger } from 'node-ansi-logger';
2
2
  export async function waiter(name, check, exitWithReject = false, resolveTimeout = 5000, resolveInterval = 500, debug = false) {
3
- const log = new AnsiLogger({ logName: 'MatterbridgeWaiter', logTimestampFormat: 4, logLevel: "debug" });
3
+ const log = new AnsiLogger({ logName: 'Waiter', logTimestampFormat: 4, logLevel: "debug" });
4
4
  if (check()) {
5
5
  if (debug)
6
6
  log.debug(`Waiter "${name}" already true`);
@@ -32,7 +32,7 @@ export async function waiter(name, check, exitWithReject = false, resolveTimeout
32
32
  });
33
33
  }
34
34
  export async function wait(timeout = 1000, name, debug = false) {
35
- const log = new AnsiLogger({ logName: 'MatterbridgeWait', logTimestampFormat: 4, logLevel: "debug" });
35
+ const log = new AnsiLogger({ logName: 'Wait', logTimestampFormat: 4, logLevel: "debug" });
36
36
  if (debug)
37
37
  log.debug(`Wait "${name}" started...`);
38
38
  return new Promise((resolve) => {
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.2.1-dev-20250803-c70121e",
3
+ "version": "3.2.1-dev-20250804-be73ddb",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "matterbridge",
9
- "version": "3.2.1-dev-20250803-c70121e",
9
+ "version": "3.2.1-dev-20250804-be73ddb",
10
10
  "license": "Apache-2.0",
11
11
  "dependencies": {
12
12
  "@matter/main": "0.15.3",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "matterbridge",
3
- "version": "3.2.1-dev-20250803-c70121e",
3
+ "version": "3.2.1-dev-20250804-be73ddb",
4
4
  "description": "Matterbridge plugin manager for Matter",
5
5
  "author": "https://github.com/Luligu",
6
6
  "license": "Apache-2.0",