@matter/types 0.11.8 → 0.11.9-alpha.0-20241205-ccf69a00a

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 (56) hide show
  1. package/dist/cjs/clusters/access-control.d.ts +4 -4
  2. package/dist/cjs/clusters/administrator-commissioning.d.ts +8 -8
  3. package/dist/cjs/clusters/application-launcher.d.ts +14 -14
  4. package/dist/cjs/clusters/channel.d.ts +15 -15
  5. package/dist/cjs/clusters/color-control.d.ts.map +1 -1
  6. package/dist/cjs/clusters/color-control.js +1 -5
  7. package/dist/cjs/clusters/color-control.js.map +1 -1
  8. package/dist/cjs/clusters/diagnostic-logs.d.ts +2 -2
  9. package/dist/cjs/clusters/door-lock.d.ts +57 -57
  10. package/dist/cjs/clusters/energy-evse.d.ts +5 -5
  11. package/dist/cjs/clusters/general-diagnostics.d.ts +26 -26
  12. package/dist/cjs/clusters/group-key-management.d.ts +21 -21
  13. package/dist/cjs/clusters/icd-management.d.ts +15 -15
  14. package/dist/cjs/clusters/media-playback.d.ts +4 -4
  15. package/dist/cjs/clusters/messages.d.ts +20 -20
  16. package/dist/cjs/clusters/network-commissioning.d.ts +74 -74
  17. package/dist/cjs/clusters/operational-credentials.d.ts +33 -33
  18. package/dist/cjs/clusters/ota-software-update-provider.d.ts +10 -10
  19. package/dist/cjs/clusters/ota-software-update-requestor.d.ts +2 -2
  20. package/dist/cjs/clusters/software-diagnostics.d.ts +4 -4
  21. package/dist/cjs/clusters/target-navigator.d.ts +2 -2
  22. package/dist/cjs/clusters/thread-network-diagnostics.d.ts +6 -6
  23. package/dist/cjs/clusters/wake-on-lan.d.ts +1 -1
  24. package/dist/cjs/clusters/wi-fi-network-diagnostics.d.ts +3 -3
  25. package/dist/cjs/schema/BitmapSchema.d.ts +1 -1
  26. package/dist/cjs/schema/PairingCodeSchema.d.ts +2 -2
  27. package/dist/cjs/tlv/TlvSchema.d.ts +1 -1
  28. package/dist/esm/clusters/access-control.d.ts +4 -4
  29. package/dist/esm/clusters/administrator-commissioning.d.ts +8 -8
  30. package/dist/esm/clusters/application-launcher.d.ts +14 -14
  31. package/dist/esm/clusters/channel.d.ts +15 -15
  32. package/dist/esm/clusters/color-control.d.ts.map +1 -1
  33. package/dist/esm/clusters/color-control.js +1 -5
  34. package/dist/esm/clusters/color-control.js.map +1 -1
  35. package/dist/esm/clusters/diagnostic-logs.d.ts +2 -2
  36. package/dist/esm/clusters/door-lock.d.ts +57 -57
  37. package/dist/esm/clusters/energy-evse.d.ts +5 -5
  38. package/dist/esm/clusters/general-diagnostics.d.ts +26 -26
  39. package/dist/esm/clusters/group-key-management.d.ts +21 -21
  40. package/dist/esm/clusters/icd-management.d.ts +15 -15
  41. package/dist/esm/clusters/media-playback.d.ts +4 -4
  42. package/dist/esm/clusters/messages.d.ts +20 -20
  43. package/dist/esm/clusters/network-commissioning.d.ts +74 -74
  44. package/dist/esm/clusters/operational-credentials.d.ts +33 -33
  45. package/dist/esm/clusters/ota-software-update-provider.d.ts +10 -10
  46. package/dist/esm/clusters/ota-software-update-requestor.d.ts +2 -2
  47. package/dist/esm/clusters/software-diagnostics.d.ts +4 -4
  48. package/dist/esm/clusters/target-navigator.d.ts +2 -2
  49. package/dist/esm/clusters/thread-network-diagnostics.d.ts +6 -6
  50. package/dist/esm/clusters/wake-on-lan.d.ts +1 -1
  51. package/dist/esm/clusters/wi-fi-network-diagnostics.d.ts +3 -3
  52. package/dist/esm/schema/BitmapSchema.d.ts +1 -1
  53. package/dist/esm/schema/PairingCodeSchema.d.ts +2 -2
  54. package/dist/esm/tlv/TlvSchema.d.ts +1 -1
  55. package/package.json +5 -5
  56. package/src/clusters/color-control.ts +1 -5
@@ -25,14 +25,14 @@ export declare namespace OperationalCredentials {
25
25
  *
26
26
  * @see {@link MatterSpecification.v13.Core} § 11.18.4.4.1
27
27
  */
28
- noc: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
28
+ noc: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
29
29
  /**
30
30
  * This field shall contain the ICAC or the struct’s associated fabric, encoded using Matter Certificate
31
31
  * Encoding. If no ICAC is present in the chain, this field shall be set to null.
32
32
  *
33
33
  * @see {@link MatterSpecification.v13.Core} § 11.18.4.4.2
34
34
  */
35
- icac: import("../tlv/TlvObject.js").FieldType<Uint8Array | null>;
35
+ icac: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike> | null>;
36
36
  fabricIndex: import("../tlv/TlvObject.js").FieldType<FabricIndex>;
37
37
  }>;
38
38
  /**
@@ -59,7 +59,7 @@ export declare namespace OperationalCredentials {
59
59
  *
60
60
  * @see {@link MatterSpecification.v13.Core} § 11.18.4.5.1
61
61
  */
62
- rootPublicKey: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
62
+ rootPublicKey: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
63
63
  /**
64
64
  * This field shall contain the value of AdminVendorID provided in the AddNOC command that led to the creation
65
65
  * of this FabricDescriptorStruct. The set of allowed values is defined in AdminVendorID.
@@ -108,7 +108,7 @@ export declare namespace OperationalCredentials {
108
108
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.1
109
109
  */
110
110
  const TlvAttestationRequest: import("../tlv/TlvObject.js").ObjectSchema<{
111
- attestationNonce: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
111
+ attestationNonce: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
112
112
  }>;
113
113
  /**
114
114
  * Input to the OperationalCredentials attestationRequest command
@@ -133,14 +133,14 @@ export declare namespace OperationalCredentials {
133
133
  *
134
134
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.2.1
135
135
  */
136
- attestationElements: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
136
+ attestationElements: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
137
137
  /**
138
138
  * This field shall contain the octet string of the necessary attestation_signature as described in Section
139
139
  * 11.18.4.7, “Attestation Information”.
140
140
  *
141
141
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.2.2
142
142
  */
143
- attestationSignature: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
143
+ attestationSignature: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
144
144
  }>;
145
145
  /**
146
146
  * This command shall be generated in response to an Attestation Request command.
@@ -197,7 +197,7 @@ export declare namespace OperationalCredentials {
197
197
  *
198
198
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.4.1
199
199
  */
200
- certificate: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
200
+ certificate: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
201
201
  }>;
202
202
  /**
203
203
  * This command shall be generated in response to a CertificateChainRequest command.
@@ -212,7 +212,7 @@ export declare namespace OperationalCredentials {
212
212
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.5
213
213
  */
214
214
  const TlvCsrRequest: import("../tlv/TlvObject.js").ObjectSchema<{
215
- csrNonce: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
215
+ csrNonce: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
216
216
  isForUpdateNoc: import("../tlv/TlvObject.js").OptionalFieldType<boolean>;
217
217
  }>;
218
218
  /**
@@ -238,14 +238,14 @@ export declare namespace OperationalCredentials {
238
238
  *
239
239
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.6.1
240
240
  */
241
- nocsrElements: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
241
+ nocsrElements: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
242
242
  /**
243
243
  * This field shall contain the octet string of the necessary attestation_signature as described in Section
244
244
  * 11.18.4.9, “NOCSR Information”.
245
245
  *
246
246
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.6.2
247
247
  */
248
- attestationSignature: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
248
+ attestationSignature: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
249
249
  }>;
250
250
  /**
251
251
  * This command shall be generated in response to a CSRRequest Command.
@@ -265,8 +265,8 @@ export declare namespace OperationalCredentials {
265
265
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.8
266
266
  */
267
267
  const TlvAddNocRequest: import("../tlv/TlvObject.js").ObjectSchema<{
268
- nocValue: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
269
- icacValue: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
268
+ nocValue: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
269
+ icacValue: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
270
270
  /**
271
271
  * This field shall contain the value of the Epoch Key for the Identity Protection Key (IPK) to set for the
272
272
  * Fabric which is to be added. This is needed to bootstrap a necessary configuration value for subsequent CASE
@@ -281,7 +281,7 @@ export declare namespace OperationalCredentials {
281
281
  *
282
282
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.8.1
283
283
  */
284
- ipkValue: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
284
+ ipkValue: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
285
285
  /**
286
286
  * If the AddNOC command succeeds according to the semantics of the following subsections, then the Access
287
287
  * Control SubjectID shall be used to atomically add an Access Control Entry enabling that Subject to
@@ -510,8 +510,8 @@ export declare namespace OperationalCredentials {
510
510
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.9
511
511
  */
512
512
  const TlvUpdateNocRequest: import("../tlv/TlvObject.js").ObjectSchema<{
513
- nocValue: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
514
- icacValue: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
513
+ nocValue: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
514
+ icacValue: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
515
515
  fabricIndex: import("../tlv/TlvObject.js").FieldType<FabricIndex>;
516
516
  }>;
517
517
  /**
@@ -620,7 +620,7 @@ export declare namespace OperationalCredentials {
620
620
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.13
621
621
  */
622
622
  const TlvAddTrustedRootCertificateRequest: import("../tlv/TlvObject.js").ObjectSchema<{
623
- rootCaCertificate: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
623
+ rootCaCertificate: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
624
624
  }>;
625
625
  /**
626
626
  * Input to the OperationalCredentials addTrustedRootCertificate command
@@ -656,14 +656,14 @@ export declare namespace OperationalCredentials {
656
656
  *
657
657
  * @see {@link MatterSpecification.v13.Core} § 11.18.4.4.1
658
658
  */
659
- noc: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
659
+ noc: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
660
660
  /**
661
661
  * This field shall contain the ICAC or the struct’s associated fabric, encoded using Matter Certificate
662
662
  * Encoding. If no ICAC is present in the chain, this field shall be set to null.
663
663
  *
664
664
  * @see {@link MatterSpecification.v13.Core} § 11.18.4.4.2
665
665
  */
666
- icac: import("../tlv/TlvObject.js").FieldType<Uint8Array | null>;
666
+ icac: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike> | null>;
667
667
  fabricIndex: import("../tlv/TlvObject.js").FieldType<FabricIndex>;
668
668
  }>[], any>;
669
669
  /**
@@ -685,7 +685,7 @@ export declare namespace OperationalCredentials {
685
685
  *
686
686
  * @see {@link MatterSpecification.v13.Core} § 11.18.4.5.1
687
687
  */
688
- rootPublicKey: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
688
+ rootPublicKey: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
689
689
  /**
690
690
  * This field shall contain the value of AdminVendorID provided in the AddNOC command that led to the creation
691
691
  * of this FabricDescriptorStruct. The set of allowed values is defined in AdminVendorID.
@@ -758,7 +758,7 @@ export declare namespace OperationalCredentials {
758
758
  *
759
759
  * @see {@link MatterSpecification.v13.Core} § 11.18.5.5
760
760
  */
761
- readonly trustedRootCertificates: Attribute<Uint8Array[], any>;
761
+ readonly trustedRootCertificates: Attribute<Uint8Array<ArrayBufferLike>[], any>;
762
762
  /**
763
763
  * This attribute shall contain accessing fabric index.
764
764
  *
@@ -780,21 +780,21 @@ export declare namespace OperationalCredentials {
780
780
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.1
781
781
  */
782
782
  readonly attestationRequest: Command<import("../tlv/TlvObject.js").TypeFromFields<{
783
- attestationNonce: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
783
+ attestationNonce: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
784
784
  }>, import("../tlv/TlvObject.js").TypeFromFields<{
785
785
  /**
786
786
  * This field shall contain the octet string of the serialized attestation_elements_message.
787
787
  *
788
788
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.2.1
789
789
  */
790
- attestationElements: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
790
+ attestationElements: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
791
791
  /**
792
792
  * This field shall contain the octet string of the necessary attestation_signature as described in Section
793
793
  * 11.18.4.7, “Attestation Information”.
794
794
  *
795
795
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.2.2
796
796
  */
797
- attestationSignature: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
797
+ attestationSignature: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
798
798
  }>, any>;
799
799
  /**
800
800
  * If the CertificateType is not a valid value per CertificateChainTypeEnum then the command shall fail
@@ -811,7 +811,7 @@ export declare namespace OperationalCredentials {
811
811
  *
812
812
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.4.1
813
813
  */
814
- certificate: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
814
+ certificate: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
815
815
  }>, any>;
816
816
  /**
817
817
  * This command shall be generated to execute the Node Operational CSR Procedure and subsequently return
@@ -842,7 +842,7 @@ export declare namespace OperationalCredentials {
842
842
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.5
843
843
  */
844
844
  readonly csrRequest: Command<import("../tlv/TlvObject.js").TypeFromFields<{
845
- csrNonce: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
845
+ csrNonce: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
846
846
  isForUpdateNoc: import("../tlv/TlvObject.js").OptionalFieldType<boolean>;
847
847
  }>, import("../tlv/TlvObject.js").TypeFromFields<{
848
848
  /**
@@ -850,14 +850,14 @@ export declare namespace OperationalCredentials {
850
850
  *
851
851
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.6.1
852
852
  */
853
- nocsrElements: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
853
+ nocsrElements: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
854
854
  /**
855
855
  * This field shall contain the octet string of the necessary attestation_signature as described in Section
856
856
  * 11.18.4.9, “NOCSR Information”.
857
857
  *
858
858
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.6.2
859
859
  */
860
- attestationSignature: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
860
+ attestationSignature: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
861
861
  }>, any>;
862
862
  /**
863
863
  * This command shall add a new NOC chain to the device and commission a new Fabric association upon
@@ -873,8 +873,8 @@ export declare namespace OperationalCredentials {
873
873
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.8
874
874
  */
875
875
  readonly addNoc: Command<import("../tlv/TlvObject.js").TypeFromFields<{
876
- nocValue: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
877
- icacValue: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
876
+ nocValue: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
877
+ icacValue: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
878
878
  /**
879
879
  * This field shall contain the value of the Epoch Key for the Identity Protection Key (IPK) to set for the
880
880
  * Fabric which is to be added. This is needed to bootstrap a necessary configuration value for subsequent CASE
@@ -889,7 +889,7 @@ export declare namespace OperationalCredentials {
889
889
  *
890
890
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.8.1
891
891
  */
892
- ipkValue: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
892
+ ipkValue: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
893
893
  /**
894
894
  * If the AddNOC command succeeds according to the semantics of the following subsections, then the Access
895
895
  * Control SubjectID shall be used to atomically add an Access Control Entry enabling that Subject to
@@ -1083,8 +1083,8 @@ export declare namespace OperationalCredentials {
1083
1083
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.9
1084
1084
  */
1085
1085
  readonly updateNoc: Command<import("../tlv/TlvObject.js").TypeFromFields<{
1086
- nocValue: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
1087
- icacValue: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
1086
+ nocValue: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
1087
+ icacValue: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
1088
1088
  fabricIndex: import("../tlv/TlvObject.js").FieldType<FabricIndex>;
1089
1089
  }>, import("../tlv/TlvObject.js").TypeFromFields<{
1090
1090
  /**
@@ -1287,7 +1287,7 @@ export declare namespace OperationalCredentials {
1287
1287
  * @see {@link MatterSpecification.v13.Core} § 11.18.6.13
1288
1288
  */
1289
1289
  readonly addTrustedRootCertificate: Command<import("../tlv/TlvObject.js").TypeFromFields<{
1290
- rootCaCertificate: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
1290
+ rootCaCertificate: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
1291
1291
  }>, void, any>;
1292
1292
  };
1293
1293
  }, []>;
@@ -136,7 +136,7 @@ export declare namespace OtaSoftwareUpdateProvider {
136
136
  *
137
137
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.1.8
138
138
  */
139
- metadataForProvider: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
139
+ metadataForProvider: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
140
140
  }>;
141
141
  /**
142
142
  * Input to the OtaSoftwareUpdateProvider queryImage command
@@ -327,7 +327,7 @@ export declare namespace OtaSoftwareUpdateProvider {
327
327
  *
328
328
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.2.6
329
329
  */
330
- updateToken: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
330
+ updateToken: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
331
331
  /**
332
332
  * This field, if present, shall only be interpreted if the OTA Requestor had previously indicated a value of
333
333
  * True in the RequestorCanConsent field of the QueryImageRequest. This field, when present and set to True,
@@ -354,7 +354,7 @@ export declare namespace OtaSoftwareUpdateProvider {
354
354
  *
355
355
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.2.8
356
356
  */
357
- metadataForRequestor: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
357
+ metadataForRequestor: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
358
358
  }>;
359
359
  /**
360
360
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.2
@@ -374,7 +374,7 @@ export declare namespace OtaSoftwareUpdateProvider {
374
374
  *
375
375
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.3.1
376
376
  */
377
- updateToken: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
377
+ updateToken: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
378
378
  /**
379
379
  * The NewVersion field included in the request payload shall provide the SoftwareVersion value of the new
380
380
  * Software Image which the OTA Requestor is ready to start applying. The OTA Provider may use this new version
@@ -470,7 +470,7 @@ export declare namespace OtaSoftwareUpdateProvider {
470
470
  *
471
471
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.5.1
472
472
  */
473
- updateToken: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
473
+ updateToken: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
474
474
  /**
475
475
  * The SoftwareVersion included in the request payload shall provide the same value as the SoftwareVersion
476
476
  * attribute in the invoking OTA Requestor’s Basic Information Cluster, and SHOULD be consistent with the value
@@ -623,7 +623,7 @@ export declare namespace OtaSoftwareUpdateProvider {
623
623
  *
624
624
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.1.8
625
625
  */
626
- metadataForProvider: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
626
+ metadataForProvider: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
627
627
  }>, import("../tlv/TlvObject.js").TypeFromFields<{
628
628
  /**
629
629
  * This field shall contain the primary response regarding the availability of a Software Image.
@@ -780,7 +780,7 @@ export declare namespace OtaSoftwareUpdateProvider {
780
780
  *
781
781
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.2.6
782
782
  */
783
- updateToken: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
783
+ updateToken: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
784
784
  /**
785
785
  * This field, if present, shall only be interpreted if the OTA Requestor had previously indicated a value of
786
786
  * True in the RequestorCanConsent field of the QueryImageRequest. This field, when present and set to True,
@@ -807,7 +807,7 @@ export declare namespace OtaSoftwareUpdateProvider {
807
807
  *
808
808
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.2.8
809
809
  */
810
- metadataForRequestor: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
810
+ metadataForRequestor: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
811
811
  }>, any>;
812
812
  /**
813
813
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.3
@@ -820,7 +820,7 @@ export declare namespace OtaSoftwareUpdateProvider {
820
820
  *
821
821
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.3.1
822
822
  */
823
- updateToken: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
823
+ updateToken: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
824
824
  /**
825
825
  * The NewVersion field included in the request payload shall provide the SoftwareVersion value of the new
826
826
  * Software Image which the OTA Requestor is ready to start applying. The OTA Provider may use this new version
@@ -878,7 +878,7 @@ export declare namespace OtaSoftwareUpdateProvider {
878
878
  *
879
879
  * @see {@link MatterSpecification.v13.Core} § 11.20.6.5.5.1
880
880
  */
881
- updateToken: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
881
+ updateToken: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
882
882
  /**
883
883
  * The SoftwareVersion included in the request payload shall provide the same value as the SoftwareVersion
884
884
  * attribute in the invoking OTA Requestor’s Basic Information Cluster, and SHOULD be consistent with the value
@@ -200,7 +200,7 @@ export declare namespace OtaSoftwareUpdateRequestor {
200
200
  *
201
201
  * @see {@link MatterSpecification.v13.Core} § 11.20.7.6.1.4
202
202
  */
203
- metadataForNode: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
203
+ metadataForNode: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
204
204
  /**
205
205
  * This field shall contain the endpoint number which has the OTA Provider device type and OTA Software Update
206
206
  * Provider cluster server on the ProviderNodeID. This is provided to avoid having to do discovery of the
@@ -530,7 +530,7 @@ export declare namespace OtaSoftwareUpdateRequestor {
530
530
  *
531
531
  * @see {@link MatterSpecification.v13.Core} § 11.20.7.6.1.4
532
532
  */
533
- metadataForNode: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
533
+ metadataForNode: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
534
534
  /**
535
535
  * This field shall contain the endpoint number which has the OTA Provider device type and OTA Software Update
536
536
  * Provider cluster server on the ProviderNodeID. This is provided to avoid having to do discovery of the
@@ -96,7 +96,7 @@ export declare namespace SoftwareDiagnostics {
96
96
  *
97
97
  * @see {@link MatterSpecification.v13.Core} § 11.13.8.1.3
98
98
  */
99
- faultRecording: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
99
+ faultRecording: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
100
100
  }>;
101
101
  /**
102
102
  * Body of the SoftwareDiagnostics softwareFault event
@@ -245,7 +245,7 @@ export declare namespace SoftwareDiagnostics {
245
245
  *
246
246
  * @see {@link MatterSpecification.v13.Core} § 11.13.8.1.3
247
247
  */
248
- faultRecording: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
248
+ faultRecording: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
249
249
  }>, any>;
250
250
  };
251
251
  /**
@@ -395,7 +395,7 @@ export declare namespace SoftwareDiagnostics {
395
395
  *
396
396
  * @see {@link MatterSpecification.v13.Core} § 11.13.8.1.3
397
397
  */
398
- faultRecording: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
398
+ faultRecording: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
399
399
  }>, any>;
400
400
  };
401
401
  /**
@@ -570,7 +570,7 @@ export declare namespace SoftwareDiagnostics {
570
570
  *
571
571
  * @see {@link MatterSpecification.v13.Core} § 11.13.8.1.3
572
572
  */
573
- faultRecording: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
573
+ faultRecording: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
574
574
  }>, any>;
575
575
  };
576
576
  }, []>;
@@ -126,7 +126,7 @@ export declare namespace TargetNavigator {
126
126
  name: import("../tlv/TlvObject.js").FieldType<string>;
127
127
  }>[]>;
128
128
  currentTarget: import("../tlv/TlvObject.js").OptionalFieldType<number>;
129
- data: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
129
+ data: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
130
130
  }>;
131
131
  /**
132
132
  * Body of the TargetNavigator targetUpdated event
@@ -233,7 +233,7 @@ export declare namespace TargetNavigator {
233
233
  name: import("../tlv/TlvObject.js").FieldType<string>;
234
234
  }>[]>;
235
235
  currentTarget: import("../tlv/TlvObject.js").OptionalFieldType<number>;
236
- data: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
236
+ data: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
237
237
  }>, any>;
238
238
  };
239
239
  }, []>;
@@ -909,7 +909,7 @@ export declare namespace ThreadNetworkDiagnostics {
909
909
  *
910
910
  * @see {@link MatterSpecification.v13.Core} § 11.14.6.6
911
911
  */
912
- readonly meshLocalPrefix: Attribute<Uint8Array | null, any>;
912
+ readonly meshLocalPrefix: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
913
913
  /**
914
914
  * The NeighborTable attribute shall indicate the current list of Nodes that comprise the neighbor table on
915
915
  * the Node.
@@ -1175,7 +1175,7 @@ export declare namespace ThreadNetworkDiagnostics {
1175
1175
  *
1176
1176
  * @see {@link MatterSpecification.v13.Core} § 11.14.6.61
1177
1177
  */
1178
- readonly channelPage0Mask: Attribute<Uint8Array | null, any>;
1178
+ readonly channelPage0Mask: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
1179
1179
  /**
1180
1180
  * The OperationalDatasetComponents attribute is a collection of flags to indicate the presence of various
1181
1181
  * operationally acquired values.
@@ -1769,7 +1769,7 @@ export declare namespace ThreadNetworkDiagnostics {
1769
1769
  *
1770
1770
  * @see {@link MatterSpecification.v13.Core} § 11.14.6.6
1771
1771
  */
1772
- readonly meshLocalPrefix: Attribute<Uint8Array | null, any>;
1772
+ readonly meshLocalPrefix: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
1773
1773
  /**
1774
1774
  * The NeighborTable attribute shall indicate the current list of Nodes that comprise the neighbor table on
1775
1775
  * the Node.
@@ -2035,7 +2035,7 @@ export declare namespace ThreadNetworkDiagnostics {
2035
2035
  *
2036
2036
  * @see {@link MatterSpecification.v13.Core} § 11.14.6.61
2037
2037
  */
2038
- readonly channelPage0Mask: Attribute<Uint8Array | null, any>;
2038
+ readonly channelPage0Mask: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
2039
2039
  /**
2040
2040
  * The OperationalDatasetComponents attribute is a collection of flags to indicate the presence of various
2041
2041
  * operationally acquired values.
@@ -2945,7 +2945,7 @@ export declare namespace ThreadNetworkDiagnostics {
2945
2945
  readonly networkName: Attribute<string | null, any>;
2946
2946
  readonly panId: Attribute<number | null, any>;
2947
2947
  readonly extendedPanId: Attribute<number | bigint | null, any>;
2948
- readonly meshLocalPrefix: Attribute<Uint8Array | null, any>;
2948
+ readonly meshLocalPrefix: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
2949
2949
  readonly neighborTable: Attribute<import("../tlv/TlvObject.js").TypeFromFields<{
2950
2950
  /**
2951
2951
  * This field shall specify the IEEE 802.15.4 extended address for the neighboring Node.
@@ -3138,7 +3138,7 @@ export declare namespace ThreadNetworkDiagnostics {
3138
3138
  */
3139
3139
  flags: import("../tlv/TlvObject.js").FieldType<number>;
3140
3140
  }> | null, any>;
3141
- readonly channelPage0Mask: Attribute<Uint8Array | null, any>;
3141
+ readonly channelPage0Mask: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
3142
3142
  readonly operationalDatasetComponents: Attribute<import("../tlv/TlvObject.js").TypeFromFields<{
3143
3143
  /**
3144
3144
  * This field shall be True if the Node has an active timestamp present, else False.
@@ -38,7 +38,7 @@ export declare namespace WakeOnLan {
38
38
  *
39
39
  * @see {@link MatterSpecification.v13.Cluster} § 1.12.4.2
40
40
  */
41
- readonly linkLocalAddress: OptionalFixedAttribute<Uint8Array, any>;
41
+ readonly linkLocalAddress: OptionalFixedAttribute<Uint8Array<ArrayBufferLike>, any>;
42
42
  };
43
43
  }, []>;
44
44
  /**
@@ -315,7 +315,7 @@ export declare namespace WiFiNetworkDiagnostics {
315
315
  *
316
316
  * @see {@link MatterSpecification.v13.Core} § 11.15.6.1
317
317
  */
318
- readonly bssid: Attribute<Uint8Array | null, any>;
318
+ readonly bssid: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
319
319
  /**
320
320
  * The SecurityType attribute shall indicate the current type of Wi-Fi security used.
321
321
  *
@@ -533,7 +533,7 @@ export declare namespace WiFiNetworkDiagnostics {
533
533
  *
534
534
  * @see {@link MatterSpecification.v13.Core} § 11.15.6.1
535
535
  */
536
- readonly bssid: Attribute<Uint8Array | null, any>;
536
+ readonly bssid: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
537
537
  /**
538
538
  * The SecurityType attribute shall indicate the current type of Wi-Fi security used.
539
539
  *
@@ -815,7 +815,7 @@ export declare namespace WiFiNetworkDiagnostics {
815
815
  errorCounts: boolean;
816
816
  }];
817
817
  };
818
- readonly bssid: Attribute<Uint8Array | null, any>;
818
+ readonly bssid: Attribute<Uint8Array<ArrayBufferLike> | null, any>;
819
819
  readonly securityType: Attribute<SecurityType | null, any>;
820
820
  readonly wiFiVersion: Attribute<WiFiVersion | null, any>;
821
821
  readonly channelNumber: Attribute<number | null, any>;
@@ -53,7 +53,7 @@ export declare class ByteArrayBitmapSchemaInternal<T extends BitSchema> extends
53
53
  private readonly byteArrayLength;
54
54
  private readonly maskOffset;
55
55
  constructor(bitSchemas: T);
56
- encodeInternal(value: TypeFromBitSchema<T>): Uint8Array;
56
+ encodeInternal(value: TypeFromBitSchema<T>): Uint8Array<ArrayBuffer>;
57
57
  decodeInternal(bitmap: Uint8Array): TypeFromBitSchema<T>;
58
58
  }
59
59
  /** Create a partial bitmap from a flag sequence */
@@ -55,7 +55,7 @@ export declare const QrCodeTlvDataDefaultFields: {
55
55
  /** Device Serial # */
56
56
  serialNumber: import("../tlv/TlvObject.js").OptionalFieldType<import("../tlv/TlvSchema.js").TlvStream>;
57
57
  pbkdfIterations: import("../tlv/TlvObject.js").OptionalFieldType<number>;
58
- pbkdfSalt: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array>;
58
+ pbkdfSalt: import("../tlv/TlvObject.js").OptionalFieldType<Uint8Array<ArrayBufferLike>>;
59
59
  /**
60
60
  * Number of devices that are expected to be onboarded using this payload when using the Enhanced Commissioning
61
61
  * Method
@@ -85,7 +85,7 @@ declare class QrPairingCodeSchema extends Schema<QrCodeData[], string> {
85
85
  * @param data Data object to encode
86
86
  * @param schema The schema to use for encoding the TLV data, by default a schema with the QrCodeTlvDataDefaultFields is used
87
87
  */
88
- encodeTlvData(data: Record<string, any>, schema?: TlvSchema<any>): Uint8Array;
88
+ encodeTlvData(data: Record<string, any>, schema?: TlvSchema<any>): Uint8Array<ArrayBufferLike>;
89
89
  }
90
90
  export declare const QrPairingCodeCodec: QrPairingCodeSchema;
91
91
  export type ManualPairingData = {
@@ -67,7 +67,7 @@ export declare class TlvByteArrayWriter implements TlvWriter {
67
67
  private readonly writer;
68
68
  writeTag(typeLength: TlvTypeLength, tag?: TlvTag): void;
69
69
  writePrimitive<T extends TlvTypeLength>(typeLength: T, value: TlvToPrimitive[T["type"]]): void;
70
- toByteArray(): Uint8Array;
70
+ toByteArray(): Uint8Array<ArrayBufferLike>;
71
71
  }
72
72
  export declare class TlvByteArrayReader implements TlvReader {
73
73
  private readonly reader;
@@ -202,7 +202,7 @@ export declare namespace AccessControl {
202
202
  *
203
203
  * @see {@link MatterSpecification.v13.Core} § 9.10.4.6.1
204
204
  */
205
- data: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
205
+ data: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
206
206
  fabricIndex: import("../tlv/TlvObject.js").FieldType<import("../datatype/FabricIndex.js").FabricIndex>;
207
207
  }>;
208
208
  /**
@@ -425,7 +425,7 @@ export declare namespace AccessControl {
425
425
  *
426
426
  * @see {@link MatterSpecification.v13.Core} § 9.10.4.6.1
427
427
  */
428
- data: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
428
+ data: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
429
429
  fabricIndex: import("../tlv/TlvObject.js").FieldType<import("../datatype/FabricIndex.js").FabricIndex>;
430
430
  }> | null>;
431
431
  fabricIndex: import("../tlv/TlvObject.js").FieldType<import("../datatype/FabricIndex.js").FabricIndex>;
@@ -578,7 +578,7 @@ export declare namespace AccessControl {
578
578
  *
579
579
  * @see {@link MatterSpecification.v13.Core} § 9.10.4.6.1
580
580
  */
581
- data: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
581
+ data: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
582
582
  fabricIndex: import("../tlv/TlvObject.js").FieldType<import("../datatype/FabricIndex.js").FabricIndex>;
583
583
  }>[], any>;
584
584
  /**
@@ -822,7 +822,7 @@ export declare namespace AccessControl {
822
822
  *
823
823
  * @see {@link MatterSpecification.v13.Core} § 9.10.4.6.1
824
824
  */
825
- data: import("../tlv/TlvObject.js").FieldType<Uint8Array>;
825
+ data: import("../tlv/TlvObject.js").FieldType<Uint8Array<ArrayBufferLike>>;
826
826
  fabricIndex: import("../tlv/TlvObject.js").FieldType<import("../datatype/FabricIndex.js").FabricIndex>;
827
827
  }> | null>;
828
828
  fabricIndex: import("../tlv/TlvObject.js").FieldType<import("../datatype/FabricIndex.js").FabricIndex>;