@digitalbazaar/oid4-client 5.2.0 → 5.2.1
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/lib/convert/index.js
CHANGED
|
@@ -92,7 +92,7 @@ export function fromVpr({
|
|
|
92
92
|
const dcql_query = vprGroupsToDcqlQuery({
|
|
93
93
|
groupMap, options: queryFormats.dcql === true ? {} : queryFormats.dcql
|
|
94
94
|
});
|
|
95
|
-
if(dcql_query) {
|
|
95
|
+
if(dcql_query?.credentials) {
|
|
96
96
|
authorizationRequest.dcql_query = dcql_query;
|
|
97
97
|
}
|
|
98
98
|
}
|
|
@@ -286,7 +286,7 @@ function _fromDIDAuthenticationQuery({query, strict = false}) {
|
|
|
286
286
|
};
|
|
287
287
|
// compatibility with legacy cryptosuite
|
|
288
288
|
if(cryptosuites.includes('Ed25519Signature2020')) {
|
|
289
|
-
client_metadata.
|
|
289
|
+
client_metadata.vp_formats_supported.ldp_vc
|
|
290
290
|
.proof_type_values.push('Ed25519Signature2020');
|
|
291
291
|
}
|
|
292
292
|
|
package/lib/query/dcql.js
CHANGED
|
@@ -10,7 +10,7 @@ import jsonpointer from 'json-pointer';
|
|
|
10
10
|
const MDOC_MDL = 'org.iso.18013.5.1.mDL';
|
|
11
11
|
|
|
12
12
|
export function dcqlQueryToVprGroups({dcql_query} = {}) {
|
|
13
|
-
const {credentials} = dcql_query;
|
|
13
|
+
const {credentials = []} = dcql_query;
|
|
14
14
|
let {credential_sets: credentialSets} = dcql_query;
|
|
15
15
|
if(!credentialSets) {
|
|
16
16
|
credentialSets = [{
|
|
@@ -97,7 +97,7 @@ export function vprGroupsToDcqlQuery({groupMap, options = {}} = {}) {
|
|
|
97
97
|
if(credentials.length > 0) {
|
|
98
98
|
dcqlQuery.credentials = credentials;
|
|
99
99
|
}
|
|
100
|
-
if(credentialSets.length > 0) {
|
|
100
|
+
if(credentialSets[0].options?.length > 0) {
|
|
101
101
|
dcqlQuery.credential_sets = credentialSets;
|
|
102
102
|
}
|
|
103
103
|
|
|
@@ -36,16 +36,6 @@ export function inputDescriptorToJsonPointerMap({inputDescriptor} = {}) {
|
|
|
36
36
|
export function vprGroupsToPresentationDefinition({
|
|
37
37
|
groupMap, prefixJwtVcPath
|
|
38
38
|
} = {}) {
|
|
39
|
-
// only a single `QueryByExample` is supported at this time; use last one
|
|
40
|
-
const queryByExample = [...groupMap.values()]
|
|
41
|
-
.filter(g => g.has('QueryByExample'))
|
|
42
|
-
.map(g => g.get('QueryByExample'))
|
|
43
|
-
.at(-1);
|
|
44
|
-
if(!queryByExample) {
|
|
45
|
-
// no presentation definition
|
|
46
|
-
return;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
39
|
const input_descriptors = [];
|
|
50
40
|
const presentationDefinition = {
|
|
51
41
|
id: crypto.randomUUID(),
|
|
@@ -57,7 +47,7 @@ export function vprGroupsToPresentationDefinition({
|
|
|
57
47
|
for(const queries of groups) {
|
|
58
48
|
// only `QueryByExample` is convertible
|
|
59
49
|
const queryByExamples = queries.get('QueryByExample');
|
|
60
|
-
if(!
|
|
50
|
+
if(!queryByExamples) {
|
|
61
51
|
continue;
|
|
62
52
|
}
|
|
63
53
|
|