Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dynamic-labs/sdk-api-core

Package Overview
Dependencies
Maintainers
1
Versions
151
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynamic-labs/sdk-api-core - npm Package Compare versions

Comparing version 0.0.446 to 0.0.447

2

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc