From 4d0d75f54e88c7dfee3d9357fba507cbe5fbe88e Mon Sep 17 00:00:00 2001 From: Martin Helmich Date: Mon, 18 Sep 2023 09:55:00 +0200 Subject: [PATCH] Fix conflict after client upgrade --- src/lib/app/install.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/app/install.ts b/src/lib/app/install.ts index 2634e5f10..f1c6ea761 100644 --- a/src/lib/app/install.ts +++ b/src/lib/app/install.ts @@ -36,7 +36,7 @@ export async function triggerAppInstallation( async () => { for (let attempts = 0; attempts < 10; attempts++) { const result = await apiClient.app.getAppinstallation({ - pathParameters: { appInstallationId }, + appInstallationId, }); if (result.status === 200) { return result.data; @@ -50,7 +50,7 @@ export async function triggerAppInstallation( if ("document-root" in flags && flags["document-root"] !== "/") { await process.runStep("setting document root", async () => { const result = await apiClient.app.patchAppinstallation({ - pathParameters: { appInstallationId }, + appInstallationId, headers: { "if-event-reached": eventId }, data: { customDocumentRoot: flags["document-root"],