@zintrust/signer 0.4.4 → 0.4.43
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/build-manifest.json +45 -0
- package/dist/index.js +12 -1
- package/package.json +2 -2
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@zintrust/signer",
|
|
3
|
+
"version": "0.4.43",
|
|
4
|
+
"buildDate": "2026-04-01T18:17:34.525Z",
|
|
5
|
+
"buildEnvironment": {
|
|
6
|
+
"node": "v22.22.1",
|
|
7
|
+
"platform": "darwin",
|
|
8
|
+
"arch": "arm64"
|
|
9
|
+
},
|
|
10
|
+
"git": {
|
|
11
|
+
"commit": "57e4d1b5",
|
|
12
|
+
"branch": "release"
|
|
13
|
+
},
|
|
14
|
+
"package": {
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20.0.0"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": [],
|
|
19
|
+
"peerDependencies": [
|
|
20
|
+
"@zintrust/core"
|
|
21
|
+
]
|
|
22
|
+
},
|
|
23
|
+
"files": {
|
|
24
|
+
"SignedRequest.d.ts": {
|
|
25
|
+
"size": 1750,
|
|
26
|
+
"sha256": "d308d63499f3b7298581c14f21d5d6f9299ac1c68e31c10256c50da7381b597b"
|
|
27
|
+
},
|
|
28
|
+
"SignedRequest.js": {
|
|
29
|
+
"size": 6462,
|
|
30
|
+
"sha256": "d77715dbaba201311c4b42543d30e03a71a97bdffc8e64286de23dd792a68353"
|
|
31
|
+
},
|
|
32
|
+
"build-manifest.json": {
|
|
33
|
+
"size": 1096,
|
|
34
|
+
"sha256": "5ba1551b5de11bf1c1631fb65de0cf5170ba33f320eb84f7daf33cd7c7d5982a"
|
|
35
|
+
},
|
|
36
|
+
"index.d.ts": {
|
|
37
|
+
"size": 180,
|
|
38
|
+
"sha256": "c06c81a970e75623446631798b080b4224efb4900992eec411a9ac468c6f3773"
|
|
39
|
+
},
|
|
40
|
+
"index.js": {
|
|
41
|
+
"size": 265,
|
|
42
|
+
"sha256": "2bebadba4c22cf64571428e23ece354177408715518537f120d1239c08ebf5d9"
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
package/dist/index.js
CHANGED
|
@@ -1 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
/**
|
|
2
|
+
* @zintrust/signer v0.4.43
|
|
3
|
+
*
|
|
4
|
+
* Request signing and signature verification utilities for ZinTrust.
|
|
5
|
+
*
|
|
6
|
+
* Build Information:
|
|
7
|
+
* Built: 2026-04-01T18:17:34.442Z
|
|
8
|
+
* Node: >=20.0.0
|
|
9
|
+
* License: MIT
|
|
10
|
+
*
|
|
11
|
+
*/
|
|
12
|
+
export { SignedRequest, } from './SignedRequest.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zintrust/signer",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.43",
|
|
4
4
|
"description": "Request signing and signature verification utilities for ZinTrust.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -27,6 +27,6 @@
|
|
|
27
27
|
"type-check": "tsc -p tsconfig.json --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"@zintrust/core": "^0.4.
|
|
30
|
+
"@zintrust/core": "^0.4.43"
|
|
31
31
|
}
|
|
32
32
|
}
|