houdini 1.4.1 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cmd-cjs/index.js +14893 -11130
- package/build/cmd-esm/index.js +14944 -11181
- package/build/codegen/transforms/addFields.d.ts +2 -0
- package/build/codegen/transforms/index.d.ts +1 -1
- package/build/codegen/transforms/paginate.d.ts +1 -1
- package/build/codegen-cjs/index.js +16882 -13123
- package/build/codegen-esm/index.js +17020 -13261
- package/build/lib/fs.d.ts +1 -2
- package/build/lib/graphql.d.ts +2 -2
- package/build/lib/router/server.d.ts +1 -1
- package/build/lib-cjs/index.js +8449 -4657
- package/build/lib-esm/index.js +8442 -4650
- package/build/runtime/lib/types.d.ts +4 -0
- package/build/runtime/router/types.d.ts +1 -1
- package/build/runtime-cjs/lib/types.d.ts +4 -0
- package/build/runtime-cjs/router/types.d.ts +1 -1
- package/build/runtime-esm/lib/types.d.ts +4 -0
- package/build/runtime-esm/router/types.d.ts +1 -1
- package/build/test-cjs/index.js +15630 -11871
- package/build/test-esm/index.js +13620 -9861
- package/build/vite-cjs/index.js +14545 -10776
- package/build/vite-esm/index.js +20017 -16248
- package/package.json +7 -4
- package/build/codegen/transforms/addID.d.ts +0 -2
|
@@ -276,6 +276,10 @@ export type FetchParams<_Input> = {
|
|
|
276
276
|
* You can do what you want with it!
|
|
277
277
|
*/
|
|
278
278
|
metadata?: App.Metadata;
|
|
279
|
+
/**
|
|
280
|
+
* An abort controller to abort the operation
|
|
281
|
+
*/
|
|
282
|
+
abortController?: AbortController;
|
|
279
283
|
};
|
|
280
284
|
export type FetchFn<_Data extends GraphQLObject, _Input = any> = (params?: FetchParams<_Input>) => Promise<QueryResult<_Data, _Input>>;
|
|
281
285
|
export type CursorHandlers<_Data extends GraphQLObject, _Input> = {
|
|
@@ -276,6 +276,10 @@ export type FetchParams<_Input> = {
|
|
|
276
276
|
* You can do what you want with it!
|
|
277
277
|
*/
|
|
278
278
|
metadata?: App.Metadata;
|
|
279
|
+
/**
|
|
280
|
+
* An abort controller to abort the operation
|
|
281
|
+
*/
|
|
282
|
+
abortController?: AbortController;
|
|
279
283
|
};
|
|
280
284
|
export type FetchFn<_Data extends GraphQLObject, _Input = any> = (params?: FetchParams<_Input>) => Promise<QueryResult<_Data, _Input>>;
|
|
281
285
|
export type CursorHandlers<_Data extends GraphQLObject, _Input> = {
|
|
@@ -276,6 +276,10 @@ export type FetchParams<_Input> = {
|
|
|
276
276
|
* You can do what you want with it!
|
|
277
277
|
*/
|
|
278
278
|
metadata?: App.Metadata;
|
|
279
|
+
/**
|
|
280
|
+
* An abort controller to abort the operation
|
|
281
|
+
*/
|
|
282
|
+
abortController?: AbortController;
|
|
279
283
|
};
|
|
280
284
|
export type FetchFn<_Data extends GraphQLObject, _Input = any> = (params?: FetchParams<_Input>) => Promise<QueryResult<_Data, _Input>>;
|
|
281
285
|
export type CursorHandlers<_Data extends GraphQLObject, _Input> = {
|