Skip to content

Commit f0f184f

Browse files
committed
Fix User-Agent doc comments to reflect new format
1 parent 3808d05 commit f0f184f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

swift/Sources/Basecamp/BasecampConfig.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public struct BasecampConfig: Sendable {
3939
///
4040
/// - Parameters:
4141
/// - baseURL: API base URL (default: `https://3.basecampapi.com`)
42-
/// - userAgent: User-Agent header (default: `basecamp-sdk-swift/VERSION`)
42+
/// - userAgent: User-Agent header (default: `basecamp-sdk-swift/VERSION (api:API_VERSION)`)
4343
/// - enableRetry: Enable automatic retry on 429/503 (default: `true`)
4444
/// - enableCache: Enable ETag-based caching (default: `false`)
4545
/// - maxPages: Maximum pages to follow (default: `10_000`)

typescript/src/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export interface BasecampClientOptions {
188188
auth?: AuthStrategy;
189189
/** Base URL override (defaults to https://3.basecampapi.com/{accountId}) */
190190
baseUrl?: string;
191-
/** User-Agent header (defaults to basecamp-sdk-ts/VERSION) */
191+
/** User-Agent header (defaults to basecamp-sdk-ts/VERSION (api:API_VERSION)) */
192192
userAgent?: string;
193193
/** Enable ETag-based caching (defaults to false) */
194194
enableCache?: boolean;

0 commit comments

Comments
 (0)