@astrasyncai/verification-gateway 2.3.10 → 2.4.0
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/README.md +64 -9
- package/dist/bin/astrasync.js +348 -0
- package/dist/registration/index.d.mts +218 -0
- package/dist/registration/index.d.ts +218 -0
- package/dist/registration/index.js +212 -0
- package/dist/registration/index.js.map +1 -0
- package/dist/registration/index.mjs +172 -0
- package/dist/registration/index.mjs.map +1 -0
- package/package.json +14 -2
package/package.json
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrasyncai/verification-gateway",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.4.0",
|
|
4
|
+
"description": "AstraSync KYA Platform SDK — counterparty verification gateway (verify incoming requests) + agent registration (register AI agents with the KYA backend).",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"astrasync": "./dist/bin/astrasync.js"
|
|
10
|
+
},
|
|
8
11
|
"exports": {
|
|
9
12
|
".": {
|
|
10
13
|
"types": "./dist/index.d.ts",
|
|
@@ -41,6 +44,11 @@
|
|
|
41
44
|
"import": "./dist/agent/index.mjs",
|
|
42
45
|
"require": "./dist/agent/index.js"
|
|
43
46
|
},
|
|
47
|
+
"./registration": {
|
|
48
|
+
"types": "./dist/registration/index.d.ts",
|
|
49
|
+
"import": "./dist/registration/index.mjs",
|
|
50
|
+
"require": "./dist/registration/index.js"
|
|
51
|
+
},
|
|
44
52
|
"./transport": {
|
|
45
53
|
"types": "./dist/transport/index.d.ts",
|
|
46
54
|
"import": "./dist/transport/index.mjs",
|
|
@@ -105,9 +113,12 @@
|
|
|
105
113
|
"keywords": [
|
|
106
114
|
"astrasync",
|
|
107
115
|
"kya",
|
|
116
|
+
"kyd",
|
|
108
117
|
"ai-agents",
|
|
118
|
+
"agent-registration",
|
|
109
119
|
"verification",
|
|
110
120
|
"trust",
|
|
121
|
+
"identity",
|
|
111
122
|
"pdlss",
|
|
112
123
|
"middleware"
|
|
113
124
|
],
|
|
@@ -124,6 +135,7 @@
|
|
|
124
135
|
"@sd-jwt/utils": "^0.19.0",
|
|
125
136
|
"@x402/core": "^2.10.0",
|
|
126
137
|
"ajv": "^8.17.1",
|
|
138
|
+
"ethers": "^6.13.0",
|
|
127
139
|
"http-message-signatures": "^1.0.5",
|
|
128
140
|
"jose": "^5.9.6",
|
|
129
141
|
"mppx": "0.5.13",
|