houdini 1.0.0-next.19 → 1.0.0-next.20
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 +2220 -66
- package/build/cmd-esm/index.js +2220 -66
- package/build/codegen/generators/runtime/runtimeConfig.d.ts +7 -0
- package/build/codegen-cjs/index.js +2816 -645
- package/build/codegen-esm/index.js +2816 -645
- package/build/lib/types.d.ts +3 -3
- package/build/lib-cjs/index.js +3123 -130
- package/build/lib-esm/index.js +3116 -130
- package/build/runtime/imports/pluginConfig.d.ts +3 -0
- package/build/runtime-cjs/client/index.js +3 -0
- package/build/runtime-cjs/imports/pluginConfig.d.ts +3 -0
- package/build/runtime-cjs/imports/pluginConfig.js +27 -0
- package/build/runtime-cjs/lib/config.js +11 -1
- package/build/runtime-esm/client/index.js +3 -0
- package/build/runtime-esm/imports/pluginConfig.d.ts +3 -0
- package/build/runtime-esm/imports/pluginConfig.js +5 -0
- package/build/runtime-esm/lib/config.js +11 -1
- package/build/test-cjs/index.js +2195 -47
- package/build/test-esm/index.js +2195 -47
- package/build/vite-cjs/index.js +2218 -64
- package/build/vite-esm/index.js +2218 -64
- package/package.json +2 -2
package/build/lib/types.d.ts
CHANGED
|
@@ -105,10 +105,9 @@ export type PluginHooks = {
|
|
|
105
105
|
content: string;
|
|
106
106
|
}) => string>;
|
|
107
107
|
/**
|
|
108
|
-
*
|
|
109
|
-
* that you return will be deeply merged with the previous value.
|
|
108
|
+
* An module with an default export that sets configuration values.
|
|
110
109
|
*/
|
|
111
|
-
config?:
|
|
110
|
+
config?: string;
|
|
112
111
|
/**
|
|
113
112
|
*
|
|
114
113
|
* Add environment variables to houdini's pipeline (ie, for schema polling headers, url, etc.)
|
|
@@ -275,3 +274,4 @@ export type PluginConfig = {
|
|
|
275
274
|
} & Partial<ConfigFile>;
|
|
276
275
|
export * from '../runtime/lib/types';
|
|
277
276
|
export * from '../runtime/lib/config';
|
|
277
|
+
export * from '../runtime/client';
|