@xmtp/wasm-bindings 1.10.0-rc2 → 1.11.0-dev.57a7203
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 +271 -139
- package/dist/bindings_wasm.js +514 -461
- package/dist/bindings_wasm_bg.wasm +0 -0
- package/dist/bindings_wasm_bg.wasm.d.ts +124 -123
- package/package.json +3 -4
|
Binary file
|
|
@@ -1,117 +1,36 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export const memory: WebAssembly.Memory;
|
|
4
|
-
export const __wbg_backend_free: (a: number, b: number) => void;
|
|
5
|
-
export const __wbg_backendbuilder_free: (a: number, b: number) => void;
|
|
6
|
-
export const __wbg_get_backendbuilder_env: (a: number) => number;
|
|
7
|
-
export const __wbg_get_backendbuilder_readonly: (a: number) => number;
|
|
8
|
-
export const __wbg_set_backendbuilder_env: (a: number, b: number) => void;
|
|
9
|
-
export const __wbg_set_backendbuilder_readonly: (a: number, b: number) => void;
|
|
10
|
-
export const backend_appVersion: (a: number) => [number, number];
|
|
11
|
-
export const backend_env: (a: number) => number;
|
|
12
|
-
export const backend_gatewayHost: (a: number) => [number, number];
|
|
13
|
-
export const backend_v3Host: (a: number) => [number, number];
|
|
14
|
-
export const backendbuilder_authCallback: (a: number, b: any) => void;
|
|
15
|
-
export const backendbuilder_authHandle: (a: number, b: number) => void;
|
|
16
|
-
export const backendbuilder_build: (a: number) => [number, number, number];
|
|
17
|
-
export const backendbuilder_new: (a: number) => number;
|
|
18
|
-
export const backendbuilder_setApiUrl: (a: number, b: number, c: number) => number;
|
|
19
|
-
export const backendbuilder_setAppVersion: (a: number, b: number, c: number) => number;
|
|
20
|
-
export const backendbuilder_setGatewayHost: (a: number, b: number, c: number) => number;
|
|
21
|
-
export const backendbuilder_setReadonly: (a: number, b: number) => number;
|
|
22
|
-
export const client_fetchLatestInboxUpdatesCount: (a: number, b: number, c: number, d: number) => any;
|
|
23
|
-
export const client_fetchOwnInboxUpdatesCount: (a: number, b: number) => any;
|
|
24
|
-
export const client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
25
|
-
export const client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
26
|
-
export const client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
27
|
-
export const client_inboxState: (a: number, b: number) => any;
|
|
28
|
-
export const client_setConsentStates: (a: number, b: number, c: number) => any;
|
|
29
|
-
export const contentTypeLeaveRequest: () => any;
|
|
30
|
-
export const contentTypeMarkdown: () => any;
|
|
31
|
-
export const contentTypeReadReceipt: () => any;
|
|
32
|
-
export const contentTypeRemoteAttachment: () => any;
|
|
33
|
-
export const contentTypeText: () => any;
|
|
34
|
-
export const contentTypeTransactionReference: () => any;
|
|
35
|
-
export const contentTypeWalletSendCalls: () => any;
|
|
36
|
-
export const conversation_consentState: (a: number) => [number, number, number];
|
|
37
|
-
export const conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
38
|
-
export const createClientWithBackend: (a: number, b: number, c: number, d: any, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: bigint) => any;
|
|
39
|
-
export const decryptAttachment: (a: number, b: number, c: any) => [number, number, number];
|
|
40
|
-
export const encodeMarkdown: (a: number, b: number) => [number, number, number];
|
|
41
|
-
export const encodeReadReceipt: (a: any) => [number, number, number];
|
|
42
|
-
export const encodeRemoteAttachment: (a: any) => [number, number, number];
|
|
43
|
-
export const encodeText: (a: number, b: number) => [number, number, number];
|
|
44
|
-
export const encodeTransactionReference: (a: any) => [number, number, number];
|
|
45
|
-
export const encodeWalletSendCalls: (a: any) => [number, number, number];
|
|
46
|
-
export const encryptAttachment: (a: any) => [number, number, number];
|
|
47
|
-
export const generateInboxId: (a: any, b: number, c: bigint) => [number, number, number, number];
|
|
48
|
-
export const getInboxIdForIdentifier: (a: number, b: any) => any;
|
|
49
|
-
export const inboxStateFromInboxIds: (a: number, b: number, c: number) => any;
|
|
50
|
-
export const __wbg_authhandle_free: (a: number, b: number) => void;
|
|
51
4
|
export const __wbg_signaturerequesthandle_free: (a: number, b: number) => void;
|
|
52
5
|
export const applySignatureRequest: (a: number, b: number) => any;
|
|
53
|
-
export const authhandle_id: (a: number) => number;
|
|
54
|
-
export const authhandle_new: () => number;
|
|
55
|
-
export const authhandle_set: (a: number, b: any) => any;
|
|
56
6
|
export const client_addWalletSignatureRequest: (a: number, b: any) => any;
|
|
57
7
|
export const client_applySignatureRequest: (a: number, b: number) => any;
|
|
58
8
|
export const client_changeRecoveryIdentifierSignatureRequest: (a: number, b: any) => any;
|
|
59
9
|
export const client_createInboxSignatureRequest: (a: number) => [number, number, number];
|
|
60
|
-
export const client_registerIdentity: (a: number, b: number) => any;
|
|
10
|
+
export const client_registerIdentity: (a: number, b: number, c: number) => any;
|
|
61
11
|
export const client_revokeAllOtherInstallationsSignatureRequest: (a: number) => any;
|
|
62
12
|
export const client_revokeInstallationsSignatureRequest: (a: number, b: number, c: number) => any;
|
|
63
13
|
export const client_revokeWalletSignatureRequest: (a: number, b: any) => any;
|
|
64
14
|
export const client_signWithInstallationKey: (a: number, b: number, c: number) => [number, number, number];
|
|
65
15
|
export const client_verifySignedWithInstallationKey: (a: number, b: number, c: number, d: any) => [number, number];
|
|
66
|
-
export const opfsClearAll: () => any;
|
|
67
|
-
export const opfsDeleteFile: (a: number, b: number) => any;
|
|
68
|
-
export const opfsExportDb: (a: number, b: number) => any;
|
|
69
|
-
export const opfsFileCount: () => any;
|
|
70
|
-
export const opfsFileExists: (a: number, b: number) => any;
|
|
71
|
-
export const opfsImportDb: (a: number, b: number, c: any) => any;
|
|
72
|
-
export const opfsInit: () => any;
|
|
73
|
-
export const opfsListFiles: () => any;
|
|
74
|
-
export const opfsPoolCapacity: () => any;
|
|
75
16
|
export const revokeInstallationsSignatureRequest: (a: number, b: any, c: number, d: number, e: number, f: number) => [number, number, number];
|
|
76
17
|
export const signaturerequesthandle_addEcdsaSignature: (a: number, b: any) => any;
|
|
77
18
|
export const signaturerequesthandle_addPasskeySignature: (a: number, b: any) => any;
|
|
78
19
|
export const signaturerequesthandle_addScwSignature: (a: number, b: any, c: any, d: bigint, e: number, f: bigint) => any;
|
|
79
20
|
export const signaturerequesthandle_signatureText: (a: number) => any;
|
|
80
21
|
export const verifySignedWithPublicKey: (a: number, b: number, c: any, d: any) => [number, number];
|
|
81
|
-
export const
|
|
22
|
+
export const __wbg_authhandle_free: (a: number, b: number) => void;
|
|
82
23
|
export const __wbg_conversation_free: (a: number, b: number) => void;
|
|
83
|
-
export const
|
|
84
|
-
export const
|
|
85
|
-
export const
|
|
86
|
-
export const
|
|
87
|
-
export const
|
|
88
|
-
export const
|
|
89
|
-
export const
|
|
90
|
-
export const
|
|
91
|
-
export const
|
|
92
|
-
export const client_accountIdentifier: (a: number) => any;
|
|
93
|
-
export const client_apiAggregateStatistics: (a: number) => [number, number];
|
|
94
|
-
export const client_apiIdentityStatistics: (a: number) => any;
|
|
95
|
-
export const client_apiStatistics: (a: number) => any;
|
|
96
|
-
export const client_appVersion: (a: number) => [number, number];
|
|
97
|
-
export const client_canMessage: (a: number, b: number, c: number) => any;
|
|
98
|
-
export const client_clearAllStatistics: (a: number) => void;
|
|
99
|
-
export const client_conversations: (a: number) => number;
|
|
100
|
-
export const client_device_sync: (a: number) => number;
|
|
101
|
-
export const client_findInboxIdByIdentity: (a: number, b: any) => any;
|
|
102
|
-
export const client_inboxId: (a: number) => [number, number];
|
|
103
|
-
export const client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
104
|
-
export const client_installationId: (a: number) => [number, number];
|
|
105
|
-
export const client_installationIdBytes: (a: number) => any;
|
|
106
|
-
export const client_isRegistered: (a: number) => number;
|
|
107
|
-
export const client_libxmtpVersion: (a: number) => [number, number];
|
|
108
|
-
export const client_syncPreferences: (a: number) => any;
|
|
109
|
-
export const contentTypeActions: () => any;
|
|
110
|
-
export const contentTypeAttachment: () => any;
|
|
24
|
+
export const __wbg_devicesync_free: (a: number, b: number) => void;
|
|
25
|
+
export const authhandle_id: (a: number) => number;
|
|
26
|
+
export const authhandle_new: () => number;
|
|
27
|
+
export const authhandle_set: (a: number, b: any) => any;
|
|
28
|
+
export const client_fetchLatestInboxUpdatesCount: (a: number, b: number, c: number, d: number) => any;
|
|
29
|
+
export const client_fetchOwnInboxUpdatesCount: (a: number, b: number) => any;
|
|
30
|
+
export const client_getKeyPackageStatusesForInstallationIds: (a: number, b: number, c: number) => any;
|
|
31
|
+
export const client_getLatestInboxState: (a: number, b: number, c: number) => any;
|
|
32
|
+
export const client_inboxState: (a: number, b: number) => any;
|
|
111
33
|
export const contentTypeGroupUpdated: () => any;
|
|
112
|
-
export const contentTypeIntent: () => any;
|
|
113
|
-
export const contentTypeMultiRemoteAttachment: () => any;
|
|
114
|
-
export const contentTypeReaction: () => any;
|
|
115
34
|
export const conversation_addAdmin: (a: number, b: number, c: number) => any;
|
|
116
35
|
export const conversation_addMembers: (a: number, b: number, c: number) => any;
|
|
117
36
|
export const conversation_addMembersByIdentity: (a: number, b: number, c: number) => any;
|
|
@@ -122,6 +41,7 @@ export const conversation_appData: (a: number) => [number, number, number, numbe
|
|
|
122
41
|
export const conversation_countMessages: (a: number, b: number) => any;
|
|
123
42
|
export const conversation_createdAtNs: (a: number) => bigint;
|
|
124
43
|
export const conversation_dmPeerInboxId: (a: number) => [number, number, number, number];
|
|
44
|
+
export const conversation_enableProposals: (a: number, b: any) => any;
|
|
125
45
|
export const conversation_findDuplicateDms: (a: number) => any;
|
|
126
46
|
export const conversation_findEnrichedMessages: (a: number, b: number) => any;
|
|
127
47
|
export const conversation_findMessages: (a: number, b: number) => any;
|
|
@@ -143,8 +63,9 @@ export const conversation_listMembers: (a: number) => any;
|
|
|
143
63
|
export const conversation_membershipState: (a: number) => [number, number, number];
|
|
144
64
|
export const conversation_messageDisappearingSettings: (a: number) => [number, number, number];
|
|
145
65
|
export const conversation_pausedForVersion: (a: number) => [number, number, number, number];
|
|
146
|
-
export const conversation_prepareMessage: (a: number, b: any, c: number) => [number, number, number, number];
|
|
66
|
+
export const conversation_prepareMessage: (a: number, b: any, c: number, d: number, e: number) => [number, number, number, number];
|
|
147
67
|
export const conversation_processStreamedGroupMessage: (a: number, b: any) => any;
|
|
68
|
+
export const conversation_proposalsEnabled: (a: number) => [number, number, number];
|
|
148
69
|
export const conversation_publishMessages: (a: number) => any;
|
|
149
70
|
export const conversation_publishStoredMessage: (a: number, b: number, c: number) => any;
|
|
150
71
|
export const conversation_removeAdmin: (a: number, b: number, c: number) => any;
|
|
@@ -174,6 +95,70 @@ export const conversation_updateGroupImageUrlSquare: (a: number, b: number, c: n
|
|
|
174
95
|
export const conversation_updateGroupName: (a: number, b: number, c: number) => any;
|
|
175
96
|
export const conversation_updateMessageDisappearingSettings: (a: number, b: any) => any;
|
|
176
97
|
export const conversation_updatePermissionPolicy: (a: number, b: number, c: number, d: number) => any;
|
|
98
|
+
export const devicesync_archiveMetadata: (a: number, b: any, c: any) => any;
|
|
99
|
+
export const devicesync_createArchive: (a: number, b: any, c: any) => any;
|
|
100
|
+
export const devicesync_importArchive: (a: number, b: any, c: any) => any;
|
|
101
|
+
export const devicesync_listAvailableArchives: (a: number, b: bigint) => [number, number, number, number];
|
|
102
|
+
export const devicesync_processSyncArchive: (a: number, b: number, c: number) => any;
|
|
103
|
+
export const devicesync_sendSyncArchive: (a: number, b: any, c: number, d: number, e: number, f: number) => any;
|
|
104
|
+
export const devicesync_sendSyncRequest: (a: number, b: any, c: number, d: number) => any;
|
|
105
|
+
export const devicesync_syncAllDeviceSyncGroups: (a: number) => any;
|
|
106
|
+
export const inboxStateFromInboxIds: (a: number, b: number, c: number) => any;
|
|
107
|
+
export const __wbg_streamcloser_free: (a: number, b: number) => void;
|
|
108
|
+
export const streamcloser_end: (a: number) => void;
|
|
109
|
+
export const streamcloser_endAndWait: (a: number) => any;
|
|
110
|
+
export const streamcloser_isClosed: (a: number) => number;
|
|
111
|
+
export const streamcloser_waitForReady: (a: number) => any;
|
|
112
|
+
export const client_getConsentState: (a: number, b: number, c: number, d: number) => any;
|
|
113
|
+
export const client_setConsentStates: (a: number, b: number, c: number) => any;
|
|
114
|
+
export const conversation_consentState: (a: number) => [number, number, number];
|
|
115
|
+
export const conversation_updateConsentState: (a: number, b: number) => [number, number];
|
|
116
|
+
export const metadataFieldName: (a: number) => [number, number];
|
|
117
|
+
export const __wbg_backend_free: (a: number, b: number) => void;
|
|
118
|
+
export const __wbg_backendbuilder_free: (a: number, b: number) => void;
|
|
119
|
+
export const __wbg_client_free: (a: number, b: number) => void;
|
|
120
|
+
export const __wbg_conversationlistitem_free: (a: number, b: number) => void;
|
|
121
|
+
export const __wbg_conversations_free: (a: number, b: number) => void;
|
|
122
|
+
export const __wbg_get_backendbuilder_env: (a: number) => number;
|
|
123
|
+
export const __wbg_get_backendbuilder_readonly: (a: number) => number;
|
|
124
|
+
export const __wbg_get_conversationlistitem_conversation: (a: number) => number;
|
|
125
|
+
export const __wbg_get_conversationlistitem_isCommitLogForked: (a: number) => number;
|
|
126
|
+
export const __wbg_get_conversationlistitem_lastMessage: (a: number) => any;
|
|
127
|
+
export const __wbg_set_backendbuilder_env: (a: number, b: number) => void;
|
|
128
|
+
export const __wbg_set_backendbuilder_readonly: (a: number, b: number) => void;
|
|
129
|
+
export const __wbg_set_conversationlistitem_conversation: (a: number, b: number) => void;
|
|
130
|
+
export const __wbg_set_conversationlistitem_isCommitLogForked: (a: number, b: number) => void;
|
|
131
|
+
export const __wbg_set_conversationlistitem_lastMessage: (a: number, b: number) => void;
|
|
132
|
+
export const backend_appVersion: (a: number) => [number, number];
|
|
133
|
+
export const backend_env: (a: number) => number;
|
|
134
|
+
export const backend_gatewayHost: (a: number) => [number, number];
|
|
135
|
+
export const backend_v3Host: (a: number) => [number, number];
|
|
136
|
+
export const backendbuilder_authCallback: (a: number, b: any) => void;
|
|
137
|
+
export const backendbuilder_authHandle: (a: number, b: number) => void;
|
|
138
|
+
export const backendbuilder_build: (a: number) => [number, number, number];
|
|
139
|
+
export const backendbuilder_new: (a: number) => number;
|
|
140
|
+
export const backendbuilder_setApiUrl: (a: number, b: number, c: number) => number;
|
|
141
|
+
export const backendbuilder_setAppVersion: (a: number, b: number, c: number) => number;
|
|
142
|
+
export const backendbuilder_setGatewayHost: (a: number, b: number, c: number) => number;
|
|
143
|
+
export const backendbuilder_setReadonly: (a: number, b: number) => number;
|
|
144
|
+
export const client_accountIdentifier: (a: number) => any;
|
|
145
|
+
export const client_apiAggregateStatistics: (a: number) => [number, number];
|
|
146
|
+
export const client_apiIdentityStatistics: (a: number) => any;
|
|
147
|
+
export const client_apiStatistics: (a: number) => any;
|
|
148
|
+
export const client_appVersion: (a: number) => [number, number];
|
|
149
|
+
export const client_canMessage: (a: number, b: number, c: number) => any;
|
|
150
|
+
export const client_clearAllStatistics: (a: number) => void;
|
|
151
|
+
export const client_conversations: (a: number) => number;
|
|
152
|
+
export const client_device_sync: (a: number) => number;
|
|
153
|
+
export const client_findInboxIdByIdentity: (a: number, b: any) => any;
|
|
154
|
+
export const client_inboxId: (a: number) => [number, number];
|
|
155
|
+
export const client_inboxStateFromInboxIds: (a: number, b: number, c: number, d: number) => any;
|
|
156
|
+
export const client_installationId: (a: number) => [number, number];
|
|
157
|
+
export const client_installationIdBytes: (a: number) => any;
|
|
158
|
+
export const client_isRegistered: (a: number) => number;
|
|
159
|
+
export const client_libxmtpVersion: (a: number) => [number, number];
|
|
160
|
+
export const client_syncPreferences: (a: number) => any;
|
|
161
|
+
export const client_waitForRegistrationVisible: (a: number, b: number) => any;
|
|
177
162
|
export const conversationlistitem_new: (a: number, b: number, c: number) => number;
|
|
178
163
|
export const conversations_createDm: (a: number, b: any, c: number) => any;
|
|
179
164
|
export const conversations_createDmByInboxId: (a: number, b: number, c: number, d: number) => any;
|
|
@@ -195,27 +180,45 @@ export const conversations_streamMessageDeletions: (a: number, b: any) => [numbe
|
|
|
195
180
|
export const conversations_streamPreferences: (a: number, b: any) => [number, number, number];
|
|
196
181
|
export const conversations_sync: (a: number) => any;
|
|
197
182
|
export const conversations_syncAllConversations: (a: number, b: number, c: number) => any;
|
|
198
|
-
export const createClient: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q:
|
|
183
|
+
export const createClient: (a: number, b: number, c: number, d: number, e: any, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: number, n: number, o: number, p: number, q: number, r: bigint, s: number, t: number, u: number) => any;
|
|
184
|
+
export const createClientWithBackend: (a: number, b: number, c: number, d: any, e: number, f: number, g: number, h: number, i: number, j: number, k: number, l: number, m: bigint) => any;
|
|
185
|
+
export const generateInboxId: (a: any, b: number, c: bigint) => [number, number, number, number];
|
|
186
|
+
export const getInboxIdForIdentifier: (a: number, b: any) => any;
|
|
187
|
+
export const opfsClearAll: () => any;
|
|
188
|
+
export const opfsDeleteFile: (a: number, b: number) => any;
|
|
189
|
+
export const opfsExportDb: (a: number, b: number) => any;
|
|
190
|
+
export const opfsFileCount: () => any;
|
|
191
|
+
export const opfsFileExists: (a: number, b: number) => any;
|
|
192
|
+
export const opfsImportDb: (a: number, b: number, c: any) => any;
|
|
193
|
+
export const opfsInit: () => any;
|
|
194
|
+
export const opfsListFiles: () => any;
|
|
195
|
+
export const opfsPoolCapacity: () => any;
|
|
196
|
+
export const contentTypeActions: () => any;
|
|
197
|
+
export const contentTypeAttachment: () => any;
|
|
198
|
+
export const contentTypeIntent: () => any;
|
|
199
|
+
export const contentTypeLeaveRequest: () => any;
|
|
200
|
+
export const contentTypeMarkdown: () => any;
|
|
201
|
+
export const contentTypeMultiRemoteAttachment: () => any;
|
|
202
|
+
export const contentTypeReaction: () => any;
|
|
203
|
+
export const contentTypeReadReceipt: () => any;
|
|
204
|
+
export const contentTypeRemoteAttachment: () => any;
|
|
205
|
+
export const contentTypeReply: () => any;
|
|
206
|
+
export const contentTypeText: () => any;
|
|
207
|
+
export const contentTypeTransactionReference: () => any;
|
|
208
|
+
export const contentTypeWalletSendCalls: () => any;
|
|
209
|
+
export const decryptAttachment: (a: number, b: number, c: any) => [number, number, number];
|
|
199
210
|
export const encodeActions: (a: any) => [number, number, number];
|
|
200
211
|
export const encodeAttachment: (a: any) => [number, number, number];
|
|
201
212
|
export const encodeIntent: (a: any) => [number, number, number];
|
|
213
|
+
export const encodeMarkdown: (a: number, b: number) => [number, number, number];
|
|
202
214
|
export const encodeMultiRemoteAttachment: (a: any) => [number, number, number];
|
|
203
215
|
export const encodeReaction: (a: any) => [number, number, number];
|
|
204
|
-
export const
|
|
205
|
-
export const
|
|
206
|
-
export const
|
|
207
|
-
export const
|
|
208
|
-
export const
|
|
209
|
-
export const
|
|
210
|
-
export const devicesync_archiveMetadata: (a: number, b: any, c: any) => any;
|
|
211
|
-
export const devicesync_createArchive: (a: number, b: any, c: any) => any;
|
|
212
|
-
export const devicesync_importArchive: (a: number, b: any, c: any) => any;
|
|
213
|
-
export const devicesync_listAvailableArchives: (a: number, b: bigint) => [number, number, number, number];
|
|
214
|
-
export const devicesync_processSyncArchive: (a: number, b: number, c: number) => any;
|
|
215
|
-
export const devicesync_sendSyncArchive: (a: number, b: any, c: number, d: number, e: number, f: number) => any;
|
|
216
|
-
export const devicesync_sendSyncRequest: (a: number, b: any, c: number, d: number) => any;
|
|
217
|
-
export const devicesync_syncAllDeviceSyncGroups: (a: number) => any;
|
|
218
|
-
export const contentTypeReply: () => any;
|
|
216
|
+
export const encodeReadReceipt: (a: any) => [number, number, number];
|
|
217
|
+
export const encodeRemoteAttachment: (a: any) => [number, number, number];
|
|
218
|
+
export const encodeText: (a: number, b: number) => [number, number, number];
|
|
219
|
+
export const encodeTransactionReference: (a: any) => [number, number, number];
|
|
220
|
+
export const encodeWalletSendCalls: (a: any) => [number, number, number];
|
|
221
|
+
export const encryptAttachment: (a: any) => [number, number, number];
|
|
219
222
|
export const rust_zstd_wasm_shim_calloc: (a: number, b: number) => number;
|
|
220
223
|
export const rust_zstd_wasm_shim_free: (a: number) => void;
|
|
221
224
|
export const rust_zstd_wasm_shim_malloc: (a: number) => number;
|
|
@@ -240,12 +243,12 @@ export const intounderlyingsink_abort: (a: number, b: any) => any;
|
|
|
240
243
|
export const intounderlyingsink_close: (a: number) => any;
|
|
241
244
|
export const intounderlyingsink_write: (a: number, b: any) => any;
|
|
242
245
|
export const __wbg_intounderlyingbytesource_free: (a: number, b: number) => void;
|
|
243
|
-
export const __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
244
246
|
export const intounderlyingbytesource_autoAllocateChunkSize: (a: number) => number;
|
|
245
247
|
export const intounderlyingbytesource_cancel: (a: number) => void;
|
|
246
248
|
export const intounderlyingbytesource_pull: (a: number, b: any) => any;
|
|
247
249
|
export const intounderlyingbytesource_start: (a: number, b: any) => void;
|
|
248
250
|
export const intounderlyingbytesource_type: (a: number) => number;
|
|
251
|
+
export const __wbg_intounderlyingsource_free: (a: number, b: number) => void;
|
|
249
252
|
export const intounderlyingsource_cancel: (a: number) => void;
|
|
250
253
|
export const intounderlyingsource_pull: (a: number, b: any) => any;
|
|
251
254
|
export const __wbg_wasmbindgentestcontext_free: (a: number, b: number) => void;
|
|
@@ -258,21 +261,18 @@ export const wasmbindgentestcontext_filtered_count: (a: number, b: number) => vo
|
|
|
258
261
|
export const wasmbindgentestcontext_include_ignored: (a: number, b: number) => void;
|
|
259
262
|
export const wasmbindgentestcontext_new: (a: number) => number;
|
|
260
263
|
export const wasmbindgentestcontext_run: (a: number, b: number, c: number) => any;
|
|
261
|
-
export const
|
|
262
|
-
export const __wbgtest_module_signature: () => [number, bigint];
|
|
264
|
+
export const __wbgtest_coverage_path: (a: number, b: number, c: number, d: number, e: number, f: bigint) => [number, number];
|
|
263
265
|
export const __wbgbench_dump: () => [number, number];
|
|
264
266
|
export const __wbgbench_import: (a: number, b: number) => void;
|
|
265
|
-
export const
|
|
266
|
-
export const
|
|
267
|
-
export const
|
|
268
|
-
export const
|
|
269
|
-
export const
|
|
270
|
-
export const
|
|
271
|
-
export const
|
|
272
|
-
export const
|
|
273
|
-
export const
|
|
274
|
-
export const wasm_bindgen__convert__closures_____invoke__h7d2ee1dee7ec118b: (a: number, b: number) => void;
|
|
275
|
-
export const wasm_bindgen__convert__closures_____invoke__h48de3f26adb3eb8d: (a: number, b: number) => void;
|
|
267
|
+
export const __wbgtest_cov_dump: () => [number, number];
|
|
268
|
+
export const __wbgtest_module_signature: () => [number, bigint];
|
|
269
|
+
export const wasm_bindgen__convert__closures_____invoke__h2ff28222ff39c1b8: (a: number, b: number, c: any, d: number, e: any) => void;
|
|
270
|
+
export const wasm_bindgen__convert__closures_____invoke__hf22466092682e799: (a: number, b: number, c: any) => [number, number];
|
|
271
|
+
export const wasm_bindgen__convert__closures_____invoke__h01e5fc085c9abeb2: (a: number, b: number, c: any, d: any) => void;
|
|
272
|
+
export const wasm_bindgen__convert__closures_____invoke__h65fd5050fd174a78: (a: number, b: number, c: any) => void;
|
|
273
|
+
export const wasm_bindgen__convert__closures_____invoke__h99173b1edd0ed916: (a: number, b: number) => void;
|
|
274
|
+
export const wasm_bindgen__convert__closures_____invoke__h28c39d65825f8105: (a: number, b: number) => void;
|
|
275
|
+
export const wasm_bindgen__convert__closures_____invoke__hf04b250c3b9c17a3: (a: number, b: number) => void;
|
|
276
276
|
export const __externref_table_alloc: () => number;
|
|
277
277
|
export const __wbindgen_externrefs: WebAssembly.Table;
|
|
278
278
|
export const __wbindgen_malloc: (a: number, b: number) => number;
|
|
@@ -280,5 +280,6 @@ export const __wbindgen_realloc: (a: number, b: number, c: number, d: number) =>
|
|
|
280
280
|
export const __wbindgen_exn_store: (a: number) => void;
|
|
281
281
|
export const __wbindgen_free: (a: number, b: number, c: number) => void;
|
|
282
282
|
export const __externref_drop_slice: (a: number, b: number) => void;
|
|
283
|
+
export const __wbindgen_destroy_closure: (a: number, b: number) => void;
|
|
283
284
|
export const __externref_table_dealloc: (a: number) => void;
|
|
284
285
|
export const __wbindgen_start: () => void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xmtp/wasm-bindings",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0-dev.57a7203",
|
|
4
4
|
"description": "WASM bindings for the libXMTP rust library",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"xmtp",
|
|
@@ -66,14 +66,13 @@
|
|
|
66
66
|
"@vitest/browser-playwright": "^4.0.8",
|
|
67
67
|
"@xmtp/content-type-remote-attachment": "^2.0.3",
|
|
68
68
|
"binaryen": "^125.0.0",
|
|
69
|
-
"playwright": "=1.
|
|
69
|
+
"playwright": "=1.60",
|
|
70
70
|
"prettier": "^3.7.4",
|
|
71
71
|
"prettier-plugin-packagejson": "^3.0.0",
|
|
72
72
|
"tsx": "^4.20.6",
|
|
73
73
|
"typescript": "^5.9.3",
|
|
74
74
|
"viem": "^2.31.3",
|
|
75
|
-
"vitest": "^4.0.8"
|
|
76
|
-
"wasm-pack": "^0.14.0"
|
|
75
|
+
"vitest": "^4.0.8"
|
|
77
76
|
},
|
|
78
77
|
"packageManager": "yarn@4.11.0",
|
|
79
78
|
"engines": {
|