@contember/engine-system-api 1.2.0-alpha.4 → 1.2.0-alpha.7

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@contember/engine-system-api",
3
- "version": "1.2.0-alpha.4",
3
+ "version": "1.2.0-alpha.7",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/src/index.js",
6
6
  "typings": "dist/src/index.d.ts",
@@ -9,22 +9,22 @@
9
9
  "test": "vitest"
10
10
  },
11
11
  "dependencies": {
12
- "@contember/authorization": "^1.2.0-alpha.4",
13
- "@contember/database": "^1.2.0-alpha.4",
14
- "@contember/database-migrations": "^1.2.0-alpha.4",
15
- "@contember/dic": "^1.2.0-alpha.4",
16
- "@contember/engine-common": "^1.2.0-alpha.4",
17
- "@contember/graphql-utils": "^1.2.0-alpha.4",
18
- "@contember/queryable": "^1.2.0-alpha.4",
19
- "@contember/schema": "^1.2.0-alpha.4",
20
- "@contember/schema-migrations": "^1.2.0-alpha.4",
21
- "@contember/schema-utils": "^1.2.0-alpha.4",
12
+ "@contember/authorization": "^1.2.0-alpha.7",
13
+ "@contember/database": "^1.2.0-alpha.7",
14
+ "@contember/database-migrations": "^1.2.0-alpha.7",
15
+ "@contember/dic": "^1.2.0-alpha.7",
16
+ "@contember/engine-common": "^1.2.0-alpha.7",
17
+ "@contember/graphql-utils": "^1.2.0-alpha.7",
18
+ "@contember/queryable": "^1.2.0-alpha.7",
19
+ "@contember/schema": "^1.2.0-alpha.7",
20
+ "@contember/schema-migrations": "^1.2.0-alpha.7",
21
+ "@contember/schema-utils": "^1.2.0-alpha.7",
22
22
  "@graphql-tools/utils": "^8.6.13",
23
23
  "graphql-tag": "^2.12.5"
24
24
  },
25
25
  "devDependencies": {
26
- "@contember/engine-api-tester": "^1.2.0-alpha.4",
27
- "@contember/schema-definition": "^1.2.0-alpha.4",
26
+ "@contember/engine-api-tester": "^1.2.0-alpha.7",
27
+ "@contember/schema-definition": "^1.2.0-alpha.7",
28
28
  "@graphql-codegen/cli": "^2.6.2",
29
29
  "@graphql-codegen/typescript": "^2.5.1",
30
30
  "@graphql-codegen/typescript-operations": "^2.4.2",
@@ -30,7 +30,7 @@ export class ProjectInitializer {
30
30
  // todo: use dbContext
31
31
  logger.group(`Executing system schema migration`)
32
32
  await createDatabaseIfNotExists(project.db, logger.write.bind(logger))
33
- const singleConnection = Connection.createSingle(project.db, {})
33
+ const singleConnection = Connection.createSingle(project.db)
34
34
  await singleConnection.scope(async connection => {
35
35
  const systemSchema = dbContext.client.schema
36
36