passkey-kit 0.7.9 → 0.7.11
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.
|
|
3
|
+
"version": "0.7.11",
|
|
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",
|
|
@@ -13,9 +13,9 @@
|
|
|
13
13
|
"@stellar/stellar-sdk": "file:./ext/@stellar/stellar-sdk",
|
|
14
14
|
"base64url": "^3.0.1",
|
|
15
15
|
"buffer": "^6.0.3",
|
|
16
|
-
"passkey-
|
|
17
|
-
"
|
|
18
|
-
"
|
|
16
|
+
"passkey-kit-sdk": "0.3.4",
|
|
17
|
+
"passkey-factory-sdk": "0.3.4",
|
|
18
|
+
"sac-sdk": "0.1.1"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@simplewebauthn/types": "^10.0.0",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.3.
|
|
2
|
+
"version": "0.3.4",
|
|
3
3
|
"name": "passkey-factory-sdk",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"buffer": "6.0.3",
|
|
13
|
-
"@stellar/stellar-sdk": "
|
|
13
|
+
"@stellar/stellar-sdk": "12.3.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"typescript": "5.6.2"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.3.
|
|
2
|
+
"version": "0.3.4",
|
|
3
3
|
"name": "passkey-kit-sdk",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"buffer": "6.0.3",
|
|
13
|
-
"@stellar/stellar-sdk": "
|
|
13
|
+
"@stellar/stellar-sdk": "12.3.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"typescript": "5.6.2"
|
package/src/kit.ts
CHANGED
|
@@ -367,8 +367,8 @@ export class PasskeyKit extends PasskeyBase {
|
|
|
367
367
|
return entry
|
|
368
368
|
}
|
|
369
369
|
|
|
370
|
-
public async sign(
|
|
371
|
-
txn: AssembledTransaction<
|
|
370
|
+
public async sign<T>(
|
|
371
|
+
txn: AssembledTransaction<T>,
|
|
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<
|
|
56
|
+
sign<T>(txn: AssembledTransaction<T>, options?: {
|
|
57
57
|
rpId?: string;
|
|
58
58
|
keyId?: 'any' | string | Uint8Array;
|
|
59
59
|
keypair?: Keypair;
|