houdini-svelte 1.1.4 → 1.1.5

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.
@@ -95937,7 +95937,7 @@ var Config = class {
95937
95937
  this.logLevel = (logLevel || LogLevel.Summary).toLowerCase();
95938
95938
  this.defaultFragmentMasking = defaultFragmentMasking;
95939
95939
  this.routesDir = join2(this.projectRoot, "src", "routes");
95940
- this.schemaPollInterval = watchSchema?.interval ?? 2e3;
95940
+ this.schemaPollInterval = watchSchema?.interval === void 0 ? 2e3 : watchSchema.interval;
95941
95941
  this.schemaPollHeaders = watchSchema?.headers ?? {};
95942
95942
  this.rootDir = join2(this.projectRoot, "$houdini");
95943
95943
  this.#fragmentVariableMaps = {};
@@ -95930,7 +95930,7 @@ var Config = class {
95930
95930
  this.logLevel = (logLevel || LogLevel.Summary).toLowerCase();
95931
95931
  this.defaultFragmentMasking = defaultFragmentMasking;
95932
95932
  this.routesDir = join2(this.projectRoot, "src", "routes");
95933
- this.schemaPollInterval = watchSchema?.interval ?? 2e3;
95933
+ this.schemaPollInterval = watchSchema?.interval === void 0 ? 2e3 : watchSchema.interval;
95934
95934
  this.schemaPollHeaders = watchSchema?.headers ?? {};
95935
95935
  this.rootDir = join2(this.projectRoot, "$houdini");
95936
95936
  this.#fragmentVariableMaps = {};
@@ -149971,15 +149971,15 @@ function inlineFragmentArgs({
149971
149971
  definitions: localDefinitions
149972
149972
  };
149973
149973
  }
149974
- if (node2.name.value !== newFragmentName) {
149975
- return {
149976
- ...node2,
149977
- name: {
149978
- kind: "Name",
149979
- value: newFragmentName
149980
- }
149981
- };
149982
- }
149974
+ }
149975
+ if (node2.name.value !== newFragmentName) {
149976
+ return {
149977
+ ...node2,
149978
+ name: {
149979
+ kind: "Name",
149980
+ value: newFragmentName
149981
+ }
149982
+ };
149983
149983
  }
149984
149984
  },
149985
149985
  Argument(node2) {
@@ -210899,7 +210899,7 @@ var Config = class {
210899
210899
  this.logLevel = (logLevel || LogLevel2.Summary).toLowerCase();
210900
210900
  this.defaultFragmentMasking = defaultFragmentMasking;
210901
210901
  this.routesDir = join4(this.projectRoot, "src", "routes");
210902
- this.schemaPollInterval = watchSchema?.interval ?? 2e3;
210902
+ this.schemaPollInterval = watchSchema?.interval === void 0 ? 2e3 : watchSchema.interval;
210903
210903
  this.schemaPollHeaders = watchSchema?.headers ?? {};
210904
210904
  this.rootDir = join4(this.projectRoot, "$houdini");
210905
210905
  this.#fragmentVariableMaps = {};
@@ -149958,15 +149958,15 @@ function inlineFragmentArgs({
149958
149958
  definitions: localDefinitions
149959
149959
  };
149960
149960
  }
149961
- if (node2.name.value !== newFragmentName) {
149962
- return {
149963
- ...node2,
149964
- name: {
149965
- kind: "Name",
149966
- value: newFragmentName
149967
- }
149968
- };
149969
- }
149961
+ }
149962
+ if (node2.name.value !== newFragmentName) {
149963
+ return {
149964
+ ...node2,
149965
+ name: {
149966
+ kind: "Name",
149967
+ value: newFragmentName
149968
+ }
149969
+ };
149970
149970
  }
149971
149971
  },
149972
149972
  Argument(node2) {
@@ -210885,7 +210885,7 @@ var Config = class {
210885
210885
  this.logLevel = (logLevel || LogLevel2.Summary).toLowerCase();
210886
210886
  this.defaultFragmentMasking = defaultFragmentMasking;
210887
210887
  this.routesDir = join4(this.projectRoot, "src", "routes");
210888
- this.schemaPollInterval = watchSchema?.interval ?? 2e3;
210888
+ this.schemaPollInterval = watchSchema?.interval === void 0 ? 2e3 : watchSchema.interval;
210889
210889
  this.schemaPollHeaders = watchSchema?.headers ?? {};
210890
210890
  this.rootDir = join4(this.projectRoot, "$houdini");
210891
210891
  this.#fragmentVariableMaps = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-svelte",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "The svelte plugin for houdini",
5
5
  "keywords": [
6
6
  "typescript",
@@ -32,7 +32,7 @@
32
32
  "rollup": "^3.7.4",
33
33
  "svelte": "^3.57.0",
34
34
  "vite": "^4.1.1",
35
- "houdini": "^1.1.4"
35
+ "houdini": "^1.1.5"
36
36
  },
37
37
  "files": [
38
38
  "build"