@zap-studio/fetch 0.5.6 → 1.0.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.
package/dist/index.d.ts CHANGED
@@ -1,8 +1,127 @@
1
- import { $Fetch, ApiMethods, ExtendedRequestInit, FetchDefaults, FetchInput } from "./types.js";
2
- import { GLOBAL_DEFAULTS } from "./constants.js";
3
1
  import { FetchError } from "./errors.js";
4
- import { $fetch, api, createFetch } from "./fetch.js";
5
- import { mergeHeaders } from "./headers.js";
6
- import { NormalizedRequest, normalizeRequest } from "./request.js";
7
- import { resolveRequestUrl } from "./url.js";
8
- export { type $Fetch, $fetch, type ApiMethods, type ExtendedRequestInit, type FetchDefaults, FetchError, type FetchInput, GLOBAL_DEFAULTS, type NormalizedRequest, api, createFetch, mergeHeaders, normalizeRequest, resolveRequestUrl };
2
+ import { $Fetch, ApiMethods, ExtendedRequestInit, FetchDefaults, FetchInput, NormalizedRequest } from "./types.js";
3
+ import { StandardSchemaV1 } from "@zap-studio/validation";
4
+ //#region src/index.d.ts
5
+ /**
6
+ * Default options for the global $fetch
7
+ *
8
+ * These defaults are used by the top-level `$fetch` export.
9
+ * Use `createFetch(...)` when you need per-client defaults.
10
+ *
11
+ * @example
12
+ * import { GLOBAL_DEFAULTS } from "@zap-studio/fetch";
13
+ *
14
+ * console.log(GLOBAL_DEFAULTS.throwOnFetchError); // true
15
+ */
16
+ declare const GLOBAL_DEFAULTS: FetchDefaults;
17
+ /**
18
+ * Type-safe fetch wrapper with Standard Schema validation.
19
+ *
20
+ * - When `throwOnValidationError: true`: validated data of type `TSchema`
21
+ * - When `throwOnValidationError: false`: Standard Schema Result object `{ value?, issues? }`
22
+ * - When `throwOnFetchError: true`: throws `FetchError` on non-ok responses
23
+ *
24
+ * If no schema is provided, returns the raw `Response` object.
25
+ *
26
+ * @throws {FetchError} When `throwOnFetchError` is `true` and the response is not ok.
27
+ * @throws {ValidationError} When a schema is provided, validation returns issues, and
28
+ * `throwOnValidationError` is `true`.
29
+ * @throws {TypeError} When both `body` and `json` are provided, when JSON request
30
+ * serialization fails, when request construction fails, when headers/search params are
31
+ * invalid, when `response.json()` cannot read the body, or when the runtime `fetch`
32
+ * implementation rejects network-level failures as `TypeError`.
33
+ * @throws {DOMException} When the runtime rejects an aborted request or response body read
34
+ * as an `AbortError` DOMException.
35
+ * @throws {SyntaxError} When a schema is provided and `response.json()` cannot parse the
36
+ * response body.
37
+ * @throws {unknown} Any error thrown or rejected by the provided Standard Schema validator.
38
+ *
39
+ * @example
40
+ * import { z } from "zod";
41
+ * import { $fetch } from "@zap-studio/fetch";
42
+ *
43
+ * const UserSchema = z.object({ id: z.number(), name: z.string() });
44
+ *
45
+ * // Basic usage (schema validation)
46
+ * const user = await $fetch("/api/users/1", UserSchema, { headers: { "Authorization": "Bearer token" } });
47
+ * console.log("Validated user:", user);
48
+ *
49
+ * // Raw usage (no schema validation and typed Response object)
50
+ * const result = await $fetch("/api/data", { method: "POST", body: JSON.stringify({ key: "value" }) });
51
+ * const json = await result.json() as ResultType;
52
+ * console.log("Raw response data:", json);
53
+ *
54
+ * // Usage with validation errors returned instead of thrown
55
+ * const result = await $fetch("/api/users/1", UserSchema, { throwOnValidationError: false });
56
+ *
57
+ * if (result.issues) {
58
+ * console.error("Validation errors:", result.issues);
59
+ * } else {
60
+ * console.log("Validated user:", result.value);
61
+ * }
62
+ */
63
+ declare function $fetch<TSchema extends StandardSchemaV1>(input: FetchInput, schema: TSchema, options: ExtendedRequestInit & {
64
+ throwOnValidationError: false;
65
+ }): Promise<StandardSchemaV1.Result<StandardSchemaV1.InferOutput<TSchema>>>;
66
+ declare function $fetch<TSchema extends StandardSchemaV1>(input: FetchInput, schema: TSchema, options?: ExtendedRequestInit & {
67
+ throwOnValidationError?: true;
68
+ }): Promise<StandardSchemaV1.InferOutput<TSchema>>;
69
+ declare function $fetch(input: FetchInput, options?: ExtendedRequestInit): Promise<Response>;
70
+ /**
71
+ * Convenience methods for common HTTP verbs.
72
+ *
73
+ * These methods always require a schema for validation.
74
+ * For raw responses without validation, use `$fetch` directly.
75
+ *
76
+ * Each method has the same throw behavior as {@link $fetch}.
77
+ *
78
+ * @example
79
+ * import { z } from "zod";
80
+ * import { api } from "@zap-studio/fetch";
81
+ *
82
+ * const PostSchema = z.object({
83
+ * id: z.number(),
84
+ * title: z.string(),
85
+ * content: z.string(),
86
+ * });
87
+ *
88
+ * async function fetchPost(postId: number) {
89
+ * const post = await api.get(`https://api.example.com/posts/${postId}`, PostSchema);
90
+ * return post; // post is typed as { id: number; title: string; content: string; }
91
+ * }
92
+ */
93
+ declare const api: ApiMethods;
94
+ /**
95
+ * Creates a custom fetch instance with pre-configured defaults.
96
+ *
97
+ * Use this factory to create API clients with a base URL, default headers,
98
+ * and other shared configuration. Each instance is independent.
99
+ *
100
+ * The returned `$fetch` and `api` methods have the same throw behavior as the
101
+ * top-level {@link $fetch} export.
102
+ *
103
+ * @example
104
+ * import { z } from "zod";
105
+ * import { createFetch } from "@zap-studio/fetch";
106
+ *
107
+ * // Create a configured instance
108
+ * const { $fetch, api } = createFetch({
109
+ * baseURL: "https://api.example.com",
110
+ * headers: { "Authorization": "Bearer token" },
111
+ * });
112
+ *
113
+ * const UserSchema = z.object({ id: z.number(), name: z.string() });
114
+ *
115
+ * // Now use relative paths - baseURL is prepended automatically
116
+ * const user = await api.get("/users/1", UserSchema);
117
+ *
118
+ * // Or use $fetch directly
119
+ * const response = await $fetch("/users", UserSchema, { method: "POST", json: { name: "John" } });
120
+ */
121
+ declare const createFetch: (factoryOptions?: Partial<FetchDefaults>) => {
122
+ $fetch: $Fetch;
123
+ api: ApiMethods;
124
+ };
125
+ //#endregion
126
+ export { type $Fetch, $fetch, type ApiMethods, type ExtendedRequestInit, type FetchDefaults, FetchError, type FetchInput, GLOBAL_DEFAULTS, type NormalizedRequest, api, createFetch };
127
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"mappings":";;;;;;;;;;;;;;;cA8Ca,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAgYR,OAAO,gBAAgB,kBAC3C,OAAO,YACP,QAAQ,SACR,SAAS;EAAwB;IAChC,QAAQ,iBAAiB,OAAO,iBAAiB,YAAY;iBAE1C,OAAO,gBAAgB,kBAC3C,OAAO,YACP,QAAQ,SACR,UAAU;EAAwB;IACjC,QAAQ,iBAAiB,YAAY;iBAElB,OACpB,OAAO,YACP,UAAU,sBACT,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;cAqCE,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAmCL,cACX,iBAAgB,QAAQ;EAExB,QAAQ;EACR,KAAK"}
package/dist/index.js CHANGED
@@ -1,7 +1,316 @@
1
- import { GLOBAL_DEFAULTS } from "./constants.js";
2
1
  import { FetchError } from "./errors.js";
3
- import { mergeHeaders } from "./headers.js";
4
- import { normalizeRequest } from "./request.js";
5
- import { resolveRequestUrl } from "./url.js";
6
- import { n as api, r as createFetch, t as $fetch } from "./fetch-D0IXjsUD.js";
7
- export { $fetch, FetchError, GLOBAL_DEFAULTS, api, createFetch, mergeHeaders, normalizeRequest, resolveRequestUrl };
2
+ import { isStandardSchema, standardValidate } from "@zap-studio/validation";
3
+ //#region src/index.ts
4
+ /**
5
+ * Public entrypoint for the fetch package.
6
+ *
7
+ * Exports `$fetch`, `api`, `createFetch`, `FetchError`, `GLOBAL_DEFAULTS`,
8
+ * and the public type contracts. `FetchError` and the type contracts are
9
+ * also available from dedicated subpaths (`@zap-studio/fetch/errors`,
10
+ * `@zap-studio/fetch/types`) for consumers who prefer granular imports. All
11
+ * exports are side-effect free and tree-shakeable.
12
+ *
13
+ * @module @zap-studio/fetch
14
+ */
15
+ /**
16
+ * Default options for the global $fetch
17
+ *
18
+ * These defaults are used by the top-level `$fetch` export.
19
+ * Use `createFetch(...)` when you need per-client defaults.
20
+ *
21
+ * @example
22
+ * import { GLOBAL_DEFAULTS } from "@zap-studio/fetch";
23
+ *
24
+ * console.log(GLOBAL_DEFAULTS.throwOnFetchError); // true
25
+ */
26
+ const GLOBAL_DEFAULTS = {
27
+ baseURL: "",
28
+ throwOnFetchError: true,
29
+ throwOnValidationError: true
30
+ };
31
+ /**
32
+ * Merges two HeadersInit objects, with the second one taking precedence.
33
+ *
34
+ * @param base - Base/default headers.
35
+ * @param override - Request-level override headers.
36
+ * @returns A merged `Headers` object, or `undefined` when both inputs are empty.
37
+ * @throws {TypeError} When either header input contains invalid header names or values.
38
+ */
39
+ const mergeHeaders = (base, override) => {
40
+ if (base === void 0 && override === void 0) return;
41
+ const merged = new Headers(base);
42
+ for (const [key, value] of new Headers(override).entries()) merged.set(key, value);
43
+ return merged;
44
+ };
45
+ const EMPTY_OPTIONS = {};
46
+ /**
47
+ * Normalizes fetch `input` and request-level options into a consistent internal shape.
48
+ *
49
+ * @param input - Request URL/path or Request instance.
50
+ * @param options - Optional request options.
51
+ * @returns A normalized request structure for internal processing.
52
+ * @throws {TypeError} When cloning a `Request` fails or the merged headers are invalid.
53
+ */
54
+ const normalizeRequest = (input, options) => {
55
+ if (!(input instanceof Request)) {
56
+ const url = input instanceof URL ? input.href : input;
57
+ return {
58
+ options: options ?? EMPTY_OPTIONS,
59
+ url
60
+ };
61
+ }
62
+ const request = new Request(input);
63
+ const { headers, ...rest } = options ?? {};
64
+ const mergedHeaders = mergeHeaders(request.headers, headers);
65
+ const normalizedOptions = { ...rest };
66
+ if (mergedHeaders !== void 0) normalizedOptions.headers = mergedHeaders;
67
+ return {
68
+ options: normalizedOptions,
69
+ request,
70
+ url: request.url
71
+ };
72
+ };
73
+ /**
74
+ * Copies search params into target, overriding duplicate keys.
75
+ */
76
+ const mergeSearchParams = (target, source) => {
77
+ for (const [key, value] of new URLSearchParams(source)) target.set(key, value);
78
+ };
79
+ /**
80
+ * Ensures a URL has a trailing slash for relative URL resolution.
81
+ */
82
+ const ensureTrailingSlash = (url) => url.endsWith("/") ? url : `${url}/`;
83
+ /**
84
+ * Resolves search params by applying default params, URL params, then request params.
85
+ */
86
+ const resolveSearchParams = (url, defaultSearchParams, searchParams) => {
87
+ if (defaultSearchParams === void 0 && searchParams === void 0) return url;
88
+ const hashIndex = url.indexOf("#");
89
+ const hasFragment = hashIndex !== -1;
90
+ const urlWithoutHash = hasFragment ? url.slice(0, hashIndex) : url;
91
+ const hash = hasFragment ? url.slice(hashIndex + 1) : "";
92
+ const queryIndex = urlWithoutHash.indexOf("?");
93
+ const pathname = queryIndex === -1 ? urlWithoutHash : urlWithoutHash.slice(0, queryIndex);
94
+ const urlSearchParams = queryIndex === -1 ? void 0 : urlWithoutHash.slice(queryIndex + 1);
95
+ const resolvedSearchParams = new URLSearchParams();
96
+ mergeSearchParams(resolvedSearchParams, defaultSearchParams);
97
+ mergeSearchParams(resolvedSearchParams, urlSearchParams);
98
+ mergeSearchParams(resolvedSearchParams, searchParams);
99
+ const resolvedSearch = resolvedSearchParams.toString();
100
+ const fragmentSuffix = hasFragment ? `#${hash}` : "";
101
+ if (resolvedSearch.length === 0) return `${pathname}${fragmentSuffix}`;
102
+ return `${pathname}?${resolvedSearch}${fragmentSuffix}`;
103
+ };
104
+ /**
105
+ * Resolves final request URL by applying baseURL and layered search params.
106
+ *
107
+ * Search param precedence:
108
+ * 1. `defaults.searchParams`
109
+ * 2. search params already present in `resourceUrl`
110
+ * 3. per-request `searchParams`
111
+ *
112
+ * @throws {TypeError} When `baseURL` and `resourceUrl` cannot be resolved by
113
+ * `URL`, or when default/per-request search params cannot be converted by
114
+ * `URLSearchParams`.
115
+ */
116
+ const resolveRequestUrl = (resourceUrl, defaults, searchParams) => {
117
+ const url = defaults.baseURL ? new URL(resourceUrl, ensureTrailingSlash(defaults.baseURL)).toString() : resourceUrl;
118
+ return resolveSearchParams(url, defaults.searchParams, searchParams);
119
+ };
120
+ /**
121
+ * Normalizes request-level options into a final RequestInit payload and runtime flags.
122
+ *
123
+ * @param options - Request-level options.
124
+ * @param defaults - Client-level defaults.
125
+ * @returns Fully merged request init payload and effective runtime flags.
126
+ */
127
+ const prepareRequestInit = (options, defaults) => {
128
+ const { headers, json, searchParams, throwOnFetchError = defaults.throwOnFetchError, throwOnValidationError = defaults.throwOnValidationError, ...rest } = options;
129
+ const init = { ...rest };
130
+ const mergedHeaders = mergeHeaders(defaults.headers, headers);
131
+ if (mergedHeaders !== void 0) init.headers = mergedHeaders;
132
+ if (json !== void 0) {
133
+ if (init.body !== void 0 && init.body !== null) throw new TypeError("Cannot provide both `body` and `json`.");
134
+ init.body = JSON.stringify(json);
135
+ const requestHeaders = new Headers(init.headers);
136
+ if (!requestHeaders.has("Content-Type")) requestHeaders.set("Content-Type", "application/json");
137
+ init.headers = requestHeaders;
138
+ }
139
+ return {
140
+ init,
141
+ searchParams,
142
+ throwOnFetchError,
143
+ throwOnValidationError
144
+ };
145
+ };
146
+ /**
147
+ * Internal fetch implementation used by both $fetch and createFetch.
148
+ *
149
+ * This function normalizes request input, resolves final URL + query params,
150
+ * executes `fetch`, optionally throws `FetchError`, and optionally validates
151
+ * JSON response payloads using Standard Schema.
152
+ *
153
+ * @param input - Request URL, path, or Request object.
154
+ * @param schema - Optional Standard Schema for response validation.
155
+ * @param options - Optional request options and package-specific flags.
156
+ * @param defaults - Effective client defaults.
157
+ * @returns Raw `Response` when no schema is provided; otherwise validated output.
158
+ * @throws {FetchError} When `throwOnFetchError` is `true` and the response is not ok.
159
+ * @throws {ValidationError} When a schema is provided, validation returns issues, and
160
+ * `throwOnValidationError` is `true`.
161
+ * @throws {TypeError} When both `body` and `json` are provided, when JSON request
162
+ * serialization fails, when request construction fails, when headers/search params are
163
+ * invalid, when `response.json()` cannot read the body, or when the runtime `fetch`
164
+ * implementation rejects network-level failures as `TypeError`.
165
+ * @throws {DOMException} When the runtime rejects an aborted request or response body read
166
+ * as an `AbortError` DOMException.
167
+ * @throws {SyntaxError} When a schema is provided and `response.json()` cannot parse the
168
+ * response body.
169
+ * @throws {unknown} Any error thrown or rejected by the provided Standard Schema validator.
170
+ */
171
+ const fetchInternal = async (input, schema, options, defaults) => {
172
+ const request = normalizeRequest(input, options);
173
+ const { init, searchParams, throwOnFetchError, throwOnValidationError } = prepareRequestInit(request.options, defaults);
174
+ const url = resolveRequestUrl(request.url, defaults, searchParams);
175
+ const response = request.request ? await fetch(new Request(url, request.request), init) : await fetch(url, init);
176
+ if (throwOnFetchError && !response.ok) throw new FetchError(`HTTP ${response.status}: ${response.statusText}`, response);
177
+ if (schema === void 0) return response;
178
+ const raw = await response.json();
179
+ if (throwOnValidationError) return await standardValidate(raw, schema, { throwOnError: true });
180
+ return await standardValidate(raw, schema, { throwOnError: false });
181
+ };
182
+ /**
183
+ * Creates an HTTP method helper bound to a fetch function.
184
+ *
185
+ * The returned function mirrors `$Fetch` overloads but forces the provided
186
+ * HTTP method (`GET`, `POST`, etc.) into request options.
187
+ *
188
+ * @param fetchFn - Fetch function to wrap.
189
+ * @param method - HTTP method to enforce.
190
+ * @returns Method-bound fetch function.
191
+ * @throws {unknown} Any error thrown or rejected by `fetchFn` when the returned method-bound
192
+ * fetch function is called.
193
+ *
194
+ * @example
195
+ * const get = createMethod($fetch, "GET");
196
+ * const user = await get("/users/1", UserSchema);
197
+ */
198
+ const createMethod = (fetchFn, method) => {
199
+ /**
200
+ * Method-bound `$Fetch` implementation.
201
+ *
202
+ * Resolves schema/option overloads and injects the configured HTTP method.
203
+ */
204
+ async function methodFetch(input, schemaOrOptions, optionsOrUndefined) {
205
+ if (isStandardSchema(schemaOrOptions)) {
206
+ if (optionsOrUndefined?.throwOnValidationError === false) return await fetchFn(input, schemaOrOptions, {
207
+ ...optionsOrUndefined,
208
+ method,
209
+ throwOnValidationError: false
210
+ });
211
+ const { throwOnValidationError, ...restOptions } = optionsOrUndefined ?? {};
212
+ if (throwOnValidationError === true) return await fetchFn(input, schemaOrOptions, {
213
+ ...restOptions,
214
+ method,
215
+ throwOnValidationError: true
216
+ });
217
+ return await fetchFn(input, schemaOrOptions, {
218
+ ...restOptions,
219
+ method
220
+ });
221
+ }
222
+ return await fetchFn(input, {
223
+ ...schemaOrOptions,
224
+ method
225
+ });
226
+ }
227
+ return methodFetch;
228
+ };
229
+ async function $fetch(input, schemaOrOptions, optionsOrUndefined) {
230
+ const [schema, options] = isStandardSchema(schemaOrOptions) ? [schemaOrOptions, optionsOrUndefined] : [void 0, schemaOrOptions];
231
+ return await fetchInternal(input, schema, options, GLOBAL_DEFAULTS);
232
+ }
233
+ /**
234
+ * Convenience methods for common HTTP verbs.
235
+ *
236
+ * These methods always require a schema for validation.
237
+ * For raw responses without validation, use `$fetch` directly.
238
+ *
239
+ * Each method has the same throw behavior as {@link $fetch}.
240
+ *
241
+ * @example
242
+ * import { z } from "zod";
243
+ * import { api } from "@zap-studio/fetch";
244
+ *
245
+ * const PostSchema = z.object({
246
+ * id: z.number(),
247
+ * title: z.string(),
248
+ * content: z.string(),
249
+ * });
250
+ *
251
+ * async function fetchPost(postId: number) {
252
+ * const post = await api.get(`https://api.example.com/posts/${postId}`, PostSchema);
253
+ * return post; // post is typed as { id: number; title: string; content: string; }
254
+ * }
255
+ */
256
+ const api = {
257
+ delete: createMethod($fetch, "DELETE"),
258
+ get: createMethod($fetch, "GET"),
259
+ patch: createMethod($fetch, "PATCH"),
260
+ post: createMethod($fetch, "POST"),
261
+ put: createMethod($fetch, "PUT")
262
+ };
263
+ /**
264
+ * Creates a custom fetch instance with pre-configured defaults.
265
+ *
266
+ * Use this factory to create API clients with a base URL, default headers,
267
+ * and other shared configuration. Each instance is independent.
268
+ *
269
+ * The returned `$fetch` and `api` methods have the same throw behavior as the
270
+ * top-level {@link $fetch} export.
271
+ *
272
+ * @example
273
+ * import { z } from "zod";
274
+ * import { createFetch } from "@zap-studio/fetch";
275
+ *
276
+ * // Create a configured instance
277
+ * const { $fetch, api } = createFetch({
278
+ * baseURL: "https://api.example.com",
279
+ * headers: { "Authorization": "Bearer token" },
280
+ * });
281
+ *
282
+ * const UserSchema = z.object({ id: z.number(), name: z.string() });
283
+ *
284
+ * // Now use relative paths - baseURL is prepended automatically
285
+ * const user = await api.get("/users/1", UserSchema);
286
+ *
287
+ * // Or use $fetch directly
288
+ * const response = await $fetch("/users", UserSchema, { method: "POST", json: { name: "John" } });
289
+ */
290
+ const createFetch = (factoryOptions = {}) => {
291
+ const defaults = {
292
+ ...GLOBAL_DEFAULTS,
293
+ ...factoryOptions,
294
+ baseURL: factoryOptions.baseURL ?? GLOBAL_DEFAULTS.baseURL,
295
+ throwOnFetchError: factoryOptions.throwOnFetchError ?? GLOBAL_DEFAULTS.throwOnFetchError,
296
+ throwOnValidationError: factoryOptions.throwOnValidationError ?? GLOBAL_DEFAULTS.throwOnValidationError
297
+ };
298
+ async function customFetch(input, schemaOrOptions, optionsOrUndefined) {
299
+ const [schema, options] = isStandardSchema(schemaOrOptions) ? [schemaOrOptions, optionsOrUndefined] : [void 0, schemaOrOptions];
300
+ return await fetchInternal(input, schema, options, defaults);
301
+ }
302
+ return {
303
+ $fetch: customFetch,
304
+ api: {
305
+ delete: createMethod(customFetch, "DELETE"),
306
+ get: createMethod(customFetch, "GET"),
307
+ patch: createMethod(customFetch, "PATCH"),
308
+ post: createMethod(customFetch, "POST"),
309
+ put: createMethod(customFetch, "PUT")
310
+ }
311
+ };
312
+ };
313
+ //#endregion
314
+ export { $fetch, FetchError, GLOBAL_DEFAULTS, api, createFetch };
315
+
316
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","names":[],"sources":["../src/index.ts"],"sourcesContent":["/**\n * Public entrypoint for the fetch package.\n *\n * Exports `$fetch`, `api`, `createFetch`, `FetchError`, `GLOBAL_DEFAULTS`,\n * and the public type contracts. `FetchError` and the type contracts are\n * also available from dedicated subpaths (`@zap-studio/fetch/errors`,\n * `@zap-studio/fetch/types`) for consumers who prefer granular imports. All\n * exports are side-effect free and tree-shakeable.\n *\n * @module @zap-studio/fetch\n */\n\nimport { isStandardSchema, standardValidate } from \"@zap-studio/validation\";\nimport type { StandardSchemaV1 } from \"@zap-studio/validation\";\n\nimport { FetchError } from \"./errors.js\";\nimport type {\n $Fetch,\n ApiMethods,\n ExtendedRequestInit,\n FetchDefaults,\n FetchInput,\n NormalizedRequest,\n} from \"./types.js\";\n\nexport { FetchError } from \"./errors.js\";\nexport type {\n $Fetch,\n ApiMethods,\n ExtendedRequestInit,\n FetchDefaults,\n FetchInput,\n NormalizedRequest,\n} from \"./types.js\";\n\n/**\n * Default options for the global $fetch\n *\n * These defaults are used by the top-level `$fetch` export.\n * Use `createFetch(...)` when you need per-client defaults.\n *\n * @example\n * import { GLOBAL_DEFAULTS } from \"@zap-studio/fetch\";\n *\n * console.log(GLOBAL_DEFAULTS.throwOnFetchError); // true\n */\nexport const GLOBAL_DEFAULTS: FetchDefaults = {\n baseURL: \"\",\n throwOnFetchError: true,\n throwOnValidationError: true,\n};\n\n/**\n * Merges two HeadersInit objects, with the second one taking precedence.\n *\n * @param base - Base/default headers.\n * @param override - Request-level override headers.\n * @returns A merged `Headers` object, or `undefined` when both inputs are empty.\n * @throws {TypeError} When either header input contains invalid header names or values.\n */\nconst mergeHeaders = (\n base?: HeadersInit,\n override?: HeadersInit\n): Headers | undefined => {\n if (base === undefined && override === undefined) {\n return undefined;\n }\n\n const merged = new Headers(base);\n for (const [key, value] of new Headers(override).entries()) {\n merged.set(key, value);\n }\n return merged;\n};\n\nconst EMPTY_OPTIONS = {} as ExtendedRequestInit;\n\n/**\n * Normalizes fetch `input` and request-level options into a consistent internal shape.\n *\n * @param input - Request URL/path or Request instance.\n * @param options - Optional request options.\n * @returns A normalized request structure for internal processing.\n * @throws {TypeError} When cloning a `Request` fails or the merged headers are invalid.\n */\nconst normalizeRequest = (\n input: FetchInput,\n options?: ExtendedRequestInit\n): NormalizedRequest => {\n if (!(input instanceof Request)) {\n const url = input instanceof URL ? input.href : input;\n return {\n options: options ?? EMPTY_OPTIONS,\n url,\n };\n }\n\n const request = new Request(input);\n const { headers, ...rest } = options ?? {};\n const mergedHeaders = mergeHeaders(request.headers, headers);\n const normalizedOptions = { ...rest } as ExtendedRequestInit;\n\n if (mergedHeaders !== undefined) {\n normalizedOptions.headers = mergedHeaders;\n }\n\n return {\n options: normalizedOptions,\n request,\n url: request.url,\n };\n};\n\n/**\n * Copies search params into target, overriding duplicate keys.\n */\nconst mergeSearchParams = (\n target: URLSearchParams,\n source: ExtendedRequestInit[\"searchParams\"] | undefined\n): void => {\n for (const [key, value] of new URLSearchParams(source)) {\n target.set(key, value);\n }\n};\n\n/**\n * Ensures a URL has a trailing slash for relative URL resolution.\n */\nconst ensureTrailingSlash = (url: string): string =>\n url.endsWith(\"/\") ? url : `${url}/`;\n\n/**\n * Resolves search params by applying default params, URL params, then request params.\n */\nconst resolveSearchParams = (\n url: string,\n defaultSearchParams: FetchDefaults[\"searchParams\"] | undefined,\n searchParams: ExtendedRequestInit[\"searchParams\"] | undefined\n): string => {\n if (defaultSearchParams === undefined && searchParams === undefined) {\n return url;\n }\n\n const hashIndex = url.indexOf(\"#\");\n const hasFragment = hashIndex !== -1;\n const urlWithoutHash = hasFragment ? url.slice(0, hashIndex) : url;\n const hash = hasFragment ? url.slice(hashIndex + 1) : \"\";\n const queryIndex = urlWithoutHash.indexOf(\"?\");\n const pathname =\n queryIndex === -1 ? urlWithoutHash : urlWithoutHash.slice(0, queryIndex);\n const urlSearchParams =\n queryIndex === -1 ? undefined : urlWithoutHash.slice(queryIndex + 1);\n const resolvedSearchParams = new URLSearchParams();\n\n mergeSearchParams(resolvedSearchParams, defaultSearchParams);\n mergeSearchParams(resolvedSearchParams, urlSearchParams);\n mergeSearchParams(resolvedSearchParams, searchParams);\n\n const resolvedSearch = resolvedSearchParams.toString();\n const fragmentSuffix = hasFragment ? `#${hash}` : \"\";\n\n if (resolvedSearch.length === 0) {\n return `${pathname}${fragmentSuffix}`;\n }\n\n return `${pathname}?${resolvedSearch}${fragmentSuffix}`;\n};\n\n/**\n * Resolves final request URL by applying baseURL and layered search params.\n *\n * Search param precedence:\n * 1. `defaults.searchParams`\n * 2. search params already present in `resourceUrl`\n * 3. per-request `searchParams`\n *\n * @throws {TypeError} When `baseURL` and `resourceUrl` cannot be resolved by\n * `URL`, or when default/per-request search params cannot be converted by\n * `URLSearchParams`.\n */\nconst resolveRequestUrl = (\n resourceUrl: string,\n defaults: FetchDefaults,\n searchParams?: ExtendedRequestInit[\"searchParams\"]\n): string => {\n const url = defaults.baseURL\n ? new URL(resourceUrl, ensureTrailingSlash(defaults.baseURL)).toString()\n : resourceUrl;\n\n return resolveSearchParams(url, defaults.searchParams, searchParams);\n};\n\n/**\n * Normalizes request-level options into a final RequestInit payload and runtime flags.\n *\n * @param options - Request-level options.\n * @param defaults - Client-level defaults.\n * @returns Fully merged request init payload and effective runtime flags.\n */\nconst prepareRequestInit = (\n options: ExtendedRequestInit,\n defaults: FetchDefaults\n): {\n init: RequestInit;\n searchParams: ExtendedRequestInit[\"searchParams\"] | undefined;\n throwOnFetchError: boolean;\n throwOnValidationError: boolean;\n} => {\n const {\n headers,\n json,\n searchParams,\n throwOnFetchError = defaults.throwOnFetchError,\n throwOnValidationError = defaults.throwOnValidationError,\n ...rest\n } = options;\n\n const init: RequestInit = { ...rest };\n const mergedHeaders = mergeHeaders(defaults.headers, headers);\n if (mergedHeaders !== undefined) {\n init.headers = mergedHeaders;\n }\n\n if (json !== undefined) {\n if (init.body !== undefined && init.body !== null) {\n throw new TypeError(\"Cannot provide both `body` and `json`.\");\n }\n\n init.body = JSON.stringify(json);\n const requestHeaders = new Headers(init.headers);\n if (!requestHeaders.has(\"Content-Type\")) {\n requestHeaders.set(\"Content-Type\", \"application/json\");\n }\n init.headers = requestHeaders;\n }\n\n return {\n init,\n searchParams,\n throwOnFetchError,\n throwOnValidationError,\n };\n};\n\n/**\n * Internal fetch implementation used by both $fetch and createFetch.\n *\n * This function normalizes request input, resolves final URL + query params,\n * executes `fetch`, optionally throws `FetchError`, and optionally validates\n * JSON response payloads using Standard Schema.\n *\n * @param input - Request URL, path, or Request object.\n * @param schema - Optional Standard Schema for response validation.\n * @param options - Optional request options and package-specific flags.\n * @param defaults - Effective client defaults.\n * @returns Raw `Response` when no schema is provided; otherwise validated output.\n * @throws {FetchError} When `throwOnFetchError` is `true` and the response is not ok.\n * @throws {ValidationError} When a schema is provided, validation returns issues, and\n * `throwOnValidationError` is `true`.\n * @throws {TypeError} When both `body` and `json` are provided, when JSON request\n * serialization fails, when request construction fails, when headers/search params are\n * invalid, when `response.json()` cannot read the body, or when the runtime `fetch`\n * implementation rejects network-level failures as `TypeError`.\n * @throws {DOMException} When the runtime rejects an aborted request or response body read\n * as an `AbortError` DOMException.\n * @throws {SyntaxError} When a schema is provided and `response.json()` cannot parse the\n * response body.\n * @throws {unknown} Any error thrown or rejected by the provided Standard Schema validator.\n */\nconst fetchInternal = async (\n input: FetchInput,\n schema: StandardSchemaV1 | undefined,\n options: ExtendedRequestInit | undefined,\n defaults: FetchDefaults\n): Promise<unknown> => {\n const request = normalizeRequest(input, options);\n const { init, searchParams, throwOnFetchError, throwOnValidationError } =\n prepareRequestInit(request.options, defaults);\n const url = resolveRequestUrl(request.url, defaults, searchParams);\n const response = request.request\n ? await fetch(new Request(url, request.request), init)\n : await fetch(url, init);\n\n if (throwOnFetchError && !response.ok) {\n throw new FetchError(\n `HTTP ${response.status}: ${response.statusText}`,\n response\n );\n }\n\n if (schema === undefined) {\n return response;\n }\n\n const raw: unknown = await response.json();\n if (throwOnValidationError) {\n return await standardValidate(raw, schema, { throwOnError: true });\n }\n return await standardValidate(raw, schema, { throwOnError: false });\n};\n\n/**\n * Creates an HTTP method helper bound to a fetch function.\n *\n * The returned function mirrors `$Fetch` overloads but forces the provided\n * HTTP method (`GET`, `POST`, etc.) into request options.\n *\n * @param fetchFn - Fetch function to wrap.\n * @param method - HTTP method to enforce.\n * @returns Method-bound fetch function.\n * @throws {unknown} Any error thrown or rejected by `fetchFn` when the returned method-bound\n * fetch function is called.\n *\n * @example\n * const get = createMethod($fetch, \"GET\");\n * const user = await get(\"/users/1\", UserSchema);\n */\nconst createMethod = (fetchFn: $Fetch, method: string): $Fetch => {\n function methodFetch<TSchema extends StandardSchemaV1>(\n input: FetchInput,\n schema: TSchema,\n options: ExtendedRequestInit & {\n throwOnValidationError: false;\n }\n ): Promise<StandardSchemaV1.Result<StandardSchemaV1.InferOutput<TSchema>>>;\n\n function methodFetch<TSchema extends StandardSchemaV1>(\n input: FetchInput,\n schema: TSchema,\n options?: ExtendedRequestInit & {\n throwOnValidationError?: true;\n }\n ): Promise<StandardSchemaV1.InferOutput<TSchema>>;\n\n function methodFetch(\n input: FetchInput,\n options?: ExtendedRequestInit\n ): Promise<Response>;\n\n /**\n * Method-bound `$Fetch` implementation.\n *\n * Resolves schema/option overloads and injects the configured HTTP method.\n */\n async function methodFetch(\n input: FetchInput,\n schemaOrOptions?: StandardSchemaV1 | ExtendedRequestInit,\n optionsOrUndefined?: ExtendedRequestInit\n ): Promise<unknown> {\n if (isStandardSchema(schemaOrOptions)) {\n if (optionsOrUndefined?.throwOnValidationError === false) {\n return await fetchFn(input, schemaOrOptions, {\n ...optionsOrUndefined,\n method,\n throwOnValidationError: false,\n });\n }\n\n const { throwOnValidationError, ...restOptions } =\n optionsOrUndefined ?? {};\n\n if (throwOnValidationError === true) {\n return await fetchFn(input, schemaOrOptions, {\n ...restOptions,\n method,\n throwOnValidationError: true,\n });\n }\n\n return await fetchFn(input, schemaOrOptions, {\n ...restOptions,\n method,\n });\n }\n\n return await fetchFn(input, {\n ...schemaOrOptions,\n method,\n });\n }\n\n return methodFetch;\n};\n\n/**\n * Type-safe fetch wrapper with Standard Schema validation.\n *\n * - When `throwOnValidationError: true`: validated data of type `TSchema`\n * - When `throwOnValidationError: false`: Standard Schema Result object `{ value?, issues? }`\n * - When `throwOnFetchError: true`: throws `FetchError` on non-ok responses\n *\n * If no schema is provided, returns the raw `Response` object.\n *\n * @throws {FetchError} When `throwOnFetchError` is `true` and the response is not ok.\n * @throws {ValidationError} When a schema is provided, validation returns issues, and\n * `throwOnValidationError` is `true`.\n * @throws {TypeError} When both `body` and `json` are provided, when JSON request\n * serialization fails, when request construction fails, when headers/search params are\n * invalid, when `response.json()` cannot read the body, or when the runtime `fetch`\n * implementation rejects network-level failures as `TypeError`.\n * @throws {DOMException} When the runtime rejects an aborted request or response body read\n * as an `AbortError` DOMException.\n * @throws {SyntaxError} When a schema is provided and `response.json()` cannot parse the\n * response body.\n * @throws {unknown} Any error thrown or rejected by the provided Standard Schema validator.\n *\n * @example\n * import { z } from \"zod\";\n * import { $fetch } from \"@zap-studio/fetch\";\n *\n * const UserSchema = z.object({ id: z.number(), name: z.string() });\n *\n * // Basic usage (schema validation)\n * const user = await $fetch(\"/api/users/1\", UserSchema, { headers: { \"Authorization\": \"Bearer token\" } });\n * console.log(\"Validated user:\", user);\n *\n * // Raw usage (no schema validation and typed Response object)\n * const result = await $fetch(\"/api/data\", { method: \"POST\", body: JSON.stringify({ key: \"value\" }) });\n * const json = await result.json() as ResultType;\n * console.log(\"Raw response data:\", json);\n *\n * // Usage with validation errors returned instead of thrown\n * const result = await $fetch(\"/api/users/1\", UserSchema, { throwOnValidationError: false });\n *\n * if (result.issues) {\n * console.error(\"Validation errors:\", result.issues);\n * } else {\n * console.log(\"Validated user:\", result.value);\n * }\n */\nexport async function $fetch<TSchema extends StandardSchemaV1>(\n input: FetchInput,\n schema: TSchema,\n options: ExtendedRequestInit & { throwOnValidationError: false }\n): Promise<StandardSchemaV1.Result<StandardSchemaV1.InferOutput<TSchema>>>;\n\nexport async function $fetch<TSchema extends StandardSchemaV1>(\n input: FetchInput,\n schema: TSchema,\n options?: ExtendedRequestInit & { throwOnValidationError?: true }\n): Promise<StandardSchemaV1.InferOutput<TSchema>>;\n\nexport async function $fetch(\n input: FetchInput,\n options?: ExtendedRequestInit\n): Promise<Response>;\n\nexport async function $fetch(\n input: FetchInput,\n schemaOrOptions?: StandardSchemaV1 | ExtendedRequestInit,\n optionsOrUndefined?: ExtendedRequestInit\n): Promise<unknown> {\n const [schema, options] = isStandardSchema(schemaOrOptions)\n ? [schemaOrOptions, optionsOrUndefined]\n : [undefined, schemaOrOptions];\n\n return await fetchInternal(input, schema, options, GLOBAL_DEFAULTS);\n}\n\n/**\n * Convenience methods for common HTTP verbs.\n *\n * These methods always require a schema for validation.\n * For raw responses without validation, use `$fetch` directly.\n *\n * Each method has the same throw behavior as {@link $fetch}.\n *\n * @example\n * import { z } from \"zod\";\n * import { api } from \"@zap-studio/fetch\";\n *\n * const PostSchema = z.object({\n * id: z.number(),\n * title: z.string(),\n * content: z.string(),\n * });\n *\n * async function fetchPost(postId: number) {\n * const post = await api.get(`https://api.example.com/posts/${postId}`, PostSchema);\n * return post; // post is typed as { id: number; title: string; content: string; }\n * }\n */\nexport const api: ApiMethods = {\n delete: createMethod($fetch, \"DELETE\"),\n get: createMethod($fetch, \"GET\"),\n patch: createMethod($fetch, \"PATCH\"),\n post: createMethod($fetch, \"POST\"),\n put: createMethod($fetch, \"PUT\"),\n};\n\n/**\n * Creates a custom fetch instance with pre-configured defaults.\n *\n * Use this factory to create API clients with a base URL, default headers,\n * and other shared configuration. Each instance is independent.\n *\n * The returned `$fetch` and `api` methods have the same throw behavior as the\n * top-level {@link $fetch} export.\n *\n * @example\n * import { z } from \"zod\";\n * import { createFetch } from \"@zap-studio/fetch\";\n *\n * // Create a configured instance\n * const { $fetch, api } = createFetch({\n * baseURL: \"https://api.example.com\",\n * headers: { \"Authorization\": \"Bearer token\" },\n * });\n *\n * const UserSchema = z.object({ id: z.number(), name: z.string() });\n *\n * // Now use relative paths - baseURL is prepended automatically\n * const user = await api.get(\"/users/1\", UserSchema);\n *\n * // Or use $fetch directly\n * const response = await $fetch(\"/users\", UserSchema, { method: \"POST\", json: { name: \"John\" } });\n */\nexport const createFetch = (\n factoryOptions: Partial<FetchDefaults> = {}\n): {\n $fetch: $Fetch;\n api: ApiMethods;\n} => {\n const defaults: FetchDefaults = {\n ...GLOBAL_DEFAULTS,\n ...factoryOptions,\n baseURL: factoryOptions.baseURL ?? GLOBAL_DEFAULTS.baseURL,\n throwOnFetchError:\n factoryOptions.throwOnFetchError ?? GLOBAL_DEFAULTS.throwOnFetchError,\n throwOnValidationError:\n factoryOptions.throwOnValidationError ??\n GLOBAL_DEFAULTS.throwOnValidationError,\n };\n\n async function customFetch<TSchema extends StandardSchemaV1>(\n input: FetchInput,\n schema: TSchema,\n options: ExtendedRequestInit & { throwOnValidationError: false }\n ): Promise<StandardSchemaV1.Result<StandardSchemaV1.InferOutput<TSchema>>>;\n\n async function customFetch<TSchema extends StandardSchemaV1>(\n input: FetchInput,\n schema: TSchema,\n options?: ExtendedRequestInit & {\n throwOnValidationError?: true;\n }\n ): Promise<StandardSchemaV1.InferOutput<TSchema>>;\n\n async function customFetch(\n input: FetchInput,\n options?: ExtendedRequestInit\n ): Promise<Response>;\n\n async function customFetch(\n input: FetchInput,\n schemaOrOptions?: StandardSchemaV1 | ExtendedRequestInit,\n optionsOrUndefined?: ExtendedRequestInit\n ): Promise<unknown> {\n const [schema, options] = isStandardSchema(schemaOrOptions)\n ? [schemaOrOptions, optionsOrUndefined]\n : [undefined, schemaOrOptions];\n\n return await fetchInternal(input, schema, options, defaults);\n }\n\n const customApi = {\n delete: createMethod(customFetch, \"DELETE\"),\n get: createMethod(customFetch, \"GET\"),\n patch: createMethod(customFetch, \"PATCH\"),\n post: createMethod(customFetch, \"POST\"),\n put: createMethod(customFetch, \"PUT\"),\n };\n\n return {\n $fetch: customFetch,\n api: customApi,\n };\n};\n"],"mappings":"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"}
package/dist/types.d.ts CHANGED
@@ -2,6 +2,10 @@ import { StandardSchemaV1 } from "@zap-studio/validation";
2
2
  //#region src/types.d.ts
3
3
  /**
4
4
  * Accepted `fetch` input type (`string`, `URL`, or `Request`).
5
+ *
6
+ * @example
7
+ * const input: FetchInput = "/users/1";
8
+ * const withUrl: FetchInput = new URL("https://api.example.com/users/1");
5
9
  */
6
10
  type FetchInput = Parameters<typeof fetch>[0];
7
11
  type URLSearchParamsInput = ConstructorParameters<typeof URLSearchParams>[0];
@@ -83,6 +87,13 @@ interface FetchDefaults {
83
87
  }
84
88
  /**
85
89
  * Type-safe fetch function with Standard Schema validation support
90
+ *
91
+ * @example
92
+ * import { z } from "zod";
93
+ *
94
+ * const UserSchema = z.object({ id: z.number(), name: z.string() });
95
+ * const fetchUser: $Fetch = $fetch;
96
+ * const user = await fetchUser("/users/1", UserSchema);
86
97
  */
87
98
  interface $Fetch {
88
99
  /**
@@ -135,6 +146,23 @@ interface $Fetch {
135
146
  */
136
147
  (input: FetchInput, options?: ExtendedRequestInit): Promise<Response>;
137
148
  }
149
+ /**
150
+ * Normalized representation used by internal request execution.
151
+ *
152
+ * @example
153
+ * const normalized: NormalizedRequest = {
154
+ * url: "https://api.example.com/users",
155
+ * options: {},
156
+ * };
157
+ */
158
+ interface NormalizedRequest {
159
+ /** Resolved string URL from the input (string or `URL`; `Request` uses `request.url`). */
160
+ url: string;
161
+ /** Original `Request` clone, present when the input was a `Request`. */
162
+ request?: Request;
163
+ /** Normalized request options merged with `Request` headers. */
164
+ options: ExtendedRequestInit;
165
+ }
138
166
  /**
139
167
  * API HTTP method-specific fetch functions
140
168
  *
@@ -164,5 +192,5 @@ interface ApiMethods {
164
192
  put: $Fetch;
165
193
  }
166
194
  //#endregion
167
- export { $Fetch, ApiMethods, ExtendedRequestInit, FetchDefaults, FetchInput };
195
+ export { $Fetch, ApiMethods, ExtendedRequestInit, FetchDefaults, FetchInput, NormalizedRequest };
168
196
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","names":[],"sources":["../src/types.ts"],"mappings":";;;;;KAWY,aAAa,kBAAkB;KAEtC,uBAAuB,6BAA6B;KAEpD,kBAAkB;EACrB;;KAGG,eAAe,KAAK;;;;;EAKvB;EACA;;UAGQ;;;;;EAKR,eAAe;;;;;EAKf;;;;;EAKA;;;;;;;;;;;;KAaU,uBAAuB,kBAAkB,gBACnD;;;;;;;;;;;UAYe;;;;;EAKf;;;;;EAKA,UAAU;;;;;EAKV,eAAe;;;;;EAKf;;;;;EAKA;;;;;UAMe;;;;;;;;;;;;;;;;GAgBd,gBAAgB,kBACf,OAAO,YACP,QAAQ,SACR,SAAS;IAAwB;MAChC,QAAQ,iBAAiB,OAAO,iBAAiB,YAAY;;;;;;;;;;;;;;;;;GAkB/D,gBAAgB,kBACf,OAAO,YACP,QAAQ,SACR,UAAU;IACR;MAED,QAAQ,iBAAiB,YAAY;;;;;;;;;;;;GAavC,OAAO,YAAY,UAAU,sBAAsB,QAAQ;;;;;;;;UAS7C;;;;EAIf,QAAQ;;;;EAIR,KAAK;;;;EAIL,OAAO;;;;EAIP,MAAM;;;;EAIN,KAAK"}
1
+ {"version":3,"file":"types.d.ts","names":[],"sources":["../src/types.ts"],"mappings":";;;;;;;;;KAeY,aAAa,kBAAkB;KAEtC,uBAAuB,6BAA6B;KAEpD,kBAAkB;EACrB;;KAGG,eAAe,KAAK;;;;;EAKvB;EACA;;UAGQ;;;;;EAKR,eAAe;;;;;EAKf;;;;;EAKA;;;;;;;;;;;;KAaU,uBAAuB,kBAAkB,gBACnD;;;;;;;;;;;UAYe;;;;;EAKf;;;;;EAKA,UAAU;;;;;EAKV,eAAe;;;;;EAKf;;;;;EAKA;;;;;;;;;;;;UAae;;;;;;;;;;;;;;;;GAgBd,gBAAgB,kBACf,OAAO,YACP,QAAQ,SACR,SAAS;IAAwB;MAChC,QAAQ,iBAAiB,OAAO,iBAAiB,YAAY;;;;;;;;;;;;;;;;;GAkB/D,gBAAgB,kBACf,OAAO,YACP,QAAQ,SACR,UAAU;IACR;MAED,QAAQ,iBAAiB,YAAY;;;;;;;;;;;;GAavC,OAAO,YAAY,UAAU,sBAAsB,QAAQ;;;;;;;;;;;UAY7C;;EAEf;;EAEA,UAAU;;EAEV,SAAS;;;;;;;;UASM;;;;EAIf,QAAQ;;;;EAIR,KAAK;;;;EAIL,OAAO;;;;EAIP,MAAM;;;;EAIN,KAAK"}
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@zap-studio/fetch",
3
- "version": "0.5.6",
3
+ "version": "1.0.0",
4
4
  "private": false,
5
- "description": "A type-safe fetch wrapper for HTTP requests with runtime schema validation.",
5
+ "description": "A type-safe, tree-shakeable fetch wrapper for HTTP requests with runtime schema validation.",
6
6
  "keywords": [
7
7
  "api",
8
8
  "arktype",
@@ -38,31 +38,26 @@
38
38
  "types": "./dist/index.d.ts",
39
39
  "exports": {
40
40
  ".": "./dist/index.js",
41
- "./constants": "./dist/constants.js",
42
41
  "./errors": "./dist/errors.js",
43
- "./fetch": "./dist/fetch.js",
44
- "./headers": "./dist/headers.js",
45
- "./request": "./dist/request.js",
46
42
  "./types": "./dist/types.js",
47
- "./url": "./dist/url.js",
48
43
  "./package.json": "./package.json"
49
44
  },
50
45
  "publishConfig": {
51
46
  "access": "public"
52
47
  },
53
48
  "dependencies": {
54
- "@zap-studio/validation": "workspace:*"
49
+ "@zap-studio/validation": "1.0.0"
55
50
  },
56
51
  "devDependencies": {
57
- "@zap-studio/typescript": "workspace:*",
58
- "arktype": "catalog:",
59
- "tsdown": "catalog:",
60
- "typescript": "catalog:",
61
- "valibot": "catalog:",
62
- "vitest": "catalog:",
63
- "zod": "catalog:"
52
+ "arktype": "^2.2.3",
53
+ "tsdown": "^0.22.14",
54
+ "typescript": "^7.0.2",
55
+ "valibot": "^1.4.2",
56
+ "vitest": "^4.1.10",
57
+ "zod": "^4.4.3",
58
+ "@zap-studio/typescript": "0.0.0"
64
59
  },
65
60
  "engines": {
66
61
  "node": ">=18.0.0"
67
62
  }
68
- }
63
+ }
@@ -1,17 +0,0 @@
1
- import { FetchDefaults } from "./types.js";
2
- //#region src/constants.d.ts
3
- /**
4
- * Default options for the global $fetch
5
- *
6
- * These defaults are used by the top-level `$fetch` export.
7
- * Use `createFetch(...)` when you need per-client defaults.
8
- *
9
- * @example
10
- * import { GLOBAL_DEFAULTS } from "@zap-studio/fetch/constants";
11
- *
12
- * console.log(GLOBAL_DEFAULTS.throwOnFetchError); // true
13
- */
14
- declare const GLOBAL_DEFAULTS: FetchDefaults;
15
- //#endregion
16
- export { GLOBAL_DEFAULTS };
17
- //# sourceMappingURL=constants.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"constants.d.ts","names":[],"sources":["../src/constants.ts"],"mappings":";;;;;;;;;;;;;cAmBa,iBAAiB"}