@37signals/fizzy 0.1.1 → 0.1.2

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
@@ -55,7 +55,7 @@ export interface FizzyClientOptions {
55
55
  /** Hooks for observability (logging, metrics, tracing) */
56
56
  hooks?: FizzyHooks;
57
57
  }
58
- export declare const VERSION = "0.1.1";
58
+ export declare const VERSION = "0.1.2";
59
59
  export declare const API_VERSION = "2026-03-01";
60
60
  /**
61
61
  * Creates a type-safe Fizzy API client with built-in middleware for:
package/dist/client.js CHANGED
@@ -31,7 +31,7 @@ import { WebhooksService } from "./generated/services/webhooks.js";
31
31
  import { MiscellaneousService } from "./generated/services/miscellaneous.js";
32
32
  const require = createRequire(import.meta.url);
33
33
  const metadata = require("./generated/metadata.json");
34
- export const VERSION = "0.1.1";
34
+ export const VERSION = "0.1.2";
35
35
  export const API_VERSION = "2026-03-01";
36
36
  const DEFAULT_BASE_URL = "https://fizzy.do";
37
37
  const DEFAULT_USER_AGENT = `fizzy-sdk-ts/${VERSION} (api:${API_VERSION})`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@37signals/fizzy",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "TypeScript SDK for the Fizzy API",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",