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

@basis-theory/basis-theory-elements-interfaces

Package Overview
Dependencies
Maintainers
10
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@basis-theory/basis-theory-elements-interfaces - npm Package Compare versions

Comparing version 3.3.1 to 3.4.0

2

package.json
{
"name": "@basis-theory/basis-theory-elements-interfaces",
"version": "3.3.1",
"version": "3.4.0",
"repository": "https://github.com/Basis-Theory/basis-theory-elements-interfaces",

@@ -5,0 +5,0 @@ "license": "Apache-2.0",

@@ -11,2 +11,7 @@ import type { Token, CreateToken, TokenType } from '../../models';

}
interface SearchTokensRequest {
query?: string;
page?: number;
size?: number;
}
interface Tokens extends Create<Token, CreateToken>, Retrieve<Token>, RetrieveDecrypted<Token>, Delete, List<Token, ListTokensQuery> {

@@ -18,3 +23,4 @@ listDecrypted(query?: ListDecryptedTokensQuery, options?: RequestOptions): Promise<PaginatedList<Token>>;

listChildren(parentId: string, query?: ListTokensQuery, options?: RequestOptions): Promise<PaginatedList<Token>>;
search(searchRequest: SearchTokensRequest, options?: RequestOptions): Promise<PaginatedList<Token>>;
}
export type { Tokens, ListTokensQuery, ListDecryptedTokensQuery };
export type { Tokens, ListTokensQuery, ListDecryptedTokensQuery, SearchTokensRequest, };
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