@sparkvault/sdk-mobile 4.6.5 → 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 +2 -0
- package/package.json +1 -1
- package/src/types.ts +2 -0
package/dist/types.d.ts
CHANGED
|
@@ -215,6 +215,8 @@ export interface IdentityTokenClaims {
|
|
|
215
215
|
identity_type: VerifiedIdentityType;
|
|
216
216
|
verified_at: number;
|
|
217
217
|
method: string;
|
|
218
|
+
/** The person's public avatar URL (my.auth.sv), present when they have published one */
|
|
219
|
+
picture?: string;
|
|
218
220
|
}
|
|
219
221
|
/**
|
|
220
222
|
* A server-decided post-login nudge. Computed once per login (default mode);
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -261,6 +261,8 @@ export interface IdentityTokenClaims {
|
|
|
261
261
|
identity_type: VerifiedIdentityType;
|
|
262
262
|
verified_at: number;
|
|
263
263
|
method: string;
|
|
264
|
+
/** The person's public avatar URL (my.auth.sv), present when they have published one */
|
|
265
|
+
picture?: string;
|
|
264
266
|
}
|
|
265
267
|
|
|
266
268
|
/**
|