@dynamic-labs/sdk-api-core 0.0.566 → 0.0.568
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/package.json
CHANGED
|
@@ -25,6 +25,8 @@ function MinifiedDynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
25
25
|
'lastVerifiedCredentialId': json['last_verified_credential_id'],
|
|
26
26
|
'scope': !runtime.exists(json, 'scope') ? undefined : json['scope'],
|
|
27
27
|
'verifiedCredentialsHashes': !runtime.exists(json, 'verifiedCredentialsHashes') ? undefined : JwtVerifiedCredentialHashes.JwtVerifiedCredentialHashesFromJSON(json['verifiedCredentialsHashes']),
|
|
28
|
+
'email': !runtime.exists(json, 'email') ? undefined : json['email'],
|
|
29
|
+
'username': !runtime.exists(json, 'username') ? undefined : json['username'],
|
|
28
30
|
};
|
|
29
31
|
}
|
|
30
32
|
function MinifiedDynamicJwtToJSON(value) {
|
|
@@ -46,6 +48,8 @@ function MinifiedDynamicJwtToJSON(value) {
|
|
|
46
48
|
'last_verified_credential_id': value.lastVerifiedCredentialId,
|
|
47
49
|
'scope': value.scope,
|
|
48
50
|
'verifiedCredentialsHashes': JwtVerifiedCredentialHashes.JwtVerifiedCredentialHashesToJSON(value.verifiedCredentialsHashes),
|
|
51
|
+
'email': value.email,
|
|
52
|
+
'username': value.username,
|
|
49
53
|
};
|
|
50
54
|
}
|
|
51
55
|
|
|
@@ -82,6 +82,18 @@ export interface MinifiedDynamicJwt {
|
|
|
82
82
|
* @memberof MinifiedDynamicJwt
|
|
83
83
|
*/
|
|
84
84
|
verifiedCredentialsHashes?: JwtVerifiedCredentialHashes;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @type {string}
|
|
88
|
+
* @memberof MinifiedDynamicJwt
|
|
89
|
+
*/
|
|
90
|
+
email?: string;
|
|
91
|
+
/**
|
|
92
|
+
*
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof MinifiedDynamicJwt
|
|
95
|
+
*/
|
|
96
|
+
username?: string;
|
|
85
97
|
}
|
|
86
98
|
export declare function MinifiedDynamicJwtFromJSON(json: any): MinifiedDynamicJwt;
|
|
87
99
|
export declare function MinifiedDynamicJwtFromJSONTyped(json: any, ignoreDiscriminator: boolean): MinifiedDynamicJwt;
|
|
@@ -21,6 +21,8 @@ function MinifiedDynamicJwtFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
21
21
|
'lastVerifiedCredentialId': json['last_verified_credential_id'],
|
|
22
22
|
'scope': !exists(json, 'scope') ? undefined : json['scope'],
|
|
23
23
|
'verifiedCredentialsHashes': !exists(json, 'verifiedCredentialsHashes') ? undefined : JwtVerifiedCredentialHashesFromJSON(json['verifiedCredentialsHashes']),
|
|
24
|
+
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
25
|
+
'username': !exists(json, 'username') ? undefined : json['username'],
|
|
24
26
|
};
|
|
25
27
|
}
|
|
26
28
|
function MinifiedDynamicJwtToJSON(value) {
|
|
@@ -42,6 +44,8 @@ function MinifiedDynamicJwtToJSON(value) {
|
|
|
42
44
|
'last_verified_credential_id': value.lastVerifiedCredentialId,
|
|
43
45
|
'scope': value.scope,
|
|
44
46
|
'verifiedCredentialsHashes': JwtVerifiedCredentialHashesToJSON(value.verifiedCredentialsHashes),
|
|
47
|
+
'email': value.email,
|
|
48
|
+
'username': value.username,
|
|
45
49
|
};
|
|
46
50
|
}
|
|
47
51
|
|