@oxidezap/whatsapp-rust-bridge 0.12.0 → 0.13.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.
|
@@ -2607,7 +2607,7 @@ export type PresenceStatus = "available" | "unavailable";
|
|
|
2607
2607
|
* `From` impls below by walking the source chain. This keeps the JS object
|
|
2608
2608
|
* shape predictable and the codegen / `Tsify` output simple.
|
|
2609
2609
|
*/
|
|
2610
|
-
export type BridgeError = { kind: "server"; serverCode: number; serverText: string } | { kind: "timeout" } | { kind: "not-connected" } | { kind: "disconnected"; reason: string } | { kind: "invalid-argument"; field: string; reason: string } | { kind: "protocol-violation"; reason: string } | { kind: "crypto"; operation: string } | { kind: "storage"; operation: string } | { kind: "internal"; message: string };
|
|
2610
|
+
export type BridgeError = { kind: "server"; serverCode: number; serverText: string } | { kind: "timeout" } | { kind: "not-connected" } | { kind: "disconnected"; reason: string } | { kind: "invalid-argument"; field: string; reason: string } | { kind: "protocol-violation"; reason: string } | { kind: "crypto"; operation: string } | { kind: "storage"; operation: string } | { kind: "no-recipient-device"; attempted: number } | { kind: "internal"; message: string };
|
|
2611
2611
|
|
|
2612
2612
|
/**
|
|
2613
2613
|
* Public portion of one pre-key in a supplied pairwise session bundle.
|
|
@@ -4655,9 +4655,9 @@ export interface InitOutput {
|
|
|
4655
4655
|
readonly intounderlyingsource_cancel: (a: number) => void;
|
|
4656
4656
|
readonly intounderlyingsource_pull: (a: number, b: number) => number;
|
|
4657
4657
|
readonly __wasm_bindgen_func_elem_4333: (a: number, b: number, c: number) => void;
|
|
4658
|
-
readonly
|
|
4659
|
-
readonly
|
|
4660
|
-
readonly
|
|
4658
|
+
readonly __wasm_bindgen_func_elem_26304: (a: number, b: number, c: number, d: number) => void;
|
|
4659
|
+
readonly __wasm_bindgen_func_elem_26306: (a: number, b: number, c: number, d: number) => void;
|
|
4660
|
+
readonly __wasm_bindgen_func_elem_9238: (a: number, b: number, c: number) => void;
|
|
4661
4661
|
readonly __wasm_bindgen_func_elem_4332: (a: number, b: number, c: number) => void;
|
|
4662
4662
|
readonly __wasm_bindgen_func_elem_4331: (a: number, b: number) => void;
|
|
4663
4663
|
readonly __wbindgen_export: (a: number, b: number) => number;
|
|
Binary file
|
package/package.json
CHANGED