@proveanything/smartlinks 1.1.25 → 1.1.26

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/API_SUMMARY.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Smartlinks API Summary
2
2
 
3
- Version: 1.1.25 | Generated: 2026-01-13T20:40:07.743Z
3
+ Version: 1.1.26 | Generated: 2026-01-17T11:03:13.776Z
4
4
 
5
5
  This is a concise summary of all available API functions and types.
6
6
 
@@ -1526,7 +1526,7 @@ interface Proof {
1526
1526
  tokenId: string
1527
1527
  userId: string
1528
1528
  claimable?: boolean
1529
- transient?: boolean
1529
+ virtual?: boolean
1530
1530
  values: Record<string, any>
1531
1531
  }
1532
1532
  ```
@@ -1536,7 +1536,7 @@ interface Proof {
1536
1536
  interface ProofCreateRequest {
1537
1537
  values: Record<string, any>
1538
1538
  claimable?: boolean
1539
- transient?: boolean
1539
+ virtual?: boolean
1540
1540
  }
1541
1541
  ```
1542
1542
 
@@ -1817,7 +1817,8 @@ type AccountInfoResponse = {
1817
1817
  };
1818
1818
  sub: string;
1819
1819
  uid: string;
1820
- user_id: string;
1820
+ userId: string;
1821
+ contactId: string
1821
1822
  whitelabel: {
1822
1823
  [key: string]: any;
1823
1824
  }
@@ -41,7 +41,8 @@ export type AccountInfoResponse = {
41
41
  };
42
42
  sub: string;
43
43
  uid: string;
44
- user_id: string;
44
+ userId: string;
45
+ contactId: string;
45
46
  whitelabel: {
46
47
  [key: string]: any;
47
48
  };
@@ -16,8 +16,8 @@ export interface Proof {
16
16
  userId: string;
17
17
  /** Is this proof available to be claimed */
18
18
  claimable?: boolean;
19
- /** Is this proof transient */
20
- transient?: boolean;
19
+ /** Is this proof virtual */
20
+ virtual?: boolean;
21
21
  /** Arbitrary key-value pairs for proof values */
22
22
  values: Record<string, any>;
23
23
  }
@@ -25,7 +25,7 @@ export type ProofResponse = Proof;
25
25
  export interface ProofCreateRequest {
26
26
  values: Record<string, any>;
27
27
  claimable?: boolean;
28
- transient?: boolean;
28
+ virtual?: boolean;
29
29
  }
30
30
  export type ProofUpdateRequest = Partial<ProofCreateRequest>;
31
31
  export type ProofClaimRequest = Record<string, any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proveanything/smartlinks",
3
- "version": "1.1.25",
3
+ "version": "1.1.26",
4
4
  "description": "Official JavaScript/TypeScript SDK for the Smartlinks API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",