houdini 1.2.0-next.0 → 1.2.0-next.1

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 (35) hide show
  1. package/build/cmd-cjs/index.js +29463 -29542
  2. package/build/cmd-esm/index.js +29463 -29542
  3. package/build/codegen/generators/typescript/loadingState.d.ts +2 -2
  4. package/build/codegen-cjs/index.js +29452 -29529
  5. package/build/codegen-esm/index.js +29452 -29529
  6. package/build/lib/index.d.ts +0 -1
  7. package/build/lib/parse.d.ts +17 -0
  8. package/build/lib-cjs/index.js +29356 -29458
  9. package/build/lib-esm/index.js +29356 -29458
  10. package/build/runtime/cache/cache.d.ts +2 -2
  11. package/build/runtime/cache/stuff.d.ts +1 -4
  12. package/build/runtime/client/documentStore.d.ts +3 -3
  13. package/build/runtime/client/index.d.ts +2 -2
  14. package/build/runtime/lib/pagination.d.ts +4 -4
  15. package/build/runtime/lib/types.d.ts +6 -3
  16. package/build/runtime-cjs/cache/cache.d.ts +2 -2
  17. package/build/runtime-cjs/cache/stuff.d.ts +1 -4
  18. package/build/runtime-cjs/cache/stuff.js +2 -2
  19. package/build/runtime-cjs/client/documentStore.d.ts +3 -3
  20. package/build/runtime-cjs/client/index.d.ts +2 -2
  21. package/build/runtime-cjs/lib/pagination.d.ts +4 -4
  22. package/build/runtime-cjs/lib/types.d.ts +6 -3
  23. package/build/runtime-esm/cache/cache.d.ts +2 -2
  24. package/build/runtime-esm/cache/stuff.d.ts +1 -4
  25. package/build/runtime-esm/cache/stuff.js +2 -2
  26. package/build/runtime-esm/client/documentStore.d.ts +3 -3
  27. package/build/runtime-esm/client/index.d.ts +2 -2
  28. package/build/runtime-esm/lib/pagination.d.ts +4 -4
  29. package/build/runtime-esm/lib/types.d.ts +6 -3
  30. package/build/test-cjs/index.js +29453 -29529
  31. package/build/test-esm/index.js +29453 -29529
  32. package/build/vite-cjs/index.js +29475 -29552
  33. package/build/vite-esm/index.js +29475 -29552
  34. package/package.json +1 -1
  35. package/build/lib/code.d.ts +0 -11
@@ -1,8 +1,8 @@
1
1
  import type { StatementKind, TSTypeKind } from 'ast-types/lib/gen/kinds';
2
- import { type Config, type DocumentArtifact } from '../../../lib';
2
+ import { type Config, type Document } from '../../../lib';
3
3
  export declare function withLoadingState(args: {
4
4
  config: Config;
5
- artifact: DocumentArtifact;
5
+ document: Document;
6
6
  base: TSTypeKind;
7
7
  body: StatementKind[];
8
8
  }): TSTypeKind;