@37signals/basecamp 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts
CHANGED
|
@@ -194,8 +194,8 @@ export interface BasecampClientOptions {
|
|
|
194
194
|
/** Maximum pages to follow during auto-pagination (defaults to 10,000) */
|
|
195
195
|
maxPages?: number;
|
|
196
196
|
}
|
|
197
|
-
export declare const VERSION = "0.7.
|
|
198
|
-
export declare const API_VERSION = "2026-
|
|
197
|
+
export declare const VERSION = "0.7.3";
|
|
198
|
+
export declare const API_VERSION = "2026-03-23";
|
|
199
199
|
/**
|
|
200
200
|
* Creates a type-safe Basecamp API client with built-in middleware for:
|
|
201
201
|
* - Authentication (Bearer token)
|
package/dist/client.js
CHANGED
|
@@ -67,8 +67,8 @@ import { MyNotificationsService } from "./generated/services/my-notifications.js
|
|
|
67
67
|
// Services - Hand-written (not spec-driven, e.g., OAuth flows)
|
|
68
68
|
// ============================================================================
|
|
69
69
|
import { AuthorizationService } from "./services/authorization.js";
|
|
70
|
-
export const VERSION = "0.7.
|
|
71
|
-
export const API_VERSION = "2026-
|
|
70
|
+
export const VERSION = "0.7.3";
|
|
71
|
+
export const API_VERSION = "2026-03-23";
|
|
72
72
|
const DEFAULT_USER_AGENT = `basecamp-sdk-ts/${VERSION} (api:${API_VERSION})`;
|
|
73
73
|
/**
|
|
74
74
|
* Creates a type-safe Basecamp API client with built-in middleware for:
|
package/package.json
CHANGED