houdini 2.0.0-next.36 → 2.0.0-next.37

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/init.js CHANGED
@@ -472,12 +472,12 @@ async function packageJSON(targetPath, frameworkInfo) {
472
472
  }
473
473
  packageJSON2.devDependencies = {
474
474
  ...packageJSON2.devDependencies,
475
- houdini: "^2.0.0-next.36"
475
+ houdini: "^2.0.0-next.37"
476
476
  };
477
477
  if (frameworkInfo.framework === "svelte" || frameworkInfo.framework === "kit") {
478
478
  packageJSON2.devDependencies = {
479
479
  ...packageJSON2.devDependencies,
480
- "houdini-svelte": "^3.0.0-next.34"
480
+ "houdini-svelte": "^3.0.0-next.35"
481
481
  };
482
482
  } else {
483
483
  throw new Error(`Unmanaged framework: "${JSON.stringify(frameworkInfo)}"`);
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini",
3
- "version": "2.0.0-next.36",
3
+ "version": "2.0.0-next.37",
4
4
  "description": "The disappearing GraphQL clients",
5
5
  "keywords": [
6
6
  "typescript",
@@ -65,6 +65,7 @@ export type ClientPluginContext = {
65
65
  disableWrite?: boolean;
66
66
  disableRead?: boolean;
67
67
  disableSubscriptions?: boolean;
68
+ disablePartial?: boolean;
68
69
  applyUpdates?: string[];
69
70
  serverSideFallback?: boolean;
70
71
  };
@@ -397,7 +397,7 @@ class ClientPluginContextWrapper {
397
397
  const hasChanged = Object.keys(changed).length > 0 || firstInit;
398
398
  if (hasChanged) {
399
399
  const newVariables = {
400
- ...ctx.stuff.inputs?.marshaled,
400
+ ...source.stuff.inputs?.marshaled,
401
401
  ...marshalInputs({
402
402
  artifact,
403
403
  input: changed,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini",
3
- "version": "2.0.0-next.36",
3
+ "version": "2.0.0-next.37",
4
4
  "description": "The disappearing GraphQL clients",
5
5
  "keywords": [
6
6
  "typescript",
@@ -50,7 +50,7 @@
50
50
  "recast": "^0.23.11",
51
51
  "sql.js": "^1.14.1",
52
52
  "ws": "^8.21.0",
53
- "houdini-core": "^2.0.0-next.23"
53
+ "houdini-core": "^2.0.0-next.24"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "graphql": ">=16",