@sparkvault/sdk-mobile 4.7.1 → 4.8.0
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 +4 -1
- package/package.json +1 -1
- package/src/types.ts +4 -1
package/dist/types.d.ts
CHANGED
|
@@ -215,7 +215,10 @@ export interface IdentityTokenClaims {
|
|
|
215
215
|
identity_type: VerifiedIdentityType;
|
|
216
216
|
verified_at: number;
|
|
217
217
|
method: string;
|
|
218
|
-
/**
|
|
218
|
+
/**
|
|
219
|
+
* The person's public avatar URL (my.auth.sv), present only when they have a visible
|
|
220
|
+
* avatar. The URL always renders an image — their photo, or a neutral placeholder.
|
|
221
|
+
*/
|
|
219
222
|
picture?: string;
|
|
220
223
|
}
|
|
221
224
|
/**
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -261,7 +261,10 @@ export interface IdentityTokenClaims {
|
|
|
261
261
|
identity_type: VerifiedIdentityType;
|
|
262
262
|
verified_at: number;
|
|
263
263
|
method: string;
|
|
264
|
-
/**
|
|
264
|
+
/**
|
|
265
|
+
* The person's public avatar URL (my.auth.sv), present only when they have a visible
|
|
266
|
+
* avatar. The URL always renders an image — their photo, or a neutral placeholder.
|
|
267
|
+
*/
|
|
265
268
|
picture?: string;
|
|
266
269
|
}
|
|
267
270
|
|