Skip to content

Commit

Permalink
fix response in codegen
Browse files Browse the repository at this point in the history
  • Loading branch information
ssanjay1 committed Jul 1, 2024
1 parent bfdb123 commit 42f2f6c
Show file tree
Hide file tree
Showing 19 changed files with 146 additions and 125 deletions.
2 changes: 1 addition & 1 deletion packages/foundry.core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"sls": {
"dependencies": {
"com.palantir.foundry.api:api-gateway": {
"minVersion": "1.845.0",
"minVersion": "1.866.0",
"maxVersion": "1.x.x"
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/foundry.security/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"sls": {
"dependencies": {
"com.palantir.foundry.api:api-gateway": {
"minVersion": "1.845.0",
"minVersion": "1.866.0",
"maxVersion": "1.x.x"
}
}
Expand Down
4 changes: 2 additions & 2 deletions packages/foundry.security/src/public/User.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const _profilePictureUser: $FoundryPlatformMethod<
(
userId: PrincipalId,
$queryParams?: { preview?: PreviewMode | undefined },
) => Promise<unknown>
) => Promise<Blob>
> = [
0,
"/v2/security/users/{0}/profilePicture",
Expand All @@ -146,7 +146,7 @@ export function profilePictureUser(

$queryParams?: { preview?: PreviewMode | undefined },
]
): Promise<unknown> {
): Promise<Blob> {
return $foundryPlatformFetch($ctx, _profilePictureUser, ...args);
}

Expand Down
2 changes: 1 addition & 1 deletion packages/foundry.thirdpartyapplications/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"sls": {
"dependencies": {
"com.palantir.foundry.api:api-gateway": {
"minVersion": "1.845.0",
"minVersion": "1.866.0",
"maxVersion": "1.x.x"
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/foundry/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"sls": {
"dependencies": {
"com.palantir.foundry.api:api-gateway": {
"minVersion": "1.845.0",
"minVersion": "1.866.0",
"maxVersion": "1.x.x"
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/internal.foundry.core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"sls": {
"dependencies": {
"com.palantir.foundry.api:api-gateway": {
"minVersion": "1.845.0",
"minVersion": "1.866.0",
"maxVersion": "1.x.x"
}
}
Expand Down
Loading

0 comments on commit 42f2f6c

Please sign in to comment.