@1sat/types 0.0.13 → 0.0.15
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/index.d.ts +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ export interface LocalSigner {
|
|
|
18
18
|
export interface RemoteSigner {
|
|
19
19
|
keyHost: string;
|
|
20
20
|
authToken?: AuthToken;
|
|
21
|
-
/** How to deliver the auth token over HTTP (for
|
|
21
|
+
/** How to deliver the auth token over HTTP (for SIGMA protocol) */
|
|
22
22
|
transport?: AuthTransport;
|
|
23
23
|
}
|
|
24
24
|
/**
|
|
@@ -44,7 +44,7 @@ export interface AuthToken {
|
|
|
44
44
|
signature: string;
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
* HTTP transport configuration for auth tokens (used by
|
|
47
|
+
* HTTP transport configuration for auth tokens (used by SIGMA protocol)
|
|
48
48
|
*/
|
|
49
49
|
export interface AuthTransport {
|
|
50
50
|
type: 'header' | 'query';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1sat/types",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "Type definitions for 1Sat Ordinals SDK",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"keywords": ["1sat", "bsv", "ordinals", "types", "typescript"],
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@bsv/sdk": "^2.0.
|
|
23
|
+
"@bsv/sdk": "^2.0.6"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@bsv/sdk": "^2.0.
|
|
26
|
+
"@bsv/sdk": "^2.0.6",
|
|
27
27
|
"typescript": "^5.9.3"
|
|
28
28
|
}
|
|
29
29
|
}
|