Skip to content

Commit

Permalink
Upgrade SFDC API version to 62.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paustint committed Nov 16, 2024
1 parent 8cd8bec commit 2c9ff38
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ENVIRONMENT='development'

# SFDC API VERSION TO USE
NX_SFDC_API_VERSION='61.0'
NX_SFDC_API_VERSION='62.0'

# trace, debug (default), info, warn, error, fatal, silent
LOG_LEVEL='trace'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
JETSTREAM_SERVER_DOMAIN: localhost:3333
JETSTREAM_SERVER_URL: http://localhost:3333
JETSTREAM_SESSION_SECRET: ${{ secrets.JETSTREAM_SESSION_SECRET }}
SFDC_API_VERSION: '61.0'
SFDC_API_VERSION: '62.0'
SFDC_CALLBACK_URL: http://localhost:3333/oauth/sfdc/callback
SFDC_CONSUMER_KEY: ${{ secrets.SFDC_CONSUMER_KEY }}
SFDC_CONSUMER_SECRET: ${{ secrets.SFDC_CONSUMER_SECRET }}
Expand Down
4 changes: 2 additions & 2 deletions apps/api/.env.production
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ JETSTREAM_SERVER_DOMAIN="getjetstream.app"
JETSTREAM_SERVER_URL="https://getjetstream.app"

NX_BRANCH="main"
NX_SFDC_API_VERSION="61.0"
NX_SFDC_API_VERSION="62.0"

SFDC_API_VERSION="61.0"
SFDC_API_VERSION="62.0"
SFDC_CALLBACK_URL="https://getjetstream.app/oauth/sfdc/callback"
2 changes: 1 addition & 1 deletion apps/jetstream-web-extension/src/utils/api-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function initApiClient({ key: accessToken, hostname }: SessionInfo): ApiC
userId: 'unknown',
organizationId: 'unknown',
accessToken,
apiVersion: '61.0',
apiVersion: '62.0',
instanceUrl,
// refreshToken: refresh_token,
logging: true, // TODO: make dynamic from options
Expand Down

0 comments on commit 2c9ff38

Please sign in to comment.