@xmtp/node-bindings 1.1.1 → 1.2.0-dev.3d6d1ef
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_node.darwin-arm64.node +0 -0
- package/dist/bindings_node.darwin-x64.node +0 -0
- package/dist/bindings_node.linux-arm64-gnu.node +0 -0
- package/dist/bindings_node.linux-arm64-musl.node +0 -0
- package/dist/bindings_node.linux-x64-gnu.node +0 -0
- package/dist/bindings_node.linux-x64-musl.node +0 -0
- package/dist/bindings_node.win32-x64-msvc.node +0 -0
- package/dist/index.d.ts +3 -1
- package/dist/version.json +3 -3
- package/package.json +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/dist/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare class Client {
|
|
|
29
29
|
revokeIdentifierSignatureText(identifier: Identifier): Promise<string>
|
|
30
30
|
revokeAllOtherInstallationsSignatureText(): Promise<string>
|
|
31
31
|
revokeInstallationsSignatureText(installationIds: Array<Uint8Array>): Promise<string>
|
|
32
|
+
changeRecoveryIdentifierSignatureText(newRecoveryIdentifier: Identifier): Promise<string>
|
|
32
33
|
addEcdsaSignature(signatureType: SignatureRequestType, signatureBytes: Uint8Array): Promise<void>
|
|
33
34
|
addPasskeySignature(signatureType: SignatureRequestType, signature: PasskeySignature): Promise<void>
|
|
34
35
|
addScwSignature(signatureType: SignatureRequestType, signatureBytes: Uint8Array, chainId: bigint, blockNumber?: bigint | undefined | null): Promise<void>
|
|
@@ -432,7 +433,8 @@ export declare const enum SignatureRequestType {
|
|
|
432
433
|
AddWallet = 0,
|
|
433
434
|
CreateInbox = 1,
|
|
434
435
|
RevokeWallet = 2,
|
|
435
|
-
RevokeInstallations = 3
|
|
436
|
+
RevokeInstallations = 3,
|
|
437
|
+
ChangeRecoveryIdentifier = 4
|
|
436
438
|
}
|
|
437
439
|
|
|
438
440
|
export declare const enum SortDirection {
|
package/dist/version.json
CHANGED