From 44f253a99ef92950894ad5706fae5a99da5f3ba4 Mon Sep 17 00:00:00 2001 From: Demian Parkhomenko <95881717+DemianParkhomenko@users.noreply.github.com> Date: Wed, 8 May 2024 17:25:33 +0300 Subject: [PATCH] Export all generated types --- package.json | 2 +- src/index.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4693100..1765f18 100644 --- a/package.json +++ b/package.json @@ -43,5 +43,5 @@ }, "type": "module", "types": "lib/index.d.ts", - "version": "2.0.0" + "version": "2.1.0" } diff --git a/src/index.ts b/src/index.ts index e947ecb..a8fbcdf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,3 +9,5 @@ export const createClientMonoAcquiring = (clientOptions: ClientOptions) => { ...clientOptions, }); }; + +export type * as ApiMonoAcquiring from './generated/acquiring.js';