houdini 1.4.2 → 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
CHANGED
|
@@ -82326,12 +82326,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
82326
82326
|
}
|
|
82327
82327
|
packageJSON2.devDependencies = {
|
|
82328
82328
|
...packageJSON2.devDependencies,
|
|
82329
|
-
houdini: "^1.4.
|
|
82329
|
+
houdini: "^1.4.3"
|
|
82330
82330
|
};
|
|
82331
82331
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
82332
82332
|
packageJSON2.devDependencies = {
|
|
82333
82333
|
...packageJSON2.devDependencies,
|
|
82334
|
-
"houdini-svelte": "^2.1.
|
|
82334
|
+
"houdini-svelte": "^2.1.3"
|
|
82335
82335
|
};
|
|
82336
82336
|
} else {
|
|
82337
82337
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -82331,12 +82331,12 @@ async function packageJSON(targetPath, frameworkInfo) {
|
|
|
82331
82331
|
}
|
|
82332
82332
|
packageJSON2.devDependencies = {
|
|
82333
82333
|
...packageJSON2.devDependencies,
|
|
82334
|
-
houdini: "^1.4.
|
|
82334
|
+
houdini: "^1.4.3"
|
|
82335
82335
|
};
|
|
82336
82336
|
if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
|
|
82337
82337
|
packageJSON2.devDependencies = {
|
|
82338
82338
|
...packageJSON2.devDependencies,
|
|
82339
|
-
"houdini-svelte": "^2.1.
|
|
82339
|
+
"houdini-svelte": "^2.1.3"
|
|
82340
82340
|
};
|
|
82341
82341
|
} else {
|
|
82342
82342
|
throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
|
|
@@ -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> = {
|