@gapi/core 1.8.170 → 1.8.171

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/dist/index.d.ts CHANGED
@@ -16,9 +16,10 @@ export * from './enum-to-gql';
16
16
  export * from '@rxdi/core';
17
17
  export * from '@rxdi/graphql';
18
18
  export * from '@rxdi/graphql-pubsub';
19
+ export { withFilter } from '@rxdi/graphql-rabbitmq-subscriptions';
19
20
  export * from '@rxdi/hapi';
20
21
  export * from 'graphql';
21
22
  export { buildSchema, ExecutionResult, extendSchema, isSpecifiedScalarType, } from 'graphql';
22
23
  export * from 'graphql-geojson';
23
- export { FilterFn, PubSubEngine, PubSubOptions, ResolverFn, withFilter, } from 'graphql-subscriptions';
24
+ export { FilterFn, PubSubEngine, PubSubOptions, ResolverFn, } from 'graphql-subscriptions';
24
25
  export * from 'graphql-tools';
package/dist/index.js CHANGED
@@ -21,7 +21,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
21
21
  };
22
22
  var CoreModule_1;
23
23
  Object.defineProperty(exports, "__esModule", { value: true });
24
- exports.withFilter = exports.PubSubEngine = exports.isSpecifiedScalarType = exports.extendSchema = exports.buildSchema = exports.CoreModule = void 0;
24
+ exports.PubSubEngine = exports.isSpecifiedScalarType = exports.extendSchema = exports.buildSchema = exports.withFilter = exports.CoreModule = void 0;
25
25
  const daemon_1 = require("@gapi/daemon");
26
26
  const core_1 = require("@rxdi/core");
27
27
  const graphql_1 = require("@rxdi/graphql");
@@ -83,6 +83,8 @@ __exportStar(require("./enum-to-gql"), exports);
83
83
  __exportStar(require("@rxdi/core"), exports);
84
84
  __exportStar(require("@rxdi/graphql"), exports);
85
85
  __exportStar(require("@rxdi/graphql-pubsub"), exports);
86
+ var graphql_rabbitmq_subscriptions_1 = require("@rxdi/graphql-rabbitmq-subscriptions");
87
+ Object.defineProperty(exports, "withFilter", { enumerable: true, get: function () { return graphql_rabbitmq_subscriptions_1.withFilter; } });
86
88
  __exportStar(require("@rxdi/hapi"), exports);
87
89
  __exportStar(require("graphql"), exports);
88
90
  var graphql_2 = require("graphql");
@@ -92,5 +94,4 @@ Object.defineProperty(exports, "isSpecifiedScalarType", { enumerable: true, get:
92
94
  __exportStar(require("graphql-geojson"), exports);
93
95
  var graphql_subscriptions_1 = require("graphql-subscriptions");
94
96
  Object.defineProperty(exports, "PubSubEngine", { enumerable: true, get: function () { return graphql_subscriptions_1.PubSubEngine; } });
95
- Object.defineProperty(exports, "withFilter", { enumerable: true, get: function () { return graphql_subscriptions_1.withFilter; } });
96
97
  __exportStar(require("graphql-tools"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gapi/core",
3
- "version": "1.8.170",
3
+ "version": "1.8.171",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/Stradivario/gapi.git"
@@ -25,7 +25,7 @@
25
25
  "url": "https://github.com/Stradivario/gapi/issues"
26
26
  },
27
27
  "dependencies": {
28
- "@gapi/daemon": "^1.8.169",
28
+ "@gapi/daemon": "^1.8.170",
29
29
  "@rxdi/core": "^0.7.194",
30
30
  "@rxdi/graphql": "^0.7.194",
31
31
  "@rxdi/graphql-pubsub": "^0.7.194",
package/src/index.ts CHANGED
@@ -74,6 +74,7 @@ export * from './enum-to-gql';
74
74
  export * from '@rxdi/core';
75
75
  export * from '@rxdi/graphql';
76
76
  export * from '@rxdi/graphql-pubsub';
77
+ export { withFilter } from '@rxdi/graphql-rabbitmq-subscriptions';
77
78
  export * from '@rxdi/hapi';
78
79
  export * from 'graphql';
79
80
  export {
@@ -88,6 +89,5 @@ export {
88
89
  PubSubEngine,
89
90
  PubSubOptions,
90
91
  ResolverFn,
91
- withFilter,
92
92
  } from 'graphql-subscriptions';
93
93
  export * from 'graphql-tools';