houdini 1.2.11 → 1.2.12
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 +1532 -16156
- package/build/cmd-esm/index.js +1532 -16156
- package/build/codegen/transforms/collectDefinitions.d.ts +1 -1
- package/build/codegen/utils/flattenSelections.d.ts +1 -1
- package/build/codegen-cjs/index.js +294 -14969
- package/build/codegen-esm/index.js +296 -14971
- package/build/lib/config.d.ts +4 -0
- package/build/lib/types.d.ts +1 -1
- package/build/lib-cjs/index.js +1346 -15893
- package/build/lib-esm/index.js +1342 -15893
- package/build/router/conventions.d.ts +1 -0
- package/build/router/index.d.ts +1 -0
- package/build/router/manifest.d.ts +2 -35
- package/build/router/server.d.ts +4 -0
- package/build/router/types.d.ts +2 -1
- package/build/router-cjs/index.js +921 -15538
- package/build/router-esm/index.js +919 -15538
- package/build/runtime/client/documentStore.d.ts +1 -0
- package/build/runtime/client/index.d.ts +14 -2
- package/build/runtime/lib/config.d.ts +19 -0
- package/build/runtime/lib/types.d.ts +39 -0
- package/build/runtime-cjs/client/documentStore.d.ts +1 -0
- package/build/runtime-cjs/client/documentStore.js +42 -2
- package/build/runtime-cjs/client/index.d.ts +14 -2
- package/build/runtime-cjs/client/index.js +8 -2
- package/build/runtime-cjs/lib/config.d.ts +19 -0
- package/build/runtime-cjs/lib/config.js +10 -0
- package/build/runtime-cjs/lib/types.d.ts +39 -0
- package/build/runtime-cjs/router/server.js +1 -1
- package/build/runtime-esm/client/documentStore.d.ts +1 -0
- package/build/runtime-esm/client/documentStore.js +42 -2
- package/build/runtime-esm/client/index.d.ts +14 -2
- package/build/runtime-esm/client/index.js +8 -2
- package/build/runtime-esm/lib/config.d.ts +19 -0
- package/build/runtime-esm/lib/config.js +8 -0
- package/build/runtime-esm/lib/types.d.ts +39 -0
- package/build/runtime-esm/router/server.js +1 -1
- package/build/test-cjs/index.js +317 -14972
- package/build/test-esm/index.js +319 -14974
- package/build/vite-cjs/index.js +1817 -16183
- package/build/vite-esm/index.js +1817 -16183
- package/package.json +2 -1
package/build/lib/config.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare class Config {
|
|
|
9
9
|
#private;
|
|
10
10
|
filepath: string;
|
|
11
11
|
rootDir: string;
|
|
12
|
+
localSchema: boolean;
|
|
12
13
|
projectRoot: string;
|
|
13
14
|
schema: graphql.GraphQLSchema;
|
|
14
15
|
schemaPath?: string;
|
|
@@ -50,6 +51,9 @@ export declare class Config {
|
|
|
50
51
|
get newSchema(): string;
|
|
51
52
|
get artifactDirectory(): string;
|
|
52
53
|
get artifactDirectoryName(): string;
|
|
54
|
+
get sourceDir(): string;
|
|
55
|
+
get localApiDir(): string;
|
|
56
|
+
get localAPIUrl(): string;
|
|
53
57
|
get artifactTypeDirectory(): string;
|
|
54
58
|
get runtimeDirectory(): string;
|
|
55
59
|
get definitionsDirectory(): string;
|
package/build/lib/types.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type graphql from 'graphql';
|
|
1
|
+
import type * as graphql from 'graphql';
|
|
2
2
|
import type * as recast from 'recast';
|
|
3
3
|
import type { CustomPluginOptions, InputOptions, LoadResult, MinimalPluginContext, NormalizedInputOptions, NullValue, ObjectHook, PluginContext, ResolveIdResult, SourceMapInput } from 'rollup';
|
|
4
4
|
import type { ConfigEnv, ResolvedConfig, UserConfig, ViteDevServer } from 'vite';
|