@graphql-mesh/urql-exchange 10.0.2 → 10.0.3

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/cjs/index.js CHANGED
@@ -2,8 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.meshExchange = void 0;
4
4
  const wonka_1 = require("wonka");
5
- const core_1 = require("@urql/core");
6
5
  const utils_1 = require("@graphql-tools/utils");
6
+ const core_1 = require("@urql/core");
7
7
  const ROOT_VALUE = {};
8
8
  const makeExecuteSource = (operation, options) => {
9
9
  const operationFn = operation.kind === 'subscription' ? options.subscribe : options.execute;
package/esm/index.js CHANGED
@@ -1,6 +1,6 @@
1
- import { pipe, share, filter, takeUntil, mergeMap, merge, make } from 'wonka';
2
- import { makeResult, makeErrorResult, mergeResultPatch, getOperationName, } from '@urql/core';
1
+ import { filter, make, merge, mergeMap, pipe, share, takeUntil } from 'wonka';
3
2
  import { isAsyncIterable } from '@graphql-tools/utils';
3
+ import { getOperationName, makeErrorResult, makeResult, mergeResultPatch, } from '@urql/core';
4
4
  const ROOT_VALUE = {};
5
5
  const makeExecuteSource = (operation, options) => {
6
6
  const operationFn = operation.kind === 'subscription' ? options.subscribe : options.execute;
package/package.json CHANGED
@@ -1,17 +1,16 @@
1
1
  {
2
2
  "name": "@graphql-mesh/urql-exchange",
3
- "version": "10.0.2",
3
+ "version": "10.0.3",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
- "@graphql-mesh/runtime": "^0.46.8",
6
+ "@graphql-mesh/runtime": "^0.46.21",
7
+ "@graphql-tools/utils": "^9.2.1",
7
8
  "@urql/core": "^2.4.3",
8
9
  "graphql": "^15.2.0 || ^16.0.0",
10
+ "tslib": "^2.4.0",
9
11
  "wonka": "^4.0.15"
10
12
  },
11
- "dependencies": {
12
- "@graphql-tools/utils": "9.2.1",
13
- "tslib": "^2.4.0"
14
- },
13
+ "dependencies": {},
15
14
  "repository": {
16
15
  "type": "git",
17
16
  "url": "Urigo/graphql-mesh",
@@ -1,5 +1,5 @@
1
- import { Exchange } from '@urql/core';
2
1
  import { ExecuteMeshFn, SubscribeMeshFn } from '@graphql-mesh/runtime';
2
+ import { Exchange } from '@urql/core';
3
3
  export interface MeshExchangeOptions {
4
4
  execute: ExecuteMeshFn;
5
5
  subscribe?: SubscribeMeshFn;
@@ -1,5 +1,5 @@
1
- import { Exchange } from '@urql/core';
2
1
  import { ExecuteMeshFn, SubscribeMeshFn } from '@graphql-mesh/runtime';
2
+ import { Exchange } from '@urql/core';
3
3
  export interface MeshExchangeOptions {
4
4
  execute: ExecuteMeshFn;
5
5
  subscribe?: SubscribeMeshFn;