piral-urql 0.15.0-alpha.4034 → 0.15.0-alpha.4098

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/index.js CHANGED
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
- (0, tslib_1.__exportStar)(require("./create"), exports);
5
- (0, tslib_1.__exportStar)(require("./pilets"), exports);
6
- (0, tslib_1.__exportStar)(require("./queries"), exports);
7
- (0, tslib_1.__exportStar)(require("./setup"), exports);
8
- (0, tslib_1.__exportStar)(require("./types"), exports);
4
+ tslib_1.__exportStar(require("./create"), exports);
5
+ tslib_1.__exportStar(require("./pilets"), exports);
6
+ tslib_1.__exportStar(require("./queries"), exports);
7
+ tslib_1.__exportStar(require("./setup"), exports);
8
+ tslib_1.__exportStar(require("./types"), exports);
9
9
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,wDAAyB;AACzB,wDAAyB;AACzB,yDAA0B;AAC1B,uDAAwB;AACxB,uDAAwB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,mDAAyB;AACzB,mDAAyB;AACzB,oDAA0B;AAC1B,kDAAwB;AACxB,kDAAwB"}
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.15.0-alpha.4034",
3
+ "version": "0.15.0-alpha.4098",
4
4
  "description": "Plugin for providing a GraphQL client in Piral.",
5
5
  "keywords": [
6
6
  "piral",
@@ -47,20 +47,20 @@
47
47
  "typedoc": "typedoc --json ../../../docs/types/piral-urql.json src --exclude \"src/**/*.test.*\"",
48
48
  "test": "echo \"Error: run tests from root\" && exit 1"
49
49
  },
50
+ "dependencies": {
51
+ "subscriptions-transport-ws": "^0.9.16",
52
+ "urql": "^1.0.4"
53
+ },
50
54
  "devDependencies": {
51
- "@types/react": "^17.0.0",
55
+ "@types/react": "^18.0.0",
52
56
  "graphql": "14.6.0",
53
- "piral-core": "0.15.0-alpha.4034",
54
- "react": "^17.0.1"
57
+ "piral-core": "0.15.0-alpha.4098",
58
+ "react": "^18.0.0"
55
59
  },
56
60
  "peerDependencies": {
57
61
  "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
58
- "piral-core": "0.14.x",
62
+ "piral-core": "0.14.x || 0.15.x",
59
63
  "react": ">=16.8.0"
60
64
  },
61
- "dependencies": {
62
- "subscriptions-transport-ws": "^0.9.16",
63
- "urql": "^1.0.4"
64
- },
65
- "gitHead": "7f9158d7fd10d640ba9c092564275e4cc426dff9"
65
+ "gitHead": "02ef35574b29cc5dd93c515bfdf27dd523893b28"
66
66
  }
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 {}