fresh-squeezy 0.1.0

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.
@@ -0,0 +1,541 @@
1
+ /**
2
+ * Core public types for fresh-squeezy.
3
+ *
4
+ * These shapes are the integration contract with consuming products. Treat them
5
+ * as public API surface — breaking changes require a major version bump.
6
+ */
7
+ /**
8
+ * Severity for validator findings.
9
+ *
10
+ * - `info`: benign observation (e.g. "store reachable").
11
+ * - `warning`: likely misconfiguration that should be reviewed.
12
+ * - `error`: the setup is wrong; consumers should fail CI.
13
+ */
14
+ type ValidationSeverity = "info" | "warning" | "error";
15
+ /**
16
+ * Which Lemon Squeezy environment a validator ran against.
17
+ * Mode is determined by which API key was used, not by a host switch.
18
+ */
19
+ type Mode = "test" | "live";
20
+ /**
21
+ * A single finding surfaced by a validator.
22
+ *
23
+ * `code` is a stable identifier so consumers can match in CI or dashboards
24
+ * without depending on `message` wording. `suggestedFix` is optional prose
25
+ * pointing to the most likely remediation.
26
+ */
27
+ interface ValidationIssue {
28
+ code: string;
29
+ severity: ValidationSeverity;
30
+ message: string;
31
+ suggestedFix?: string;
32
+ context?: Record<string, string | number | boolean | null>;
33
+ }
34
+ /**
35
+ * Return shape for every validator.
36
+ *
37
+ * `ok` is `false` if any issue has `severity: "error"`. `mode` surfaces the
38
+ * environment the validator actually talked to, so callers can detect
39
+ * test/live confusion.
40
+ */
41
+ interface ValidationResult<T = unknown> {
42
+ ok: boolean;
43
+ mode: Mode;
44
+ name: string;
45
+ resource?: T;
46
+ issues: ValidationIssue[];
47
+ }
48
+ /**
49
+ * Aggregate doctor output. Composes the results of every individual validator
50
+ * into one object suitable for CI exit-code decisions, dashboards, or JSON logs.
51
+ */
52
+ interface DoctorReport {
53
+ ok: boolean;
54
+ mode: Mode;
55
+ results: ValidationResult[];
56
+ }
57
+ /**
58
+ * Options used when constructing the client.
59
+ * Every field has an env-based default so consumers can use `createFreshSqueezy()`
60
+ * with no arguments for the common case.
61
+ */
62
+ interface FreshSqueezyConfig {
63
+ apiKey?: string;
64
+ storeId?: string | number;
65
+ mode?: Mode;
66
+ baseUrl?: string;
67
+ fetch?: typeof fetch;
68
+ }
69
+ /**
70
+ * Resolved config after env + defaults are applied. Internal — not exported
71
+ * from the package root.
72
+ */
73
+ interface ResolvedConfig {
74
+ apiKey: string;
75
+ storeId?: string;
76
+ mode: Mode;
77
+ baseUrl: string;
78
+ fetch: typeof fetch;
79
+ }
80
+ /**
81
+ * JSON:API resource envelope returned by the Lemon Squeezy main API.
82
+ *
83
+ * The shape is documented at https://jsonapi.org/ and covers the subset
84
+ * fresh-squeezy relies on.
85
+ */
86
+ interface JsonApiResource<TAttributes = Record<string, unknown>> {
87
+ type: string;
88
+ id: string;
89
+ attributes: TAttributes;
90
+ relationships?: Record<string, unknown>;
91
+ links?: Record<string, string>;
92
+ }
93
+ /**
94
+ * JSON:API top-level document for single-resource responses.
95
+ */
96
+ interface JsonApiDocument<TAttributes = Record<string, unknown>> {
97
+ data: JsonApiResource<TAttributes>;
98
+ links?: Record<string, string>;
99
+ meta?: Record<string, unknown>;
100
+ }
101
+ /**
102
+ * JSON:API top-level document for collection responses.
103
+ */
104
+ interface JsonApiCollection<TAttributes = Record<string, unknown>> {
105
+ data: JsonApiResource<TAttributes>[];
106
+ links?: Record<string, string>;
107
+ meta?: {
108
+ page?: {
109
+ currentPage: number;
110
+ lastPage: number;
111
+ total: number;
112
+ };
113
+ };
114
+ }
115
+
116
+ /**
117
+ * Options for a single HTTP request.
118
+ *
119
+ * `path` is a Lemon Squeezy API path starting with `/v1/...`. The `query`
120
+ * record is serialized as URL search params with JSON:API-style bracketed
121
+ * keys left untouched (e.g. `filter[store_id]`).
122
+ */
123
+ interface RequestOptions {
124
+ method?: "GET" | "POST" | "PATCH" | "DELETE";
125
+ path: string;
126
+ query?: Record<string, string | number | undefined>;
127
+ body?: Record<string, unknown>;
128
+ signal?: AbortSignal;
129
+ }
130
+ /**
131
+ * Low-level HTTP client. Callers usually go through resource/validator helpers,
132
+ * but this is also exposed as the public escape hatch so consumers can reach
133
+ * endpoints fresh-squeezy does not wrap yet.
134
+ *
135
+ * Responsibilities kept in this one place (per plan.md "one source of truth
136
+ * for transport"):
137
+ * - auth header injection
138
+ * - query string serialization with JSON:API bracket keys preserved
139
+ * - response parsing + error normalization
140
+ * - surfacing HTTP status in `FreshSqueezyError`
141
+ *
142
+ * Retries, pagination helpers, and rate-limit handling live in separate files
143
+ * so this layer stays small and obvious.
144
+ */
145
+ declare class HttpClient {
146
+ private readonly config;
147
+ constructor(config: ResolvedConfig);
148
+ request<T>(options: RequestOptions): Promise<T>;
149
+ /**
150
+ * Fetch a single JSON:API resource and return its `data` object.
151
+ */
152
+ getResource<TAttr>(path: string): Promise<JsonApiResource<TAttr>>;
153
+ /**
154
+ * Fetch a JSON:API collection and return its `data` array.
155
+ * Pagination is the caller's responsibility — use `meta.page` on the raw
156
+ * request for multi-page traversal.
157
+ */
158
+ getCollection<TAttr>(path: string, query?: RequestOptions["query"]): Promise<JsonApiResource<TAttr>[]>;
159
+ private buildUrl;
160
+ }
161
+
162
+ /**
163
+ * Subset of the Lemon Squeezy `users` resource attributes we rely on.
164
+ * Full schema at https://docs.lemonsqueezy.com/api/users.
165
+ */
166
+ interface UserAttributes {
167
+ name: string;
168
+ email: string;
169
+ color?: string;
170
+ avatar_url?: string | null;
171
+ has_custom_avatar?: boolean;
172
+ createdAt?: string;
173
+ updatedAt?: string;
174
+ }
175
+ /**
176
+ * Document-level metadata on `/v1/users/me`.
177
+ *
178
+ * `test_mode` was added to the endpoint on 2024-01-05 (per the Lemon Squeezy
179
+ * API changelog: https://docs.lemonsqueezy.com/api/getting-started/changelog).
180
+ * It reports whether the *key* being used is a test-mode key, independent of
181
+ * what the caller declared. The connection validator compares this against
182
+ * the caller's declared mode to catch the common "prod key in staging"
183
+ * (or vice versa) misconfiguration.
184
+ */
185
+ interface UserMeta {
186
+ test_mode?: boolean;
187
+ }
188
+ /**
189
+ * Authenticated-user document with the `data` + `meta` block preserved.
190
+ * The connection validator needs the meta flag, so we return the full
191
+ * document here rather than just `data` as the collection helpers do.
192
+ */
193
+ type AuthenticatedUserDocument = JsonApiDocument<UserAttributes> & {
194
+ meta?: UserMeta;
195
+ };
196
+ /**
197
+ * Fetch the user associated with the API key. Primary use is the connection
198
+ * validator: a successful call confirms the key is valid, surfaces the
199
+ * account identity for logs, and exposes `meta.test_mode` for mode
200
+ * mismatch detection.
201
+ */
202
+ declare function getAuthenticatedUser(http: HttpClient): Promise<AuthenticatedUserDocument>;
203
+ /**
204
+ * Backwards-compatible helper if a caller only wants the resource (old
205
+ * `getAuthenticatedUser` shape). Internal — not re-exported from the root.
206
+ */
207
+ declare function userResource(doc: AuthenticatedUserDocument): JsonApiResource<UserAttributes>;
208
+
209
+ /**
210
+ * Connection validator summary attached to the `resource` field. Keeps the
211
+ * validator self-contained — consumers need not call `users/me` again.
212
+ *
213
+ * `actualMode` is derived from the `meta.test_mode` field Lemon Squeezy added
214
+ * to `/v1/users/me` on 2024-01-05 (API changelog). When the caller declared
215
+ * one mode but the key actually belongs to the other, the validator fires a
216
+ * `MODE_MISMATCH` error — the single misconfiguration most likely to cause a
217
+ * prod-in-staging (or vice versa) incident.
218
+ */
219
+ interface ConnectionSummary {
220
+ user: UserAttributes;
221
+ storeCount: number;
222
+ storeIds: string[];
223
+ /** The mode the API key actually belongs to (per `/v1/users/me` meta). */
224
+ actualMode?: Mode;
225
+ /** The mode the caller asked for at construction time. */
226
+ declaredMode: Mode;
227
+ }
228
+ /**
229
+ * Verify that the API key works, surface the account identity + reachable
230
+ * stores, and cross-check declared mode vs the key's true mode.
231
+ *
232
+ * This is the first check every `doctor()` run performs; if it fails,
233
+ * no downstream validator has anything useful to report.
234
+ */
235
+ declare function validateConnection(http: HttpClient, mode: Mode): Promise<ValidationResult<ConnectionSummary>>;
236
+
237
+ /**
238
+ * Subset of product attributes we need for validation. `status` drives the
239
+ * "unpublished product" check; `store_id` drives ownership checks.
240
+ */
241
+ interface ProductAttributes {
242
+ name: string;
243
+ slug: string;
244
+ description?: string | null;
245
+ status: "draft" | "published";
246
+ status_formatted?: string;
247
+ store_id: number;
248
+ buy_now_url?: string | null;
249
+ from_price?: number | null;
250
+ to_price?: number | null;
251
+ created_at?: string;
252
+ updated_at?: string;
253
+ }
254
+ declare function getProduct(http: HttpClient, productId: string | number): Promise<JsonApiResource<ProductAttributes>>;
255
+ declare function listProducts(http: HttpClient, storeId: string | number): Promise<JsonApiResource<ProductAttributes>[]>;
256
+
257
+ interface ProductValidationOptions {
258
+ productId: string | number;
259
+ /** Optional: confirm the product belongs to this store. */
260
+ expectedStoreId?: string | number;
261
+ }
262
+ /**
263
+ * Validate a product's publish state, store ownership, and that it has at
264
+ * least one published variant. Surfaces the most common misconfigurations
265
+ * caught in the wild (unpublished product, wrong store, missing variants).
266
+ */
267
+ declare function validateProduct(http: HttpClient, mode: Mode, options: ProductValidationOptions): Promise<ValidationResult<ProductAttributes>>;
268
+
269
+ /**
270
+ * Subset of webhook attributes we read. `events` is an ordered list of
271
+ * subscribed event names; the validator cross-references these against the
272
+ * support manifest to catch missing subscriptions.
273
+ */
274
+ interface WebhookAttributes {
275
+ store_id: number;
276
+ url: string;
277
+ events: string[];
278
+ last_sent_at?: string | null;
279
+ created_at?: string;
280
+ updated_at?: string;
281
+ test_mode?: boolean;
282
+ }
283
+ declare function listWebhooksForStore(http: HttpClient, storeId: string | number): Promise<JsonApiResource<WebhookAttributes>[]>;
284
+
285
+ interface WebhookValidationOptions {
286
+ storeId: string | number;
287
+ /** The public URL your app exposes for Lemon Squeezy to POST to. */
288
+ url: string;
289
+ }
290
+ /**
291
+ * Confirm a webhook matching `options.url` is registered against the given
292
+ * store, and cross-reference its subscribed events against the support
293
+ * manifest's recommended + optional lists.
294
+ *
295
+ * Missing recommended events = error. Missing optional events = info, because
296
+ * not every integration needs them.
297
+ */
298
+ declare function validateWebhook(http: HttpClient, mode: Mode, options: WebhookValidationOptions): Promise<ValidationResult<WebhookAttributes>>;
299
+
300
+ /**
301
+ * Optional targets for the doctor run. If a target is omitted, its validator
302
+ * is skipped — consumers only pay for what they configure.
303
+ */
304
+ interface DoctorOptions {
305
+ storeId?: string | number;
306
+ productId?: string | number;
307
+ webhookUrl?: string;
308
+ }
309
+ /**
310
+ * Compose every configured validator into a single report. This is the
311
+ * primary entry point for CI health checks: one call, one structured result,
312
+ * one exit code decision.
313
+ *
314
+ * Order is meaningful. Connection runs first because downstream validators
315
+ * have nothing useful to say if the API key is broken.
316
+ */
317
+ declare function doctor(http: HttpClient, mode: Mode, options?: DoctorOptions): Promise<DoctorReport>;
318
+
319
+ /**
320
+ * Subset of store attributes fresh-squeezy reads.
321
+ * Full schema at https://docs.lemonsqueezy.com/api/stores.
322
+ */
323
+ interface StoreAttributes {
324
+ name: string;
325
+ slug: string;
326
+ domain?: string | null;
327
+ url?: string | null;
328
+ country?: string;
329
+ currency?: string;
330
+ plan?: string;
331
+ created_at?: string;
332
+ updated_at?: string;
333
+ }
334
+ declare function getStore(http: HttpClient, storeId: string | number): Promise<JsonApiResource<StoreAttributes>>;
335
+ declare function listStores(http: HttpClient): Promise<JsonApiResource<StoreAttributes>[]>;
336
+
337
+ /**
338
+ * The public client. All consumer code flows through the factory below —
339
+ * direct instantiation is intentionally not exposed so we can evolve the
340
+ * internals without breaking callers.
341
+ */
342
+ interface FreshSqueezyClient {
343
+ /** Resolved mode (test or live). Surfaced so consumers can log it. */
344
+ readonly mode: Mode;
345
+ /** Raw HTTP escape hatch for endpoints fresh-squeezy does not wrap. */
346
+ request<T = unknown>(options: RequestOptions): Promise<T>;
347
+ validateConnection(): Promise<ValidationResult<ConnectionSummary>>;
348
+ validateStore(storeId: string | number): Promise<ValidationResult<StoreAttributes>>;
349
+ validateProduct(options: ProductValidationOptions): Promise<ValidationResult<ProductAttributes>>;
350
+ validateWebhook(options: WebhookValidationOptions): Promise<ValidationResult<WebhookAttributes>>;
351
+ doctor(options?: DoctorOptions): Promise<DoctorReport>;
352
+ }
353
+ /**
354
+ * Create a fresh-squeezy client. Zero-config usage reads
355
+ * `LEMON_SQUEEZY_API_KEY`, `LEMON_SQUEEZY_STORE_ID`, and `LEMON_SQUEEZY_MODE`
356
+ * from `process.env`.
357
+ *
358
+ * @example
359
+ * ```ts
360
+ * const lemon = createFreshSqueezy();
361
+ * const report = await lemon.doctor();
362
+ * if (!report.ok) process.exit(1);
363
+ * ```
364
+ */
365
+ declare function createFreshSqueezy(config?: FreshSqueezyConfig): FreshSqueezyClient;
366
+
367
+ /**
368
+ * Unified error type for fresh-squeezy. All HTTP and validation failures that
369
+ * bubble up to consumers pass through this class so caller code can branch on
370
+ * a single `instanceof` check.
371
+ *
372
+ * Why a class over a discriminated union: Node's `fetch` rejections interleave
373
+ * with library errors in user stack traces. A class keeps the stack readable
374
+ * and gives one stable prototype chain for consumer `catch` blocks.
375
+ */
376
+ declare class FreshSqueezyError extends Error {
377
+ readonly code: string;
378
+ readonly status?: number;
379
+ readonly detail?: unknown;
380
+ constructor(opts: {
381
+ code: string;
382
+ message: string;
383
+ status?: number;
384
+ detail?: unknown;
385
+ });
386
+ }
387
+
388
+ /**
389
+ * Env variable names read when a field is not passed explicitly. Consuming
390
+ * products rely on these names being stable — treat them as public API.
391
+ */
392
+ declare const ENV_KEYS: {
393
+ readonly apiKey: "LEMON_SQUEEZY_API_KEY";
394
+ readonly storeId: "LEMON_SQUEEZY_STORE_ID";
395
+ readonly mode: "LEMON_SQUEEZY_MODE";
396
+ };
397
+ /**
398
+ * Resolve the user-supplied config against environment variables and defaults.
399
+ *
400
+ * Precedence (highest → lowest): explicit argument → env var → built-in default.
401
+ * Throws `FreshSqueezyError` only for fields that cannot be defaulted (currently
402
+ * just `apiKey`), so callers can surface a clear setup error at construction
403
+ * time rather than at first request.
404
+ */
405
+ declare function resolveConfig(input?: FreshSqueezyConfig): ResolvedConfig;
406
+
407
+ /**
408
+ * Stable issue codes. Consumers may switch on these in CI — do not rename
409
+ * without a major version bump.
410
+ */
411
+ declare const ISSUE_CODES: {
412
+ readonly AUTH_FAILED: "AUTH_FAILED";
413
+ readonly MODE_MISMATCH: "MODE_MISMATCH";
414
+ readonly STORE_NOT_FOUND: "STORE_NOT_FOUND";
415
+ readonly STORE_NOT_OWNED: "STORE_NOT_OWNED";
416
+ readonly PRODUCT_NOT_FOUND: "PRODUCT_NOT_FOUND";
417
+ readonly PRODUCT_WRONG_STORE: "PRODUCT_WRONG_STORE";
418
+ readonly PRODUCT_UNPUBLISHED: "PRODUCT_UNPUBLISHED";
419
+ readonly PRODUCT_NO_BUY_URL: "PRODUCT_NO_BUY_URL";
420
+ readonly VARIANT_UNPUBLISHED: "VARIANT_UNPUBLISHED";
421
+ readonly VARIANT_MISSING: "VARIANT_MISSING";
422
+ readonly WEBHOOK_NOT_FOUND: "WEBHOOK_NOT_FOUND";
423
+ readonly WEBHOOK_EVENTS_MISSING: "WEBHOOK_EVENTS_MISSING";
424
+ readonly WEBHOOK_OPTIONAL_EVENTS: "WEBHOOK_OPTIONAL_EVENTS";
425
+ readonly NETWORK_ERROR: "NETWORK_ERROR";
426
+ readonly UNKNOWN: "UNKNOWN";
427
+ };
428
+ /**
429
+ * Build a `ValidationIssue` with defaults for the common case.
430
+ * Extracted so every validator produces consistently shaped issues.
431
+ */
432
+ declare function issue(code: string, severity: ValidationSeverity, message: string, extras?: {
433
+ suggestedFix?: string;
434
+ context?: ValidationIssue["context"];
435
+ }): ValidationIssue;
436
+ /**
437
+ * Fold an issue list into a boolean. Used by every validator so `ok` is
438
+ * computed the same way everywhere.
439
+ */
440
+ declare function isOk(issues: ValidationIssue[]): boolean;
441
+ /**
442
+ * Compose a `ValidationResult` with the `ok` flag derived from issues.
443
+ */
444
+ declare function buildResult<T>(name: string, mode: ValidationResult["mode"], issues: ValidationIssue[], resource?: T): ValidationResult<T>;
445
+
446
+ /**
447
+ * Variant attributes used by the product validator to detect
448
+ * variant/price drift from the product they belong to.
449
+ */
450
+ interface VariantAttributes {
451
+ product_id: number;
452
+ name: string;
453
+ slug: string;
454
+ description?: string | null;
455
+ status: "pending" | "draft" | "published";
456
+ is_subscription?: boolean;
457
+ interval?: string | null;
458
+ interval_count?: number | null;
459
+ has_license_keys?: boolean;
460
+ created_at?: string;
461
+ updated_at?: string;
462
+ }
463
+ declare function listVariantsForProduct(http: HttpClient, productId: string | number): Promise<JsonApiResource<VariantAttributes>[]>;
464
+
465
+ /**
466
+ * Support manifest: the locally reviewed source of truth for what
467
+ * fresh-squeezy explicitly understands on the Lemon Squeezy platform.
468
+ *
469
+ * The plan deliberately favors a static, reviewed manifest over live changelog
470
+ * scraping (see plan.md §Non-goals). When the platform adds new resources,
471
+ * fields, or webhook events, bump the entries below and re-snapshot the
472
+ * changelog page with `npm run check:changelog -- --update`.
473
+ *
474
+ * Changelog source: https://docs.lemonsqueezy.com/api/getting-started/changelog
475
+ * Last reviewed: 2026-04-24
476
+ */
477
+ /**
478
+ * Resources fresh-squeezy wraps today. Anything outside this list is still
479
+ * reachable via the raw `request()` escape hatch but has no dedicated
480
+ * validator.
481
+ */
482
+ declare const SUPPORTED_RESOURCES: readonly ["users", "stores", "products", "variants", "webhooks"];
483
+ /**
484
+ * Webhook events fresh-squeezy expects a production integration to subscribe to
485
+ * at minimum. Consumers can still subscribe to more; the validator only flags
486
+ * missing ones from this list.
487
+ *
488
+ * Rationale:
489
+ * - `order_*` covers one-off purchases and refunds.
490
+ * - `subscription_*` covers the recurring-billing lifecycle.
491
+ * - `subscription_payment_*` covers dunning / retry loops.
492
+ *
493
+ * Confirmed present in the Lemon Squeezy webhook topic list as of 2026-04-24.
494
+ */
495
+ declare const RECOMMENDED_WEBHOOK_EVENTS: readonly ["order_created", "order_refunded", "subscription_created", "subscription_updated", "subscription_cancelled", "subscription_resumed", "subscription_expired", "subscription_payment_success", "subscription_payment_failed"];
496
+ /**
497
+ * Newer or integration-specific events surfaced as info-level suggestions
498
+ * rather than errors. Missing these is common and not necessarily a
499
+ * misconfiguration.
500
+ *
501
+ * Per-entry changelog provenance (source:
502
+ * https://docs.lemonsqueezy.com/api/getting-started/changelog):
503
+ *
504
+ * - `customer_updated` — added 2026-02-25. Fires when a customer record
505
+ * changes (e.g. email, marketing consent). Needed if the app mirrors
506
+ * customer data locally.
507
+ * - `affiliate_activated` — added 2025-01-21 alongside the affiliates
508
+ * endpoints. Only relevant if the store has an affiliate program.
509
+ * - `license_key_created` / `license_key_updated` — License API events.
510
+ * Only relevant when variants have `has_license_keys: true`.
511
+ */
512
+ declare const OPTIONAL_WEBHOOK_EVENTS: readonly ["customer_updated", "affiliate_activated", "license_key_created", "license_key_updated"];
513
+ /**
514
+ * Platform additions we have read and decided *not* to validate against yet,
515
+ * documented here so maintainers see the deliberate gap during review.
516
+ *
517
+ * Tracked so the drift workflow has an "expected state" to compare against:
518
+ * if the changelog page changes and none of these items explain it, the diff
519
+ * is probably something new that needs a manifest update.
520
+ */
521
+ declare const ACKNOWLEDGED_CHANGELOG_ENTRIES: readonly [{
522
+ readonly date: "2026-02-25";
523
+ readonly summary: "Added customer_updated webhook event.";
524
+ readonly handledBy: "OPTIONAL_WEBHOOK_EVENTS";
525
+ }, {
526
+ readonly date: "2025-06-11";
527
+ readonly summary: "Added payment_processor attribute to Subscription objects.";
528
+ readonly handledBy: "Not wrapped — reachable via client.request('/v1/subscriptions/:id'). Add a validator only if a real integration needs it.";
529
+ }, {
530
+ readonly date: "2025-01-21";
531
+ readonly summary: "Added Affiliates endpoints and affiliate_activated webhook.";
532
+ readonly handledBy: "OPTIONAL_WEBHOOK_EVENTS (event only; resource stays v2 scope)";
533
+ }, {
534
+ readonly date: "2024-01-05";
535
+ readonly summary: "Added test_mode flag to /v1/users/me meta.";
536
+ readonly handledBy: "Read in validateConnection to emit MODE_MISMATCH when the key's true mode differs from the caller's declared mode.";
537
+ }];
538
+ type RecommendedEvent = (typeof RECOMMENDED_WEBHOOK_EVENTS)[number];
539
+ type OptionalEvent = (typeof OPTIONAL_WEBHOOK_EVENTS)[number];
540
+
541
+ export { ACKNOWLEDGED_CHANGELOG_ENTRIES, type AuthenticatedUserDocument, type ConnectionSummary, type DoctorOptions, type DoctorReport, ENV_KEYS, type FreshSqueezyClient, type FreshSqueezyConfig, FreshSqueezyError, ISSUE_CODES, type JsonApiCollection, type JsonApiDocument, type JsonApiResource, type Mode, OPTIONAL_WEBHOOK_EVENTS, type OptionalEvent, type ProductAttributes, type ProductValidationOptions, RECOMMENDED_WEBHOOK_EVENTS, type RecommendedEvent, type ResolvedConfig, SUPPORTED_RESOURCES, type StoreAttributes, type UserAttributes, type UserMeta, type ValidationIssue, type ValidationResult, type ValidationSeverity, type VariantAttributes, type WebhookAttributes, type WebhookValidationOptions, buildResult, createFreshSqueezy, doctor, getAuthenticatedUser, getProduct, getStore, isOk, issue, listProducts, listStores, listVariantsForProduct, listWebhooksForStore, resolveConfig, userResource, validateConnection, validateProduct, validateWebhook };