@basis-theory/basis-theory-elements-interfaces
Advanced tools
Comparing version 3.0.0 to 3.1.0
{ | ||
"name": "@basis-theory/basis-theory-elements-interfaces", | ||
"version": "3.0.0", | ||
"version": "3.1.0", | ||
"repository": "https://github.com/Basis-Theory/basis-theory-elements-interfaces", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -6,3 +6,3 @@ import type { ReactRequest, ReactResponse } from '../../models'; | ||
} | ||
declare type QueryValue = boolean | number | string | null | undefined | (number | string)[]; | ||
declare type QueryValue = boolean | number | string | null | undefined | Record<string, string> | (number | string)[]; | ||
interface PaginatedQuery { | ||
@@ -9,0 +9,0 @@ [key: string]: QueryValue; |
@@ -6,2 +6,3 @@ import type { Token, CreateToken, TokenType } from '../../models'; | ||
type?: TokenType | TokenType[]; | ||
metadata?: Record<string, string>; | ||
} | ||
@@ -8,0 +9,0 @@ interface ListDecryptedTokensQuery extends ListTokensQuery { |
54581
1055