@constructive-io/playwright-test 3.13.6 → 3.13.8

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.
Files changed (3) hide show
  1. package/index.d.ts +1 -1
  2. package/package.json +11 -11
  3. package/types.d.ts +2 -2
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { type GraphQLQueryOptions, type GraphQLTestContext, type GetConnectionsInput, type GraphQLResponse, type GraphQLQueryFn, type GraphQLQueryFnObj, type GraphQLQueryUnwrappedFn, type GraphQLQueryUnwrappedFnObj, } from '@constructive-io/graphql-test';
1
+ export { type GetConnectionsInput, type GraphQLQueryFn, type GraphQLQueryFnObj, type GraphQLQueryOptions, type GraphQLQueryUnwrappedFn, type GraphQLQueryUnwrappedFnObj, type GraphQLResponse, type GraphQLTestContext, } from '@constructive-io/graphql-test';
2
2
  export * from './types';
3
3
  export { createScopedTestServer, createTestServer, getTestPool } from './server';
4
4
  export { getConnectionsWithServer, getConnectionsWithServerObject, getConnectionsWithServerUnwrapped } from './get-connections';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructive-io/playwright-test",
3
- "version": "3.13.6",
3
+ "version": "3.13.8",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Constructive Playwright Testing with HTTP server support",
6
6
  "main": "index.js",
@@ -35,17 +35,17 @@
35
35
  "makage": "^0.3.0"
36
36
  },
37
37
  "dependencies": {
38
- "@constructive-io/graphql-dev-server": "^3.12.6",
39
- "@constructive-io/graphql-env": "^3.28.2",
40
- "@constructive-io/graphql-server": "^5.14.6",
41
- "@constructive-io/graphql-test": "^5.10.6",
42
- "@constructive-io/graphql-types": "^3.27.2",
43
- "@pgpmjs/types": "^2.49.2",
38
+ "@constructive-io/graphql-dev-server": "^3.12.8",
39
+ "@constructive-io/graphql-env": "^3.28.3",
40
+ "@constructive-io/graphql-server": "^5.15.1",
41
+ "@constructive-io/graphql-test": "^5.10.8",
42
+ "@constructive-io/graphql-types": "^3.27.3",
43
+ "@pgpmjs/types": "^2.49.3",
44
44
  "express": "^5.2.1",
45
- "graphile-test": "^5.10.6",
45
+ "graphile-test": "^5.10.8",
46
46
  "pg": "^8.21.0",
47
- "pg-cache": "^3.24.2",
48
- "pgsql-test": "^5.9.6"
47
+ "pg-cache": "^3.24.3",
48
+ "pgsql-test": "^5.9.8"
49
49
  },
50
50
  "keywords": [
51
51
  "testing",
@@ -56,5 +56,5 @@
56
56
  "e2e",
57
57
  "integration"
58
58
  ],
59
- "gitHead": "45cd961cf956d2d28e4d09b20db4204982c33593"
59
+ "gitHead": "c20b6be96b39bf71c0e2df0f4b51e05deacd006b"
60
60
  }
package/types.d.ts CHANGED
@@ -1,7 +1,7 @@
1
+ import type { GetConnectionsInput, GraphQLQueryFn, GraphQLQueryFnObj } from '@constructive-io/graphql-test';
2
+ import type { ApiOptions } from '@constructive-io/graphql-types';
1
3
  import type { Server } from 'http';
2
4
  import type { PgTestClient } from 'pgsql-test/test-client';
3
- import type { ApiOptions } from '@constructive-io/graphql-types';
4
- import type { GetConnectionsInput, GraphQLQueryFn, GraphQLQueryFnObj } from '@constructive-io/graphql-test';
5
5
  /**
6
6
  * Options for creating a Playwright test server
7
7
  */