piral-urql 0.14.20 → 0.14.21

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/esm/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Client } from 'urql';
1
+ import type { Client } from 'urql';
2
2
  declare module 'piral-core/lib/types/custom' {
3
3
  interface PiletCustomApi extends PiletGqlApi {
4
4
  }
package/lib/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Client } from 'urql';
1
+ import type { Client } from 'urql';
2
2
  declare module 'piral-core/lib/types/custom' {
3
3
  interface PiletCustomApi extends PiletGqlApi {
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "piral-urql",
3
- "version": "0.14.20",
3
+ "version": "0.14.21",
4
4
  "description": "Plugin for providing a GraphQL client in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "graphql": "14.6.0",
49
- "piral-core": "^0.14.20"
49
+ "piral-core": "^0.14.21"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
@@ -56,5 +56,5 @@
56
56
  "subscriptions-transport-ws": "^0.9.16",
57
57
  "urql": "^1.0.4"
58
58
  },
59
- "gitHead": "9a7775dbe470e2b10d31d40cfa9f286309b43ff9"
59
+ "gitHead": "28d12711859b01c425da9242f08b6a7270cc3686"
60
60
  }
package/src/types.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type {} from 'piral-core';
2
- import { Client } from 'urql';
2
+ import type { Client } from 'urql';
3
3
 
4
4
  declare module 'piral-core/lib/types/custom' {
5
5
  interface PiletCustomApi extends PiletGqlApi {}