@proveanything/smartlinks 1.0.14 → 1.0.17

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.
Files changed (117) hide show
  1. package/README.md +7341 -230
  2. package/build-docs.ts +69 -0
  3. package/dist/api/appConfiguration.d.ts +20 -9
  4. package/dist/api/appConfiguration.js +85 -11
  5. package/dist/api/auth.d.ts +3 -4
  6. package/dist/api/claimSet.d.ts +14 -0
  7. package/dist/api/claimSet.js +24 -0
  8. package/dist/api/collection.d.ts +9 -1
  9. package/dist/api/collection.js +16 -2
  10. package/dist/api/form.d.ts +34 -0
  11. package/dist/api/form.js +58 -0
  12. package/dist/api/index.d.ts +2 -0
  13. package/dist/api/index.js +2 -0
  14. package/dist/build-docs.js +61 -0
  15. package/dist/http.d.ts +12 -3
  16. package/dist/http.js +29 -3
  17. package/dist/index.d.ts +4 -1
  18. package/dist/index.js +1 -1
  19. package/docs/README.md +7469 -0
  20. package/docs/assets/highlight.css +12 -33
  21. package/docs/assets/navigation.js +1 -1
  22. package/docs/assets/search.js +1 -1
  23. package/docs/documentation.json +4719 -1986
  24. package/docs/functions/appConfiguration.deleteConfig.html +1 -0
  25. package/docs/functions/appConfiguration.deleteDataItem.html +1 -0
  26. package/docs/functions/appConfiguration.getConfig.html +1 -0
  27. package/docs/functions/appConfiguration.getData.html +1 -0
  28. package/docs/functions/appConfiguration.getDataItem.html +1 -0
  29. package/docs/functions/appConfiguration.setConfig.html +1 -0
  30. package/docs/functions/appConfiguration.setDataItem.html +1 -0
  31. package/docs/functions/asset.getForCollection.html +1 -1
  32. package/docs/functions/asset.getForProduct.html +1 -1
  33. package/docs/functions/asset.getForProof.html +1 -1
  34. package/docs/functions/asset.listForCollection.html +1 -1
  35. package/docs/functions/asset.listForProduct.html +1 -1
  36. package/docs/functions/asset.listForProof.html +1 -1
  37. package/docs/functions/asset.uploadAsset.html +1 -1
  38. package/docs/functions/attestation.create.html +2 -2
  39. package/docs/functions/attestation.get.html +2 -2
  40. package/docs/functions/attestation.list.html +2 -2
  41. package/docs/functions/attestation.remove.html +1 -1
  42. package/docs/functions/attestation.update.html +2 -2
  43. package/docs/functions/auth.getAccount.html +2 -2
  44. package/docs/functions/auth.login.html +2 -2
  45. package/docs/functions/auth.logout.html +1 -1
  46. package/docs/functions/auth.verifyToken.html +2 -2
  47. package/docs/functions/claimSet.assignClaims.html +4 -0
  48. package/docs/functions/claimSet.updateClaimData.html +4 -0
  49. package/docs/functions/collection.get.html +3 -2
  50. package/docs/functions/collection.list.html +5 -0
  51. package/docs/functions/form.create.html +4 -0
  52. package/docs/functions/form.get.html +5 -0
  53. package/docs/functions/form.list.html +4 -0
  54. package/docs/functions/form.remove.html +4 -0
  55. package/docs/functions/form.update.html +5 -0
  56. package/docs/functions/initializeApi.html +2 -4
  57. package/docs/functions/product.get.html +1 -1
  58. package/docs/functions/product.list.html +1 -1
  59. package/docs/functions/proof.get.html +1 -1
  60. package/docs/functions/proof.list.html +1 -1
  61. package/docs/functions/request.html +1 -1
  62. package/docs/functions/sendCustomProxyMessage.html +5 -0
  63. package/docs/index.html +4 -112
  64. package/docs/interfaces/AppConfigurationResponse.html +4 -4
  65. package/docs/interfaces/AssetResponse.html +2 -2
  66. package/docs/interfaces/AttestationCreateRequest.html +4 -0
  67. package/docs/interfaces/AttestationResponse.html +7 -0
  68. package/docs/interfaces/AttestationUpdateRequest.html +3 -0
  69. package/docs/interfaces/CollectionResponse.html +5 -5
  70. package/docs/interfaces/ErrorResponse.html +3 -3
  71. package/docs/interfaces/ProductResponse.html +5 -5
  72. package/docs/interfaces/ProofResponse.html +8 -8
  73. package/docs/modules/appConfiguration.html +7 -1
  74. package/docs/modules/asset.html +1 -1
  75. package/docs/modules/attestation.html +1 -1
  76. package/docs/modules/auth.html +1 -1
  77. package/docs/modules/claimSet.html +3 -0
  78. package/docs/modules/collection.html +2 -1
  79. package/docs/modules/form.html +6 -0
  80. package/docs/modules/product.html +1 -1
  81. package/docs/modules/proof.html +1 -1
  82. package/docs/modules.html +10 -0
  83. package/docs/types/AccountInfoResponse.html +1 -0
  84. package/docs/types/AppConfigOptions.html +1 -0
  85. package/docs/types/LoginResponse.html +1 -0
  86. package/docs/types/VerifyTokenResponse.html +1 -0
  87. package/package.json +5 -2
  88. package/src/api/appConfiguration.ts +99 -17
  89. package/src/api/auth.ts +3 -3
  90. package/src/api/claimSet.ts +23 -0
  91. package/src/api/collection.ts +17 -3
  92. package/src/api/form.ts +57 -0
  93. package/src/api/index.ts +2 -0
  94. package/src/http.ts +32 -5
  95. package/src/index.ts +14 -1
  96. package/temp-docs/.nojekyll +1 -0
  97. package/temp-docs/README.md +7254 -0
  98. package/temp-docs/interfaces/AppConfigurationResponse.md +45 -0
  99. package/temp-docs/interfaces/AssetResponse.md +39 -0
  100. package/temp-docs/interfaces/AttestationCreateRequest.md +37 -0
  101. package/temp-docs/interfaces/AttestationResponse.md +70 -0
  102. package/temp-docs/interfaces/AttestationUpdateRequest.md +26 -0
  103. package/temp-docs/interfaces/CollectionResponse.md +58 -0
  104. package/temp-docs/interfaces/ErrorResponse.md +32 -0
  105. package/temp-docs/interfaces/ProductResponse.md +58 -0
  106. package/temp-docs/interfaces/ProofResponse.md +97 -0
  107. package/temp-docs/modules/appConfiguration.md +151 -0
  108. package/temp-docs/modules/asset.md +171 -0
  109. package/temp-docs/modules/attestation.md +134 -0
  110. package/temp-docs/modules/auth.md +88 -0
  111. package/temp-docs/modules/claimSet.md +52 -0
  112. package/temp-docs/modules/collection.md +63 -0
  113. package/temp-docs/modules/form.md +126 -0
  114. package/temp-docs/modules/product.md +63 -0
  115. package/temp-docs/modules/proof.md +57 -0
  116. package/temp-docs/modules.md +210 -0
  117. package/docs/functions/appConfiguration.get.html +0 -6
@@ -0,0 +1,57 @@
1
+ ## Table of contents
2
+
3
+ ### Functions
4
+
5
+ - [get](proof.md#get)
6
+ - [list](proof.md#list)
7
+
8
+ ## Functions
9
+
10
+ ### get
11
+
12
+ ▸ **get**(`collectionId`, `proofId`): `Promise`\<[`ProofResponse`](../interfaces/ProofResponse.md)\>
13
+
14
+ Retrieves a single Proof by Collection ID and Proof ID.
15
+
16
+ #### Parameters
17
+
18
+ | Name | Type | Description |
19
+ | :------ | :------ | :------ |
20
+ | `collectionId` | `string` | – Identifier of the parent collection |
21
+ | `proofId` | `string` | – Identifier of the proof |
22
+
23
+ #### Returns
24
+
25
+ `Promise`\<[`ProofResponse`](../interfaces/ProofResponse.md)\>
26
+
27
+ Promise resolving to a ProofResponse object
28
+
29
+ **`Throws`**
30
+
31
+ ErrorResponse if the request fails
32
+
33
+ #### Defined in
34
+
35
+ [api/proof.ts:13](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/api/proof.ts#L13)
36
+
37
+ ___
38
+
39
+ ### list
40
+
41
+ ▸ **list**(`collectionId`): `Promise`\<[`ProofResponse`](../interfaces/ProofResponse.md)[]\>
42
+
43
+ List all Proofs for a Collection.
44
+
45
+ #### Parameters
46
+
47
+ | Name | Type |
48
+ | :------ | :------ |
49
+ | `collectionId` | `string` |
50
+
51
+ #### Returns
52
+
53
+ `Promise`\<[`ProofResponse`](../interfaces/ProofResponse.md)[]\>
54
+
55
+ #### Defined in
56
+
57
+ [api/proof.ts:26](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/api/proof.ts#L26)
@@ -0,0 +1,210 @@
1
+ ## Table of contents
2
+
3
+ ### Namespaces
4
+
5
+ - [appConfiguration](modules/appConfiguration.md)
6
+ - [asset](modules/asset.md)
7
+ - [attestation](modules/attestation.md)
8
+ - [auth](modules/auth.md)
9
+ - [claimSet](modules/claimSet.md)
10
+ - [collection](modules/collection.md)
11
+ - [form](modules/form.md)
12
+ - [product](modules/product.md)
13
+ - [proof](modules/proof.md)
14
+
15
+ ### Interfaces
16
+
17
+ - [AppConfigurationResponse](interfaces/AppConfigurationResponse.md)
18
+ - [AssetResponse](interfaces/AssetResponse.md)
19
+ - [AttestationCreateRequest](interfaces/AttestationCreateRequest.md)
20
+ - [AttestationResponse](interfaces/AttestationResponse.md)
21
+ - [AttestationUpdateRequest](interfaces/AttestationUpdateRequest.md)
22
+ - [CollectionResponse](interfaces/CollectionResponse.md)
23
+ - [ErrorResponse](interfaces/ErrorResponse.md)
24
+ - [ProductResponse](interfaces/ProductResponse.md)
25
+ - [ProofResponse](interfaces/ProofResponse.md)
26
+
27
+ ### Type Aliases
28
+
29
+ - [AccountInfoResponse](modules.md#accountinforesponse)
30
+ - [AppConfigOptions](modules.md#appconfigoptions)
31
+ - [LoginResponse](modules.md#loginresponse)
32
+ - [VerifyTokenResponse](modules.md#verifytokenresponse)
33
+
34
+ ### Functions
35
+
36
+ - [initializeApi](modules.md#initializeapi)
37
+ - [request](modules.md#request)
38
+ - [sendCustomProxyMessage](modules.md#sendcustomproxymessage)
39
+
40
+ ## Type Aliases
41
+
42
+ ### AccountInfoResponse
43
+
44
+ Ƭ **AccountInfoResponse**: `Object`
45
+
46
+ #### Type declaration
47
+
48
+ | Name | Type |
49
+ | :------ | :------ |
50
+ | `account` | `Record`\<`string`, `any`\> |
51
+ | `location` | `Record`\<`string`, `any`\> |
52
+ | `owner` | `Record`\<`string`, `any`\> |
53
+ | `user` | `Record`\<`string`, `any`\> |
54
+
55
+ #### Defined in
56
+
57
+ [api/auth.ts:19](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/api/auth.ts#L19)
58
+
59
+ ___
60
+
61
+ ### AppConfigOptions
62
+
63
+ Ƭ **AppConfigOptions**: `Object`
64
+
65
+ #### Type declaration
66
+
67
+ | Name | Type |
68
+ | :------ | :------ |
69
+ | `admin?` | `boolean` |
70
+ | `appId` | `string` |
71
+ | `batchId?` | `string` |
72
+ | `collectionId?` | `string` |
73
+ | `config?` | `any` |
74
+ | `data?` | `any` |
75
+ | `itemId?` | `string` |
76
+ | `productId?` | `string` |
77
+ | `user?` | `boolean` |
78
+ | `userData?` | `boolean` |
79
+ | `variantId?` | `string` |
80
+
81
+ #### Defined in
82
+
83
+ [api/appConfiguration.ts:4](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/api/appConfiguration.ts#L4)
84
+
85
+ ___
86
+
87
+ ### LoginResponse
88
+
89
+ Ƭ **LoginResponse**: `Object`
90
+
91
+ #### Type declaration
92
+
93
+ | Name | Type |
94
+ | :------ | :------ |
95
+ | `account` | `Record`\<`string`, `any`\> |
96
+ | `bearerToken` | `string` |
97
+ | `email` | `string` |
98
+ | `id` | `string` |
99
+ | `name` | `string` |
100
+
101
+ #### Defined in
102
+
103
+ [api/auth.ts:3](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/api/auth.ts#L3)
104
+
105
+ ___
106
+
107
+ ### VerifyTokenResponse
108
+
109
+ Ƭ **VerifyTokenResponse**: `Object`
110
+
111
+ #### Type declaration
112
+
113
+ | Name | Type |
114
+ | :------ | :------ |
115
+ | `account?` | `Record`\<`string`, `any`\> |
116
+ | `email?` | `string` |
117
+ | `id?` | `string` |
118
+ | `name?` | `string` |
119
+ | `valid` | `boolean` |
120
+
121
+ #### Defined in
122
+
123
+ [api/auth.ts:11](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/api/auth.ts#L11)
124
+
125
+ ## Functions
126
+
127
+ ### initializeApi
128
+
129
+ ▸ **initializeApi**(`options`): `void`
130
+
131
+ Call this once (e.g. at app startup) to configure baseURL/auth.
132
+
133
+ #### Parameters
134
+
135
+ | Name | Type | Description |
136
+ | :------ | :------ | :------ |
137
+ | `options` | `Object` | Configuration options |
138
+ | `options.apiKey?` | `string` | - |
139
+ | `options.baseURL` | `string` | - |
140
+ | `options.bearerToken?` | `string` | - |
141
+ | `options.proxyMode?` | `boolean` | - |
142
+
143
+ #### Returns
144
+
145
+ `void`
146
+
147
+ #### Defined in
148
+
149
+ [http.ts:20](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/http.ts#L20)
150
+
151
+ ___
152
+
153
+ ### request
154
+
155
+ ▸ **request**\<`T`\>(`path`): `Promise`\<`T`\>
156
+
157
+ Internal helper that performs a GET request to `\${baseURL}\${path}`,
158
+ injecting headers for apiKey or bearerToken if present.
159
+ Returns the parsed JSON as T, or throws an Error.
160
+
161
+ #### Type parameters
162
+
163
+ | Name |
164
+ | :------ |
165
+ | `T` |
166
+
167
+ #### Parameters
168
+
169
+ | Name | Type |
170
+ | :------ | :------ |
171
+ | `path` | `string` |
172
+
173
+ #### Returns
174
+
175
+ `Promise`\<`T`\>
176
+
177
+ #### Defined in
178
+
179
+ [http.ts:96](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/http.ts#L96)
180
+
181
+ ___
182
+
183
+ ### sendCustomProxyMessage
184
+
185
+ ▸ **sendCustomProxyMessage**\<`T`\>(`request`, `params`): `Promise`\<`T`\>
186
+
187
+ Sends a custom proxy message in proxyMode and waits for a matching reply.
188
+
189
+ #### Type parameters
190
+
191
+ | Name | Type |
192
+ | :------ | :------ |
193
+ | `T` | `any` |
194
+
195
+ #### Parameters
196
+
197
+ | Name | Type | Description |
198
+ | :------ | :------ | :------ |
199
+ | `request` | `string` | The request type string |
200
+ | `params` | `any` | The parameters object |
201
+
202
+ #### Returns
203
+
204
+ `Promise`\<`T`\>
205
+
206
+ The data from the proxy response
207
+
208
+ #### Defined in
209
+
210
+ [http.ts:346](https://github.com/Prove-Anything/smartlinks/blob/2322afa091763cbb81ba4db4b90e49b576099120/src/http.ts#L346)
@@ -1,6 +0,0 @@
1
- <!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>get | @proveanything/smartlinks</title><meta name="description" content="Documentation for @proveanything/smartlinks"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@proveanything/smartlinks</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@proveanything/smartlinks</a></li><li><a href="../modules/appConfiguration.html">appConfiguration</a></li><li><a href="appConfiguration.get.html">get</a></li></ul><h1>Function get</h1></div><section class="tsd-panel"><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="get" class="tsd-anchor"></a><span class="tsd-kind-call-signature">get</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">collectionId</span>, <span class="tsd-kind-parameter">appId</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/AppConfigurationResponse.html" class="tsd-signature-type tsd-kind-interface">AppConfigurationResponse</a><span class="tsd-signature-symbol">&gt;</span><a href="#get" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-comment tsd-typography"><p>Retrieves a single App Configuration by Collection ID and App ID.</p>
2
- </div><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">collectionId</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>– Identifier of the parent collection</p>
3
- </div><div class="tsd-comment tsd-typography"></div></li><li><span><span class="tsd-kind-parameter">appId</span>: <span class="tsd-signature-type">string</span></span><div class="tsd-comment tsd-typography"><p>– Identifier of the app configuration</p>
4
- </div><div class="tsd-comment tsd-typography"></div></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol">&lt;</span><a href="../interfaces/AppConfigurationResponse.html" class="tsd-signature-type tsd-kind-interface">AppConfigurationResponse</a><span class="tsd-signature-symbol">&gt;</span></h4><p>Promise resolving to an AppConfigurationResponse object</p>
5
- <div class="tsd-comment tsd-typography"><h4>Throws</h4><p>ErrorResponse if the request fails</p>
6
- </div><aside class="tsd-sources"><ul><li>Defined in <a href="https://github.com/Prove-Anything/smartlinks/blob/54a929dabe2ef3c5f4a5a559c656ea584231138a/src/api/appConfiguration.ts#L13">api/appConfiguration.ts:13</a></li></ul></aside></li></ul></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@proveanything/smartlinks</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>