New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@sd-jwt/types

Package Overview
Dependencies
Maintainers
2
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sd-jwt/types - npm Package Compare versions

Comparing version 0.6.1 to 0.6.2-next.1

10

dist/index.d.ts

@@ -131,4 +131,8 @@ declare const SD_SEPARATOR = "~";

} & SD<Payload> & DECOY> : SD<Payload> & DECOY;
type DisclosureFrame<T extends object> = Frame<T>;
/**
* This is a disclosureFrame type that is used to represent the structure of what is being disclosed.
*/
type Extensible = Record<string, unknown | boolean>;
type DisclosureFrame<T extends Extensible> = Frame<T>;
/**
* This is a presentationFrame type that is used to represent the structure of what is being presented.

@@ -179,4 +183,4 @@ * PresentationFrame is made from the payload type.

};
type PresentationFrame<T extends object> = PFrame<T>;
type PresentationFrame<T extends Extensible> = PFrame<T>;
export { type Base64urlString, type DECOY, type DisclosureData, type DisclosureFrame, type Hasher, type HasherAndAlg, type HasherAndAlgSync, type HasherSync, type JwtPayload, type KBOptions, KB_JWT_TYP, type KbVerifier, type OrPromise, type PresentationFrame, type SD, type SDJWTCompact, type SDJWTConfig, SD_DECOY, SD_DIGEST, SD_LIST_KEY, SD_SEPARATOR, type SaltGenerator, type SaltGeneratorSync, type Signer, type SignerSync, type Verifier, type VerifierSync, type kbHeader, type kbPayload };
export { type Base64urlString, type DECOY, type DisclosureData, type DisclosureFrame, type Extensible, type Hasher, type HasherAndAlg, type HasherAndAlgSync, type HasherSync, type JwtPayload, type KBOptions, KB_JWT_TYP, type KbVerifier, type OrPromise, type PresentationFrame, type SD, type SDJWTCompact, type SDJWTConfig, SD_DECOY, SD_DIGEST, SD_LIST_KEY, SD_SEPARATOR, type SaltGenerator, type SaltGeneratorSync, type Signer, type SignerSync, type Verifier, type VerifierSync, type kbHeader, type kbPayload };
{
"name": "@sd-jwt/types",
"version": "0.6.1",
"version": "0.6.2-next.1+9356aee",
"description": "sd-jwt draft 7 implementation in typescript",

@@ -56,3 +56,3 @@ "main": "dist/index.js",

},
"gitHead": "f19b76c7c3a66c539a5eac06ff20ad2ac17dcf47"
"gitHead": "9356aee736425adf4b3f0af2123d2bcfb82a28ea"
}

@@ -156,4 +156,9 @@ export const SD_SEPARATOR = '~';

export type DisclosureFrame<T extends object> = Frame<T>;
/**
* This is a disclosureFrame type that is used to represent the structure of what is being disclosed.
*/
export type Extensible = Record<string, unknown | boolean>;
export type DisclosureFrame<T extends Extensible> = Frame<T>;
/**

@@ -212,2 +217,2 @@ * This is a presentationFrame type that is used to represent the structure of what is being presented.

export type PresentationFrame<T extends object> = PFrame<T>;
export type PresentationFrame<T extends Extensible> = PFrame<T>;

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