Skip to content

Commit f149fc5

Browse files
committed
fix(enterprise cloud): response data types for SCIM endpoints
1 parent 366311d commit f149fc5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/generated/Endpoints.ts

+3
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ type SuccessStatusesMap = {
6868

6969
type DataType<T> = "application/json" extends keyof T
7070
? T["application/json"]
71+
: // SCIM endpoints
72+
"application/scim+json" extends keyof T
73+
? T["application/scim+json"]
7174
: unknown;
7275
type ExtractFirstSuccessResponse<R> = "responses" extends keyof R
7376
? FirstSuccessResponse<R["responses"]>

0 commit comments

Comments
 (0)