From 2255541c5e535c98a45977258fcea8a99b9fa1a7 Mon Sep 17 00:00:00 2001 From: Vikas Kumar Date: Wed, 17 May 2023 18:58:14 +0530 Subject: [PATCH] fix: exposed createWithResponse function[] (#1522) * fix: exposed createWithResponse function * fix: exposed getCallDetails function --- lib/types/cmaClient.types.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/types/cmaClient.types.ts b/lib/types/cmaClient.types.ts index 5dfe2f9778..69fc8b0ed1 100644 --- a/lib/types/cmaClient.types.ts +++ b/lib/types/cmaClient.types.ts @@ -2,7 +2,10 @@ import { PlainClientAPI } from 'contentful-management' export type CMAClient = { appAction: Pick - appActionCall: Pick + appActionCall: Pick< + PlainClientAPI['appActionCall'], + 'create' | 'getCallDetails' | 'createWithResponse' + > appDefinition: Pick appInstallation: Pick asset: PlainClientAPI['asset']