@matter/general 0.15.0-alpha.0-20250619-df2264f15 → 0.15.0-alpha.0-20250620-16e218ed3

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.
Files changed (41) hide show
  1. package/dist/cjs/crypto/CryptoError.d.ts +1 -1
  2. package/dist/cjs/crypto/CryptoError.js +1 -1
  3. package/dist/cjs/crypto/MockCrypto.d.ts +1 -1
  4. package/dist/cjs/crypto/MockCrypto.js +1 -1
  5. package/dist/cjs/crypto/aes/Aes.d.ts +1 -1
  6. package/dist/cjs/crypto/aes/Aes.js +1 -1
  7. package/dist/cjs/crypto/aes/Ccm.d.ts +1 -1
  8. package/dist/cjs/crypto/aes/Ccm.js +1 -1
  9. package/dist/cjs/crypto/aes/WordArray.d.ts +1 -1
  10. package/dist/cjs/crypto/aes/WordArray.js +1 -1
  11. package/dist/cjs/log/Console.d.ts +1 -1
  12. package/dist/cjs/log/Console.js +1 -1
  13. package/dist/cjs/log/LogDestination.d.ts +1 -1
  14. package/dist/cjs/log/LogDestination.js +1 -1
  15. package/dist/cjs/polyfills/suppressed-error.d.ts +1 -1
  16. package/dist/cjs/polyfills/suppressed-error.js +1 -1
  17. package/dist/esm/crypto/CryptoError.d.ts +1 -1
  18. package/dist/esm/crypto/CryptoError.js +1 -1
  19. package/dist/esm/crypto/MockCrypto.d.ts +1 -1
  20. package/dist/esm/crypto/MockCrypto.js +1 -1
  21. package/dist/esm/crypto/aes/Aes.d.ts +1 -1
  22. package/dist/esm/crypto/aes/Aes.js +1 -1
  23. package/dist/esm/crypto/aes/Ccm.d.ts +1 -1
  24. package/dist/esm/crypto/aes/Ccm.js +1 -1
  25. package/dist/esm/crypto/aes/WordArray.d.ts +1 -1
  26. package/dist/esm/crypto/aes/WordArray.js +1 -1
  27. package/dist/esm/log/Console.d.ts +1 -1
  28. package/dist/esm/log/Console.js +1 -1
  29. package/dist/esm/log/LogDestination.d.ts +1 -1
  30. package/dist/esm/log/LogDestination.js +1 -1
  31. package/dist/esm/polyfills/suppressed-error.d.ts +1 -1
  32. package/dist/esm/polyfills/suppressed-error.js +1 -1
  33. package/package.json +2 -2
  34. package/src/crypto/CryptoError.ts +1 -1
  35. package/src/crypto/MockCrypto.ts +1 -1
  36. package/src/crypto/aes/Aes.ts +1 -1
  37. package/src/crypto/aes/Ccm.ts +1 -1
  38. package/src/crypto/aes/WordArray.ts +1 -1
  39. package/src/log/Console.ts +1 -1
  40. package/src/log/LogDestination.ts +1 -1
  41. package/src/polyfills/suppressed-error.ts +1 -1
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { MatterError } from "#MatterError.js";
@@ -28,7 +28,7 @@ module.exports = __toCommonJS(CryptoError_exports);
28
28
  var import_MatterError = require("#MatterError.js");
29
29
  /**
30
30
  * @license
31
- * Copyright 2022-2025 Project CHIP Authors
31
+ * Copyright 2022-2025 Matter.js Authors
32
32
  * SPDX-License-Identifier: Apache-2.0
33
33
  */
34
34
  class CryptoError extends import_MatterError.MatterError {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { Crypto } from "./Crypto.js";
@@ -27,7 +27,7 @@ var import_Key = require("./Key.js");
27
27
  var import_StandardCrypto = require("./StandardCrypto.js");
28
28
  /**
29
29
  * @license
30
- * Copyright 2022-2025 Project CHIP Authors
30
+ * Copyright 2022-2025 Matter.js Authors
31
31
  * SPDX-License-Identifier: Apache-2.0
32
32
  */
33
33
  function MockCrypto(index = 128, implementation = import_StandardCrypto.StandardCrypto) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  /**
@@ -24,7 +24,7 @@ module.exports = __toCommonJS(Aes_exports);
24
24
  var import_WordArray = require("./WordArray.js");
25
25
  /**
26
26
  * @license
27
- * Copyright 2022-2025 Project CHIP Authors
27
+ * Copyright 2022-2025 Matter.js Authors
28
28
  * SPDX-License-Identifier: Apache-2.0
29
29
  */
30
30
  function Aes(key) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  /**
@@ -30,7 +30,7 @@ var import_Aes = require("./Aes.js");
30
30
  var import_WordArray = require("./WordArray.js");
31
31
  /**
32
32
  * @license
33
- * Copyright 2022-2025 Project CHIP Authors
33
+ * Copyright 2022-2025 Matter.js Authors
34
34
  * SPDX-License-Identifier: Apache-2.0
35
35
  */
36
36
  function Ccm(key) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  /**
@@ -23,7 +23,7 @@ __export(WordArray_exports, {
23
23
  module.exports = __toCommonJS(WordArray_exports);
24
24
  /**
25
25
  * @license
26
- * Copyright 2022-2025 Project CHIP Authors
26
+ * Copyright 2022-2025 Matter.js Authors
27
27
  * SPDX-License-Identifier: Apache-2.0
28
28
  */
29
29
  function WordArray(length) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { Diagnostic } from "./Diagnostic.js";
@@ -24,7 +24,7 @@ module.exports = __toCommonJS(Console_exports);
24
24
  var import_LogLevel = require("./LogLevel.js");
25
25
  /**
26
26
  * @license
27
- * Copyright 2022-2025 Project CHIP Authors
27
+ * Copyright 2022-2025 Matter.js Authors
28
28
  * SPDX-License-Identifier: Apache-2.0
29
29
  */
30
30
  var Console;
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { Diagnostic } from "./Diagnostic.js";
@@ -28,7 +28,7 @@ var import_LogFormat = require("./LogFormat.js");
28
28
  var import_LogLevel = require("./LogLevel.js");
29
29
  /**
30
30
  * @license
31
- * Copyright 2022-2025 Project CHIP Authors
31
+ * Copyright 2022-2025 Matter.js Authors
32
32
  * SPDX-License-Identifier: Apache-2.0
33
33
  */
34
34
  function LogDestination(config) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  export {};
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
3
  * @license
4
- * Copyright 2022-2025 Project CHIP Authors
4
+ * Copyright 2022-2025 Matter.js Authors
5
5
  * SPDX-License-Identifier: Apache-2.0
6
6
  */
7
7
  if (globalThis.SuppressedError === void 0) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { MatterError } from "#MatterError.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { MatterError } from "#MatterError.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { Crypto } from "./Crypto.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { ImplementationError } from "#MatterError.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { WordArray } from "./WordArray.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { CRYPTO_AEAD_MIC_LENGTH_BYTES, CRYPTO_AEAD_NONCE_LENGTH_BYTES } from "#crypto/CryptoConstants.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  function WordArray(length) {
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { Diagnostic } from "./Diagnostic.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { LogLevel } from "./LogLevel.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { Diagnostic } from "./Diagnostic.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  import { ImplementationError } from "#MatterError.js";
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  export {};
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
  if (globalThis.SuppressedError === void 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@matter/general",
3
- "version": "0.15.0-alpha.0-20250619-df2264f15",
3
+ "version": "0.15.0-alpha.0-20250620-16e218ed3",
4
4
  "description": "Non-Matter support for Matter.js",
5
5
  "keywords": [
6
6
  "iot",
@@ -36,7 +36,7 @@
36
36
  "@noble/curves": "^1.9.2"
37
37
  },
38
38
  "devDependencies": {
39
- "@matter/testing": "0.15.0-alpha.0-20250619-df2264f15"
39
+ "@matter/testing": "0.15.0-alpha.0-20250620-16e218ed3"
40
40
  },
41
41
  "files": [
42
42
  "dist/**/*",
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6
 
@@ -1,6 +1,6 @@
1
1
  /**
2
2
  * @license
3
- * Copyright 2022-2025 Project CHIP Authors
3
+ * Copyright 2022-2025 Matter.js Authors
4
4
  * SPDX-License-Identifier: Apache-2.0
5
5
  */
6
6