From f067ec20fabfc211286803d2acbf527c8adb3238 Mon Sep 17 00:00:00 2001 From: colin Date: Sun, 22 Dec 2024 11:56:27 +0800 Subject: [PATCH] =?UTF-8?q?feat(openiddict):=20=E5=A2=9E=E5=8A=A0api?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=AF=BC=E5=87=BA.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/vben5/packages/@abp/openiddict/src/api/index.ts | 4 ++++ apps/vben5/packages/@abp/openiddict/src/index.ts | 1 + 2 files changed, 5 insertions(+) create mode 100644 apps/vben5/packages/@abp/openiddict/src/api/index.ts diff --git a/apps/vben5/packages/@abp/openiddict/src/api/index.ts b/apps/vben5/packages/@abp/openiddict/src/api/index.ts new file mode 100644 index 000000000..620ac6955 --- /dev/null +++ b/apps/vben5/packages/@abp/openiddict/src/api/index.ts @@ -0,0 +1,4 @@ +export * as applicationsApi from './applications'; +export * as authorizationsApi from './authorizations'; +export * as scopesApi from './scopes'; +export * as tokensApi from './tokens'; diff --git a/apps/vben5/packages/@abp/openiddict/src/index.ts b/apps/vben5/packages/@abp/openiddict/src/index.ts index c688f3a89..f43dbaee0 100644 --- a/apps/vben5/packages/@abp/openiddict/src/index.ts +++ b/apps/vben5/packages/@abp/openiddict/src/index.ts @@ -1,3 +1,4 @@ +export * from './api'; export * from './components'; export * from './constants'; export * from './types';