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
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class ApexGuruService {
private readonly initialRetryMs: number;
private readonly maxRetryMs: number;
private readonly backoffMultiplier: number;
private readonly sfapBaseUrl = 'https://dev.api.salesforce.com/platform/scale/v1-beta.1';
private readonly sfapBaseUrl = 'https://api.salesforce.com/platform/scale/v1-beta.1';
private progressCallback?: (progress: number) => void;
private isCancelled = false;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jest.mock('../src/services/ApexGuruAuthService');
jest.mock('archiver');
jest.mock('node:fs');

const TEST_SFAP_BASE_URL = 'https://dev.api.salesforce.com/platform/scale/v1-beta.1';
const TEST_SFAP_BASE_URL = 'https://api.salesforce.com/platform/scale/v1-beta.1';

const mockFetch = jest.fn();
globalThis.fetch = mockFetch as unknown as typeof globalThis.fetch;
Expand Down
Loading