Skip to content

Commit 9b55061

Browse files
bkboothclaude
andcommitted
docs(audience): neutralise baseUrl JSDoc comments
Remove references to internal infrastructure from public source code. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 80637a0 commit 9b55061

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

packages/audience/core/src/queue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const STORAGE_KEY = 'queue';
1111
const MAX_BATCH_SIZE = 100; // Backend maxItems limit per OAS
1212

1313
export interface MessageQueueOptions {
14-
/** Override the base URL for the ingest endpoint (e.g. 'https://api.dev.immutable.com'). */
14+
/** Override the default API base URL for the ingest endpoint. */
1515
baseUrl?: string;
1616
/** Queue flush interval in milliseconds. Defaults to 5 000. */
1717
flushIntervalMs?: number;

packages/audience/pixel/src/pixel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface PixelInitOptions {
3636
consentMode?: 'auto';
3737
domain?: string;
3838
autocapture?: AutocaptureOptions;
39-
/** Override the API base URL. For internal use only (e.g. dev environments behind VPN). */
39+
/** Override the default API base URL. */
4040
baseUrl?: string;
4141
}
4242

packages/audience/sdk/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export interface AudienceConfig {
1414
flushInterval?: number;
1515
/** Number of queued messages that triggers an automatic flush. Defaults to 20. */
1616
flushSize?: number;
17-
/** Override the API base URL. For internal use only (e.g. dev environments behind VPN). */
17+
/** Override the default API base URL. */
1818
baseUrl?: string;
1919
}

0 commit comments

Comments
 (0)