mqtt5-wasm 1.2.0 → 1.3.0

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/README.md CHANGED
@@ -31,7 +31,7 @@ npm install mqtt5-wasm
31
31
 
32
32
  ```toml
33
33
  [dependencies]
34
- mqtt5-wasm = "1.2"
34
+ mqtt5-wasm = "1.3"
35
35
  ```
36
36
 
37
37
  Build with wasm-bindgen:
package/mqtt5_wasm.d.ts CHANGED
@@ -644,12 +644,12 @@ export interface InitOutput {
644
644
  readonly willmessage_topic: (a: number, b: number) => void;
645
645
  readonly willmessage_willDelayInterval: (a: number) => number;
646
646
  readonly createCodecRegistry: () => number;
647
- readonly gzipcodec_withLevel: (a: number, b: number) => number;
647
+ readonly gzipcodec_withMinSize: (a: number, b: number) => number;
648
+ readonly gzipcodec_withMaxDecompressedSize: (a: number, b: number) => number;
648
649
  readonly gzipcodec_new: () => number;
649
650
  readonly createGzipCodec: (a: number, b: number) => number;
650
651
  readonly __wbg_gzipcodec_free: (a: number, b: number) => void;
651
- readonly gzipcodec_withMinSize: (a: number, b: number) => number;
652
- readonly gzipcodec_withMaxDecompressedSize: (a: number, b: number) => number;
652
+ readonly gzipcodec_withLevel: (a: number, b: number) => number;
653
653
  readonly __wasm_bindgen_func_elem_2610: (a: number, b: number) => void;
654
654
  readonly __wasm_bindgen_func_elem_2770: (a: number, b: number) => void;
655
655
  readonly __wasm_bindgen_func_elem_183: (a: number, b: number) => void;
package/mqtt5_wasm.js CHANGED
@@ -2483,7 +2483,7 @@ function __wbg_get_imports() {
2483
2483
  __wbg_send_d31a693c975dea74: function() { return handleError(function (arg0, arg1, arg2) {
2484
2484
  getObject(arg0).send(getArrayU8FromWasm0(arg1, arg2));
2485
2485
  }, arguments); },
2486
- __wbg_setTimeout_28af72ed644fd498: function(arg0, arg1) {
2486
+ __wbg_setTimeout_03fb9e6085cb7271: function(arg0, arg1) {
2487
2487
  const ret = setTimeout(getObject(arg0), arg1);
2488
2488
  return ret;
2489
2489
  },
Binary file
@@ -229,12 +229,12 @@ export const willmessage_set_willDelayInterval: (a: number, b: number) => void;
229
229
  export const willmessage_topic: (a: number, b: number) => void;
230
230
  export const willmessage_willDelayInterval: (a: number) => number;
231
231
  export const createCodecRegistry: () => number;
232
- export const gzipcodec_withLevel: (a: number, b: number) => number;
232
+ export const gzipcodec_withMinSize: (a: number, b: number) => number;
233
+ export const gzipcodec_withMaxDecompressedSize: (a: number, b: number) => number;
233
234
  export const gzipcodec_new: () => number;
234
235
  export const createGzipCodec: (a: number, b: number) => number;
235
236
  export const __wbg_gzipcodec_free: (a: number, b: number) => void;
236
- export const gzipcodec_withMinSize: (a: number, b: number) => number;
237
- export const gzipcodec_withMaxDecompressedSize: (a: number, b: number) => number;
237
+ export const gzipcodec_withLevel: (a: number, b: number) => number;
238
238
  export const __wasm_bindgen_func_elem_2610: (a: number, b: number) => void;
239
239
  export const __wasm_bindgen_func_elem_2770: (a: number, b: number) => void;
240
240
  export const __wasm_bindgen_func_elem_183: (a: number, b: number) => void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mqtt5-wasm",
3
3
  "type": "module",
4
- "version": "1.2.0",
4
+ "version": "1.3.0",
5
5
  "description": "MQTT v5.0 WebAssembly client and broker for browser environments",
6
6
  "license": "MIT OR Apache-2.0",
7
7
  "repository": {