@dynamic-labs/sdk-api-core
Advanced tools
Comparing version 0.0.446 to 0.0.447
{ | ||
"name": "@dynamic-labs/sdk-api-core", | ||
"version": "0.0.446", | ||
"version": "0.0.447", | ||
"author": "Dynamic Labs", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -21,7 +21,7 @@ /** | ||
/** | ||
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication. | ||
* Encoded JWT token | ||
* @type {string} | ||
* @memberof EmbeddedWalletSecretWithUpdatedJwt | ||
*/ | ||
jwt?: string; | ||
jwt: string; | ||
/** | ||
@@ -34,7 +34,7 @@ * | ||
/** | ||
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication. | ||
* Encoded JWT token | ||
* @type {string} | ||
* @memberof EmbeddedWalletSecretWithUpdatedJwt | ||
*/ | ||
minifiedJwt?: string; | ||
minifiedJwt: string; | ||
/** | ||
@@ -41,0 +41,0 @@ * Format is a unix-based timestamp. When set, this will be the expiration timestamp on the JWT sent using either the `jwt` field or a response httpOnly cookie set by the server. |
@@ -14,5 +14,5 @@ import { exists } from '../runtime.js'; | ||
return { | ||
'jwt': !exists(json, 'jwt') ? undefined : json['jwt'], | ||
'jwt': json['jwt'], | ||
'user': SdkUserFromJSON(json['user']), | ||
'minifiedJwt': !exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'], | ||
'minifiedJwt': json['minifiedJwt'], | ||
'expiresAt': json['expiresAt'], | ||
@@ -19,0 +19,0 @@ 'walletId': json['walletId'], |
@@ -23,7 +23,7 @@ /** | ||
/** | ||
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication. | ||
* Encoded JWT token | ||
* @type {string} | ||
* @memberof UpdateSelfResponse | ||
*/ | ||
jwt?: string; | ||
jwt: string; | ||
/** | ||
@@ -36,7 +36,7 @@ * | ||
/** | ||
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication. | ||
* Encoded JWT token | ||
* @type {string} | ||
* @memberof UpdateSelfResponse | ||
*/ | ||
minifiedJwt?: string; | ||
minifiedJwt: string; | ||
/** | ||
@@ -43,0 +43,0 @@ * Format is a unix-based timestamp. When set, this will be the expiration timestamp on the JWT sent using either the `jwt` field or a response httpOnly cookie set by the server. |
@@ -16,5 +16,5 @@ import { exists } from '../runtime.js'; | ||
return { | ||
'jwt': !exists(json, 'jwt') ? undefined : json['jwt'], | ||
'jwt': json['jwt'], | ||
'user': SdkUserFromJSON(json['user']), | ||
'minifiedJwt': !exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'], | ||
'minifiedJwt': json['minifiedJwt'], | ||
'expiresAt': json['expiresAt'], | ||
@@ -21,0 +21,0 @@ 'nextView': NextViewEnumFromJSON(json['nextView']), |
@@ -20,7 +20,7 @@ /** | ||
/** | ||
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication. | ||
* Encoded JWT token | ||
* @type {string} | ||
* @memberof VerifyResponse | ||
*/ | ||
jwt?: string; | ||
jwt: string; | ||
/** | ||
@@ -33,7 +33,7 @@ * | ||
/** | ||
* Encoded JWT token. This will only be returned when cookie-based authentication is disabled in favor of standard Auth header based authentication. | ||
* Encoded JWT token | ||
* @type {string} | ||
* @memberof VerifyResponse | ||
*/ | ||
minifiedJwt?: string; | ||
minifiedJwt: string; | ||
/** | ||
@@ -40,0 +40,0 @@ * Format is a unix-based timestamp. When set, this will be the expiration timestamp on the JWT sent using either the `jwt` field or a response httpOnly cookie set by the server. |
@@ -1,2 +0,1 @@ | ||
import { exists } from '../runtime.js'; | ||
import { SdkUserFromJSON, SdkUserToJSON } from './SdkUser.js'; | ||
@@ -13,5 +12,5 @@ | ||
return { | ||
'jwt': !exists(json, 'jwt') ? undefined : json['jwt'], | ||
'jwt': json['jwt'], | ||
'user': SdkUserFromJSON(json['user']), | ||
'minifiedJwt': !exists(json, 'minifiedJwt') ? undefined : json['minifiedJwt'], | ||
'minifiedJwt': json['minifiedJwt'], | ||
'expiresAt': json['expiresAt'], | ||
@@ -18,0 +17,0 @@ }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1319332
31840