@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 +5 -4
- package/dist/api/auth.d.ts +2 -1
- package/dist/types/proof.d.ts +3 -3
- package/package.json +1 -1
package/API_SUMMARY.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Smartlinks API Summary
|
|
2
2
|
|
|
3
|
-
Version: 1.1.
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1820
|
+
userId: string;
|
|
1821
|
+
contactId: string
|
|
1821
1822
|
whitelabel: {
|
|
1822
1823
|
[key: string]: any;
|
|
1823
1824
|
}
|
package/dist/api/auth.d.ts
CHANGED
package/dist/types/proof.d.ts
CHANGED
|
@@ -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
|
|
20
|
-
|
|
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
|
-
|
|
28
|
+
virtual?: boolean;
|
|
29
29
|
}
|
|
30
30
|
export type ProofUpdateRequest = Partial<ProofCreateRequest>;
|
|
31
31
|
export type ProofClaimRequest = Record<string, any>;
|