Skip to content

Commit

Permalink
fix: update api version
Browse files Browse the repository at this point in the history
  • Loading branch information
btrn11 committed Jan 22, 2025
1 parent 644f8b7 commit 2a9cfb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/package/packagePushUpgrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export class PackagePushUpgrade {

const pushRequestResult: PackagePushRequestResult = await connection.request({
method: 'POST',
url: '/services/data/v55.0/sobjects/packagepushrequest/',
url: '/services/data/v62.0/sobjects/packagepushrequest/',
body: JSON.stringify(packagePushRequestBody),
});

Expand All @@ -170,7 +170,7 @@ export class PackagePushUpgrade {

await connection.request({
method: 'PATCH',
url: '/services/data/v55.0/sobjects/packagepushrequest/' + pushRequestResult?.id,
url: '/services/data/v62.0/sobjects/packagepushrequest/' + pushRequestResult?.id,
body: JSON.stringify({ Status: 'Pending' }),
});

Expand Down

0 comments on commit 2a9cfb5

Please sign in to comment.