@sphereon/ssi-sdk.data-store 0.15.2-next.118 → 0.15.2-next.124

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": "@sphereon/ssi-sdk.data-store",
3
- "version": "0.15.2-next.118+617cad66",
3
+ "version": "0.15.2-next.124+82791b3b",
4
4
  "source": "src/index.ts",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,7 +13,7 @@
13
13
  "typeorm-postgres:migration:run": "pnpm run typeorm -- migration:run -c migration-postgres"
14
14
  },
15
15
  "dependencies": {
16
- "@sphereon/ssi-types": "0.15.2-next.118+617cad66",
16
+ "@sphereon/ssi-types": "0.15.2-next.124+82791b3b",
17
17
  "@veramo/core": "4.2.0",
18
18
  "class-validator": "^0.14.0",
19
19
  "debug": "^4.3.4",
@@ -42,5 +42,5 @@
42
42
  "PostgreSQL",
43
43
  "Contact Store"
44
44
  ],
45
- "gitHead": "617cad666334c27661ee8d5c63c23e136cdd4438"
45
+ "gitHead": "82791b3b2dc645321da6288a3c572157abc7273e"
46
46
  }
@@ -50,7 +50,7 @@ describe('Database entities tests', (): void => {
50
50
  dbConnection = await new DataSource({
51
51
  type: 'sqlite',
52
52
  database: ':memory:',
53
- logging: 'all',
53
+ logging: ['info'],
54
54
  migrationsRun: false,
55
55
  migrations: DataStoreMigrations,
56
56
  synchronize: false,
@@ -28,7 +28,7 @@ describe('Contact store tests', (): void => {
28
28
  dbConnection = await new DataSource({
29
29
  type: 'sqlite',
30
30
  database: ':memory:',
31
- logging: 'all',
31
+ logging: ['info'],
32
32
  migrationsRun: false,
33
33
  migrations: DataStoreMigrations,
34
34
  synchronize: false,
@@ -23,7 +23,7 @@ describe('Database entities tests', (): void => {
23
23
  dbConnection = await new DataSource({
24
24
  type: 'sqlite',
25
25
  database: ':memory:',
26
- //logging: 'all',
26
+ //logging: ['info'],
27
27
  migrationsRun: false,
28
28
  migrations: DataStoreMigrations,
29
29
  synchronize: false,
@@ -34,7 +34,7 @@ describe('Issuance branding store tests', (): void => {
34
34
  dbConnection = await new DataSource({
35
35
  type: 'sqlite',
36
36
  database: ':memory:',
37
- //logging: 'all',
37
+ //logging: ['info'],
38
38
  migrationsRun: false,
39
39
  migrations: DataStoreMigrations,
40
40
  synchronize: false,