Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(hubspot): add missing tickets and oauth scopes to OAuth config
  • Loading branch information
waleedlatif1 committed Mar 18, 2026
commit b0cc34372d84706f18afdea4add447262f4bcf92
3 changes: 3 additions & 0 deletions apps/sim/lib/oauth/oauth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,9 @@ export const OAUTH_PROVIDERS: Record<string, OAuthProviderConfig> = {
'crm.lists.read',
'crm.lists.write',
'crm.objects.tickets.read',
'crm.objects.tickets.write',
'tickets',
'oauth',
],
},
},
Expand Down
3 changes: 3 additions & 0 deletions apps/sim/lib/oauth/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,9 @@ export const SCOPE_DESCRIPTIONS: Record<string, string> = {
'crm.lists.read': 'Read HubSpot lists',
'crm.lists.write': 'Create and update HubSpot lists',
'crm.objects.tickets.read': 'Read HubSpot tickets',
'crm.objects.tickets.write': 'Create and update HubSpot tickets',
tickets: 'Access HubSpot tickets',
oauth: 'Authenticate with HubSpot OAuth',

// Salesforce scopes
api: 'Access Salesforce API',
Expand Down
Loading