@faasjs/react 8.0.0-beta.2 → 8.0.0-beta.21

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,191 +1,1366 @@
1
- import { Response, BaseUrl, Options, ResponseError, FaasBrowserClient } from '@faasjs/browser';
2
- export { Options, Response, ResponseError, ResponseHeaders } from '@faasjs/browser';
3
- import { FaasActionUnionType, FaasAction, FaasParams, FaasData } from '@faasjs/types';
4
- export { FaasAction, FaasActionUnionType, FaasData, FaasParams } from '@faasjs/types';
5
- import * as react from 'react';
6
- import { JSX, Component, ReactNode, ReactElement, ComponentType, JSXElementConstructor, ComponentProps, Dispatch, SetStateAction, RefObject } from 'react';
7
- import * as react_jsx_runtime from 'react/jsx-runtime';
1
+ import * as _$react from "react";
2
+ import { Component, ComponentProps, ComponentType, Dispatch, ErrorInfo, JSX, ReactElement, ReactNode, RefObject, SetStateAction } from "react";
3
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
4
+ import { FaasAction, FaasAction as FaasAction$1, FaasActionUnionType, FaasActionUnionType as FaasActionUnionType$1, FaasData, FaasData as FaasData$1, FaasParams, FaasParams as FaasParams$1 } from "@faasjs/types";
8
5
 
6
+ //#region src/generateId.d.ts
9
7
  /**
10
- * Injects FaasData props.
8
+ * Generate a random identifier with an optional prefix.
9
+ *
10
+ * @param prefix - Prefix prepended to the generated identifier.
11
+ * @param length - Length of the generated identifier excluding `prefix`. Must be between `8` and `18`.
12
+ * @returns Generated identifier string.
13
+ * @throws {Error} When `length` is outside the supported `8` to `18` range.
14
+ *
15
+ * @example
16
+ * ```ts
17
+ * const id = generateId('prefix-')
18
+ *
19
+ * id.startsWith('prefix-') // true
20
+ * ```
11
21
  */
12
- type FaasDataInjection<PathOrData extends FaasActionUnionType = any> = {
13
- action: FaasAction<PathOrData>;
14
- params: FaasParams<PathOrData>;
15
- loading: boolean;
16
- reloadTimes: number;
17
- data: FaasData<PathOrData>;
18
- error: any;
19
- promise: Promise<Response<FaasData<PathOrData>>>;
20
- /**
21
- * Reloads data with new or existing parameters.
22
- *
23
- * **Note**: It will sets skip to false before loading data.
24
- */
25
- reload(params?: Record<string, any>): Promise<FaasData<PathOrData>>;
26
- setData: React.Dispatch<React.SetStateAction<FaasData<PathOrData>>>;
27
- setLoading: React.Dispatch<React.SetStateAction<boolean>>;
28
- setPromise: React.Dispatch<React.SetStateAction<Promise<Response<FaasData<PathOrData>>>>>;
29
- setError: React.Dispatch<React.SetStateAction<any>>;
22
+ declare function generateId(prefix?: string, length?: number): string;
23
+ //#endregion
24
+ //#region src/browser.d.ts
25
+ /**
26
+ * Template literal type for URL strings that must end with a forward slash.
27
+ *
28
+ * Ensures that base URLs used in FaasJS requests always have a trailing '/' character,
29
+ * which is required for proper URL construction when appending action paths.
30
+ *
31
+ * Notes:
32
+ * - Type only accepts strings ending with '/' (e.g., 'https://api.example.com/', '/')
33
+ * - Strings without trailing '/' will fail TypeScript type checking
34
+ * - Used by FaasBrowserClient constructor and Options type
35
+ * - Ensures consistent URL formatting across the codebase
36
+ * - Throws Error at runtime if baseUrl doesn't end with '/'
37
+ *
38
+ * @see FaasBrowserClient for usage in client creation
39
+ * @see Options for usage in request options
40
+ */
41
+ type BaseUrl = `${string}/`;
42
+ /**
43
+ * Configuration options for FaasJS requests.
44
+ *
45
+ * Extends the standard RequestInit interface with FaasJS-specific options for
46
+ * customizing request behavior, adding request hooks, and overriding defaults.
47
+ *
48
+ * Notes:
49
+ * - Options can be provided at client creation (defaultOptions) or per-request
50
+ * - Per-request options override client default options
51
+ * - headers are merged: per-request headers override default headers
52
+ * - beforeRequest hook is called before the request is sent, allowing modification
53
+ * - Custom request function completely replaces the default fetch implementation
54
+ * - baseUrl in options overrides the client's baseUrl for this specific request
55
+ * - When stream is true, returns the native fetch Response instead of wrapped Response
56
+ *
57
+ * @property {Record<string, string>} [headers] - Default headers to include in all requests.
58
+ * Merged with client default headers, with per-request headers taking precedence.
59
+ * Common headers include Content-Type, Authorization, and custom application headers.
60
+ *
61
+ * @property {Function} [beforeRequest] - Async hook called before sending each request.
62
+ * Receives action, params, options, and headers, allowing modification before the request is sent.
63
+ * Useful for logging, authentication, adding timestamps, or modifying headers dynamically.
64
+ * Any changes to the headers object will affect the actual request.
65
+ *
66
+ * @property {Function} [request] - Custom request function to replace the default fetch.
67
+ * Allows using alternative HTTP clients like axios, XMLHttpRequest, or custom implementations.
68
+ * Receives the URL and parsed options, must return a Promise resolving to a Response object.
69
+ * When provided, this function is used instead of the native fetch API.
70
+ *
71
+ * @property {BaseUrl} [baseUrl] - Optional override for the base URL for this specific request.
72
+ * If provided, overrides the client's baseUrl. Must end with '/'.
73
+ * Useful for making requests to different endpoints or environments from the same client instance.
74
+ *
75
+ * @property {boolean} [stream] - Enable streaming mode for large responses.
76
+ * When true, returns the raw fetch Response object instead of a wrapped Response.
77
+ * Useful for processing large data incrementally or working with binary data streams.
78
+ * When false or undefined, returns a wrapped Response with automatic JSON parsing.
79
+ *
80
+ * @augments RequestInit
81
+ * @see FaasBrowserClient for client creation
82
+ * @see Response for response object structure
83
+ */
84
+ type Options = RequestInit & {
85
+ headers?: Record<string, string>; /** Async hook called after request options are merged but before the request is sent. */
86
+ beforeRequest?: ({
87
+ action,
88
+ params,
89
+ options,
90
+ headers
91
+ }: {
92
+ action: string;
93
+ params?: Record<string, any> | undefined;
94
+ options: Options;
95
+ headers: Record<string, string>;
96
+ }) => Promise<void>; /** Custom request implementation used instead of the native `fetch`. */
97
+ request?: <PathOrData extends FaasActionUnionType$1>(url: string, options: Options) => Promise<Response<FaasData$1<PathOrData>>>; /** Base URL override for the current request. */
98
+ baseUrl?: BaseUrl; /** When `true`, return the native fetch response so callers can consume the stream manually. */
99
+ stream?: boolean;
100
+ };
101
+ /**
102
+ * Simple key-value object for HTTP response headers.
103
+ *
104
+ * Represents headers as a plain object with string keys and string values.
105
+ * Used by Response, ResponseError, and Options types.
106
+ *
107
+ * @property {string} [key] - Dynamic string keys for header names (e.g., 'Content-Type', 'Authorization').
108
+ * Values must be strings. Multiple values for the same key are not supported.
109
+ *
110
+ * Notes:
111
+ * - Headers are case-insensitive in HTTP but stored with exact casing in this object
112
+ * - Common headers include: Content-Type, Authorization, X-Request-Id, X-Custom-Header
113
+ * - No support for multi-value headers (use comma-separated values instead)
114
+ * - Used in Response, ResponseError, and Options types
115
+ * - Simplified model compared to browser's Headers interface (no .get(), .set() methods)
116
+ *
117
+ * @see Response for usage in response objects
118
+ * @see ResponseError for usage in error objects
119
+ * @see Options for usage in request options
120
+ */
121
+ type ResponseHeaders = {
122
+ [key: string]: string;
30
123
  };
31
- type FaasDataWrapperProps<PathOrData extends FaasActionUnionType> = {
32
- render?(args: FaasDataInjection<PathOrData>): JSX.Element | JSX.Element[];
33
- children?: React.ReactElement<Partial<FaasDataInjection<PathOrData>>>;
34
- fallback?: JSX.Element | false;
35
- action: FaasAction<PathOrData>;
36
- params?: FaasParams<PathOrData>;
37
- onDataChange?(args: FaasDataInjection<PathOrData>): void;
38
- /** use custom data, should work with setData */
39
- data?: FaasData<PathOrData>;
40
- /** use custom setData, should work with data */
41
- setData?: React.Dispatch<React.SetStateAction<FaasData<PathOrData>>>;
42
- baseUrl?: BaseUrl;
43
- ref?: React.Ref<FaasDataWrapperRef<PathOrData>>;
124
+ /**
125
+ * Type definition for the FaasBrowserClient.action method.
126
+ *
127
+ * Defines the signature of the method used to make requests to FaasJS functions.
128
+ * Provides type-safe parameter and return value handling.
129
+ *
130
+ * @template PathOrData - The function path or data type for type safety
131
+ *
132
+ * @param action - The function path to call.
133
+ * @param params - Optional parameters for the function.
134
+ * @param options - Optional request overrides.
135
+ * See {@link Options} for supported request fields such as `headers`, `beforeRequest`,
136
+ * `request`, `baseUrl`, and `stream`.
137
+ * @returns Promise resolving to the request response. In streaming mode the runtime returns the native fetch response.
138
+ *
139
+ * Notes:
140
+ * - Used internally by FaasBrowserClient.action method
141
+ * - Provides type-safe action method signature
142
+ * - Return type includes both typed and untyped Response variants
143
+ * - Params are optional and can be undefined
144
+ * - Options override client defaults when provided
145
+ *
146
+ * @see FaasBrowserClient for the class that uses this type
147
+ * @see Response for the return type
148
+ * @see Options for the options parameter type
149
+ */
150
+ type FaasBrowserClientAction = <PathOrData extends FaasActionUnionType$1>(action: FaasAction$1<PathOrData>, params?: FaasParams$1<PathOrData>, options?: Options) => Promise<Response<FaasData$1<PathOrData>> | Response>;
151
+ /**
152
+ * Properties for creating a Response object.
153
+ *
154
+ * Defines the structure of response data that can be passed to the Response constructor
155
+ * or returned from mock handlers.
156
+ *
157
+ * @template T - The type of the data property for type-safe response creation
158
+ *
159
+ * @property {number} [status] - The HTTP status code for the response.
160
+ * Optional: defaults to 200 if data or body is provided, 204 otherwise.
161
+ *
162
+ * @property {ResponseHeaders} [headers] - The response headers as a key-value object.
163
+ * Optional: defaults to an empty object if not provided.
164
+ *
165
+ * @property {any} [body] - The raw response body as a string or object.
166
+ * Optional: if not provided, body is automatically populated from data using JSON.stringify.
167
+ *
168
+ * @property {T} [data] - The parsed JSON data to include in the response.
169
+ * Optional: contains the response payload when JSON data is provided.
170
+ *
171
+ * Notes:
172
+ * - All properties are optional
173
+ * - At least one of data or body should be provided for meaningful responses
174
+ * - The Response class automatically defaults status to 200 or 204 based on content
175
+ * - If data is provided without body, body is automatically JSON.stringify(data)
176
+ * - Used by Response constructor and mock handlers
177
+ *
178
+ * @see Response for the class that uses these properties
179
+ * @see ResponseErrorProps for error response properties
180
+ */
181
+ type ResponseProps<T = any> = {
182
+ status?: number;
183
+ headers?: ResponseHeaders;
184
+ body?: any;
185
+ data?: T;
44
186
  };
45
- type FaasDataWrapperRef<PathOrData extends FaasActionUnionType = any> = FaasDataInjection<PathOrData>;
46
- declare const FaasDataWrapper: <PathOrData extends FaasActionUnionType = any>(props: FaasDataWrapperProps<PathOrData> & react.RefAttributes<FaasDataWrapperRef<PathOrData>>) => React.ReactElement | null;
47
187
  /**
48
- * HOC to wrap a component with FaasDataWrapper
188
+ * Wrapper class for HTTP responses from FaasJS functions.
189
+ *
190
+ * Provides a consistent interface for handling server responses with status code, headers,
191
+ * body, and parsed data. Automatically handles JSON serialization and status code defaults.
192
+ *
193
+ * @template T - The type of the data property for type-safe response handling
194
+ *
195
+ * @property {number} status - The HTTP status code of the response.
196
+ * Defaults to 200 if data or body is provided, 204 if neither is present.
197
+ * @property {ResponseHeaders} headers - The response headers as a key-value object.
198
+ * Empty object if no headers were provided.
199
+ * @property {any} body - The raw response body as a string or object.
200
+ * If data is provided without body, body is automatically set to JSON.stringify(data).
201
+ * @property {T} [data] - The parsed JSON data from the response.
202
+ * Optional property that contains the response payload when JSON is provided.
203
+ *
204
+ * Notes:
205
+ * - status defaults to 200 if data or body is present, 204 otherwise
206
+ * - body is automatically populated from data if not explicitly provided
207
+ * - headers defaults to an empty object if not provided
208
+ * - Use generic type parameter T for type-safe data access
209
+ * - Commonly used as the return type from client.action() method
210
+ * - Can be used in mock handlers to return structured responses
211
+ * - The data property is optional and may be undefined for responses without data
212
+ *
213
+ * @example Create successful response with data
214
+ * ```ts
215
+ * const response = new Response({
216
+ * status: 200,
217
+ * data: {
218
+ * id: 123,
219
+ * name: 'John Doe'
220
+ * }
221
+ * })
222
+ * console.log(response.status) // 200
223
+ * console.log(response.data.name) // 'John Doe'
224
+ * ```
225
+ *
226
+ * @example Create response with type safety
227
+ * ```ts
228
+ * interface User {
229
+ * id: number
230
+ * name: string
231
+ * email: string
232
+ * }
233
+ *
234
+ * const response = new Response<User>({
235
+ * data: {
236
+ * id: 123,
237
+ * name: 'John',
238
+ * email: 'john@example.com'
239
+ * }
240
+ * })
241
+ * // TypeScript knows response.data.name is a string
242
+ * ```
243
+ *
244
+ * @example Create response with headers
245
+ * ```ts
246
+ * const response = new Response({
247
+ * status: 201,
248
+ * data: { created: true },
249
+ * headers: {
250
+ * 'Content-Type': 'application/json',
251
+ * 'X-Request-Id': 'req-123',
252
+ * 'X-Cache-Key': 'user-123'
253
+ * }
254
+ * })
255
+ * ```
256
+ *
257
+ * @example Create response with custom body
258
+ * ```ts
259
+ * const response = new Response({
260
+ * status: 200,
261
+ * body: JSON.stringify({ custom: 'format' }),
262
+ * headers: { 'Content-Type': 'application/json' }
263
+ * })
264
+ * ```
265
+ *
266
+ * @example Create empty response (204 No Content)
267
+ * ```ts
268
+ * const response = new Response()
269
+ * // status: 204, headers: {}, body: undefined, data: undefined
270
+ * ```
271
+ *
272
+ * @example Create error response
273
+ * ```ts
274
+ * const response = new Response({
275
+ * status: 404,
276
+ * data: {
277
+ * error: {
278
+ * message: 'User not found',
279
+ * code: 'USER_NOT_FOUND'
280
+ * }
281
+ * }
282
+ * })
283
+ * ```
284
+ *
285
+ * @example Use in mock handler
286
+ * ```ts
287
+ * setMock(async (action, params) => {
288
+ * if (action === 'user') {
289
+ * return new Response({
290
+ * status: 200,
291
+ * data: { id: params.id, name: 'Mock User' }
292
+ * })
293
+ * }
294
+ * return new Response({ status: 404, data: { error: 'Not found' } })
295
+ * })
296
+ * ```
297
+ *
298
+ * @see ResponseProps for response property type
299
+ * @see ResponseError for error response handling
300
+ * @see FaasBrowserClient.action for method returning Response
301
+ */
302
+ declare class Response<T = any> {
303
+ /**
304
+ * HTTP status code exposed to callers.
305
+ */
306
+ readonly status: number;
307
+ /**
308
+ * Response headers keyed by header name.
309
+ */
310
+ readonly headers: ResponseHeaders;
311
+ /**
312
+ * Raw response body.
313
+ */
314
+ readonly body: any;
315
+ /**
316
+ * Parsed response payload when JSON data is available.
317
+ */
318
+ readonly data?: T;
319
+ /**
320
+ * Create a wrapped response object.
321
+ *
322
+ * @param props - Response properties including status, headers, body, and data.
323
+ * @param props.status - HTTP status code. Defaults to `200` when `data` or `body` exists, otherwise `204`.
324
+ * @param props.headers - Response headers keyed by header name.
325
+ * @param props.body - Raw response body to expose without additional parsing.
326
+ * @param props.data - Parsed response payload to expose on `response.data`.
327
+ * @returns Wrapped response instance.
328
+ */
329
+ constructor(props?: ResponseProps<T>);
330
+ }
331
+ /**
332
+ * Input accepted by the {@link ResponseError} constructor.
333
+ */
334
+ type ResponseErrorProps = {
335
+ /** User-facing error message. */message: string; /** HTTP status code reported for the error. @default 500 */
336
+ status?: number; /** Response headers returned with the error. @default {} */
337
+ headers?: ResponseHeaders; /** Raw error body or structured error payload. @default { error: { message } } */
338
+ body?: any; /** Original error preserved when this instance wraps another exception. */
339
+ originalError?: Error;
340
+ };
341
+ /**
342
+ * Custom error class for handling HTTP response errors from FaasJS requests.
343
+ *
344
+ * Extends the built-in Error class to provide additional information about failed requests,
345
+ * including HTTP status code, response headers, response body, and the original error.
346
+ *
347
+ * @augments Error
348
+ *
349
+ * @property {number} status - The HTTP status code of the failed response. Defaults to 500 if not provided.
350
+ * @property {ResponseHeaders} headers - The response headers from the failed request.
351
+ * @property {any} body - The response body containing error details or the original error if available.
352
+ * @property {Error} [originalError] - The original Error object if this ResponseError was created from another Error.
353
+ *
354
+ * @example Basic error with message
355
+ * ```ts
356
+ * throw new ResponseError('User not found')
357
+ * // or inside action method:
358
+ * catch (error) {
359
+ * throw new ResponseError(error.message)
360
+ * }
361
+ * ```
362
+ *
363
+ * @example Error from existing Error
364
+ * ```ts
365
+ * try {
366
+ * await someOperation()
367
+ * } catch (error) {
368
+ * throw new ResponseError(error, {
369
+ * status: 500,
370
+ * headers: { 'X-Error-Type': 'internal' }
371
+ * })
372
+ * }
373
+ * ```
374
+ *
375
+ * @example Error with complete response details
376
+ * ```ts
377
+ * throw new ResponseError({
378
+ * message: 'Validation failed',
379
+ * status: 400,
380
+ * headers: { 'X-Error-Code': 'VALIDATION_ERROR' },
381
+ * body: {
382
+ * error: {
383
+ * message: 'Validation failed',
384
+ * fields: ['email', 'password']
385
+ * }
386
+ * }
387
+ * })
388
+ * ```
389
+ *
390
+ * @example Handling ResponseError in client
391
+ * ```ts
392
+ * try {
393
+ * const response = await client.action('user', { id: 123 })
394
+ * console.log(response.data)
395
+ * } catch (error) {
396
+ * if (error instanceof ResponseError) {
397
+ * console.error(`Request failed: ${error.message}`)
398
+ * console.error(`Status: ${error.status}`)
399
+ * if (error.body) {
400
+ * console.error('Error details:', error.body)
401
+ * }
402
+ * if (error.headers['X-Request-Id']) {
403
+ * console.error('Request ID:', error.headers['X-Request-Id'])
404
+ * }
405
+ * }
406
+ * }
407
+ * ```
408
+ *
409
+ * @example Throwing ResponseError from mock
410
+ * ```ts
411
+ * setMock(async (action, params) => {
412
+ * if (action === 'login') {
413
+ * if (!params.email || !params.password) {
414
+ * throw new ResponseError({
415
+ * message: 'Email and password are required',
416
+ * status: 400,
417
+ * body: { error: 'missing_fields' }
418
+ * })
419
+ * }
420
+ * return { data: { token: 'abc123' } }
421
+ * }
422
+ * })
423
+ * ```
424
+ *
425
+ * Notes:
426
+ * - ResponseError is automatically thrown by the action method when the server returns an error (status >= 400)
427
+ * - The error message from server responses is extracted from body.error.message if available
428
+ * - When created from an Error object, the original error is preserved in the originalError property
429
+ * - The status property defaults to 500 if not explicitly provided
430
+ * - Use instanceof ResponseError to distinguish FaasJS errors from other JavaScript errors
431
+ * - The body property can contain structured error information from the server response
432
+ *
433
+ * @see FaasBrowserClient.action for how ResponseError is thrown in requests
434
+ * @see ResponseProps for the structure of response data
435
+ * @see setMock for mocking errors in tests
436
+ */
437
+ declare class ResponseError extends Error {
438
+ /**
439
+ * HTTP status code reported for the failed request.
440
+ */
441
+ readonly status: number;
442
+ /**
443
+ * Response headers returned with the error.
444
+ */
445
+ readonly headers: ResponseHeaders;
446
+ /**
447
+ * Raw error body or fallback error payload.
448
+ */
449
+ readonly body: any;
450
+ /**
451
+ * Original error used to construct this instance, when available.
452
+ */
453
+ readonly originalError?: Error;
454
+ /**
455
+ * Create a ResponseError from a message, Error, or structured response error payload.
456
+ *
457
+ * @param data - Error message, Error object, or structured response error props.
458
+ * @param data.message - User-facing error message when `data` is a structured object.
459
+ * @param data.status - HTTP status code when `data` is a structured object.
460
+ * @param data.headers - Response headers returned with the error when `data` is a structured object.
461
+ * @param data.body - Raw error body or structured error payload when `data` is a structured object.
462
+ * @param data.originalError - Original error preserved on the instance when `data` is a structured object.
463
+ * @param options - Additional options such as status, headers, and body.
464
+ * @param options.status - HTTP status override used when `data` is a string or `Error`.
465
+ * @param options.headers - Response headers override used when `data` is a string or `Error`.
466
+ * @param options.body - Raw error body override used when `data` is a string or `Error`.
467
+ * @returns ResponseError instance.
468
+ */
469
+ constructor(data: string | Error, options?: Omit<ResponseErrorProps, 'message' | 'originalError'>);
470
+ constructor(data: ResponseErrorProps);
471
+ }
472
+ /**
473
+ * Mock handler function type for testing FaasJS requests.
474
+ *
475
+ * Defines the signature for functions that can mock API requests during testing.
476
+ * Mock handlers receive request parameters and return simulated responses or errors.
477
+ *
478
+ * @param action - The function path/action being requested (for example, `user` or `data/list`).
479
+ * Converted to lowercase by the client before being passed to the handler.
480
+ *
481
+ * @param params - The parameters passed to the action.
482
+ * May be undefined if the action was called without parameters.
483
+ * Parameters are passed as a plain object (already JSON-serialized if needed).
484
+ *
485
+ * @param options - The full request options including headers, beforeRequest hook, and other config.
486
+ * Includes X-FaasJS-Request-Id header in the headers object.
487
+ * Contains merged client defaults and per-request options.
488
+ * See {@link Options} for supported request fields such as `headers`, `beforeRequest`,
489
+ * `request`, `baseUrl`, and `stream`.
490
+ *
491
+ * @returns A promise resolving to:
492
+ * - ResponseProps: Mock response data (status, headers, body, data)
493
+ * - void: Returns an empty response (204 No Content)
494
+ * - Error: Throws ResponseError when returning an Error object
495
+ *
496
+ * Notes:
497
+ * - Used by setMock() function to mock API calls during tests
498
+ * - Affects all FaasBrowserClient instances when set globally
499
+ * - Can return different responses based on action or params
500
+ * - Returning an Error object causes the action() method to reject with ResponseError
501
+ * - Async function - must return a Promise
502
+ * - Receives the fully merged options including default headers
503
+ *
504
+ * @example Basic mock returning data
505
+ * ```ts
506
+ * setMock(async (action, params, options) => {
507
+ * if (action === 'user') {
508
+ * return {
509
+ * status: 200,
510
+ * data: { id: params.id, name: 'Mock User' }
511
+ * }
512
+ * }
513
+ * return { status: 404, data: { error: 'Not found' } }
514
+ * })
515
+ * ```
516
+ *
517
+ * @example Conditional mock based on parameters
518
+ * ```ts
519
+ * setMock(async (action, params) => {
520
+ * if (action === 'login') {
521
+ * if (params.email === 'admin@example.com' && params.password === 'admin') {
522
+ * return { data: { token: 'admin-token', role: 'admin' } }
523
+ * }
524
+ * return { status: 401, data: { error: 'Invalid credentials' } }
525
+ * }
526
+ * })
527
+ * ```
528
+ *
529
+ * @example Throwing error from mock
530
+ * ```ts
531
+ * setMock(async (action) => {
532
+ * if (action === 'protected') {
533
+ * return new Error('Unauthorized access')
534
+ * // This will be wrapped in ResponseError and thrown
535
+ * }
536
+ * })
537
+ * ```
538
+ *
539
+ * @example Returning void for empty response
540
+ * ```ts
541
+ * setMock(async (action) => {
542
+ * if (action === 'delete') {
543
+ * // Return void for 204 No Content
544
+ * return
545
+ * }
546
+ * return { data: { success: true } }
547
+ * })
548
+ * ```
549
+ *
550
+ * @see setMock for setting up mock handlers
551
+ * @see ResponseProps for response structure
552
+ * @see ResponseError for error handling
553
+ */
554
+ type MockHandler = (action: string, params: Record<string, any> | undefined, options: Options) => Promise<ResponseProps> | Promise<void> | Promise<Error>;
555
+ /**
556
+ * Set the global mock handler used by all {@link FaasBrowserClient} instances.
557
+ *
558
+ * @param handler - Mock handler, can be:
559
+ * - MockHandler function: receives (action, params, options) and returns response data
560
+ * - ResponseProps object: static response data
561
+ * - Response instance: pre-configured Response object
562
+ * - null or undefined: clear mock
563
+ *
564
+ * @example Reset in Vitest shared setup
565
+ * ```ts
566
+ * import { afterEach } from 'vitest'
567
+ *
568
+ * afterEach(() => {
569
+ * setMock(null)
570
+ * })
571
+ * ```
572
+ *
573
+ * @example Use ResponseProps object
574
+ * ```ts
575
+ * setMock({
576
+ * data: { name: 'FaasJS' },
577
+ * })
578
+ *
579
+ * setMock({
580
+ * status: 500,
581
+ * data: { message: 'Internal Server Error' },
582
+ * })
583
+ * ```
584
+ *
585
+ * @example Use MockHandler function
586
+ * ```ts
587
+ * setMock(async (action) => {
588
+ * if (action === '/pages/users/get') {
589
+ * return { data: { id: 1, name: 'FaasJS' } }
590
+ * }
591
+ *
592
+ * return { status: 404, data: { message: 'Not Found' } }
593
+ * })
594
+ *
595
+ * const response = await client.action('/pages/users/get')
596
+ * ```
597
+ *
598
+ * @example Branch by action and params
599
+ * ```ts
600
+ * setMock(async (action, params) => {
601
+ * if (action === '/pages/users/get' && params?.id === 1) {
602
+ * return { data: { id: 1, name: 'Admin' } }
603
+ * }
604
+ *
605
+ * if (action === '/pages/users/get' && params?.id === 2) {
606
+ * return { data: { id: 2, name: 'Editor' } }
607
+ * }
608
+ *
609
+ * return { status: 404, data: { message: 'User not found' } }
610
+ * })
611
+ * ```
612
+ *
613
+ * @example Use Response instance
614
+ * ```ts
615
+ * setMock(new Response({
616
+ * status: 200,
617
+ * data: { result: 'success' }
618
+ * }))
619
+ * ```
620
+ *
621
+ * @example Streaming response
622
+ * ```ts
623
+ * setMock({
624
+ * body: new ReadableStream({
625
+ * start(controller) {
626
+ * controller.enqueue(new TextEncoder().encode('hello'))
627
+ * controller.enqueue(new TextEncoder().encode(' world'))
628
+ * controller.close()
629
+ * },
630
+ * }),
631
+ * })
632
+ * ```
633
+ *
634
+ * @example Clear mock
635
+ * ```ts
636
+ * setMock(null)
637
+ * ```
638
+ *
639
+ * @example Handle errors
640
+ * ```ts
641
+ * setMock(async () => {
642
+ * throw new Error('Internal error')
643
+ * })
644
+ * // This will reject with ResponseError
645
+ * ```
646
+ */
647
+ declare function setMock(handler: MockHandler | ResponseProps | Response | null | undefined): void;
648
+ /**
649
+ * Browser client for FaasJS - provides HTTP client functionality for making API requests from web applications.
650
+ *
651
+ * @template PathOrData - Type parameter extending FaasActionUnionType for type-safe requests
652
+ *
653
+ * Features:
654
+ * - Type-safe API requests with TypeScript support
655
+ * - Built-in mock support for testing
656
+ * - Custom request function support
657
+ * - Request/response hooks (beforeRequest)
658
+ * - Automatic error handling with ResponseError
659
+ * - Streaming support for large responses
660
+ * - Multiple instance support with unique IDs
661
+ *
662
+ * Notes:
663
+ * - All requests are POST requests by default
664
+ * - Automatically adds X-FaasJS-Request-Id header for request tracking
665
+ * - baseUrl must end with '/' (will throw Error if not)
666
+ * - Supports global mock via setMock() for testing all instances
667
+ *
668
+ * @example Basic usage
669
+ * ```ts
670
+ * import { FaasBrowserClient } from '@faasjs/react'
671
+ *
672
+ * const client = new FaasBrowserClient('http://localhost:8080/')
673
+ * const response = await client.action('func', { key: 'value' })
674
+ * console.log(response.data)
675
+ * ```
676
+ *
677
+ * @example With custom headers and options
678
+ * ```ts
679
+ * const client = new FaasBrowserClient('https://api.example.com/', {
680
+ * headers: { 'X-API-Key': 'secret' },
681
+ * beforeRequest: async ({ action, params, headers }) => {
682
+ * console.log(`Calling ${action} with params:`, params)
683
+ * }
684
+ * })
685
+ * ```
686
+ *
687
+ * @example Multiple instances
688
+ * ```ts
689
+ * const apiClient = new FaasBrowserClient('https://api.example.com/')
690
+ * const localClient = new FaasBrowserClient('http://localhost:3000/')
691
+ *
692
+ * const apiData = await apiClient.action('users')
693
+ * const localData = await localClient.action('data')
694
+ * ```
695
+ *
696
+ * @example Error handling
697
+ * ```ts
698
+ * const client = new FaasBrowserClient('https://api.example.com/')
699
+ *
700
+ * try {
701
+ * const response = await client.action('user', { id: 123 })
702
+ * console.log(response.data)
703
+ * } catch (error) {
704
+ * if (error instanceof ResponseError) {
705
+ * console.error(`Request failed: ${error.message}`, error.status)
706
+ * } else {
707
+ * console.error('Unexpected error:', error)
708
+ * }
709
+ * }
710
+ * ```
711
+ *
712
+ * @throws {Error} When baseUrl does not end with '/'
713
+ *
714
+ * @see setMock for testing support
715
+ * @see ResponseError for error handling
716
+ */
717
+ declare class FaasBrowserClient {
718
+ /**
719
+ * Unique identifier for this client instance.
720
+ */
721
+ readonly id: string;
722
+ /**
723
+ * Base URL used to build action request URLs.
724
+ */
725
+ baseUrl: BaseUrl;
726
+ /**
727
+ * Default request options merged into every request.
728
+ */
729
+ defaultOptions: Options;
730
+ /**
731
+ * Creates a new FaasBrowserClient instance.
732
+ *
733
+ * @param baseUrl - Base URL for all API requests. Must end with `/`. Defaults to `/` for relative requests.
734
+ * @param options - Default request options such as headers, hooks, request override, or stream mode.
735
+ * See {@link Options} for supported request fields such as `headers`, `beforeRequest`,
736
+ * `request`, `baseUrl`, and `stream`.
737
+ *
738
+ * @example Basic initialization
739
+ * ```ts
740
+ * const client = new FaasBrowserClient('/')
741
+ * ```
742
+ *
743
+ * @example With API endpoint
744
+ * ```ts
745
+ * const client = new FaasBrowserClient('https://api.example.com/')
746
+ * ```
747
+ *
748
+ * @example With custom headers
749
+ * ```ts
750
+ * const client = new FaasBrowserClient('https://api.example.com/', {
751
+ * headers: {
752
+ * 'Authorization': 'Bearer token123',
753
+ * 'X-Custom-Header': 'value'
754
+ * }
755
+ * })
756
+ * ```
757
+ *
758
+ * @example With beforeRequest hook
759
+ * ```ts
760
+ * const client = new FaasBrowserClient('https://api.example.com/', {
761
+ * beforeRequest: async ({ action, params, headers }) => {
762
+ * console.log(`Requesting ${action}`, params)
763
+ * // Modify headers before request
764
+ * headers['X-Timestamp'] = Date.now().toString()
765
+ * }
766
+ * })
767
+ * ```
768
+ *
769
+ * @example With custom request function
770
+ * ```ts
771
+ * import axios from 'axios'
772
+ *
773
+ * const client = new FaasBrowserClient('/', {
774
+ * request: async (url, options) => {
775
+ * const response = await axios.post(url, options.body, {
776
+ * headers: options.headers
777
+ * })
778
+ * return new Response({
779
+ * status: response.status,
780
+ * headers: response.headers,
781
+ * data: response.data
782
+ * })
783
+ * }
784
+ * })
785
+ * ```
786
+ *
787
+ * @throws {Error} When `baseUrl` does not end with `/`
788
+ */
789
+ constructor(baseUrl?: BaseUrl, options?: Options);
790
+ /**
791
+ * Makes a request to a FaasJS function.
792
+ *
793
+ * @template PathOrData - The function path or data type for type safety
794
+ * @param action - The function path to call. Converted to lowercase when constructing the URL.
795
+ * Must be a non-empty string.
796
+ * @param params - The parameters to send to the function. Will be serialized as JSON.
797
+ * Optional if the function accepts no parameters.
798
+ * @param options - Optional request options that override client defaults.
799
+ * Supports headers, beforeRequest hook, custom request function, baseUrl override, and streaming mode.
800
+ * See {@link Options} for supported request fields such as `headers`, `beforeRequest`,
801
+ * `request`, `baseUrl`, and `stream`.
802
+ *
803
+ * @returns A promise resolving to the wrapped FaasJS response. When `options.stream`
804
+ * is `true`, the runtime returns the native fetch response so callers can read the stream.
805
+ *
806
+ * @throws {Error} When action is not provided or is empty
807
+ * @throws {ResponseError} When the server returns an error response (status >= 400 or body.error exists)
808
+ * @throws {Error} When the request fails before a response is received
809
+ *
810
+ * Notes:
811
+ * - All requests are POST requests by default
812
+ * - Action path is automatically converted to lowercase
813
+ * - A unique request ID is generated for each request and sent in X-FaasJS-Request-Id header
814
+ * - Headers are merged from client defaults and request options (request options take precedence)
815
+ * - If a global mock is set via setMock(), it will be used instead of making real requests
816
+ * - If a custom request function is provided in options, it will be used instead of fetch
817
+ * - When stream option is true, returns the native fetch Response instead of a wrapped Response
818
+ * - Response body is automatically parsed as JSON when possible
819
+ * - Server errors (body.error) are automatically converted to ResponseError
820
+ *
821
+ * @example Basic request
822
+ * ```ts
823
+ * const response = await client.action('user', { id: 123 })
824
+ * console.log(response.data)
825
+ * ```
826
+ *
827
+ * @example With no parameters
828
+ * ```ts
829
+ * const response = await client.action('status')
830
+ * console.log(response.data.status)
831
+ * ```
832
+ *
833
+ * @example With custom options
834
+ * ```ts
835
+ * const response = await client.action('data', {
836
+ * limit: 10,
837
+ * offset: 0
838
+ * }, {
839
+ * headers: { 'X-Custom-Header': 'value' }
840
+ * })
841
+ * ```
842
+ *
843
+ * @example Streaming large response
844
+ * ```ts
845
+ * const response = await client.action('stream', {
846
+ * format: 'json'
847
+ * }, {
848
+ * stream: true
849
+ * })
850
+ * // response is native fetch Response with streaming support
851
+ * const reader = response.body.getReader()
852
+ * ```
853
+ *
854
+ * @example With type safety
855
+ * ```ts
856
+ * interface UserData {
857
+ * id: number
858
+ * name: string
859
+ * email: string
860
+ * }
861
+ *
862
+ * const response = await client.action<UserData>('user', { id: 123 })
863
+ * console.log(response.data.name) // TypeScript knows it's a string
864
+ * ```
865
+ *
866
+ * @example Handling errors
867
+ * ```ts
868
+ * try {
869
+ * const response = await client.action('user', { id: 123 })
870
+ * console.log(response.data)
871
+ * } catch (error) {
872
+ * if (error instanceof ResponseError) {
873
+ * console.error(`Server error: ${error.message}`, error.status)
874
+ * if (error.body) console.error('Error details:', error.body)
875
+ * } else {
876
+ * console.error('Network error:', error)
877
+ * }
878
+ * }
879
+ * ```
880
+ *
881
+ * @example Chaining requests
882
+ * ```ts
883
+ * const userId = await client.action('createUser', {
884
+ * name: 'John',
885
+ * email: 'john@example.com'
886
+ * })
887
+ *
888
+ * const profile = await client.action('getProfile', {
889
+ * userId: userId.data.id
890
+ * })
891
+ * ```
892
+ */
893
+ action<PathOrData extends FaasActionUnionType$1>(action: FaasAction$1<PathOrData>, params?: FaasParams$1<PathOrData>, options?: Options): Promise<Response<FaasData$1<PathOrData>>>;
894
+ }
895
+ //#endregion
896
+ //#region src/faas.d.ts
897
+ /**
898
+ * Call the currently configured FaasReactClient.
899
+ *
900
+ * This helper forwards the request to `getClient`. When the registered
901
+ * client defines `onError`, the hook is invoked before the promise rejects.
902
+ *
903
+ * @template PathOrData - Action path or response data type used for inference.
904
+ *
905
+ * @param action - Action path to invoke.
906
+ * @param params - Parameters sent to the action.
907
+ * @param options - Optional per-request overrides such as headers or base URL.
908
+ * See the request `Options` type for supported fields such as `headers`, `beforeRequest`,
909
+ * `request`, `baseUrl`, and `stream`.
910
+ * @returns Response returned by the active browser client.
911
+ * @throws {ResponseError} When the request fails and the active client does not recover inside `onError`.
912
+ *
913
+ * @example
914
+ * ```ts
915
+ * import { faas } from '@faasjs/react'
916
+ *
917
+ * const response = await faas('posts/get', { id: 1 })
918
+ *
919
+ * console.log(response.data.title)
920
+ * ```
921
+ */
922
+ declare function faas<PathOrData extends FaasActionUnionType$1>(action: FaasAction$1<PathOrData>, params: FaasParams$1<PathOrData>, options?: Options): Promise<Response<FaasData$1<PathOrData>>>;
923
+ //#endregion
924
+ //#region src/FaasDataWrapper.d.ts
925
+ /**
926
+ * Request state injected by {@link useFaas}, {@link FaasDataWrapper}, and {@link withFaasData}.
927
+ *
928
+ * @template PathOrData - Action path or response data type used for inference.
929
+ */
930
+ type FaasDataInjection<PathOrData extends FaasActionUnionType$1 = any> = {
931
+ /** Action path associated with the current request state. */action: FaasAction$1<PathOrData>; /** Params used for the most recent request attempt. */
932
+ params: FaasParams$1<PathOrData>; /** Whether the request is currently in flight. */
933
+ loading: boolean; /** Number of times `reload()` has triggered a new request. */
934
+ reloadTimes: number; /** Current resolved data value. */
935
+ data: FaasData$1<PathOrData>; /** Last request error, if one occurred. */
936
+ error: any; /** Promise representing the latest request. */
937
+ promise: Promise<Response<FaasData$1<PathOrData>>>;
938
+ /**
939
+ * Reloads data with new or existing parameters.
940
+ *
941
+ * When the source hook is currently skipped, calling `reload` clears the skip
942
+ * flag before starting the next request.
943
+ */
944
+ reload(params?: Record<string, any>): Promise<FaasData$1<PathOrData>>; /** Controlled or internal setter for the resolved data value. */
945
+ setData: React.Dispatch<React.SetStateAction<FaasData$1<PathOrData>>>; /** Setter for the loading flag. */
946
+ setLoading: React.Dispatch<React.SetStateAction<boolean>>; /** Setter for the latest request promise. */
947
+ setPromise: React.Dispatch<React.SetStateAction<Promise<Response<FaasData$1<PathOrData>>>>>; /** Setter for the last request error. */
948
+ setError: React.Dispatch<React.SetStateAction<any>>;
949
+ };
950
+ /**
951
+ * Props for the {@link FaasDataWrapper} render-prop component.
952
+ *
953
+ * @template PathOrData - Action path or response data type used for inference.
954
+ */
955
+ type FaasDataWrapperProps<PathOrData extends FaasActionUnionType$1> = {
956
+ /** Render prop invoked with the resolved request state after the first load completes. */render?(args: FaasDataInjection<PathOrData>): JSX.Element | JSX.Element[]; /** Child element cloned with injected request state after the first load completes. */
957
+ children?: React.ReactElement<Partial<FaasDataInjection<PathOrData>>>; /** Element rendered before the first successful load. */
958
+ fallback?: JSX.Element | false; /** Action path to request. */
959
+ action: FaasAction$1<PathOrData>; /** Params sent to the action. */
960
+ params?: FaasParams$1<PathOrData>; /** Callback invoked whenever the resolved data value changes. */
961
+ onDataChange?(args: FaasDataInjection<PathOrData>): void; /** Controlled data value used instead of internal state. */
962
+ data?: FaasData$1<PathOrData>; /** Controlled setter used instead of internal state. */
963
+ setData?: React.Dispatch<React.SetStateAction<FaasData$1<PathOrData>>>; /** Base URL override used for this wrapper instance. */
964
+ baseUrl?: BaseUrl; /** Imperative ref exposing the current injected request state. */
965
+ ref?: React.Ref<FaasDataWrapperRef<PathOrData>>;
966
+ };
967
+ /**
968
+ * Imperative ref shape exposed by {@link FaasDataWrapper}.
969
+ *
970
+ * @template PathOrData - Action path or response data type used for inference.
971
+ */
972
+ type FaasDataWrapperRef<PathOrData extends FaasActionUnionType$1 = any> = FaasDataInjection<PathOrData>;
973
+ /**
974
+ * Fetch FaasJS data and inject the result into a render prop or child element.
975
+ *
976
+ * The wrapper defers rendering `children` or `render` until the first request
977
+ * completes, then keeps passing the latest request state to the rendered output.
978
+ *
979
+ * @param props - Wrapper props controlling the request and rendered fallback.
980
+ * @param props.render - Render prop that receives the resolved Faas request state.
981
+ * @param props.children - Child element cloned with injected Faas request state.
982
+ * @param props.fallback - Element rendered before the first successful load.
983
+ * @param props.action - Action path to request.
984
+ * @param props.params - Params sent to the action.
985
+ * @param props.onDataChange - Callback invoked when the resolved data value changes.
986
+ * @param props.data - Controlled data value used instead of internal state.
987
+ * @param props.setData - Controlled setter used instead of internal state.
988
+ * @param props.baseUrl - Base URL override used for this wrapper instance.
49
989
  *
50
990
  * @example
51
991
  * ```tsx
52
- * const MyComponent = withFaasData(({ data }) => <div>{data.name}</div>, { action: 'test', params: { a: 1 } })
992
+ * import { FaasDataWrapper } from '@faasjs/react'
993
+ *
994
+ * type User = {
995
+ * name: string
996
+ * }
997
+ *
998
+ * function UserView(props: {
999
+ * data?: User
1000
+ * error?: Error
1001
+ * reload?: () => void
1002
+ * }) {
1003
+ * if (props.error) {
1004
+ * return (
1005
+ * <div>
1006
+ * <p>Failed to load user: {props.error.message}</p>
1007
+ * <button type="button" onClick={() => props.reload?.()}>
1008
+ * Retry
1009
+ * </button>
1010
+ * </div>
1011
+ * )
1012
+ * }
1013
+ *
1014
+ * return <div>Hello, {props.data?.name}</div>
1015
+ * }
1016
+ *
1017
+ * // Render-prop mode
1018
+ * export function UserProfile(props: { id: number }) {
1019
+ * return (
1020
+ * <FaasDataWrapper<User>
1021
+ * action="/pages/users/get"
1022
+ * params={{ id: props.id }}
1023
+ * fallback={<div>Loading user...</div>}
1024
+ * render={({ data, error, reload }) => {
1025
+ * if (error) {
1026
+ * return (
1027
+ * <div>
1028
+ * <p>Failed to load user: {error.message}</p>
1029
+ * <button type="button" onClick={() => reload()}>
1030
+ * Retry
1031
+ * </button>
1032
+ * </div>
1033
+ * )
1034
+ * }
1035
+ *
1036
+ * return <div>Hello, {data.name}</div>
1037
+ * }}
1038
+ * />
1039
+ * )
1040
+ * }
1041
+ *
1042
+ * // Children injection mode
1043
+ * export function UserProfileWithChildren(props: { id: number }) {
1044
+ * return (
1045
+ * <FaasDataWrapper<User>
1046
+ * action="/pages/users/get"
1047
+ * params={{ id: props.id }}
1048
+ * fallback={<div>Loading user...</div>}
1049
+ * >
1050
+ * <UserView />
1051
+ * </FaasDataWrapper>
1052
+ * )
1053
+ * }
53
1054
  * ```
1055
+ *
1056
+ * When a ref is provided, it exposes the current Faas request state imperatively.
54
1057
  */
55
- declare function withFaasData<PathOrData extends FaasActionUnionType, TComponentProps extends Required<FaasDataInjection<PathOrData>> = Required<FaasDataInjection<PathOrData>>>(Component: React.FC<TComponentProps>, faasProps: FaasDataWrapperProps<PathOrData>): React.FC<Omit<TComponentProps, keyof FaasDataInjection<PathOrData>> & Record<string, any>>;
56
-
1058
+ declare const FaasDataWrapper: <PathOrData extends FaasActionUnionType$1 = any>(props: FaasDataWrapperProps<PathOrData> & _$react.RefAttributes<FaasDataWrapperRef<PathOrData>>) => React.ReactElement | null;
57
1059
  /**
58
- * Request faas server
1060
+ * Wrap a component with {@link FaasDataWrapper} and inject Faas request state as props.
59
1061
  *
60
- * @param action {string} action name
61
- * @param params {object} action params
62
- * @returns {Promise<Response<any>>}
1062
+ * `withFaasData` is most useful for wrapper-style exports or compatibility with
1063
+ * an existing component boundary. For new code, prefer `useFaas` or
1064
+ * `FaasDataWrapper` when they express the request ownership more directly.
1065
+ *
1066
+ * @template PathOrData - Action path or response data type used for inference.
1067
+ * @template TComponentProps - Component props including injected Faas data fields.
1068
+ * @param Component - Component that consumes injected Faas data props.
1069
+ * @param faasProps - Request configuration forwarded to `FaasDataWrapper`.
1070
+ * @returns Component that accepts the original props minus the injected Faas data fields.
63
1071
  *
64
1072
  * @example
65
- * ```ts
66
- * faas<{ title: string }>('post/get', { id: 1 }).then(res => {
67
- * console.log(res.data.title)
68
- * })
1073
+ * ```tsx
1074
+ * import { withFaasData } from '@faasjs/react'
1075
+ *
1076
+ * const MyComponent = withFaasData(
1077
+ * ({ data, error, reload }) => {
1078
+ * if (error) {
1079
+ * return (
1080
+ * <button type="button" onClick={() => reload()}>
1081
+ * Retry
1082
+ * </button>
1083
+ * )
1084
+ * }
1085
+ *
1086
+ * return <div>{data.name}</div>
1087
+ * },
1088
+ * { action: '/pages/users/get', params: { id: 1 } },
1089
+ * )
69
1090
  * ```
70
1091
  */
71
- declare function faas<PathOrData extends FaasActionUnionType>(action: FaasAction<PathOrData>, params: FaasParams<PathOrData>, options?: Options): Promise<Response<FaasData<PathOrData>>>;
72
-
73
- type useFaasOptions<PathOrData extends FaasActionUnionType> = {
74
- params?: FaasParams<PathOrData>;
75
- data?: FaasData<PathOrData>;
76
- setData?: React.Dispatch<React.SetStateAction<FaasData<PathOrData>>>;
77
- /**
78
- * If skip is true, the request will not be sent.
79
- *
80
- * However, you can still use reload to send the request.
81
- */
82
- skip?: boolean | ((params: FaasParams<PathOrData>) => boolean);
83
- /** Send the last request after milliseconds */
84
- debounce?: number;
85
- baseUrl?: BaseUrl;
1092
+ declare function withFaasData<PathOrData extends FaasActionUnionType$1, TComponentProps extends Required<FaasDataInjection<PathOrData>> = Required<FaasDataInjection<PathOrData>>>(Component: React.FC<TComponentProps>, faasProps: FaasDataWrapperProps<PathOrData>): React.FC<Omit<TComponentProps, keyof FaasDataInjection<PathOrData>> & Record<string, any>>;
1093
+ //#endregion
1094
+ //#region src/useFaasRequest.d.ts
1095
+ type SharedUseFaasOptions<Params, Data> = {
1096
+ params?: Params;
1097
+ data?: Data;
1098
+ setData?: React.Dispatch<React.SetStateAction<Data>>;
1099
+ skip?: boolean | ((params: Params) => boolean);
1100
+ debounce?: number;
1101
+ baseUrl?: BaseUrl;
86
1102
  };
1103
+ //#endregion
1104
+ //#region src/useFaas.d.ts
1105
+ /**
1106
+ * Options that customize the {@link useFaas} request lifecycle.
1107
+ *
1108
+ * @template PathOrData - Action path or response data type used for inference.
1109
+ */
1110
+ type useFaasOptions<PathOrData extends FaasActionUnionType$1> = SharedUseFaasOptions<FaasParams$1<PathOrData>, FaasData$1<PathOrData>>;
87
1111
  /**
88
- * Request faas server with React hook
1112
+ * Request FaasJS data and keep request state in React state.
1113
+ *
1114
+ * `useFaas` is the default hook for standard FaasJS request-response flows in React.
1115
+ * It sends an initial request unless `skip` is enabled, and returns request state
1116
+ * plus helpers for reloading, updating data, and handling errors.
1117
+ *
1118
+ * @template PathOrData - Action path or response data type used for inference.
89
1119
  *
90
- * @param action {string} action name
91
- * @param defaultParams {object} initial action params
92
- * @returns {FaasDataInjection<any>}
1120
+ * @param action - Action path to invoke.
1121
+ * @param defaultParams - Params used for the initial request and future reloads.
1122
+ * @param options - Optional hook configuration such as controlled data, debounce, and skip logic.
1123
+ * @param options.params - Request params override used without mutating the hook's stored params state.
1124
+ * @param options.data - Controlled data value used instead of the hook's internal state.
1125
+ * @param options.setData - Controlled setter used instead of the hook's internal `setData`.
1126
+ * @param options.skip - Boolean or predicate that suppresses the automatic request until `reload()` runs.
1127
+ * @param options.debounce - Milliseconds to wait before sending the latest request.
1128
+ * @param options.baseUrl - Base URL override used for this hook instance.
1129
+ * @returns Request state and helper methods described by {@link FaasDataInjection}.
93
1130
  *
94
1131
  * @example
95
1132
  * ```tsx
96
- * function Post ({ id }) {
97
- * const { data } = useFaas<{ title: string }>('post/get', { id })
98
- * return <h1>{data.title}</h1>
1133
+ * import { useFaas } from '@faasjs/react'
1134
+ *
1135
+ * function Profile({ id }: { id: number }) {
1136
+ * const { data, error, loading, reload } = useFaas('/pages/users/get', { id })
1137
+ *
1138
+ * if (loading) return <div>Loading...</div>
1139
+ *
1140
+ * if (error) {
1141
+ * return (
1142
+ * <div>
1143
+ * <div>Load failed: {error.message}</div>
1144
+ * <button type="button" onClick={() => reload()}>
1145
+ * Retry
1146
+ * </button>
1147
+ * </div>
1148
+ * )
1149
+ * }
1150
+ *
1151
+ * return (
1152
+ * <div>
1153
+ * <span>{data.name}</span>
1154
+ * <button type="button" onClick={() => reload()}>
1155
+ * Refresh
1156
+ * </button>
1157
+ * </div>
1158
+ * )
99
1159
  * }
100
1160
  * ```
101
1161
  */
102
- declare function useFaas<PathOrData extends FaasActionUnionType>(action: FaasAction<PathOrData>, defaultParams: FaasParams<PathOrData>, options?: useFaasOptions<PathOrData>): FaasDataInjection<PathOrData>;
103
-
1162
+ declare function useFaas<PathOrData extends FaasActionUnionType$1>(action: FaasAction$1<PathOrData>, defaultParams: FaasParams$1<PathOrData>, options?: useFaasOptions<PathOrData>): FaasDataInjection<PathOrData>;
1163
+ //#endregion
1164
+ //#region src/client.d.ts
1165
+ /**
1166
+ * Factory for per-request error handlers used by {@link FaasReactClient}.
1167
+ *
1168
+ * @param action - Action name that failed.
1169
+ * @param params - Params sent with the failed request.
1170
+ * @returns Async callback invoked with the resulting {@link ResponseError}.
1171
+ */
104
1172
  type OnError = (action: string, params: Record<string, any>) => (res: ResponseError) => Promise<void>;
1173
+ /**
1174
+ * Options for creating a {@link FaasReactClient} instance.
1175
+ */
105
1176
  type FaasReactClientOptions = {
106
- /** @default `/` */
107
- baseUrl?: BaseUrl;
108
- options?: Options;
109
- /**
110
- * @example
111
- * ```ts
112
- * onError: (action, params) => async (res) => {
113
- * console.error(action, params, res)
114
- * }
115
- * ```
116
- */
117
- onError?: OnError;
1177
+ /** @default `/` */baseUrl?: BaseUrl; /** Default request options forwarded to the underlying browser client. */
1178
+ options?: Options;
1179
+ /**
1180
+ * Error hook invoked when `faas` or `useFaas` receives a failed response.
1181
+ *
1182
+ * @example
1183
+ * ```ts
1184
+ * import { ResponseError } from '@faasjs/react'
1185
+ *
1186
+ * onError: (action, params) => async (res) => {
1187
+ * if (res instanceof ResponseError) {
1188
+ * reportErrorToSentry(res, {
1189
+ * tags: { action },
1190
+ * extra: { params },
1191
+ * })
1192
+ * }
1193
+ * }
1194
+ * ```
1195
+ */
1196
+ onError?: OnError;
118
1197
  };
1198
+ /**
1199
+ * Public interface returned by {@link FaasReactClient}.
1200
+ */
119
1201
  type FaasReactClientInstance = {
120
- id: string;
121
- faas: typeof faas;
122
- useFaas: typeof useFaas;
123
- FaasDataWrapper: typeof FaasDataWrapper;
124
- onError?: OnError;
125
- browserClient: FaasBrowserClient;
1202
+ /** Unique identifier inherited from the underlying browser client. */id: string; /** Promise-based request helper bound to the registered base URL. */
1203
+ faas: typeof faas; /** Hook bound to the registered base URL. */
1204
+ useFaas: typeof useFaas; /** Wrapper component bound to the registered base URL. */
1205
+ FaasDataWrapper: typeof FaasDataWrapper; /** Optional error hook shared by `faas` and `useFaas`. */
1206
+ onError?: OnError; /** Underlying browser client used for the actual HTTP requests. */
1207
+ browserClient: FaasBrowserClient;
126
1208
  };
127
1209
  /**
128
- * Before use faas, you should initialize a FaasReactClient.
1210
+ * Create and register a FaasReactClient instance.
129
1211
  *
130
- * @param props.baseUrl {string} The baseUrl of your faas server
131
- * @param props.options {Options} The options of client
132
- * @returns {FaasReactClientInstance}
1212
+ * The returned client is stored by `baseUrl` and becomes the default client
1213
+ * used by helpers such as {@link faas} and {@link useFaas}.
1214
+ *
1215
+ * @param options - Client configuration including base URL, default request options, and error hooks.
1216
+ * @param options.baseUrl - Base URL used to register and route the client instance.
1217
+ * @param options.options - Default browser-client request options forwarded to `FaasBrowserClient`.
1218
+ * @param options.onError - Hook factory used to handle failed `faas` and `useFaas` requests.
1219
+ * See {@link Options} for supported browser-client request fields such as `headers`,
1220
+ * `beforeRequest`, `request`, `baseUrl`, and `stream`.
1221
+ * @returns Registered FaasReactClient instance.
133
1222
  *
134
1223
  * @example
135
1224
  * ```ts
1225
+ * import { FaasReactClient, ResponseError } from '@faasjs/react'
1226
+ *
136
1227
  * const client = FaasReactClient({
137
- * baseUrl: 'localhost:8080/api/'
1228
+ * baseUrl: 'http://localhost:8080/api/',
1229
+ * onError: (action, params) => async (res) => {
1230
+ * if (res instanceof ResponseError) {
1231
+ * reportErrorToSentry(res, {
1232
+ * tags: { action },
1233
+ * extra: { params },
1234
+ * })
1235
+ * }
1236
+ * },
138
1237
  * })
139
1238
  * ```
140
1239
  */
141
- declare function FaasReactClient({ baseUrl, options, onError }?: FaasReactClientOptions): FaasReactClientInstance;
1240
+ declare function FaasReactClient(options?: FaasReactClientOptions): FaasReactClientInstance;
142
1241
  /**
143
- * Get FaasReactClient instance
1242
+ * Get a registered FaasReactClient instance.
144
1243
  *
145
- * @param host {string} empty string for default host
146
- * @returns {FaasReactClientInstance}
1244
+ * When `host` is omitted, the first registered client is returned. If no client
1245
+ * has been created yet, a default client is initialized automatically.
1246
+ * Use `getClient` only for special cases such as multiple Faas clients with
1247
+ * different base URLs. In normal single-client app code, prefer the default
1248
+ * `faas`, `useFaas`, or `FaasReactClient` setup directly.
1249
+ *
1250
+ * @param host - Registered base URL to look up. Omit it to use the default client.
1251
+ * @returns Registered or newly created FaasReactClient instance.
147
1252
  *
148
1253
  * @example
149
1254
  * ```ts
150
- * getClient()
151
- * // or
152
- * getClient('another-host')
1255
+ * import { FaasReactClient, getClient } from '@faasjs/react'
1256
+ *
1257
+ * FaasReactClient({
1258
+ * baseUrl: 'https://service-a.example.com/api/',
1259
+ * })
1260
+ *
1261
+ * FaasReactClient({
1262
+ * baseUrl: 'https://service-b.example.com/api/',
1263
+ * })
1264
+ *
1265
+ * const client = getClient('https://service-b.example.com/api/')
1266
+ *
1267
+ * await client.faas('/pages/posts/get', { id: 1 })
153
1268
  * ```
154
1269
  */
155
1270
  declare function getClient(host?: string): FaasReactClientInstance;
156
-
1271
+ //#endregion
1272
+ //#region src/constant.d.ts
157
1273
  /**
158
1274
  * Returns a constant value that is created by the given function.
1275
+ *
1276
+ * @template T - Constant value type returned by the initializer.
1277
+ * @param fn - Initializer that runs only once for the current component instance.
1278
+ *
1279
+ * @example
1280
+ * ```tsx
1281
+ * import { useConstant } from '@faasjs/react'
1282
+ *
1283
+ * function Page() {
1284
+ * const requestId = useConstant(() => crypto.randomUUID())
1285
+ *
1286
+ * return <span>{requestId}</span>
1287
+ * }
1288
+ * ```
159
1289
  */
160
1290
  declare function useConstant<T>(fn: () => T): T;
161
- declare namespace useConstant {
162
- var whyDidYouRender: boolean;
163
- }
164
-
1291
+ //#endregion
1292
+ //#region src/ErrorBoundary.d.ts
1293
+ /**
1294
+ * Props for the {@link ErrorBoundary} component.
1295
+ */
165
1296
  interface ErrorBoundaryProps {
166
- children?: ReactNode;
167
- onError?: (error: Error | null, info: any) => void;
168
- errorChildren?: ReactElement<ErrorChildrenProps>;
1297
+ /** Descendant elements protected by the boundary. */
1298
+ children?: ReactNode;
1299
+ /** Callback invoked after a descendant throws during rendering or lifecycle work. */
1300
+ onError?: (error: Error | null, info: any) => void;
1301
+ /** Custom fallback element cloned with captured error details. */
1302
+ errorChildren?: ReactElement<ErrorChildrenProps>;
169
1303
  }
1304
+ /**
1305
+ * Props injected into a custom error fallback element.
1306
+ */
170
1307
  type ErrorChildrenProps = {
171
- error?: Error;
172
- info?: any;
173
- errorMessage?: string;
174
- errorDescription?: string;
1308
+ /** Captured error instance. */error?: Error; /** React component stack metadata for the captured error. */
1309
+ info?: any; /** Stringified error message shown by the default fallback. */
1310
+ errorMessage?: string; /** Component stack description shown by the default fallback. */
1311
+ errorDescription?: string;
175
1312
  };
1313
+ /**
1314
+ * React error boundary with an optional custom fallback element.
1315
+ *
1316
+ * The boundary renders its children until a descendant throws. After that it
1317
+ * either clones `errorChildren` with injected error details or renders a simple
1318
+ * built-in fallback.
1319
+ *
1320
+ * @example
1321
+ * ```tsx
1322
+ * import { ErrorBoundary } from '@faasjs/react'
1323
+ *
1324
+ * function Fallback({ errorMessage }: { errorMessage?: string }) {
1325
+ * return <div>{errorMessage}</div>
1326
+ * }
1327
+ *
1328
+ * <ErrorBoundary errorChildren={<Fallback />}>
1329
+ * <DangerousWidget />
1330
+ * </ErrorBoundary>
1331
+ * ```
1332
+ */
176
1333
  declare class ErrorBoundary extends Component<ErrorBoundaryProps, {
177
- error?: Error;
178
- info?: {
179
- componentStack?: string;
180
- };
1334
+ error: Error | null;
1335
+ info: ErrorInfo;
181
1336
  }> {
182
- static displayName: string;
183
- static whyDidYouRender: boolean;
184
- constructor(props: ErrorBoundaryProps);
185
- componentDidCatch(error: Error | null, info: any): void;
186
- render(): string | number | bigint | boolean | react_jsx_runtime.JSX.Element | Iterable<ReactNode> | Promise<string | number | bigint | boolean | react.ReactPortal | ReactElement<unknown, string | react.JSXElementConstructor<any>> | Iterable<ReactNode>>;
1337
+ /**
1338
+ * Stable display name used by React DevTools.
1339
+ */
1340
+ static displayName: string;
1341
+ /**
1342
+ * Create an error boundary with empty error state.
1343
+ *
1344
+ * @param props - Boundary props.
1345
+ * @param props.children - Descendant elements protected by the boundary.
1346
+ * @param props.onError - Callback invoked after a render error is captured.
1347
+ * @param props.errorChildren - Custom fallback element that receives error details.
1348
+ */
1349
+ constructor(props: ErrorBoundaryProps);
1350
+ /**
1351
+ * Capture rendering errors from descendant components.
1352
+ *
1353
+ * @param error - Caught render error.
1354
+ * @param info - React component stack metadata.
1355
+ */
1356
+ componentDidCatch(error: Error, info: ErrorInfo): void;
1357
+ /**
1358
+ * Render children or the configured fallback for the captured error.
1359
+ */
1360
+ render(): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | _$react.ReactPortal | ReactElement<unknown, string | _$react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | _$react_jsx_runtime0.JSX.Element | null;
187
1361
  }
188
-
1362
+ //#endregion
1363
+ //#region src/equal.d.ts
189
1364
  /**
190
1365
  * Compares two values for deep equality.
191
1366
  *
@@ -196,6 +1371,14 @@ declare class ErrorBoundary extends Component<ErrorBoundaryProps, {
196
1371
  * @param a - The first value to compare.
197
1372
  * @param b - The second value to compare.
198
1373
  * @returns `true` if the values are deeply equal, `false` otherwise.
1374
+ *
1375
+ * @example
1376
+ * ```ts
1377
+ * import { equal } from '@faasjs/react'
1378
+ *
1379
+ * equal({ page: 1, filters: ['a'] }, { page: 1, filters: ['a'] }) // true
1380
+ * equal({ page: 1 }, { page: 2 }) // false
1381
+ * ```
199
1382
  */
200
1383
  declare function equal(a: any, b: any): boolean;
201
1384
  /**
@@ -203,6 +1386,17 @@ declare function equal(a: any, b: any): boolean;
203
1386
  *
204
1387
  * @param value - The value to be memoized.
205
1388
  * @returns The memoized value.
1389
+ *
1390
+ * @example
1391
+ * ```tsx
1392
+ * import { useEqualMemoize } from '@faasjs/react'
1393
+ *
1394
+ * function Filters({ filters }: { filters: Record<string, any> }) {
1395
+ * const memoizedFilters = useEqualMemoize(filters)
1396
+ *
1397
+ * return <pre>{JSON.stringify(memoizedFilters)}</pre>
1398
+ * }
1399
+ * ```
206
1400
  */
207
1401
  declare function useEqualMemoize(value: any): any;
208
1402
  /**
@@ -211,232 +1405,89 @@ declare function useEqualMemoize(value: any): any;
211
1405
  * @param callback - The effect callback function to run.
212
1406
  * @param dependencies - The list of dependencies for the effect.
213
1407
  * @returns The result of the `useEffect` hook with memoized dependencies.
1408
+ *
1409
+ * @example
1410
+ * ```tsx
1411
+ * import { useEqualEffect } from '@faasjs/react'
1412
+ *
1413
+ * function Page({ filters }: { filters: Record<string, any> }) {
1414
+ * useEqualEffect(() => {
1415
+ * console.log('filters changed', filters)
1416
+ * }, [filters])
1417
+ *
1418
+ * return null
1419
+ * }
1420
+ * ```
214
1421
  */
215
1422
  declare function useEqualEffect(callback: React.EffectCallback, dependencies: any[]): void;
216
1423
  /**
217
1424
  * Custom hook that works like `useMemo` but uses deep comparison on dependencies.
218
1425
  *
1426
+ * @template T - Memoized value type returned by the callback.
1427
+ *
219
1428
  * @param callback - The callback function to run.
220
1429
  * @param dependencies - The list of dependencies.
221
1430
  * @returns The result of the `useMemo` hook with memoized dependencies.
1431
+ *
1432
+ * @example
1433
+ * ```tsx
1434
+ * import { useEqualMemo } from '@faasjs/react'
1435
+ *
1436
+ * function Page({ filters }: { filters: Record<string, any> }) {
1437
+ * const queryString = useEqualMemo(() => JSON.stringify(filters), [filters])
1438
+ *
1439
+ * return <span>{queryString}</span>
1440
+ * }
1441
+ * ```
222
1442
  */
223
1443
  declare function useEqualMemo<T>(callback: () => T, dependencies: any[]): T;
224
1444
  /**
225
1445
  * Custom hook that works like `useCallback` but uses deep comparison on dependencies.
226
1446
  *
1447
+ * @template T - Callback signature to memoize.
1448
+ *
227
1449
  * @param callback - The callback function to run.
228
1450
  * @param dependencies - The list of dependencies.
229
1451
  * @returns The result of the `useCallback` hook with memoized dependencies.
230
- */
231
- declare function useEqualCallback<T extends (...args: any[]) => any>(callback: T, dependencies: any[]): T;
232
-
233
- /**
234
- * Props for the FormButtonElement component.
235
- *
236
- * @property {React.ReactNode} [children] - The content to be displayed inside the button.
237
- * @property {boolean} disabled - Indicates whether the button is disabled.
238
- * @property {() => Promise<void>} submit - A function to be called when the button is clicked, which returns a promise.
239
- */
240
- type FormButtonElementProps = {
241
- children?: React.ReactNode;
242
- submitting: boolean;
243
- submit: () => Promise<void>;
244
- };
245
-
246
- /**
247
- * Props for the Form Input Element component.
248
1452
  *
249
- * @property {string} name - The name of the input element.
250
- * @property {any} value - The current value of the input element.
251
- * @property {(value: any) => void} onChange - Callback function to handle changes to the input value.
252
- */
253
- type FormInputElementProps = {
254
- name: string;
255
- value: any;
256
- onChange: (value: any) => void;
257
- };
258
-
259
- /**
260
- * Props for the FormLabelElement component.
261
- *
262
- * @typedef {Object} FormLabelElementProps
263
- * @property {string} name - The name of the form element.
264
- * @property {ReactNode} [title] - Optional title for the form element.
265
- * @property {ReactNode} [description] - Optional description for the form element.
266
- * @property {Error} [error] - Optional error associated with the form element.
267
- * @property {ReactNode} children - The child elements, typically an input element.
268
- */
269
- type FormLabelElementProps = {
270
- name: string;
271
- title?: ReactNode;
272
- description?: ReactNode;
273
- error?: Error;
274
- /** as Input element */
275
- children: ReactNode;
276
- };
277
-
278
- /**
279
- * Represents the types of form elements used in the form.
280
- *
281
- * @typedef {Object} FormElementTypes
282
- * @property {ComponentType<FormLabelElementProps>} Label - The component type for the form label element.
283
- * @property {ComponentType<FormInputElementProps>} Input - The component type for the form input element.
284
- * @property {ComponentType<FormButtonElementProps>} Button - The component type for the form button element.
285
- */
286
- type FormElementTypes = {
287
- Label: ComponentType<FormLabelElementProps>;
288
- Input: ComponentType<FormInputElementProps>;
289
- Button: ComponentType<FormButtonElementProps>;
290
- };
291
- declare const FormDefaultElements: FormElementTypes;
292
-
293
- declare const FormDefaultLang: {
294
- submit: string;
295
- required: string;
296
- string: string;
297
- number: string;
298
- };
299
- type FormLang = typeof FormDefaultLang;
300
-
301
- /**
302
- * A type representing a form validation rule.
303
- *
304
- * @template Options - The type of the options that can be passed to the rule.
305
- *
306
- * @param value - The value to be validated.
307
- * @param options - Optional. Additional options that can be used in the validation.
308
- * @param lang - Optional. The language settings that can be used in the validation.
1453
+ * @example
1454
+ * ```tsx
1455
+ * import { useEqualCallback } from '@faasjs/react'
309
1456
  *
310
- * @returns A promise that resolves if the validation is successful, or rejects with an error if the validation fails.
1457
+ * function Search({ filters }: { filters: Record<string, any> }) {
1458
+ * const handleSubmit = useEqualCallback(() => {
1459
+ * console.log(filters)
1460
+ * }, [filters])
311
1461
  *
312
- * @example
313
- * ```ts
314
- * async function required(value: any, options: boolean, lang?: FormLang) {
315
- * if (value === null || value === undefined || value === '' || Number.isNaN(value))
316
- * throw Error(lang?.required)
1462
+ * return <button onClick={handleSubmit}>Search</button>
317
1463
  * }
318
1464
  * ```
319
1465
  */
320
- type FormRule<Options = any> = (value: any, options?: Options, lang?: FormLang) => Promise<void>;
321
- type InferRuleOption<T> = T extends (value: any, options: infer O, lang?: FormLang) => Promise<void> ? O : never;
322
- /**
323
- * A type representing a set of form validation rules.
324
- *
325
- * @typedef {Record<string, FormRule>} FormRules
326
- *
327
- * Each key in the record represents the name of a form field, and the corresponding value is a `FormRule` object that defines the validation rules for that field.
328
- */
329
- type FormRules = Record<string, FormRule>;
330
- type InferFormRulesOptions<T> = {
331
- [K in keyof T]: InferRuleOption<T[K]>;
332
- };
333
- /**
334
- * Default validation rules for a form.
335
- *
336
- * @constant
337
- * @type {FormRules}
338
- */
339
- declare const FormDefaultRules: FormRules;
340
- type FormDefaultRulesOptions = InferFormRulesOptions<typeof FormDefaultRules>;
341
- declare function validValues(rules: FormRules, items: FormItemProps[], values: Record<string, any>, lang: FormLang): Promise<Record<string, Error>>;
342
-
343
- type InferFormInputProps<T extends ComponentType<FormInputElementProps> | JSXElementConstructor<any>> = T extends ComponentType<FormInputElementProps> ? Omit<ComponentProps<T>, 'name' | 'value' | 'onChange'> : Omit<ComponentProps<T>, 'name' | 'value'>;
344
- type FormInputProps<FormElements extends FormElementTypes = FormElementTypes> = {
345
- Input?: ComponentType<FormInputElementProps>;
346
- props?: InferFormInputProps<FormElements['Input']>;
347
- };
348
-
349
- type FormItemName = string;
350
- type FormItemProps<FormElements extends FormElementTypes = FormElementTypes, FormRulesOptions extends Record<string, any> = FormDefaultRulesOptions> = {
351
- name: FormItemName;
352
- label?: Omit<FormLabelElementProps, 'name' | 'children'> & {
353
- Label?: ComponentType<FormLabelElementProps>;
354
- };
355
- input?: FormInputProps<FormElements>;
356
- rules?: FormRulesOptions;
357
- };
358
- declare function FormItem(props: FormItemProps): react_jsx_runtime.JSX.Element;
359
- declare namespace FormItem {
360
- var displayName: string;
361
- var whyDidYouRender: boolean;
362
- }
363
-
364
- type FormProps<Values extends Record<string, any> = Record<string, any>, FormElements extends FormElementTypes = FormElementTypes, Rules extends FormRules = typeof FormDefaultRules> = {
365
- items: FormItemProps<FormElements, InferFormRulesOptions<Rules>>[];
366
- onSubmit?: (values: Values) => Promise<void>;
367
- Elements?: Partial<FormElements>;
368
- lang?: Partial<FormLang>;
369
- defaultValues?: Values;
370
- rules?: typeof FormDefaultRules & Rules;
371
- };
1466
+ declare function useEqualCallback<T extends (...args: any[]) => any>(callback: T, dependencies: any[]): T;
1467
+ //#endregion
1468
+ //#region src/OptionalWrapper.d.ts
372
1469
  /**
373
- * FormContainer component is a wrapper that provides context and state management for form elements.
374
- * It initializes form states such as values, errors, submitting status, elements, language, and rules.
375
- *
376
- * @template Values - The type of form values, defaults to Record<string, any>.
377
- * @template FormElements - The type of form elements, defaults to FormElementTypes.
378
- * @template Rules - The type of form rules, defaults to FormDefaultRules.
379
- *
380
- * @param {FormProps<Values, FormElements, Rules>} props - The properties for the FormContainer component.
381
- * @param {Values} props.defaultValues - The default values for the form fields.
382
- * @param {FormElements} props.Elements - The form elements to be used in the form.
383
- * @param {Rules} props.rules - The validation rules for the form fields.
384
- * @param {FormLang} props.lang - The language settings for the form.
385
- * @param {Partial<FormContextProps>} props - Additional properties for the form context.
1470
+ * Props for the {@link OptionalWrapper} helper component.
386
1471
  *
387
- * @returns {JSX.Element} The FormContainer component.
388
- *
389
- * @example
390
- * ```tsx
391
- * import { Form } from '@faasjs/react'
392
- *
393
- * function MyForm() {
394
- * return <Form
395
- * items={[
396
- * { name: 'name' },
397
- * ]}
398
- * />
399
- * }
400
- * ```
1472
+ * @template TWrapper - Wrapper component type used when `condition` is true.
401
1473
  */
402
- declare function FormContainer<Values extends Record<string, any> = Record<string, any>, FormElements extends FormElementTypes = FormElementTypes, Rules extends FormRules = typeof FormDefaultRules>({ defaultValues, Elements, rules, lang, items, ...props }: FormProps<Values, FormElements, Rules>): react_jsx_runtime.JSX.Element;
403
- declare namespace FormContainer {
404
- var displayName: string;
405
- var whyDidYouRender: boolean;
406
- }
407
-
408
- type FormContextProps<Values extends Record<string, any> = Record<string, any>, FormElements extends FormElementTypes = FormElementTypes, Rules extends FormRules = typeof FormDefaultRules> = {
409
- items: FormItemProps<FormElements, InferFormRulesOptions<Rules>>[];
410
- onSubmit: (values: Values) => Promise<void>;
411
- Elements: FormElementTypes;
412
- lang: FormLang;
413
- rules: typeof FormDefaultRules & Rules;
414
- submitting: boolean;
415
- setSubmitting: Dispatch<SetStateAction<boolean>>;
416
- values: Values;
417
- setValues: Dispatch<SetStateAction<Values>>;
418
- errors: Record<string, Error>;
419
- setErrors: Dispatch<SetStateAction<Record<string, Error>>>;
420
- valuesRef: RefObject<Values>;
421
- };
422
- declare const FormContextProvider: <NewT extends FormContextProps<Record<string, any>, FormElementTypes, FormRules> = FormContextProps<Record<string, any>, FormElementTypes, FormRules>>(props: {
423
- value?: Partial<NewT>;
424
- children: react.ReactNode;
425
- memo?: true | any[];
426
- initializeStates?: Partial<NewT>;
427
- }) => react.ReactNode;
428
- declare const useFormContext: <NewT extends FormContextProps<Record<string, any>, FormElementTypes, FormRules> = FormContextProps<Record<string, any>, FormElementTypes, FormRules>>() => Readonly<NewT>;
429
-
430
1474
  type OptionalWrapperProps<TWrapper extends ComponentType<{
431
- children: ReactNode;
1475
+ children: ReactNode;
432
1476
  }> = any> = {
433
- condition: boolean;
434
- Wrapper: TWrapper;
435
- wrapperProps?: ComponentProps<TWrapper>;
436
- children: ReactNode;
1477
+ /** When `true`, render `children` inside `Wrapper`. */condition: boolean; /** Wrapper component used when `condition` passes. */
1478
+ Wrapper: TWrapper; /** Props forwarded to `Wrapper` together with `children`. */
1479
+ wrapperProps?: ComponentProps<TWrapper>; /** Content rendered directly or inside the wrapper. */
1480
+ children: ReactNode;
437
1481
  };
438
1482
  /**
439
- * A wrapper component that conditionally wraps its children with a provided wrapper component.
1483
+ * Conditionally wrap children with another component.
1484
+ *
1485
+ * @param props - Wrapper condition, wrapper component, and child content.
1486
+ * @param props.condition - When `true`, wrap children with `Wrapper`.
1487
+ * @param props.Wrapper - Component used as the wrapper when the condition passes.
1488
+ * @param props.wrapperProps - Props forwarded to the wrapper component.
1489
+ * @param props.children - Content rendered directly or inside the wrapper.
1490
+ * @returns Wrapped children or the original children when `condition` is false.
440
1491
  *
441
1492
  * @example
442
1493
  * ```tsx
@@ -453,14 +1504,22 @@ type OptionalWrapperProps<TWrapper extends ComponentType<{
453
1504
  * )
454
1505
  * ```
455
1506
  */
456
- declare const OptionalWrapper: React.FC<OptionalWrapperProps> & {
457
- whyDidYouRender: boolean;
458
- };
459
-
1507
+ declare function OptionalWrapper(props: OptionalWrapperProps): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | _$react.ReactPortal | _$react.ReactElement<unknown, string | _$react.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | _$react_jsx_runtime0.JSX.Element | null | undefined;
1508
+ declare namespace OptionalWrapper {
1509
+ var displayName: string;
1510
+ }
1511
+ //#endregion
1512
+ //#region src/splittingContext.d.ts
460
1513
  /**
461
- * Creates a splitting context with the given default value.
1514
+ * Create a context whose keys can be consumed independently.
1515
+ *
1516
+ * `createSplittingContext` returns a `Provider` and a `use` hook. Each key in
1517
+ * the provided shape is backed by a separate React context so readers only
1518
+ * subscribe to the values they access.
462
1519
  *
463
- * @param defaultValue The default value of the splitting context.
1520
+ * @template T - Context value shape exposed by the provider and hook.
1521
+ * @param defaultValue - Default value map or key list used to create split contexts.
1522
+ * @returns Provider and hook helpers for the split context.
464
1523
  *
465
1524
  * @example
466
1525
  * ```tsx
@@ -500,125 +1559,213 @@ declare const OptionalWrapper: React.FC<OptionalWrapperProps> & {
500
1559
  * }
501
1560
  * ```
502
1561
  */
503
- declare function createSplittingContext<T extends Record<string, any>>(defaultValue: {
504
- [K in keyof T]: Partial<T[K]> | null;
505
- } | (keyof T)[]): {
1562
+ declare function createSplittingContext<T extends Record<string, any>>(defaultValue: { [K in keyof T]: Partial<T[K]> | null } | (keyof T)[]): {
1563
+ /**
1564
+ * The provider component of the splitting context.
1565
+ *
1566
+ * @see https://faasjs.com/doc/react/functions/createSplittingContext.html#provider
1567
+ *
1568
+ * @example
1569
+ * ```tsx
1570
+ * function App() {
1571
+ * const [value, setValue] = useState(0)
1572
+ *
1573
+ * return (
1574
+ * <Provider value={{ value, setValue }}>
1575
+ * <ReaderComponent />
1576
+ * <WriterComponent />
1577
+ * </Provider>
1578
+ * )
1579
+ * }
1580
+ * ```
1581
+ */
1582
+ Provider<NewT extends T = T>(this: void, props: {
1583
+ /** Partial context value supplied by the caller. */value?: Partial<NewT>; /** Descendant elements that should read from the split contexts. */
1584
+ children: ReactNode;
506
1585
  /**
507
- * The provider component of the splitting context.
508
- *
509
- * @see https://faasjs.com/doc/react/functions/createSplittingContext.html#provider
1586
+ * Memoization mode for `children`.
510
1587
  *
511
- * @example
512
- * ```tsx
513
- * function App() {
514
- * const [value, setValue] = useState(0)
1588
+ * @default false
515
1589
  *
516
- * return (
517
- * <Provider value={{ value, setValue }}>
518
- * <ReaderComponent />
519
- * <WriterComponent />
520
- * </Provider>
521
- * )
522
- * }
523
- * ```
1590
+ * Pass `true` to memoize without dependencies or an array to control the
1591
+ * deep-equality dependency list manually.
524
1592
  */
525
- Provider<NewT extends T = T>(props: {
526
- value?: Partial<NewT>;
527
- children: ReactNode;
528
- /**
529
- * Whether to use memoization for the children.
530
- *
531
- * @default false
532
- *
533
- * `true`: memoize the children without dependencies.
534
- * `any[]`: memoize the children with specific dependencies.
535
- */
536
- memo?: true | any[];
537
- /**
538
- * An object containing initial values that will be automatically converted into state variables using {@link useSplittingState} hook. Each property will create both a state value and its setter following the pattern: value/setValue.
539
- *
540
- * @example
541
- * ```tsx
542
- * <Provider
543
- * initializeStates={{
544
- * value: 0,
545
- * }}
546
- * >
547
- * // Children will have access to: value, setValue
548
- * </Provider>
549
- */
550
- initializeStates?: Partial<NewT>;
551
- }): ReactNode;
1593
+ memo?: true | any[];
552
1594
  /**
553
- * The hook to use the splitting context.
1595
+ * Initial values converted into local state via `useSplittingState`.
554
1596
  *
555
- * @see https://faasjs.com/doc/react/functions/createSplittingContext.html#use
1597
+ * Each key produces both a state value and its matching setter using the
1598
+ * `value` / `setValue` naming convention.
556
1599
  *
557
1600
  * @example
558
1601
  * ```tsx
559
- * function ChildComponent() {
560
- * const { value, setValue } = use()
1602
+ * <Provider initializeStates={{ value: 0 }}>
1603
+ * <Child />
1604
+ * </Provider>
561
1605
  *
562
- * return <div>{value}<button onClick={() => setValue(1)}>change value</button></div>
563
- * }
1606
+ * // `Child` can read `value` and `setValue`
564
1607
  * ```
565
1608
  */
566
- use: <NewT extends T = T>() => Readonly<NewT>;
567
- };
568
-
569
- type SetPrefix<S extends string | number | symbol> = S extends string ? S extends `${infer First}${infer Rest}` ? `set${Capitalize<First>}${Rest}` : never : never;
570
- type StateSetters<T> = {
571
- [K in keyof T as SetPrefix<K>]: Dispatch<SetStateAction<T[K]>>;
1609
+ initializeStates?: Partial<NewT>;
1610
+ }): ReactNode;
1611
+ /**
1612
+ * Hook used to read values from the splitting context.
1613
+ *
1614
+ * @see https://faasjs.com/doc/react/functions/createSplittingContext.html#use
1615
+ *
1616
+ * @example
1617
+ * ```tsx
1618
+ * function ChildComponent() {
1619
+ * const { value, setValue } = use()
1620
+ *
1621
+ * return <div>{value}<button onClick={() => setValue(1)}>change value</button></div>
1622
+ * }
1623
+ * ```
1624
+ */
1625
+ use: <NewT extends T = T>(this: void) => Readonly<NewT>;
572
1626
  };
1627
+ //#endregion
1628
+ //#region src/splittingState.d.ts
1629
+ /**
1630
+ * Setter map generated by {@link useSplittingState} for each state key.
1631
+ *
1632
+ * @template T - Object shape whose keys receive generated setter functions.
1633
+ */
1634
+ type StateSetters<T> = { [K in keyof T as K extends string ? K extends `${infer First}${infer Rest}` ? `set${Capitalize<First>}${Rest}` : never : never]: Dispatch<SetStateAction<T[K]>> };
1635
+ /**
1636
+ * State object returned by {@link useSplittingState}, including generated setters.
1637
+ *
1638
+ * @template T - Object shape returned together with generated setter functions.
1639
+ */
573
1640
  type StatesWithSetters<T> = T & StateSetters<T>;
574
1641
  /**
575
- * A hook that initializes and splits state variables and their corresponding setters.
1642
+ * Create local state entries and matching setters for each key in an object.
576
1643
  *
577
1644
  * @template T - A generic type that extends a record with string keys and any values.
578
- * @param {T} initialStates - An object containing the initial states.
1645
+ * @param initialStates - Object whose keys become state values and `setXxx` setters.
1646
+ * @returns Object containing the original keys plus generated setter functions.
579
1647
  *
580
1648
  * @example
581
1649
  * ```tsx
582
1650
  * function Counter() {
583
- * const { count, setCount, name, setName } = useSplittingState({ count: 0, name: 'John' });
1651
+ * const { count, setCount, name, setName } = useSplittingState({ count: 0, name: 'John' })
584
1652
  *
585
1653
  * return <>{name}: {count}</>
586
1654
  * }
587
1655
  * ```
588
1656
  */
589
1657
  declare function useSplittingState<T extends Record<string, unknown>>(initialStates: T): StatesWithSetters<T>;
590
-
1658
+ //#endregion
1659
+ //#region src/useFaasStream.d.ts
1660
+ /**
1661
+ * Options that customize the {@link useFaasStream} request lifecycle.
1662
+ */
1663
+ type UseFaasStreamOptions = SharedUseFaasOptions<Record<string, any>, string>;
1664
+ /**
1665
+ * Result returned by {@link useFaasStream}.
1666
+ */
1667
+ type UseFaasStreamResult = {
1668
+ /** Action path currently associated with the stream request. */action: string; /** Params used for the most recent request attempt. */
1669
+ params: Record<string, any>; /** Whether the hook is currently waiting for stream data. */
1670
+ loading: boolean; /** Number of times `reload()` has triggered a new request. */
1671
+ reloadTimes: number; /** Accumulated text decoded from the stream response. */
1672
+ data: string; /** Last error raised while opening or consuming the stream. */
1673
+ error: any; /** Trigger a new streaming request with optional params. */
1674
+ reload: (params?: Record<string, any>) => Promise<string>; /** Controlled or internal setter for the accumulated text. */
1675
+ setData: React.Dispatch<React.SetStateAction<string>>; /** Setter for the loading flag. */
1676
+ setLoading: React.Dispatch<React.SetStateAction<boolean>>; /** Setter for the last stream error. */
1677
+ setError: React.Dispatch<React.SetStateAction<any>>;
1678
+ };
1679
+ /**
1680
+ * Stream a FaasJS response into React state.
1681
+ *
1682
+ * `useFaasStream` is the default hook for streaming FaasJS responses in React.
1683
+ * It sends a streaming request, appends decoded text chunks to `data`, and
1684
+ * exposes reload helpers for retrying the same action.
1685
+ *
1686
+ * @param action - Action path to invoke.
1687
+ * @param defaultParams - Params used for the initial request and future reloads.
1688
+ * @param options - Optional hook configuration such as controlled data, debounce, and skip logic.
1689
+ * @param options.params - Request params override used without mutating the hook's stored params state.
1690
+ * @param options.data - Controlled stream text used instead of the hook's internal state.
1691
+ * @param options.setData - Controlled setter used instead of the hook's internal `setData`.
1692
+ * @param options.skip - Boolean or predicate that suppresses the automatic request until `reload()` runs.
1693
+ * @param options.debounce - Milliseconds to wait before sending the latest request.
1694
+ * @param options.baseUrl - Base URL override used for this hook instance.
1695
+ * @returns Streaming request state and helper methods described by {@link UseFaasStreamResult}.
1696
+ *
1697
+ * @example
1698
+ * ```tsx
1699
+ * import { useFaasStream } from '@faasjs/react'
1700
+ *
1701
+ * function Chat({ prompt }: { prompt: string }) {
1702
+ * const { data, error, loading, reload } = useFaasStream('/pages/chat/stream', { prompt })
1703
+ *
1704
+ * if (loading) return <div>Streaming...</div>
1705
+ *
1706
+ * if (error) {
1707
+ * return (
1708
+ * <div>
1709
+ * <div>Stream failed: {error.message}</div>
1710
+ * <button type="button" onClick={() => reload()}>
1711
+ * Retry
1712
+ * </button>
1713
+ * </div>
1714
+ * )
1715
+ * }
1716
+ *
1717
+ * return <pre>{data}</pre>
1718
+ * }
1719
+ * ```
1720
+ */
1721
+ declare function useFaasStream(action: string, defaultParams: Record<string, any>, options?: UseFaasStreamOptions): UseFaasStreamResult;
1722
+ //#endregion
1723
+ //#region src/usePrevious.d.ts
591
1724
  /**
592
1725
  * Hook to store the previous value of a state or prop.
593
1726
  *
594
1727
  * @template T - The type of the value.
595
- * @param {T} value - The current value to be stored.
596
- * @returns {T | undefined} - The previous value, or undefined if there is no previous value.
1728
+ * @param value - The current value to track.
1729
+ * @returns Previous value from the prior render, or `undefined` on the first render.
1730
+ *
1731
+ * @example
1732
+ * ```tsx
1733
+ * import { usePrevious } from '@faasjs/react'
1734
+ *
1735
+ * function Counter({ count }: { count: number }) {
1736
+ * const previous = usePrevious(count)
1737
+ *
1738
+ * return <span>{previous} -> {count}</span>
1739
+ * }
1740
+ * ```
597
1741
  */
598
1742
  declare function usePrevious<T = any>(value: T): T | undefined;
599
-
1743
+ //#endregion
1744
+ //#region src/useStateRef.d.ts
600
1745
  /**
601
1746
  * Custom hook that returns a stateful value and a ref to that value.
602
1747
  *
603
1748
  * @template T - The type of the value.
604
- * @param {T} initialValue - The initial value of the state.
605
- * @returns {[T, (value: T) => void, RefObject<T>]} - The stateful value, a function to set the value, and a ref to the value.
1749
+ * @param initialValue - Initial state value. When omitted, state starts as `null`.
1750
+ * @returns Tuple containing the current state, the state setter, and a ref that always points at the latest state.
606
1751
  *
607
1752
  * @example
608
1753
  * ```tsx
609
1754
  * import { useStateRef } from '@faasjs/react'
610
1755
  *
611
1756
  * function MyComponent() {
612
- * const [value, setValue, ref] = useStateRef(0)
613
- *
614
- * return (
615
- * <div>
616
- * <p>Value: {value}</p>
617
- * <button onClick={() => setValue(value + 1)}>Increment</button>
618
- * <button onClick={() => console.log(ref.current)}>Submit</button>
619
- * </div>
620
- * )
1757
+ * const [value, setValue, ref] = useStateRef(0)
1758
+ *
1759
+ * return (
1760
+ * <div>
1761
+ * <p>Value: {value}</p>
1762
+ * <button onClick={() => setValue(value + 1)}>Increment</button>
1763
+ * <button onClick={() => console.log(ref.current)}>Submit</button>
1764
+ * </div>
1765
+ * )
1766
+ * }
1767
+ * ```
621
1768
  */
622
- declare function useStateRef<T = any>(initialValue?: T): [T, Dispatch<SetStateAction<T>>, RefObject<T>];
623
-
624
- export { ErrorBoundary, type ErrorBoundaryProps, type ErrorChildrenProps, type FaasDataInjection, FaasDataWrapper, type FaasDataWrapperProps, type FaasDataWrapperRef, FaasReactClient, type FaasReactClientInstance, type FaasReactClientOptions, FormContainer as Form, type FormButtonElementProps, type FormContextProps, FormContextProvider, FormDefaultElements, FormDefaultLang, FormDefaultRules, type FormDefaultRulesOptions, type FormElementTypes, type FormInputElementProps, FormItem, type FormItemName, type FormItemProps, type FormLabelElementProps, type FormLang, type FormProps, type FormRule, type FormRules, type InferFormRulesOptions, type OnError, OptionalWrapper, type OptionalWrapperProps, createSplittingContext, equal, faas, getClient, useConstant, useEqualCallback, useEqualEffect, useEqualMemo, useEqualMemoize, useFaas, type useFaasOptions, useFormContext, usePrevious, useSplittingState, useStateRef, validValues, withFaasData };
1769
+ declare function useStateRef<T = any>(initialValue?: T): [T | null, Dispatch<SetStateAction<T | null>>, RefObject<T | null>];
1770
+ //#endregion
1771
+ export { BaseUrl, ErrorBoundary, ErrorBoundaryProps, ErrorChildrenProps, type FaasAction, type FaasActionUnionType, FaasBrowserClient, FaasBrowserClientAction, type FaasData, FaasDataInjection, FaasDataWrapper, FaasDataWrapperProps, FaasDataWrapperRef, type FaasParams, FaasReactClient, FaasReactClientInstance, FaasReactClientOptions, MockHandler, OnError, OptionalWrapper, OptionalWrapperProps, Options, Response, ResponseError, ResponseErrorProps, ResponseHeaders, ResponseProps, StateSetters, StatesWithSetters, UseFaasStreamOptions, UseFaasStreamResult, createSplittingContext, equal, faas, generateId, getClient, setMock, useConstant, useEqualCallback, useEqualEffect, useEqualMemo, useEqualMemoize, useFaas, useFaasOptions, useFaasStream, usePrevious, useSplittingState, useStateRef, withFaasData };