houdini 1.0.0-next.16 → 1.0.0-next.18
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 +3 -3
- package/build/cmd-esm/index.js +3 -3
- package/build/codegen-cjs/index.js +1 -1
- package/build/codegen-esm/index.js +1 -1
- package/build/runtime/lib/types.d.ts +1 -1
- package/build/runtime-cjs/client/documentStore.js +1 -3
- package/build/runtime-cjs/lib/types.d.ts +1 -1
- package/build/runtime-esm/client/documentStore.js +1 -3
- package/build/runtime-esm/lib/types.d.ts +1 -1
- package/build/test-cjs/index.js +1 -1
- package/build/test-esm/index.js +1 -1
- package/build/vite-cjs/index.js +1 -1
- package/build/vite-esm/index.js +1 -1
- package/package.json +1 -1
package/build/cmd-cjs/index.js
CHANGED
|
@@ -73317,7 +73317,7 @@ function artifactGenerator(stats) {
|
|
|
73317
73317
|
{}
|
|
73318
73318
|
);
|
|
73319
73319
|
if (Object.keys(plugin_data).length > 0) {
|
|
73320
|
-
artifact.
|
|
73320
|
+
artifact.pluginData = plugin_data;
|
|
73321
73321
|
}
|
|
73322
73322
|
if (inputs && inputs.length > 0) {
|
|
73323
73323
|
artifact.input = inputObject(config2, inputs);
|
|
@@ -76513,8 +76513,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
76513
76513
|
}
|
|
76514
76514
|
packageJSON.devDependencies = {
|
|
76515
76515
|
...packageJSON.devDependencies,
|
|
76516
|
-
houdini: "^1.0.0-next.
|
|
76517
|
-
"houdini-svelte": "^1.0.0-next.
|
|
76516
|
+
houdini: "^1.0.0-next.18",
|
|
76517
|
+
"houdini-svelte": "^1.0.0-next.18"
|
|
76518
76518
|
};
|
|
76519
76519
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
|
76520
76520
|
}
|
package/build/cmd-esm/index.js
CHANGED
|
@@ -73322,7 +73322,7 @@ function artifactGenerator(stats) {
|
|
|
73322
73322
|
{}
|
|
73323
73323
|
);
|
|
73324
73324
|
if (Object.keys(plugin_data).length > 0) {
|
|
73325
|
-
artifact.
|
|
73325
|
+
artifact.pluginData = plugin_data;
|
|
73326
73326
|
}
|
|
73327
73327
|
if (inputs && inputs.length > 0) {
|
|
73328
73328
|
artifact.input = inputObject(config2, inputs);
|
|
@@ -76518,8 +76518,8 @@ async function updatePackageJSON(targetPath) {
|
|
|
76518
76518
|
}
|
|
76519
76519
|
packageJSON.devDependencies = {
|
|
76520
76520
|
...packageJSON.devDependencies,
|
|
76521
|
-
houdini: "^1.0.0-next.
|
|
76522
|
-
"houdini-svelte": "^1.0.0-next.
|
|
76521
|
+
houdini: "^1.0.0-next.18",
|
|
76522
|
+
"houdini-svelte": "^1.0.0-next.18"
|
|
76523
76523
|
};
|
|
76524
76524
|
await fs_exports.writeFile(packagePath, JSON.stringify(packageJSON, null, 4));
|
|
76525
76525
|
}
|
|
@@ -57045,7 +57045,7 @@ function artifactGenerator(stats) {
|
|
|
57045
57045
|
{}
|
|
57046
57046
|
);
|
|
57047
57047
|
if (Object.keys(plugin_data).length > 0) {
|
|
57048
|
-
artifact.
|
|
57048
|
+
artifact.pluginData = plugin_data;
|
|
57049
57049
|
}
|
|
57050
57050
|
if (inputs && inputs.length > 0) {
|
|
57051
57051
|
artifact.input = inputObject(config2, inputs);
|
|
@@ -57043,7 +57043,7 @@ function artifactGenerator(stats) {
|
|
|
57043
57043
|
{}
|
|
57044
57044
|
);
|
|
57045
57045
|
if (Object.keys(plugin_data).length > 0) {
|
|
57046
|
-
artifact.
|
|
57046
|
+
artifact.pluginData = plugin_data;
|
|
57047
57047
|
}
|
|
57048
57048
|
if (inputs && inputs.length > 0) {
|
|
57049
57049
|
artifact.input = inputObject(config2, inputs);
|
|
@@ -47,9 +47,7 @@ class DocumentStore extends import_store.Writable {
|
|
|
47
47
|
initialValue,
|
|
48
48
|
fetching
|
|
49
49
|
}) {
|
|
50
|
-
|
|
51
|
-
fetching = artifact.kind === import_types.ArtifactKind.Query;
|
|
52
|
-
}
|
|
50
|
+
fetching ??= artifact.kind === import_types.ArtifactKind.Query;
|
|
53
51
|
const initialState = {
|
|
54
52
|
data: initialValue ?? null,
|
|
55
53
|
errors: null,
|
|
@@ -24,9 +24,7 @@ class DocumentStore extends Writable {
|
|
|
24
24
|
initialValue,
|
|
25
25
|
fetching
|
|
26
26
|
}) {
|
|
27
|
-
|
|
28
|
-
fetching = artifact.kind === ArtifactKind.Query;
|
|
29
|
-
}
|
|
27
|
+
fetching ??= artifact.kind === ArtifactKind.Query;
|
|
30
28
|
const initialState = {
|
|
31
29
|
data: initialValue ?? null,
|
|
32
30
|
errors: null,
|
package/build/test-cjs/index.js
CHANGED
|
@@ -57392,7 +57392,7 @@ function artifactGenerator(stats) {
|
|
|
57392
57392
|
{}
|
|
57393
57393
|
);
|
|
57394
57394
|
if (Object.keys(plugin_data).length > 0) {
|
|
57395
|
-
artifact.
|
|
57395
|
+
artifact.pluginData = plugin_data;
|
|
57396
57396
|
}
|
|
57397
57397
|
if (inputs && inputs.length > 0) {
|
|
57398
57398
|
artifact.input = inputObject(config2, inputs);
|
package/build/test-esm/index.js
CHANGED
|
@@ -57387,7 +57387,7 @@ function artifactGenerator(stats) {
|
|
|
57387
57387
|
{}
|
|
57388
57388
|
);
|
|
57389
57389
|
if (Object.keys(plugin_data).length > 0) {
|
|
57390
|
-
artifact.
|
|
57390
|
+
artifact.pluginData = plugin_data;
|
|
57391
57391
|
}
|
|
57392
57392
|
if (inputs && inputs.length > 0) {
|
|
57393
57393
|
artifact.input = inputObject(config2, inputs);
|
package/build/vite-cjs/index.js
CHANGED
|
@@ -70181,7 +70181,7 @@ function artifactGenerator(stats) {
|
|
|
70181
70181
|
{}
|
|
70182
70182
|
);
|
|
70183
70183
|
if (Object.keys(plugin_data).length > 0) {
|
|
70184
|
-
artifact.
|
|
70184
|
+
artifact.pluginData = plugin_data;
|
|
70185
70185
|
}
|
|
70186
70186
|
if (inputs && inputs.length > 0) {
|
|
70187
70187
|
artifact.input = inputObject(config4, inputs);
|
package/build/vite-esm/index.js
CHANGED
|
@@ -70175,7 +70175,7 @@ function artifactGenerator(stats) {
|
|
|
70175
70175
|
{}
|
|
70176
70176
|
);
|
|
70177
70177
|
if (Object.keys(plugin_data).length > 0) {
|
|
70178
|
-
artifact.
|
|
70178
|
+
artifact.pluginData = plugin_data;
|
|
70179
70179
|
}
|
|
70180
70180
|
if (inputs && inputs.length > 0) {
|
|
70181
70181
|
artifact.input = inputObject(config4, inputs);
|