houdini 1.2.11 → 1.2.13

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.
Files changed (47) hide show
  1. package/build/cmd/init.d.ts +1 -0
  2. package/build/cmd-cjs/index.js +1563 -16182
  3. package/build/cmd-esm/index.js +1563 -16182
  4. package/build/codegen/transforms/collectDefinitions.d.ts +1 -1
  5. package/build/codegen/utils/flattenSelections.d.ts +1 -1
  6. package/build/codegen-cjs/index.js +298 -14974
  7. package/build/codegen-esm/index.js +300 -14976
  8. package/build/lib/config.d.ts +4 -0
  9. package/build/lib/index.d.ts +1 -1
  10. package/build/{router → lib/router}/conventions.d.ts +2 -1
  11. package/build/{router → lib/router}/index.d.ts +2 -1
  12. package/build/lib/router/manifest.d.ts +12 -0
  13. package/build/lib/router/server.d.ts +4 -0
  14. package/build/{router → lib/router}/types.d.ts +3 -2
  15. package/build/lib/types.d.ts +2 -2
  16. package/build/lib-cjs/index.js +1348 -15895
  17. package/build/lib-esm/index.js +1344 -15895
  18. package/build/runtime/client/documentStore.d.ts +1 -0
  19. package/build/runtime/client/index.d.ts +14 -2
  20. package/build/runtime/lib/config.d.ts +19 -0
  21. package/build/runtime/lib/types.d.ts +39 -0
  22. package/build/runtime-cjs/client/documentStore.d.ts +1 -0
  23. package/build/runtime-cjs/client/documentStore.js +42 -2
  24. package/build/runtime-cjs/client/index.d.ts +14 -2
  25. package/build/runtime-cjs/client/index.js +8 -2
  26. package/build/runtime-cjs/lib/config.d.ts +19 -0
  27. package/build/runtime-cjs/lib/config.js +10 -0
  28. package/build/runtime-cjs/lib/types.d.ts +39 -0
  29. package/build/runtime-cjs/router/server.js +1 -1
  30. package/build/runtime-esm/client/documentStore.d.ts +1 -0
  31. package/build/runtime-esm/client/documentStore.js +42 -2
  32. package/build/runtime-esm/client/index.d.ts +14 -2
  33. package/build/runtime-esm/client/index.js +8 -2
  34. package/build/runtime-esm/lib/config.d.ts +19 -0
  35. package/build/runtime-esm/lib/config.js +8 -0
  36. package/build/runtime-esm/lib/types.d.ts +39 -0
  37. package/build/runtime-esm/router/server.js +1 -1
  38. package/build/test-cjs/index.js +325 -14977
  39. package/build/test-esm/index.js +327 -14979
  40. package/build/vite-cjs/index.js +1825 -16189
  41. package/build/vite-esm/index.js +1825 -16189
  42. package/package.json +2 -9
  43. package/build/router/manifest.d.ts +0 -45
  44. package/build/router-cjs/index.js +0 -72353
  45. package/build/router-cjs/package.json +0 -1
  46. package/build/router-esm/index.js +0 -72345
  47. package/build/router-esm/package.json +0 -1
@@ -1,4 +1,4 @@
1
- import type graphql from 'graphql';
1
+ import type * as graphql from 'graphql';
2
2
  import type { Config, Document } from '../../lib';
3
3
  export type FragmentDependency = {
4
4
  definition: graphql.FragmentDefinitionNode;
@@ -1,4 +1,4 @@
1
- import type graphql from 'graphql';
1
+ import type * as graphql from 'graphql';
2
2
  import type { Config } from '../../lib';
3
3
  export declare function flattenSelections({ config, filepath, selections, fragmentDefinitions, applyFragments, }: {
4
4
  config: Config;