From 95b7e1f0cb5199e16a312194b4e23be57dbfa357 Mon Sep 17 00:00:00 2001 From: Nikki Kang Date: Wed, 27 Dec 2023 09:48:15 -0800 Subject: [PATCH] combine gen w write for dashboard walle tusers sdk --- .../dashboard-wallet-users/DashboardWalletUsersApi.ts | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/packages/libs/src/sdk/api/dashboard-wallet-users/DashboardWalletUsersApi.ts b/packages/libs/src/sdk/api/dashboard-wallet-users/DashboardWalletUsersApi.ts index 9d6211978de..36a05662e04 100644 --- a/packages/libs/src/sdk/api/dashboard-wallet-users/DashboardWalletUsersApi.ts +++ b/packages/libs/src/sdk/api/dashboard-wallet-users/DashboardWalletUsersApi.ts @@ -5,6 +5,10 @@ import { EntityType } from '../../services/EntityManager/types' import { parseParams } from '../../utils/parseParams' +import { + Configuration, + DashboardWalletUsersApi as GeneratedDashboardWalletUsersApi +} from '../generated/default' import { CreateDashboardWalletUser, @@ -13,14 +17,13 @@ import { DeleteDashboardWalletUserSchema } from './types' -// TODO(nkang): Extend generated dashboard wallet users API -export class DashboardWalletUsersApi { +export class DashboardWalletUsersApi extends GeneratedDashboardWalletUsersApi { constructor( - // config: Configuration, + config: Configuration, private readonly entityManager: EntityManagerService, private readonly auth: AuthService ) { - // super(config) + super(config) } /**