houdini-svelte 1.0.0-next.11 → 1.0.0-next.13

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.
@@ -181957,7 +181957,7 @@ import type { ${query.name}$input } from '${path_exports.relative(filepath, path
181957
181957
  ` + typeFile + `
181958
181958
  export type ${config4.variableFunctionName(
181959
181959
  query.name
181960
- )} = <_Props = ${prop_type}>(args: { props: _Props }) => FragmentQueryVars$input
181960
+ )} = <_Props extends ${prop_type}>(args: { props: _Props }) => ${query.name}$input
181961
181961
  `;
181962
181962
  }
181963
181963
  }
@@ -181951,7 +181951,7 @@ import type { ${query.name}$input } from '${path_exports.relative(filepath, path
181951
181951
  ` + typeFile + `
181952
181952
  export type ${config4.variableFunctionName(
181953
181953
  query.name
181954
- )} = <_Props = ${prop_type}>(args: { props: _Props }) => FragmentQueryVars$input
181954
+ )} = <_Props extends ${prop_type}>(args: { props: _Props }) => ${query.name}$input
181955
181955
  `;
181956
181956
  }
181957
181957
  }
@@ -79,7 +79,8 @@ This will result in duplicate queries. If you are trying to ensure there is alwa
79
79
  variables: params.variables,
80
80
  metadata: params.metadata,
81
81
  session: context.session,
82
- policy: import_types.CachePolicy.CacheOnly
82
+ policy: import_types.CachePolicy.CacheOnly,
83
+ silenceEcho: true
83
84
  });
84
85
  }
85
86
  const request = this.observer.send({
@@ -49,7 +49,8 @@ This will result in duplicate queries. If you are trying to ensure there is alwa
49
49
  variables: params.variables,
50
50
  metadata: params.metadata,
51
51
  session: context.session,
52
- policy: CachePolicy.CacheOnly
52
+ policy: CachePolicy.CacheOnly,
53
+ silenceEcho: true
53
54
  });
54
55
  }
55
56
  const request = this.observer.send({
@@ -144739,7 +144739,13 @@ var FieldCollection = class {
144739
144739
  if (fragment2.selection.size === 0) {
144740
144740
  return [];
144741
144741
  }
144742
- fragment2.astNode.selectionSet.selections = fragment2.selection.toSelectionSet();
144742
+ fragment2.astNode = {
144743
+ ...fragment2.astNode,
144744
+ selectionSet: {
144745
+ ...fragment2.astNode.selectionSet,
144746
+ selections: fragment2.selection.toSelectionSet()
144747
+ }
144748
+ };
144743
144749
  return [fragment2.astNode];
144744
144750
  }).concat(
144745
144751
  Object.values(this.fields).map((field) => {
@@ -295631,7 +295637,7 @@ import type { ${query.name}$input } from '${path_exports.relative(filepath, path
295631
295637
  ` + typeFile + `
295632
295638
  export type ${config5.variableFunctionName(
295633
295639
  query.name
295634
- )} = <_Props = ${prop_type}>(args: { props: _Props }) => FragmentQueryVars$input
295640
+ )} = <_Props extends ${prop_type}>(args: { props: _Props }) => ${query.name}$input
295635
295641
  `;
295636
295642
  }
295637
295643
  }
@@ -144730,7 +144730,13 @@ var FieldCollection = class {
144730
144730
  if (fragment2.selection.size === 0) {
144731
144731
  return [];
144732
144732
  }
144733
- fragment2.astNode.selectionSet.selections = fragment2.selection.toSelectionSet();
144733
+ fragment2.astNode = {
144734
+ ...fragment2.astNode,
144735
+ selectionSet: {
144736
+ ...fragment2.astNode.selectionSet,
144737
+ selections: fragment2.selection.toSelectionSet()
144738
+ }
144739
+ };
144734
144740
  return [fragment2.astNode];
144735
144741
  }).concat(
144736
144742
  Object.values(this.fields).map((field) => {
@@ -295620,7 +295626,7 @@ import type { ${query.name}$input } from '${path_exports.relative(filepath, path
295620
295626
  ` + typeFile + `
295621
295627
  export type ${config5.variableFunctionName(
295622
295628
  query.name
295623
- )} = <_Props = ${prop_type}>(args: { props: _Props }) => FragmentQueryVars$input
295629
+ )} = <_Props extends ${prop_type}>(args: { props: _Props }) => ${query.name}$input
295624
295630
  `;
295625
295631
  }
295626
295632
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-svelte",
3
- "version": "1.0.0-next.11",
3
+ "version": "1.0.0-next.13",
4
4
  "description": "The svelte plugin for houdini",
5
5
  "keywords": [
6
6
  "typescript",
@@ -31,7 +31,7 @@
31
31
  "recast": "^0.23.1",
32
32
  "svelte": "^3.55.1",
33
33
  "vite": "^4.0.4",
34
- "houdini": "^1.0.0-next.11"
34
+ "houdini": "^1.0.0-next.13"
35
35
  },
36
36
  "files": [
37
37
  "build"