@sparkvault/sdk-mobile 4.7.0 → 4.7.1

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/dist/types.d.ts CHANGED
@@ -215,7 +215,7 @@ export interface IdentityTokenClaims {
215
215
  identity_type: VerifiedIdentityType;
216
216
  verified_at: number;
217
217
  method: string;
218
- /** Site-scoped public avatar URL, present when the person has published one */
218
+ /** The person's public avatar URL (my.auth.sv), present when they have published one */
219
219
  picture?: string;
220
220
  }
221
221
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sparkvault/sdk-mobile",
3
- "version": "4.7.0",
3
+ "version": "4.7.1",
4
4
  "description": "Mobile SDK for SparkVault Identity, vault, folder, and ingot workflows",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/types.ts CHANGED
@@ -261,7 +261,7 @@ export interface IdentityTokenClaims {
261
261
  identity_type: VerifiedIdentityType;
262
262
  verified_at: number;
263
263
  method: string;
264
- /** Site-scoped public avatar URL, present when the person has published one */
264
+ /** The person's public avatar URL (my.auth.sv), present when they have published one */
265
265
  picture?: string;
266
266
  }
267
267