@neus/sdk 1.1.6 → 1.1.7
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/cjs/client.cjs +3 -4
- package/cjs/index.cjs +3 -4
- package/client.js +2121 -2122
- package/package.json +4 -1
- package/types.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neus/sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "NEUS makes trust portable across the internet — so people, apps, and AI agents can prove what is real before access, payout, or execution.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"neus": "cli/neus.mjs"
|
|
@@ -113,6 +113,9 @@
|
|
|
113
113
|
"optionalDependencies": {
|
|
114
114
|
"@zkpassport/sdk": "^0.14.0"
|
|
115
115
|
},
|
|
116
|
+
"overrides": {
|
|
117
|
+
"ws": "8.21.0"
|
|
118
|
+
},
|
|
116
119
|
"dependencies": {
|
|
117
120
|
"bs58": "^6.0.0"
|
|
118
121
|
},
|
package/types.d.ts
CHANGED
|
@@ -462,7 +462,7 @@
|
|
|
462
462
|
maxAgeMs?: number;
|
|
463
463
|
}
|
|
464
464
|
|
|
465
|
-
/** Public snapshot returned by GET /api/v1/gates/{gateId} — never includes the secret reward value. */
|
|
465
|
+
/** Public snapshot returned by GET /api/v1/profile/gates/{gateId} — never includes the secret reward value. */
|
|
466
466
|
export interface PublicGateSnapshot {
|
|
467
467
|
schemaVersion: number;
|
|
468
468
|
gateId: string;
|