@basis-theory/basis-theory-js
Advanced tools
Comparing version 1.34.0 to 1.35.0
{ | ||
"name": "@basis-theory/basis-theory-js", | ||
"version": "1.34.0", | ||
"version": "1.35.0", | ||
"repository": "https://github.com/Basis-Theory/basis-theory-js", | ||
@@ -5,0 +5,0 @@ "license": "Apache-2.0", |
@@ -7,2 +7,2 @@ import type { Proxy } from '@/types/models'; | ||
}; | ||
} & (new (...args: any[]) => import("../types/sdk/services/shared").Create<Proxy, Pick<Proxy, "name" | "destinationUrl" | "requestReactorId">>) & (new (...args: any[]) => import("../types/sdk/services/shared").Retrieve<Proxy>) & (new (...args: any[]) => import("../types/sdk/services/shared").Update<Proxy, Pick<Proxy, "name" | "destinationUrl" | "requestReactorId">>) & (new (...args: any[]) => import("../types/sdk/services/shared").Delete) & (new (...args: any[]) => import("../types/sdk/services/shared").List<Proxy, ListProxyQuery>); | ||
} & (new (...args: any[]) => import("../types/sdk/services/shared").Create<Proxy, Pick<Proxy, "name" | "destinationUrl" | "requestReactorId" | "requireAuth">>) & (new (...args: any[]) => import("../types/sdk/services/shared").Retrieve<Proxy>) & (new (...args: any[]) => import("../types/sdk/services/shared").Update<Proxy, Pick<Proxy, "name" | "destinationUrl" | "requestReactorId" | "requireAuth">>) & (new (...args: any[]) => import("../types/sdk/services/shared").Delete) & (new (...args: any[]) => import("../types/sdk/services/shared").List<Proxy, ListProxyQuery>); |
@@ -9,5 +9,6 @@ import type { Auditable } from './shared'; | ||
requestReactorId: string; | ||
requireAuth?: boolean; | ||
} | ||
declare type CreateProxy = Pick<Proxy, 'name' | 'destinationUrl' | 'requestReactorId'>; | ||
declare type CreateProxy = Pick<Proxy, 'name' | 'destinationUrl' | 'requestReactorId' | 'requireAuth'>; | ||
declare type UpdateProxy = CreateProxy; | ||
export type { Proxy, CreateProxy, UpdateProxy }; |
136449
2852