Returns the ingest API endpoint for target.
(dsn: DsnComponents)
| 14 | |
| 15 | /** Returns the ingest API endpoint for target. */ |
| 16 | function _getIngestEndpoint(dsn: DsnComponents): string { |
| 17 | return `${getBaseApiEndpoint(dsn)}${dsn.projectId}/envelope/`; |
| 18 | } |
| 19 | |
| 20 | /** Returns a URL-encoded string with auth config suitable for a query string. */ |
| 21 | function _encodedAuth(dsn: DsnComponents, sdkInfo: SdkInfo | undefined): string { |
no test coverage detected