@sphereon/ssi-sdk.data-store 0.36.1-feature.SSISDK.82.and.SSISDK.70.37 → 0.36.1-next.39
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.36.1-
|
|
3
|
+
"version": "0.36.1-next.39+f060eb6e",
|
|
4
4
|
"source": "src/index.ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@sphereon/kmp-mdoc-core": "0.2.0-SNAPSHOT.26",
|
|
30
30
|
"@sphereon/pex": "5.0.0-unstable.28",
|
|
31
|
-
"@sphereon/ssi-sdk-ext.did-utils": "0.36.1-
|
|
32
|
-
"@sphereon/ssi-sdk-ext.identifier-resolution": "0.36.1-
|
|
33
|
-
"@sphereon/ssi-sdk.agent-config": "0.36.1-
|
|
34
|
-
"@sphereon/ssi-sdk.core": "0.36.1-
|
|
35
|
-
"@sphereon/ssi-sdk.data-store-types": "0.36.1-
|
|
36
|
-
"@sphereon/ssi-types": "0.36.1-
|
|
31
|
+
"@sphereon/ssi-sdk-ext.did-utils": "0.36.1-next.39+f060eb6e",
|
|
32
|
+
"@sphereon/ssi-sdk-ext.identifier-resolution": "0.36.1-next.39+f060eb6e",
|
|
33
|
+
"@sphereon/ssi-sdk.agent-config": "0.36.1-next.39+f060eb6e",
|
|
34
|
+
"@sphereon/ssi-sdk.core": "0.36.1-next.39+f060eb6e",
|
|
35
|
+
"@sphereon/ssi-sdk.data-store-types": "0.36.1-next.39+f060eb6e",
|
|
36
|
+
"@sphereon/ssi-types": "0.36.1-next.39+f060eb6e",
|
|
37
37
|
"@veramo/core": "4.2.0",
|
|
38
38
|
"@veramo/utils": "4.2.0",
|
|
39
39
|
"blakejs": "^1.2.1",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"PostgreSQL",
|
|
67
67
|
"Contact Store"
|
|
68
68
|
],
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "f060eb6e9930932f91cfbaa7535465d403a6c63c"
|
|
70
70
|
}
|
|
@@ -44,7 +44,7 @@ export class DigitalCredentialStore extends AbstractDigitalCredentialStore {
|
|
|
44
44
|
return Promise.reject(validationError)
|
|
45
45
|
}
|
|
46
46
|
const dcRepo = await this.getRepository()
|
|
47
|
-
const createdResult: DigitalCredentialEntity = await dcRepo.save(credentialEntity
|
|
47
|
+
const createdResult: DigitalCredentialEntity = await dcRepo.save(credentialEntity)
|
|
48
48
|
return Promise.resolve(digitalCredentialFrom(createdResult))
|
|
49
49
|
}
|
|
50
50
|
|
|
@@ -79,10 +79,10 @@ export class DigitalCredentialEntity extends BaseEntity implements DigitalCreden
|
|
|
79
79
|
@Column('text', { name: 'linked_vp_id', nullable: true })
|
|
80
80
|
linkedVpId?: string
|
|
81
81
|
|
|
82
|
-
@
|
|
82
|
+
@Column({ name: 'linked_vp_from', nullable: true, type: typeOrmDateTime() })
|
|
83
83
|
linkedVpFrom?: Date
|
|
84
84
|
|
|
85
|
-
@
|
|
85
|
+
@Column({ name: 'linked_vp_until', nullable: true, type: typeOrmDateTime() })
|
|
86
86
|
linkedVpUntil?: Date
|
|
87
87
|
|
|
88
88
|
@CreateDateColumn({ name: 'created_at', nullable: false, type: typeOrmDateTime() })
|