@omnigraph/neo4j 0.11.5 → 0.11.6-alpha-20250820154906-c854a2b54847db114256951ae911aaf49b5e67a0

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,13 +1,13 @@
1
1
  {
2
2
  "name": "@omnigraph/neo4j",
3
- "version": "0.11.5",
3
+ "version": "0.11.6-alpha-20250820154906-c854a2b54847db114256951ae911aaf49b5e67a0",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "graphql": "*"
7
7
  },
8
8
  "dependencies": {
9
- "@graphql-mesh/transport-neo4j": "^0.10.5",
10
- "@graphql-mesh/types": "^0.104.7",
9
+ "@graphql-mesh/transport-neo4j": "0.10.6-alpha-20250820154906-c854a2b54847db114256951ae911aaf49b5e67a0",
10
+ "@graphql-mesh/types": "0.104.8-alpha-20250820154906-c854a2b54847db114256951ae911aaf49b5e67a0",
11
11
  "@graphql-tools/delegate": "^10.0.28",
12
12
  "@graphql-tools/schema": "^10.0.5",
13
13
  "@neo4j/introspector": "^5.0.0",
@@ -1,11 +1,11 @@
1
1
  import type { Driver } from 'neo4j-driver';
2
2
  import type { Neo4JAuthOpts } from '@graphql-mesh/transport-neo4j';
3
- import type { Logger, MeshPubSub } from '@graphql-mesh/types';
3
+ import type { HivePubSub, Logger, MeshPubSub } from '@graphql-mesh/types';
4
4
  export interface LoadGraphQLSchemaFromNeo4JOpts {
5
5
  endpoint: string;
6
6
  database?: string;
7
7
  auth?: Neo4JAuthOpts;
8
- pubsub?: MeshPubSub;
8
+ pubsub?: MeshPubSub | HivePubSub;
9
9
  logger?: Logger;
10
10
  driver?: Driver;
11
11
  }
@@ -1,11 +1,11 @@
1
1
  import type { Driver } from 'neo4j-driver';
2
2
  import type { Neo4JAuthOpts } from '@graphql-mesh/transport-neo4j';
3
- import type { Logger, MeshPubSub } from '@graphql-mesh/types';
3
+ import type { HivePubSub, Logger, MeshPubSub } from '@graphql-mesh/types';
4
4
  export interface LoadGraphQLSchemaFromNeo4JOpts {
5
5
  endpoint: string;
6
6
  database?: string;
7
7
  auth?: Neo4JAuthOpts;
8
- pubsub?: MeshPubSub;
8
+ pubsub?: MeshPubSub | HivePubSub;
9
9
  logger?: Logger;
10
10
  driver?: Driver;
11
11
  }