@xmtp/wasm-bindings 1.3.5 → 1.3.6
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/dist/bindings_wasm.d.ts +34 -34
- package/dist/bindings_wasm.js +30 -30
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +32 -32
- package/dist/version.json +2 -2
- package/package.json +1 -1
package/dist/bindings_wasm.d.ts
CHANGED
|
@@ -111,6 +111,8 @@ type LogLevel = "off" | "error" | "warn" | "info" | "debug" | "trace";
|
|
|
111
111
|
* *This API requires the following crate features to be activated: `ReadableStreamType`*
|
|
112
112
|
*/
|
|
113
113
|
type ReadableStreamType = "bytes";
|
|
114
|
+
export type UserPreference = { type: "Consent"; consent: Consent } | { type: "HmacKeyUpdate"; key: number[] };
|
|
115
|
+
|
|
114
116
|
export interface Identifier {
|
|
115
117
|
identifier: string;
|
|
116
118
|
identifierKind: IdentifierKind;
|
|
@@ -118,8 +120,6 @@ export interface Identifier {
|
|
|
118
120
|
|
|
119
121
|
export type IdentifierKind = "Ethereum" | "Passkey";
|
|
120
122
|
|
|
121
|
-
export type UserPreference = { type: "Consent"; consent: Consent } | { type: "HmacKeyUpdate"; key: number[] };
|
|
122
|
-
|
|
123
123
|
export class ApiStats {
|
|
124
124
|
private constructor();
|
|
125
125
|
free(): void;
|
|
@@ -737,12 +737,16 @@ export interface InitOutput {
|
|
|
737
737
|
readonly listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
738
738
|
readonly messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
739
739
|
readonly __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
740
|
+
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
741
|
+
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
740
742
|
readonly __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
741
743
|
readonly __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
742
744
|
readonly __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
743
745
|
readonly __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
744
746
|
readonly __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
745
747
|
readonly __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
748
|
+
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => bigint;
|
|
749
|
+
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: bigint) => void;
|
|
746
750
|
readonly __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
747
751
|
readonly __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
748
752
|
readonly __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
@@ -806,24 +810,6 @@ export interface InitOutput {
|
|
|
806
810
|
readonly __wbg_get_encodedcontent_content: (a: number) => any;
|
|
807
811
|
readonly __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
808
812
|
readonly encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
809
|
-
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
810
|
-
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
811
|
-
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
812
|
-
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
813
|
-
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
814
|
-
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
815
|
-
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
816
|
-
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
817
|
-
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
818
|
-
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
819
|
-
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
820
|
-
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
821
|
-
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
822
|
-
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
823
|
-
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
824
|
-
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
825
|
-
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
826
|
-
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
827
813
|
readonly __wbg_installation_free: (a: number, b: number) => void;
|
|
828
814
|
readonly __wbg_get_installation_bytes: (a: number) => any;
|
|
829
815
|
readonly __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
@@ -931,24 +917,12 @@ export interface InitOutput {
|
|
|
931
917
|
readonly __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
932
918
|
readonly __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
933
919
|
readonly __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
934
|
-
readonly __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
935
|
-
readonly __wbg_set_conversationdebuginfo_cursor: (a: number, b: bigint) => void;
|
|
936
|
-
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
937
|
-
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
938
|
-
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
939
|
-
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
940
920
|
readonly __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
941
921
|
readonly __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
942
922
|
readonly __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
943
923
|
readonly __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
944
924
|
readonly __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
945
925
|
readonly __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
946
|
-
readonly __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
947
|
-
readonly __wbg_get_conversationdebuginfo_cursor: (a: number) => bigint;
|
|
948
|
-
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
949
|
-
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
950
|
-
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
951
|
-
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
952
926
|
readonly __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
953
927
|
readonly __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
954
928
|
readonly __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
@@ -987,6 +961,32 @@ export interface InitOutput {
|
|
|
987
961
|
readonly decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
988
962
|
readonly getInboxIdForIdentifier: (a: number, b: number, c: any) => any;
|
|
989
963
|
readonly generateInboxId: (a: any) => [number, number, number, number];
|
|
964
|
+
readonly __wbg_apistats_free: (a: number, b: number) => void;
|
|
965
|
+
readonly __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
966
|
+
readonly __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
967
|
+
readonly __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
968
|
+
readonly __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
969
|
+
readonly __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
970
|
+
readonly __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
971
|
+
readonly __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
972
|
+
readonly __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
973
|
+
readonly __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
974
|
+
readonly __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
975
|
+
readonly __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
976
|
+
readonly __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
977
|
+
readonly __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
978
|
+
readonly __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
979
|
+
readonly __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
980
|
+
readonly __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
981
|
+
readonly __wbg_identitystats_free: (a: number, b: number) => void;
|
|
982
|
+
readonly __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
983
|
+
readonly __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
984
|
+
readonly __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
985
|
+
readonly __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
986
|
+
readonly __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
987
|
+
readonly __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
988
|
+
readonly __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
989
|
+
readonly __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
990
990
|
readonly __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
991
991
|
readonly __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
992
992
|
readonly __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
@@ -1052,8 +1052,8 @@ export interface InitOutput {
|
|
|
1052
1052
|
readonly __externref_table_dealloc: (a: number) => void;
|
|
1053
1053
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h469745bf9f974f96: (a: number, b: number) => void;
|
|
1054
1054
|
readonly _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc5db0b12f1fa1c9f: (a: number, b: number) => void;
|
|
1055
|
-
readonly
|
|
1056
|
-
readonly
|
|
1055
|
+
readonly closure4977_externref_shim: (a: number, b: number, c: any) => void;
|
|
1056
|
+
readonly closure5921_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
1057
1057
|
readonly __wbindgen_start: () => void;
|
|
1058
1058
|
}
|
|
1059
1059
|
|
package/dist/bindings_wasm.js
CHANGED
|
@@ -442,11 +442,11 @@ function __wbg_adapter_53(arg0, arg1) {
|
|
|
442
442
|
}
|
|
443
443
|
|
|
444
444
|
function __wbg_adapter_56(arg0, arg1, arg2) {
|
|
445
|
-
wasm.
|
|
445
|
+
wasm.closure4977_externref_shim(arg0, arg1, arg2);
|
|
446
446
|
}
|
|
447
447
|
|
|
448
448
|
function __wbg_adapter_785(arg0, arg1, arg2, arg3) {
|
|
449
|
-
wasm.
|
|
449
|
+
wasm.closure5921_externref_shim(arg0, arg1, arg2, arg3);
|
|
450
450
|
}
|
|
451
451
|
|
|
452
452
|
/**
|
|
@@ -1844,14 +1844,14 @@ export class ConversationDebugInfo {
|
|
|
1844
1844
|
* @returns {bigint}
|
|
1845
1845
|
*/
|
|
1846
1846
|
get epoch() {
|
|
1847
|
-
const ret = wasm.
|
|
1847
|
+
const ret = wasm.__wbg_get_conversationdebuginfo_epoch(this.__wbg_ptr);
|
|
1848
1848
|
return BigInt.asUintN(64, ret);
|
|
1849
1849
|
}
|
|
1850
1850
|
/**
|
|
1851
1851
|
* @param {bigint} arg0
|
|
1852
1852
|
*/
|
|
1853
1853
|
set epoch(arg0) {
|
|
1854
|
-
wasm.
|
|
1854
|
+
wasm.__wbg_set_conversationdebuginfo_epoch(this.__wbg_ptr, arg0);
|
|
1855
1855
|
}
|
|
1856
1856
|
/**
|
|
1857
1857
|
* @returns {boolean}
|
|
@@ -1916,14 +1916,14 @@ export class ConversationDebugInfo {
|
|
|
1916
1916
|
* @returns {bigint}
|
|
1917
1917
|
*/
|
|
1918
1918
|
get cursor() {
|
|
1919
|
-
const ret = wasm.
|
|
1919
|
+
const ret = wasm.__wbg_get_conversationdebuginfo_cursor(this.__wbg_ptr);
|
|
1920
1920
|
return ret;
|
|
1921
1921
|
}
|
|
1922
1922
|
/**
|
|
1923
1923
|
* @param {bigint} arg0
|
|
1924
1924
|
*/
|
|
1925
1925
|
set cursor(arg0) {
|
|
1926
|
-
wasm.
|
|
1926
|
+
wasm.__wbg_set_conversationdebuginfo_cursor(this.__wbg_ptr, arg0);
|
|
1927
1927
|
}
|
|
1928
1928
|
}
|
|
1929
1929
|
|
|
@@ -2845,14 +2845,14 @@ export class HmacKey {
|
|
|
2845
2845
|
* @returns {bigint}
|
|
2846
2846
|
*/
|
|
2847
2847
|
get epoch() {
|
|
2848
|
-
const ret = wasm.
|
|
2848
|
+
const ret = wasm.__wbg_get_conversationdebuginfo_epoch(this.__wbg_ptr);
|
|
2849
2849
|
return ret;
|
|
2850
2850
|
}
|
|
2851
2851
|
/**
|
|
2852
2852
|
* @param {bigint} arg0
|
|
2853
2853
|
*/
|
|
2854
2854
|
set epoch(arg0) {
|
|
2855
|
-
wasm.
|
|
2855
|
+
wasm.__wbg_set_conversationdebuginfo_epoch(this.__wbg_ptr, arg0);
|
|
2856
2856
|
}
|
|
2857
2857
|
}
|
|
2858
2858
|
|
|
@@ -3366,27 +3366,27 @@ export class Lifetime {
|
|
|
3366
3366
|
* @returns {bigint}
|
|
3367
3367
|
*/
|
|
3368
3368
|
get not_before() {
|
|
3369
|
-
const ret = wasm.
|
|
3369
|
+
const ret = wasm.__wbg_get_conversationdebuginfo_epoch(this.__wbg_ptr);
|
|
3370
3370
|
return BigInt.asUintN(64, ret);
|
|
3371
3371
|
}
|
|
3372
3372
|
/**
|
|
3373
3373
|
* @param {bigint} arg0
|
|
3374
3374
|
*/
|
|
3375
3375
|
set not_before(arg0) {
|
|
3376
|
-
wasm.
|
|
3376
|
+
wasm.__wbg_set_conversationdebuginfo_epoch(this.__wbg_ptr, arg0);
|
|
3377
3377
|
}
|
|
3378
3378
|
/**
|
|
3379
3379
|
* @returns {bigint}
|
|
3380
3380
|
*/
|
|
3381
3381
|
get not_after() {
|
|
3382
|
-
const ret = wasm.
|
|
3382
|
+
const ret = wasm.__wbg_get_conversationdebuginfo_cursor(this.__wbg_ptr);
|
|
3383
3383
|
return BigInt.asUintN(64, ret);
|
|
3384
3384
|
}
|
|
3385
3385
|
/**
|
|
3386
3386
|
* @param {bigint} arg0
|
|
3387
3387
|
*/
|
|
3388
3388
|
set not_after(arg0) {
|
|
3389
|
-
wasm.
|
|
3389
|
+
wasm.__wbg_set_conversationdebuginfo_cursor(this.__wbg_ptr, arg0);
|
|
3390
3390
|
}
|
|
3391
3391
|
}
|
|
3392
3392
|
|
|
@@ -3780,14 +3780,14 @@ export class Message {
|
|
|
3780
3780
|
* @returns {bigint}
|
|
3781
3781
|
*/
|
|
3782
3782
|
get sentAtNs() {
|
|
3783
|
-
const ret = wasm.
|
|
3783
|
+
const ret = wasm.__wbg_get_conversationdebuginfo_epoch(this.__wbg_ptr);
|
|
3784
3784
|
return ret;
|
|
3785
3785
|
}
|
|
3786
3786
|
/**
|
|
3787
3787
|
* @param {bigint} arg0
|
|
3788
3788
|
*/
|
|
3789
3789
|
set sentAtNs(arg0) {
|
|
3790
|
-
wasm.
|
|
3790
|
+
wasm.__wbg_set_conversationdebuginfo_epoch(this.__wbg_ptr, arg0);
|
|
3791
3791
|
}
|
|
3792
3792
|
/**
|
|
3793
3793
|
* @returns {string}
|
|
@@ -3930,27 +3930,27 @@ export class MessageDisappearingSettings {
|
|
|
3930
3930
|
* @returns {bigint}
|
|
3931
3931
|
*/
|
|
3932
3932
|
get fromNs() {
|
|
3933
|
-
const ret = wasm.
|
|
3933
|
+
const ret = wasm.__wbg_get_conversationdebuginfo_epoch(this.__wbg_ptr);
|
|
3934
3934
|
return ret;
|
|
3935
3935
|
}
|
|
3936
3936
|
/**
|
|
3937
3937
|
* @param {bigint} arg0
|
|
3938
3938
|
*/
|
|
3939
3939
|
set fromNs(arg0) {
|
|
3940
|
-
wasm.
|
|
3940
|
+
wasm.__wbg_set_conversationdebuginfo_epoch(this.__wbg_ptr, arg0);
|
|
3941
3941
|
}
|
|
3942
3942
|
/**
|
|
3943
3943
|
* @returns {bigint}
|
|
3944
3944
|
*/
|
|
3945
3945
|
get inNs() {
|
|
3946
|
-
const ret = wasm.
|
|
3946
|
+
const ret = wasm.__wbg_get_conversationdebuginfo_cursor(this.__wbg_ptr);
|
|
3947
3947
|
return ret;
|
|
3948
3948
|
}
|
|
3949
3949
|
/**
|
|
3950
3950
|
* @param {bigint} arg0
|
|
3951
3951
|
*/
|
|
3952
3952
|
set inNs(arg0) {
|
|
3953
|
-
wasm.
|
|
3953
|
+
wasm.__wbg_set_conversationdebuginfo_cursor(this.__wbg_ptr, arg0);
|
|
3954
3954
|
}
|
|
3955
3955
|
/**
|
|
3956
3956
|
* @param {bigint} from_ns
|
|
@@ -5457,22 +5457,22 @@ function __wbg_get_imports() {
|
|
|
5457
5457
|
const ret = arg0.now();
|
|
5458
5458
|
return ret;
|
|
5459
5459
|
};
|
|
5460
|
-
imports.wbg.
|
|
5460
|
+
imports.wbg.__wbg_onclose_9ec566c939db883c = function(arg0) {
|
|
5461
5461
|
arg0.on_close();
|
|
5462
5462
|
};
|
|
5463
|
-
imports.wbg.
|
|
5463
|
+
imports.wbg.__wbg_onconsentupdate_c41db1a3513ccedd = function(arg0, arg1) {
|
|
5464
5464
|
arg0.on_consent_update(arg1);
|
|
5465
5465
|
};
|
|
5466
|
-
imports.wbg.
|
|
5466
|
+
imports.wbg.__wbg_onconversation_1f5e2746ad617292 = function(arg0, arg1) {
|
|
5467
5467
|
arg0.on_conversation(Conversation.__wrap(arg1));
|
|
5468
5468
|
};
|
|
5469
|
-
imports.wbg.
|
|
5469
|
+
imports.wbg.__wbg_onerror_287f53d8d3d7a495 = function(arg0, arg1) {
|
|
5470
5470
|
arg0.on_error(arg1);
|
|
5471
5471
|
};
|
|
5472
|
-
imports.wbg.
|
|
5472
|
+
imports.wbg.__wbg_onmessage_544b4269a0b96803 = function(arg0, arg1) {
|
|
5473
5473
|
arg0.on_message(Message.__wrap(arg1));
|
|
5474
5474
|
};
|
|
5475
|
-
imports.wbg.
|
|
5475
|
+
imports.wbg.__wbg_onuserpreferenceupdate_4b03392abf938713 = function(arg0, arg1, arg2) {
|
|
5476
5476
|
var v0 = getArrayJsValueFromWasm0(arg1, arg2).slice();
|
|
5477
5477
|
wasm.__wbindgen_free(arg1, arg2 * 4, 4);
|
|
5478
5478
|
arg0.on_user_preference_update(v0);
|
|
@@ -5758,16 +5758,16 @@ function __wbg_get_imports() {
|
|
|
5758
5758
|
const ret = false;
|
|
5759
5759
|
return ret;
|
|
5760
5760
|
};
|
|
5761
|
-
imports.wbg.
|
|
5762
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
5761
|
+
imports.wbg.__wbindgen_closure_wrapper19551 = function(arg0, arg1, arg2) {
|
|
5762
|
+
const ret = makeMutClosure(arg0, arg1, 4661, __wbg_adapter_50);
|
|
5763
5763
|
return ret;
|
|
5764
5764
|
};
|
|
5765
|
-
imports.wbg.
|
|
5766
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
5765
|
+
imports.wbg.__wbindgen_closure_wrapper21702 = function(arg0, arg1, arg2) {
|
|
5766
|
+
const ret = makeMutClosure(arg0, arg1, 4954, __wbg_adapter_53);
|
|
5767
5767
|
return ret;
|
|
5768
5768
|
};
|
|
5769
|
-
imports.wbg.
|
|
5770
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
5769
|
+
imports.wbg.__wbindgen_closure_wrapper22351 = function(arg0, arg1, arg2) {
|
|
5770
|
+
const ret = makeMutClosure(arg0, arg1, 4978, __wbg_adapter_56);
|
|
5771
5771
|
return ret;
|
|
5772
5772
|
};
|
|
5773
5773
|
imports.wbg.__wbindgen_debug_string = function(arg0, arg1) {
|
|
Binary file
|
|
@@ -121,12 +121,16 @@ export const __wbg_set_listconversationsoptions_limit: (a: number, b: number, c:
|
|
|
121
121
|
export const listconversationsoptions_new: (a: number, b: number, c: number, d: number, e: bigint, f: number, g: bigint, h: number, i: number, j: bigint) => number;
|
|
122
122
|
export const messagedisappearingsettings_new: (a: bigint, b: bigint) => number;
|
|
123
123
|
export const __wbg_conversationdebuginfo_free: (a: number, b: number) => void;
|
|
124
|
+
export const __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
125
|
+
export const __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
124
126
|
export const __wbg_get_conversationdebuginfo_maybeForked: (a: number) => number;
|
|
125
127
|
export const __wbg_set_conversationdebuginfo_maybeForked: (a: number, b: number) => void;
|
|
126
128
|
export const __wbg_get_conversationdebuginfo_forkDetails: (a: number) => [number, number];
|
|
127
129
|
export const __wbg_set_conversationdebuginfo_forkDetails: (a: number, b: number, c: number) => void;
|
|
128
130
|
export const __wbg_get_conversationdebuginfo_localCommitLog: (a: number) => [number, number];
|
|
129
131
|
export const __wbg_set_conversationdebuginfo_localCommitLog: (a: number, b: number, c: number) => void;
|
|
132
|
+
export const __wbg_get_conversationdebuginfo_cursor: (a: number) => bigint;
|
|
133
|
+
export const __wbg_set_conversationdebuginfo_cursor: (a: number, b: bigint) => void;
|
|
130
134
|
export const __wbg_creategroupoptions_free: (a: number, b: number) => void;
|
|
131
135
|
export const __wbg_get_creategroupoptions_permissions: (a: number) => number;
|
|
132
136
|
export const __wbg_set_creategroupoptions_permissions: (a: number, b: number) => void;
|
|
@@ -190,24 +194,6 @@ export const __wbg_set_encodedcontent_compression: (a: number, b: number) => voi
|
|
|
190
194
|
export const __wbg_get_encodedcontent_content: (a: number) => any;
|
|
191
195
|
export const __wbg_set_encodedcontent_content: (a: number, b: any) => void;
|
|
192
196
|
export const encodedcontent_new: (a: number, b: any, c: number, d: number, e: number, f: any) => number;
|
|
193
|
-
export const __wbg_apistats_free: (a: number, b: number) => void;
|
|
194
|
-
export const __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
195
|
-
export const __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
196
|
-
export const __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
197
|
-
export const __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
198
|
-
export const __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
199
|
-
export const __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
200
|
-
export const __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
201
|
-
export const __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
202
|
-
export const __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
203
|
-
export const __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
204
|
-
export const __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
205
|
-
export const __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
206
|
-
export const __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
207
|
-
export const __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
208
|
-
export const __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
209
|
-
export const __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
210
|
-
export const __wbg_identitystats_free: (a: number, b: number) => void;
|
|
211
197
|
export const __wbg_installation_free: (a: number, b: number) => void;
|
|
212
198
|
export const __wbg_get_installation_bytes: (a: number) => any;
|
|
213
199
|
export const __wbg_set_installation_bytes: (a: number, b: any) => void;
|
|
@@ -315,24 +301,12 @@ export const __wbg_set_inboxstate_inboxId: (a: number, b: number, c: number) =>
|
|
|
315
301
|
export const __wbg_set_messagedisappearingsettings_fromNs: (a: number, b: bigint) => void;
|
|
316
302
|
export const __wbg_set_messagedisappearingsettings_inNs: (a: number, b: bigint) => void;
|
|
317
303
|
export const __wbg_set_hmackey_epoch: (a: number, b: bigint) => void;
|
|
318
|
-
export const __wbg_set_conversationdebuginfo_epoch: (a: number, b: bigint) => void;
|
|
319
|
-
export const __wbg_set_conversationdebuginfo_cursor: (a: number, b: bigint) => void;
|
|
320
|
-
export const __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
321
|
-
export const __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
322
|
-
export const __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
323
|
-
export const __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
324
304
|
export const __wbg_set_lifetime_not_before: (a: number, b: bigint) => void;
|
|
325
305
|
export const __wbg_set_lifetime_not_after: (a: number, b: bigint) => void;
|
|
326
306
|
export const __wbg_set_message_sentAtNs: (a: number, b: bigint) => void;
|
|
327
307
|
export const __wbg_get_messagedisappearingsettings_fromNs: (a: number) => bigint;
|
|
328
308
|
export const __wbg_get_messagedisappearingsettings_inNs: (a: number) => bigint;
|
|
329
309
|
export const __wbg_get_hmackey_epoch: (a: number) => bigint;
|
|
330
|
-
export const __wbg_get_conversationdebuginfo_epoch: (a: number) => bigint;
|
|
331
|
-
export const __wbg_get_conversationdebuginfo_cursor: (a: number) => bigint;
|
|
332
|
-
export const __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
333
|
-
export const __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
334
|
-
export const __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
335
|
-
export const __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
336
310
|
export const __wbg_get_lifetime_not_before: (a: number) => bigint;
|
|
337
311
|
export const __wbg_get_lifetime_not_after: (a: number) => bigint;
|
|
338
312
|
export const __wbg_get_message_sentAtNs: (a: number) => bigint;
|
|
@@ -371,6 +345,32 @@ export const encodeMultiRemoteAttachment: (a: number) => [number, number, number
|
|
|
371
345
|
export const decodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
372
346
|
export const getInboxIdForIdentifier: (a: number, b: number, c: any) => any;
|
|
373
347
|
export const generateInboxId: (a: any) => [number, number, number, number];
|
|
348
|
+
export const __wbg_apistats_free: (a: number, b: number) => void;
|
|
349
|
+
export const __wbg_get_apistats_upload_key_package: (a: number) => bigint;
|
|
350
|
+
export const __wbg_set_apistats_upload_key_package: (a: number, b: bigint) => void;
|
|
351
|
+
export const __wbg_get_apistats_fetch_key_package: (a: number) => bigint;
|
|
352
|
+
export const __wbg_set_apistats_fetch_key_package: (a: number, b: bigint) => void;
|
|
353
|
+
export const __wbg_get_apistats_send_group_messages: (a: number) => bigint;
|
|
354
|
+
export const __wbg_set_apistats_send_group_messages: (a: number, b: bigint) => void;
|
|
355
|
+
export const __wbg_get_apistats_send_welcome_messages: (a: number) => bigint;
|
|
356
|
+
export const __wbg_set_apistats_send_welcome_messages: (a: number, b: bigint) => void;
|
|
357
|
+
export const __wbg_get_apistats_query_group_messages: (a: number) => bigint;
|
|
358
|
+
export const __wbg_set_apistats_query_group_messages: (a: number, b: bigint) => void;
|
|
359
|
+
export const __wbg_get_apistats_query_welcome_messages: (a: number) => bigint;
|
|
360
|
+
export const __wbg_set_apistats_query_welcome_messages: (a: number, b: bigint) => void;
|
|
361
|
+
export const __wbg_get_apistats_subscribe_messages: (a: number) => bigint;
|
|
362
|
+
export const __wbg_set_apistats_subscribe_messages: (a: number, b: bigint) => void;
|
|
363
|
+
export const __wbg_get_apistats_subscribe_welcomes: (a: number) => bigint;
|
|
364
|
+
export const __wbg_set_apistats_subscribe_welcomes: (a: number, b: bigint) => void;
|
|
365
|
+
export const __wbg_identitystats_free: (a: number, b: number) => void;
|
|
366
|
+
export const __wbg_set_identitystats_publish_identity_update: (a: number, b: bigint) => void;
|
|
367
|
+
export const __wbg_set_identitystats_get_identity_updates_v2: (a: number, b: bigint) => void;
|
|
368
|
+
export const __wbg_set_identitystats_get_inbox_ids: (a: number, b: bigint) => void;
|
|
369
|
+
export const __wbg_set_identitystats_verify_smart_contract_wallet_signature: (a: number, b: bigint) => void;
|
|
370
|
+
export const __wbg_get_identitystats_publish_identity_update: (a: number) => bigint;
|
|
371
|
+
export const __wbg_get_identitystats_get_identity_updates_v2: (a: number) => bigint;
|
|
372
|
+
export const __wbg_get_identitystats_get_inbox_ids: (a: number) => bigint;
|
|
373
|
+
export const __wbg_get_identitystats_verify_smart_contract_wallet_signature: (a: number) => bigint;
|
|
374
374
|
export const __wbg_permissionpolicyset_free: (a: number, b: number) => void;
|
|
375
375
|
export const __wbg_get_permissionpolicyset_addMemberPolicy: (a: number) => number;
|
|
376
376
|
export const __wbg_set_permissionpolicyset_addMemberPolicy: (a: number, b: number) => void;
|
|
@@ -436,6 +436,6 @@ export const __wbindgen_export_7: WebAssembly.Table;
|
|
|
436
436
|
export const __externref_table_dealloc: (a: number) => void;
|
|
437
437
|
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__h469745bf9f974f96: (a: number, b: number) => void;
|
|
438
438
|
export const _dyn_core__ops__function__FnMut_____Output___R_as_wasm_bindgen__closure__WasmClosure___describe__invoke__hc5db0b12f1fa1c9f: (a: number, b: number) => void;
|
|
439
|
-
export const
|
|
440
|
-
export const
|
|
439
|
+
export const closure4977_externref_shim: (a: number, b: number, c: any) => void;
|
|
440
|
+
export const closure5921_externref_shim: (a: number, b: number, c: any, d: any) => void;
|
|
441
441
|
export const __wbindgen_start: () => void;
|
package/dist/version.json
CHANGED