@graphql-tools/utils 8.13.0 → 8.13.1-alpha-20221029182104-81fd182d

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphql-tools/utils",
3
- "version": "8.13.0",
3
+ "version": "8.13.1-alpha-20221029182104-81fd182d",
4
4
  "description": "Common package containing utils and types for GraphQL tools",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
@@ -1,4 +1,4 @@
1
- import { Maybe } from './types';
1
+ import { Maybe } from './types.cjs';
2
2
  export interface Path {
3
3
  readonly prev: Path | undefined;
4
4
  readonly key: string | number;
package/typings/Path.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Maybe } from './types';
1
+ import { Maybe } from './types.js';
2
2
  export interface Path {
3
3
  readonly prev: Path | undefined;
4
4
  readonly key: string | number;
@@ -1,4 +1,4 @@
1
- import { MaybePromise } from './executor';
1
+ import { MaybePromise } from './executor.cjs';
2
2
  export declare function isIterableObject(value: unknown): value is Iterable<unknown>;
3
3
  export declare function isObjectLike(value: unknown): value is {
4
4
  [key: string]: unknown;
@@ -1,4 +1,4 @@
1
- import { MaybePromise } from './executor';
1
+ import { MaybePromise } from './executor.js';
2
2
  export declare function isIterableObject(value: unknown): value is Iterable<unknown>;
3
3
  export declare function isObjectLike(value: unknown): value is {
4
4
  [key: string]: unknown;