From f149fc588f5ac0625751e4ce8e2b4b0aa7d9cb1a Mon Sep 17 00:00:00 2001 From: Gregor Martynus <39992+gr2m@users.noreply.github.com> Date: Tue, 1 Dec 2020 00:33:37 -0800 Subject: [PATCH] fix(enterprise cloud): response data types for SCIM endpoints --- src/generated/Endpoints.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/generated/Endpoints.ts b/src/generated/Endpoints.ts index 3ca720949..7b4345259 100644 --- a/src/generated/Endpoints.ts +++ b/src/generated/Endpoints.ts @@ -68,6 +68,9 @@ type SuccessStatusesMap = { type DataType = "application/json" extends keyof T ? T["application/json"] + : // SCIM endpoints + "application/scim+json" extends keyof T + ? T["application/scim+json"] : unknown; type ExtractFirstSuccessResponse = "responses" extends keyof R ? FirstSuccessResponse