dcql 0.2.16 → 0.2.18

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.
Files changed (31) hide show
  1. package/dist/src/dcql-parser/dcql-claims-query-result.d.ts +5 -5
  2. package/dist/src/dcql-parser/dcql-claims-query-result.d.ts.map +1 -1
  3. package/dist/src/dcql-parser/dcql-claims-query-result.js +8 -7
  4. package/dist/src/dcql-parser/dcql-claims-query-result.js.map +1 -1
  5. package/dist/src/dcql-presentation/m-dcql-credential-presentation.d.ts +3 -3
  6. package/dist/src/dcql-presentation/m-dcql-presentation-result.d.ts +33 -33
  7. package/dist/src/dcql-query/dcql-query-complex.test.js +54 -481
  8. package/dist/src/dcql-query/dcql-query-complex.test.js.map +1 -1
  9. package/dist/src/dcql-query/dcql-query-with-json-transform.test.d.ts +2 -0
  10. package/dist/src/dcql-query/dcql-query-with-json-transform.test.d.ts.map +1 -0
  11. package/dist/src/dcql-query/dcql-query-with-json-transform.test.js +188 -0
  12. package/dist/src/dcql-query/dcql-query-with-json-transform.test.js.map +1 -0
  13. package/dist/src/dcql-query/dcql-query.test.js +13 -21
  14. package/dist/src/dcql-query/dcql-query.test.js.map +1 -1
  15. package/dist/src/dcql-query/m-dcql-claims-query.d.ts +8 -10
  16. package/dist/src/dcql-query/m-dcql-claims-query.d.ts.map +1 -1
  17. package/dist/src/dcql-query/m-dcql-claims-query.js.map +1 -1
  18. package/dist/src/dcql-query/m-dcql-credential-query.d.ts +34 -34
  19. package/dist/src/dcql-query/m-dcql-credential-query.js +1 -1
  20. package/dist/src/dcql-query/m-dcql-credential-query.js.map +1 -1
  21. package/dist/src/dcql-query/m-dcql-credential-set-query.d.ts +1 -1
  22. package/dist/src/dcql-query/m-dcql-query.d.ts +44 -44
  23. package/dist/src/dcql-query-result/m-dcql-query-result.d.ts +59 -59
  24. package/dist/src/u-dcql-credential.d.ts +6 -6
  25. package/dist/src/u-dcql-credential.js +1 -1
  26. package/dist/src/u-dcql-credential.js.map +1 -1
  27. package/dist/src/u-dcql.d.ts +3 -2
  28. package/dist/src/u-dcql.d.ts.map +1 -1
  29. package/dist/src/u-dcql.js +48 -3
  30. package/dist/src/u-dcql.js.map +1 -1
  31. package/package.json +2 -2
@@ -13,10 +13,10 @@ export declare namespace DcqlQuery {
13
13
  readonly credentials: v.SchemaWithPipe<[v.ArraySchema<v.VariantSchema<"format", [v.ObjectSchema<{
14
14
  readonly format: v.SchemaWithPipe<[v.LiteralSchema<"mso_mdoc", undefined>, v.DescriptionAction<"mso_mdoc", "REQUIRED. A string that specifies the format of the requested Verifiable Credential.">]>;
15
15
  readonly claims: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ObjectSchema<{
16
- readonly id: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, never>, v.DescriptionAction<string | undefined, "A string identifying the particular claim. The value MUST be a non-empty string consisting of alphanumeric, underscore (_) or hyphen (-) characters. Within the particular claims array, the same id MUST NOT be present more than once.">]>;
16
+ readonly id: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, v.DescriptionAction<string | undefined, "A string identifying the particular claim. The value MUST be a non-empty string consisting of alphanumeric, underscore (_) or hyphen (-) characters. Within the particular claims array, the same id MUST NOT be present more than once.">]>;
17
17
  readonly namespace: v.SchemaWithPipe<[v.StringSchema<undefined>, v.DescriptionAction<string, "A string that specifies the namespace of the data element within the mdoc, e.g., org.iso.18013.5.1.">]>;
18
18
  readonly claim_name: v.SchemaWithPipe<[v.StringSchema<undefined>, v.DescriptionAction<string, "A string that specifies the data element identifier of the data element within the provided namespace in the mdoc, e.g., first_name.">]>;
19
- readonly values: v.SchemaWithPipe<[v.OptionalSchema<v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, v.BooleanSchema<undefined>], undefined>, undefined>, never>, v.DescriptionAction<(string | number | boolean)[] | undefined, "An array of strings, integers or boolean values that specifies the expected values of the claim. If the values property is present, the Wallet SHOULD return the claim only if the type and value of the claim both match for at least one of the elements in the array.">]>;
19
+ readonly values: v.SchemaWithPipe<[v.OptionalSchema<v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, v.BooleanSchema<undefined>], undefined>, undefined>, undefined>, v.DescriptionAction<(string | number | boolean)[] | undefined, "An array of strings, integers or boolean values that specifies the expected values of the claim. If the values property is present, the Wallet SHOULD return the claim only if the type and value of the claim both match for at least one of the elements in the array.">]>;
20
20
  }, undefined>, undefined>, v.CustomSchema<[{
21
21
  namespace: string;
22
22
  claim_name: string;
@@ -27,7 +27,7 @@ export declare namespace DcqlQuery {
27
27
  claim_name: string;
28
28
  values?: (string | number | boolean)[] | undefined;
29
29
  id?: string | undefined;
30
- }[]], undefined>]>, never>, v.DescriptionAction<[{
30
+ }[]], undefined>]>, undefined>, v.DescriptionAction<[{
31
31
  namespace: string;
32
32
  claim_name: string;
33
33
  values?: (string | number | boolean)[] | undefined;
@@ -39,18 +39,18 @@ export declare namespace DcqlQuery {
39
39
  id?: string | undefined;
40
40
  }[]] | undefined, "OPTIONAL. A non-empty array of objects as that specifies claims in the requested Credential.">]>;
41
41
  readonly meta: v.SchemaWithPipe<[v.OptionalSchema<v.ObjectSchema<{
42
- readonly doctype_value: v.SchemaWithPipe<[v.OptionalSchema<v.StringSchema<undefined>, never>, v.DescriptionAction<string | undefined, "OPTIONAL. String that specifies an allowed value for the doctype of the requested Verifiable Credential.">]>;
43
- }, undefined>, never>, v.DescriptionAction<{
42
+ readonly doctype_value: v.SchemaWithPipe<[v.OptionalSchema<v.StringSchema<undefined>, undefined>, v.DescriptionAction<string | undefined, "OPTIONAL. String that specifies an allowed value for the doctype of the requested Verifiable Credential.">]>;
43
+ }, undefined>, undefined>, v.DescriptionAction<{
44
44
  doctype_value?: string | undefined;
45
45
  } | undefined, "OPTIONAL. An object defining additional properties requested by the Verifier that apply to the metadata and validity data of the Credential.">]>;
46
46
  readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.DescriptionAction<string, "REQUIRED. A string identifying the Credential in the response and, if provided, the constraints in 'credential_sets'.">]>;
47
- readonly claim_sets: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, undefined>, v.CustomSchema<[string[], ...string[][]], undefined>]>, never>, v.DescriptionAction<[string[], ...string[][]] | undefined, "OPTIONAL. A non-empty array containing arrays of identifiers for elements in 'claims' that specifies which combinations of 'claims' for the Credential are requested.">]>;
47
+ readonly claim_sets: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, undefined>, v.CustomSchema<[string[], ...string[][]], undefined>]>, undefined>, v.DescriptionAction<[string[], ...string[][]] | undefined, "OPTIONAL. A non-empty array containing arrays of identifiers for elements in 'claims' that specifies which combinations of 'claims' for the Credential are requested.">]>;
48
48
  }, undefined>, v.ObjectSchema<{
49
- readonly format: v.SchemaWithPipe<[v.LiteralSchema<"vc+sd-jwt", undefined>, v.DescriptionAction<"vc+sd-jwt", "REQUIRED. A string that specifies the format of the requested Verifiable Credential.">]>;
49
+ readonly format: v.SchemaWithPipe<[v.PicklistSchema<["vc+sd-jwt", "dc+sd-jwt"], undefined>, v.DescriptionAction<"vc+sd-jwt" | "dc+sd-jwt", "REQUIRED. A string that specifies the format of the requested Verifiable Credential.">]>;
50
50
  readonly claims: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ObjectSchema<{
51
- readonly id: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, never>, v.DescriptionAction<string | undefined, "A string identifying the particular claim. The value MUST be a non-empty string consisting of alphanumeric, underscore (_) or hyphen (-) characters. Within the particular claims array, the same id MUST NOT be present more than once.">]>;
51
+ readonly id: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, v.DescriptionAction<string | undefined, "A string identifying the particular claim. The value MUST be a non-empty string consisting of alphanumeric, underscore (_) or hyphen (-) characters. Within the particular claims array, the same id MUST NOT be present more than once.">]>;
52
52
  readonly path: v.SchemaWithPipe<[v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, v.NullSchema<undefined>], undefined>, undefined>, v.DescriptionAction<(string | number | null)[], "A non-empty array representing a claims path pointer that specifies the path to a claim within the Verifiable Credential.">]>;
53
- readonly values: v.SchemaWithPipe<[v.OptionalSchema<v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, v.BooleanSchema<undefined>], undefined>, undefined>, never>, v.DescriptionAction<(string | number | boolean)[] | undefined, "An array of strings, integers or boolean values that specifies the expected values of the claim. If the values property is present, the Wallet SHOULD return the claim only if the type and value of the claim both match for at least one of the elements in the array.">]>;
53
+ readonly values: v.SchemaWithPipe<[v.OptionalSchema<v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, v.BooleanSchema<undefined>], undefined>, undefined>, undefined>, v.DescriptionAction<(string | number | boolean)[] | undefined, "An array of strings, integers or boolean values that specifies the expected values of the claim. If the values property is present, the Wallet SHOULD return the claim only if the type and value of the claim both match for at least one of the elements in the array.">]>;
54
54
  }, undefined>, undefined>, v.CustomSchema<[{
55
55
  path: (string | number | null)[];
56
56
  values?: (string | number | boolean)[] | undefined;
@@ -59,7 +59,7 @@ export declare namespace DcqlQuery {
59
59
  path: (string | number | null)[];
60
60
  values?: (string | number | boolean)[] | undefined;
61
61
  id?: string | undefined;
62
- }[]], undefined>]>, never>, v.DescriptionAction<[{
62
+ }[]], undefined>]>, undefined>, v.DescriptionAction<[{
63
63
  path: (string | number | null)[];
64
64
  values?: (string | number | boolean)[] | undefined;
65
65
  id?: string | undefined;
@@ -69,20 +69,20 @@ export declare namespace DcqlQuery {
69
69
  id?: string | undefined;
70
70
  }[]] | undefined, "OPTIONAL. A non-empty array of objects as that specifies claims in the requested Credential.">]>;
71
71
  readonly meta: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ObjectSchema<{
72
- readonly vct_values: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, never>;
72
+ readonly vct_values: v.OptionalSchema<v.ArraySchema<v.StringSchema<undefined>, undefined>, undefined>;
73
73
  }, undefined>, v.DescriptionAction<{
74
74
  vct_values?: string[] | undefined;
75
- }, "OPTIONAL. An array of strings that specifies allowed values for the type of the requested Verifiable Credential.">]>, never>, v.DescriptionAction<{
75
+ }, "OPTIONAL. An array of strings that specifies allowed values for the type of the requested Verifiable Credential.">]>, undefined>, v.DescriptionAction<{
76
76
  vct_values?: string[] | undefined;
77
77
  } | undefined, "OPTIONAL. An object defining additional properties requested by the Verifier that apply to the metadata and validity data of the Credential.">]>;
78
78
  readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.DescriptionAction<string, "REQUIRED. A string identifying the Credential in the response and, if provided, the constraints in 'credential_sets'.">]>;
79
- readonly claim_sets: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, undefined>, v.CustomSchema<[string[], ...string[][]], undefined>]>, never>, v.DescriptionAction<[string[], ...string[][]] | undefined, "OPTIONAL. A non-empty array containing arrays of identifiers for elements in 'claims' that specifies which combinations of 'claims' for the Credential are requested.">]>;
79
+ readonly claim_sets: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, undefined>, v.CustomSchema<[string[], ...string[][]], undefined>]>, undefined>, v.DescriptionAction<[string[], ...string[][]] | undefined, "OPTIONAL. A non-empty array containing arrays of identifiers for elements in 'claims' that specifies which combinations of 'claims' for the Credential are requested.">]>;
80
80
  }, undefined>, v.ObjectSchema<{
81
81
  readonly format: v.PicklistSchema<["jwt_vc_json", "jwt_vc_json-ld"], undefined>;
82
82
  readonly claims: v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ObjectSchema<{
83
- readonly id: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, never>, v.DescriptionAction<string | undefined, "A string identifying the particular claim. The value MUST be a non-empty string consisting of alphanumeric, underscore (_) or hyphen (-) characters. Within the particular claims array, the same id MUST NOT be present more than once.">]>;
83
+ readonly id: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, v.DescriptionAction<string | undefined, "A string identifying the particular claim. The value MUST be a non-empty string consisting of alphanumeric, underscore (_) or hyphen (-) characters. Within the particular claims array, the same id MUST NOT be present more than once.">]>;
84
84
  readonly path: v.SchemaWithPipe<[v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>, v.MinValueAction<number, 0, undefined>]>, v.NullSchema<undefined>], undefined>, undefined>, v.DescriptionAction<(string | number | null)[], "A non-empty array representing a claims path pointer that specifies the path to a claim within the Verifiable Credential.">]>;
85
- readonly values: v.SchemaWithPipe<[v.OptionalSchema<v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, v.BooleanSchema<undefined>], undefined>, undefined>, never>, v.DescriptionAction<(string | number | boolean)[] | undefined, "An array of strings, integers or boolean values that specifies the expected values of the claim. If the values property is present, the Wallet SHOULD return the claim only if the type and value of the claim both match for at least one of the elements in the array.">]>;
85
+ readonly values: v.SchemaWithPipe<[v.OptionalSchema<v.ArraySchema<v.UnionSchema<[v.StringSchema<undefined>, v.SchemaWithPipe<[v.NumberSchema<undefined>, v.IntegerAction<number, undefined>]>, v.BooleanSchema<undefined>], undefined>, undefined>, undefined>, v.DescriptionAction<(string | number | boolean)[] | undefined, "An array of strings, integers or boolean values that specifies the expected values of the claim. If the values property is present, the Wallet SHOULD return the claim only if the type and value of the claim both match for at least one of the elements in the array.">]>;
86
86
  }, undefined>, undefined>, v.CustomSchema<[{
87
87
  path: (string | number | null)[];
88
88
  values?: (string | number | boolean)[] | undefined;
@@ -91,9 +91,9 @@ export declare namespace DcqlQuery {
91
91
  path: (string | number | null)[];
92
92
  values?: (string | number | boolean)[] | undefined;
93
93
  id?: string | undefined;
94
- }[]], undefined>]>, never>;
94
+ }[]], undefined>]>, undefined>;
95
95
  readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>, v.DescriptionAction<string, "REQUIRED. A string identifying the Credential in the response and, if provided, the constraints in 'credential_sets'.">]>;
96
- readonly claim_sets: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, undefined>, v.CustomSchema<[string[], ...string[][]], undefined>]>, never>, v.DescriptionAction<[string[], ...string[][]] | undefined, "OPTIONAL. A non-empty array containing arrays of identifiers for elements in 'claims' that specifies which combinations of 'claims' for the Credential are requested.">]>;
96
+ readonly claim_sets: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, undefined>, v.CustomSchema<[string[], ...string[][]], undefined>]>, undefined>, v.DescriptionAction<[string[], ...string[][]] | undefined, "OPTIONAL. A non-empty array containing arrays of identifiers for elements in 'claims' that specifies which combinations of 'claims' for the Credential are requested.">]>;
97
97
  }, undefined>], undefined>, undefined>, v.CustomSchema<[{
98
98
  id: string;
99
99
  format: "mso_mdoc";
@@ -114,7 +114,7 @@ export declare namespace DcqlQuery {
114
114
  } | undefined;
115
115
  } | {
116
116
  id: string;
117
- format: "vc+sd-jwt";
117
+ format: "vc+sd-jwt" | "dc+sd-jwt";
118
118
  claims?: [{
119
119
  path: (string | number | null)[];
120
120
  values?: (string | number | boolean)[] | undefined;
@@ -161,7 +161,7 @@ export declare namespace DcqlQuery {
161
161
  } | undefined;
162
162
  } | {
163
163
  id: string;
164
- format: "vc+sd-jwt";
164
+ format: "vc+sd-jwt" | "dc+sd-jwt";
165
165
  claims?: [{
166
166
  path: (string | number | null)[];
167
167
  values?: (string | number | boolean)[] | undefined;
@@ -208,7 +208,7 @@ export declare namespace DcqlQuery {
208
208
  } | undefined;
209
209
  } | {
210
210
  id: string;
211
- format: "vc+sd-jwt";
211
+ format: "vc+sd-jwt" | "dc+sd-jwt";
212
212
  claims?: [{
213
213
  path: (string | number | null)[];
214
214
  values?: (string | number | boolean)[] | undefined;
@@ -255,7 +255,7 @@ export declare namespace DcqlQuery {
255
255
  } | undefined;
256
256
  } | {
257
257
  id: string;
258
- format: "vc+sd-jwt";
258
+ format: "vc+sd-jwt" | "dc+sd-jwt";
259
259
  claims?: [{
260
260
  path: (string | number | null)[];
261
261
  values?: (string | number | boolean)[] | undefined;
@@ -286,7 +286,7 @@ export declare namespace DcqlQuery {
286
286
  readonly credential_sets: v.SchemaWithPipe<[v.OptionalSchema<v.SchemaWithPipe<[v.ArraySchema<v.ObjectSchema<{
287
287
  readonly options: v.SchemaWithPipe<[v.ArraySchema<v.ArraySchema<v.SchemaWithPipe<[v.StringSchema<undefined>, v.RegexAction<string, undefined>]>, undefined>, undefined>, v.CustomSchema<[string[], ...string[][]], undefined>, v.DescriptionAction<[string[], ...string[][]], "REQUIRED. A non-empty array, where each value in the array is a list of Credential Query identifiers representing one set of Credentials that satisfies the use case.">]>;
288
288
  readonly required: v.SchemaWithPipe<[v.OptionalSchema<v.BooleanSchema<undefined>, true>, v.DescriptionAction<boolean, "OPTIONAL. Boolean which indicates whether this set of Credentials is required to satisfy the particular use case at the Verifier. If omitted, the default value is 'true'.">]>;
289
- readonly purpose: v.SchemaWithPipe<[v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>, v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>], undefined>, never>, v.DescriptionAction<string | number | {
289
+ readonly purpose: v.SchemaWithPipe<[v.OptionalSchema<v.UnionSchema<[v.StringSchema<undefined>, v.NumberSchema<undefined>, v.RecordSchema<v.StringSchema<undefined>, v.UnknownSchema, undefined>], undefined>, undefined>, v.DescriptionAction<string | number | {
290
290
  [x: string]: unknown;
291
291
  } | undefined, "OPTIONAL. A string, number or object specifying the purpose of the query.">]>;
292
292
  }, undefined>, undefined>, v.CustomSchema<[{
@@ -301,7 +301,7 @@ export declare namespace DcqlQuery {
301
301
  purpose?: string | number | {
302
302
  [x: string]: unknown;
303
303
  } | undefined;
304
- }[]], undefined>]>, never>, v.DescriptionAction<[{
304
+ }[]], undefined>]>, undefined>, v.DescriptionAction<[{
305
305
  options: [string[], ...string[][]];
306
306
  required: boolean;
307
307
  purpose?: string | number | {
@@ -339,7 +339,7 @@ export declare namespace DcqlQuery {
339
339
  } | undefined;
340
340
  } | {
341
341
  id: string;
342
- format: "vc+sd-jwt";
342
+ format: "vc+sd-jwt" | "dc+sd-jwt";
343
343
  claims?: [{
344
344
  path: (string | number | null)[];
345
345
  values?: (string | number | boolean)[] | undefined;
@@ -386,7 +386,7 @@ export declare namespace DcqlQuery {
386
386
  } | undefined;
387
387
  } | {
388
388
  id: string;
389
- format: "vc+sd-jwt";
389
+ format: "vc+sd-jwt" | "dc+sd-jwt";
390
390
  claims?: [{
391
391
  path: (string | number | null)[];
392
392
  values?: (string | number | boolean)[] | undefined;
@@ -425,7 +425,7 @@ export declare namespace DcqlQuery {
425
425
  };
426
426
  };
427
427
  } | {
428
- credential_format: "vc+sd-jwt";
428
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
429
429
  vct: string;
430
430
  claims: {
431
431
  [x: string]: import("../u-dcql.js").Json;
@@ -450,7 +450,7 @@ export declare namespace DcqlQuery {
450
450
  };
451
451
  };
452
452
  } | {
453
- credential_format: "vc+sd-jwt";
453
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
454
454
  vct: string;
455
455
  claims: {
456
456
  [x: string]: import("../u-dcql.js").Json;
@@ -468,9 +468,9 @@ export declare namespace DcqlQuery {
468
468
  issues?: undefined;
469
469
  } | {
470
470
  output: unknown;
471
+ issues: [unknown, ...unknown[]];
471
472
  success: false;
472
473
  typed: boolean;
473
- issues: [unknown, ...unknown[]];
474
474
  claim_set_index: number | undefined;
475
475
  input_credential_index: number;
476
476
  } | undefined, ...({
@@ -483,7 +483,7 @@ export declare namespace DcqlQuery {
483
483
  };
484
484
  };
485
485
  } | {
486
- credential_format: "vc+sd-jwt";
486
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
487
487
  vct: string;
488
488
  claims: {
489
489
  [x: string]: import("../u-dcql.js").Json;
@@ -501,9 +501,9 @@ export declare namespace DcqlQuery {
501
501
  issues?: undefined;
502
502
  } | {
503
503
  output: unknown;
504
+ issues: [unknown, ...unknown[]];
504
505
  success: false;
505
506
  typed: boolean;
506
- issues: [unknown, ...unknown[]];
507
507
  claim_set_index: number | undefined;
508
508
  input_credential_index: number;
509
509
  } | undefined)[]], ...[{
@@ -516,7 +516,7 @@ export declare namespace DcqlQuery {
516
516
  };
517
517
  };
518
518
  } | {
519
- credential_format: "vc+sd-jwt";
519
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
520
520
  vct: string;
521
521
  claims: {
522
522
  [x: string]: import("../u-dcql.js").Json;
@@ -534,9 +534,9 @@ export declare namespace DcqlQuery {
534
534
  issues?: undefined;
535
535
  } | {
536
536
  output: unknown;
537
+ issues: [unknown, ...unknown[]];
537
538
  success: false;
538
539
  typed: boolean;
539
- issues: [unknown, ...unknown[]];
540
540
  claim_set_index: number | undefined;
541
541
  input_credential_index: number;
542
542
  } | undefined, ...({
@@ -549,7 +549,7 @@ export declare namespace DcqlQuery {
549
549
  };
550
550
  };
551
551
  } | {
552
- credential_format: "vc+sd-jwt";
552
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
553
553
  vct: string;
554
554
  claims: {
555
555
  [x: string]: import("../u-dcql.js").Json;
@@ -567,9 +567,9 @@ export declare namespace DcqlQuery {
567
567
  issues?: undefined;
568
568
  } | {
569
569
  output: unknown;
570
+ issues: [unknown, ...unknown[]];
570
571
  success: false;
571
572
  typed: boolean;
572
- issues: [unknown, ...unknown[]];
573
573
  claim_set_index: number | undefined;
574
574
  input_credential_index: number;
575
575
  } | undefined)[]][]];
@@ -586,7 +586,7 @@ export declare namespace DcqlQuery {
586
586
  };
587
587
  };
588
588
  } | {
589
- credential_format: "vc+sd-jwt";
589
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
590
590
  vct: string;
591
591
  claims: {
592
592
  [x: string]: import("../u-dcql.js").Json;
@@ -604,9 +604,9 @@ export declare namespace DcqlQuery {
604
604
  issues?: undefined;
605
605
  } | {
606
606
  output: unknown;
607
+ issues: [unknown, ...unknown[]];
607
608
  success: false;
608
609
  typed: boolean;
609
- issues: [unknown, ...unknown[]];
610
610
  claim_set_index: number | undefined;
611
611
  input_credential_index: number;
612
612
  } | undefined, ...({
@@ -619,7 +619,7 @@ export declare namespace DcqlQuery {
619
619
  };
620
620
  };
621
621
  } | {
622
- credential_format: "vc+sd-jwt";
622
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
623
623
  vct: string;
624
624
  claims: {
625
625
  [x: string]: import("../u-dcql.js").Json;
@@ -637,9 +637,9 @@ export declare namespace DcqlQuery {
637
637
  issues?: undefined;
638
638
  } | {
639
639
  output: unknown;
640
+ issues: [unknown, ...unknown[]];
640
641
  success: false;
641
642
  typed: boolean;
642
- issues: [unknown, ...unknown[]];
643
643
  claim_set_index: number | undefined;
644
644
  input_credential_index: number;
645
645
  } | undefined)[]], ...[{
@@ -652,7 +652,7 @@ export declare namespace DcqlQuery {
652
652
  };
653
653
  };
654
654
  } | {
655
- credential_format: "vc+sd-jwt";
655
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
656
656
  vct: string;
657
657
  claims: {
658
658
  [x: string]: import("../u-dcql.js").Json;
@@ -670,9 +670,9 @@ export declare namespace DcqlQuery {
670
670
  issues?: undefined;
671
671
  } | {
672
672
  output: unknown;
673
+ issues: [unknown, ...unknown[]];
673
674
  success: false;
674
675
  typed: boolean;
675
- issues: [unknown, ...unknown[]];
676
676
  claim_set_index: number | undefined;
677
677
  input_credential_index: number;
678
678
  } | undefined, ...({
@@ -685,7 +685,7 @@ export declare namespace DcqlQuery {
685
685
  };
686
686
  };
687
687
  } | {
688
- credential_format: "vc+sd-jwt";
688
+ credential_format: "vc+sd-jwt" | "dc+sd-jwt";
689
689
  vct: string;
690
690
  claims: {
691
691
  [x: string]: import("../u-dcql.js").Json;
@@ -703,9 +703,9 @@ export declare namespace DcqlQuery {
703
703
  issues?: undefined;
704
704
  } | {
705
705
  output: unknown;
706
+ issues: [unknown, ...unknown[]];
706
707
  success: false;
707
708
  typed: boolean;
708
- issues: [unknown, ...unknown[]];
709
709
  claim_set_index: number | undefined;
710
710
  input_credential_index: number;
711
711
  } | undefined)[]][]];
@@ -749,7 +749,7 @@ export declare namespace DcqlQuery {
749
749
  } | undefined;
750
750
  } | {
751
751
  id: string;
752
- format: "vc+sd-jwt";
752
+ format: "vc+sd-jwt" | "dc+sd-jwt";
753
753
  claims?: [{
754
754
  path: (string | number | null)[];
755
755
  values?: (string | number | boolean)[] | undefined;
@@ -796,7 +796,7 @@ export declare namespace DcqlQuery {
796
796
  } | undefined;
797
797
  } | {
798
798
  id: string;
799
- format: "vc+sd-jwt";
799
+ format: "vc+sd-jwt" | "dc+sd-jwt";
800
800
  claims?: [{
801
801
  path: (string | number | null)[];
802
802
  values?: (string | number | boolean)[] | undefined;