@sphereon/ssi-sdk.data-store 0.36.1-next.150 → 0.36.1-next.152

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-next.150+f7fd1f3f",
3
+ "version": "0.36.1-next.152+c5211aa3",
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-next.150+f7fd1f3f",
32
- "@sphereon/ssi-sdk-ext.identifier-resolution": "0.36.1-next.150+f7fd1f3f",
33
- "@sphereon/ssi-sdk.agent-config": "0.36.1-next.150+f7fd1f3f",
34
- "@sphereon/ssi-sdk.core": "0.36.1-next.150+f7fd1f3f",
35
- "@sphereon/ssi-sdk.data-store-types": "0.36.1-next.150+f7fd1f3f",
36
- "@sphereon/ssi-types": "0.36.1-next.150+f7fd1f3f",
31
+ "@sphereon/ssi-sdk-ext.did-utils": "0.36.1-next.152+c5211aa3",
32
+ "@sphereon/ssi-sdk-ext.identifier-resolution": "0.36.1-next.152+c5211aa3",
33
+ "@sphereon/ssi-sdk.agent-config": "0.36.1-next.152+c5211aa3",
34
+ "@sphereon/ssi-sdk.core": "0.36.1-next.152+c5211aa3",
35
+ "@sphereon/ssi-sdk.data-store-types": "0.36.1-next.152+c5211aa3",
36
+ "@sphereon/ssi-types": "0.36.1-next.152+c5211aa3",
37
37
  "@veramo/core": "4.2.0",
38
38
  "@veramo/data-store": "4.2.0",
39
39
  "@veramo/utils": "4.2.0",
@@ -67,5 +67,5 @@
67
67
  "PostgreSQL",
68
68
  "Contact Store"
69
69
  ],
70
- "gitHead": "f7fd1f3f7e42d569b2695b54aa2587fa4926310d"
70
+ "gitHead": "c5211aa3e329db644e1c62cb6bbd72094b546dbd"
71
71
  }
@@ -526,7 +526,7 @@ export const didAuthConfigFrom = (config: DidAuthConfigEntity): DidAuthConfig =>
526
526
  }
527
527
 
528
528
  export const isOpenIdConfig = (config: NonPersistedConnectionConfig | BaseConfigEntity): config is OpenIdConfig | OpenIdConfigEntity =>
529
- 'clientSecret' in config && 'issuer' in config && 'redirectUrl' in config
529
+ 'clientId' in config && 'issuer' in config && 'redirectUrl' in config
530
530
 
531
531
  export const isDidAuthConfig = (config: NonPersistedConnectionConfig | BaseConfigEntity): config is DidAuthConfig | DidAuthConfigEntity =>
532
532
  ('identifier' in config || ('idOpts' in config && 'identifier' in config.idOpts)) && 'redirectUrl' in config && 'sessionId' in config