From 6bff99b17676a7b1fb31d722d1cf10f900de77d1 Mon Sep 17 00:00:00 2001 From: Daniel Hougaard Date: Sat, 31 Aug 2024 01:19:40 +0400 Subject: [PATCH] Update index.ts --- src/index.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 0eeeada..381c775 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,8 @@ import AuthClient from "./custom/auth"; import { RawAxiosRequestConfig } from "axios"; import DynamicSecretsClient from "./custom/dynamic-secrets"; +import * as ApiClient from "./infisicalapi_client"; + const buildRestClient = (apiClient: InfisicalApi, requestOptions?: RawAxiosRequestConfig) => { return { // Add more as we go @@ -70,4 +72,5 @@ class InfisicalSDK { rest = () => buildRestClient(this.#apiInstance, this.#requestOptions); } -export { InfisicalSDK }; +export { InfisicalSDK, ApiClient }; +export * from "./custom/schemas";