passkey-kit 0.7.8 → 0.7.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "passkey-kit",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "description": "A helper library for creating and using passkey accounts on the Stellar blockchain.",
5
5
  "author": "Tyler van der Hoeven",
6
6
  "license": "MIT",
package/src/kit.ts CHANGED
@@ -368,7 +368,7 @@ export class PasskeyKit extends PasskeyBase {
368
368
  }
369
369
 
370
370
  public async sign(
371
- txn: AssembledTransaction<unknown>,
371
+ txn: AssembledTransaction<any>,
372
372
  options?: {
373
373
  rpId?: string,
374
374
  keyId?: 'any' | string | Uint8Array
package/types/kit.d.ts CHANGED
@@ -53,7 +53,7 @@ export declare class PasskeyKit extends PasskeyBase {
53
53
  policy?: string;
54
54
  expiration?: number;
55
55
  }): Promise<xdr.SorobanAuthorizationEntry>;
56
- sign(txn: AssembledTransaction<unknown>, options?: {
56
+ sign(txn: AssembledTransaction<any>, options?: {
57
57
  rpId?: string;
58
58
  keyId?: 'any' | string | Uint8Array;
59
59
  keypair?: Keypair;