@pagopa/io-react-native-wallet 0.28.0 → 0.28.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.
Files changed (132) hide show
  1. package/lib/commonjs/credential/issuance/03-start-user-authorization.js +3 -0
  2. package/lib/commonjs/credential/issuance/03-start-user-authorization.js.map +1 -1
  3. package/lib/commonjs/credential/presentation/01-start-flow.js +14 -24
  4. package/lib/commonjs/credential/presentation/01-start-flow.js.map +1 -1
  5. package/lib/commonjs/credential/presentation/03-get-request-object.js +30 -42
  6. package/lib/commonjs/credential/presentation/03-get-request-object.js.map +1 -1
  7. package/lib/commonjs/credential/presentation/04-retrieve-rp-jwks.js +32 -0
  8. package/lib/commonjs/credential/presentation/04-retrieve-rp-jwks.js.map +1 -0
  9. package/lib/commonjs/credential/presentation/05-verify-request-object.js +53 -0
  10. package/lib/commonjs/credential/presentation/05-verify-request-object.js.map +1 -0
  11. package/lib/commonjs/credential/presentation/06-fetch-presentation-definition.js +39 -0
  12. package/lib/commonjs/credential/presentation/06-fetch-presentation-definition.js.map +1 -0
  13. package/lib/commonjs/credential/presentation/07-evaluate-dcql-query.js +125 -0
  14. package/lib/commonjs/credential/presentation/07-evaluate-dcql-query.js.map +1 -0
  15. package/lib/commonjs/credential/presentation/07-evaluate-input-descriptor.js +289 -0
  16. package/lib/commonjs/credential/presentation/07-evaluate-input-descriptor.js.map +1 -0
  17. package/lib/commonjs/credential/presentation/08-send-authorization-response.js +170 -0
  18. package/lib/commonjs/credential/presentation/08-send-authorization-response.js.map +1 -0
  19. package/lib/commonjs/credential/presentation/errors.js +69 -1
  20. package/lib/commonjs/credential/presentation/errors.js.map +1 -1
  21. package/lib/commonjs/credential/presentation/index.js +29 -1
  22. package/lib/commonjs/credential/presentation/index.js.map +1 -1
  23. package/lib/commonjs/credential/presentation/types.js +124 -3
  24. package/lib/commonjs/credential/presentation/types.js.map +1 -1
  25. package/lib/commonjs/sd-jwt/index.js +41 -1
  26. package/lib/commonjs/sd-jwt/index.js.map +1 -1
  27. package/lib/commonjs/trust/chain.js.map +1 -1
  28. package/lib/commonjs/trust/types.js +26 -6
  29. package/lib/commonjs/trust/types.js.map +1 -1
  30. package/lib/commonjs/trust/utils.js +5 -0
  31. package/lib/commonjs/trust/utils.js.map +1 -1
  32. package/lib/commonjs/utils/jwk.js +5 -1
  33. package/lib/commonjs/utils/jwk.js.map +1 -1
  34. package/lib/module/credential/issuance/03-start-user-authorization.js +3 -0
  35. package/lib/module/credential/issuance/03-start-user-authorization.js.map +1 -1
  36. package/lib/module/credential/presentation/01-start-flow.js +14 -24
  37. package/lib/module/credential/presentation/01-start-flow.js.map +1 -1
  38. package/lib/module/credential/presentation/03-get-request-object.js +31 -43
  39. package/lib/module/credential/presentation/03-get-request-object.js.map +1 -1
  40. package/lib/module/credential/presentation/04-retrieve-rp-jwks.js +25 -0
  41. package/lib/module/credential/presentation/04-retrieve-rp-jwks.js.map +1 -0
  42. package/lib/module/credential/presentation/05-verify-request-object.js +46 -0
  43. package/lib/module/credential/presentation/05-verify-request-object.js.map +1 -0
  44. package/lib/module/credential/presentation/06-fetch-presentation-definition.js +32 -0
  45. package/lib/module/credential/presentation/06-fetch-presentation-definition.js.map +1 -0
  46. package/lib/module/credential/presentation/07-evaluate-dcql-query.js +117 -0
  47. package/lib/module/credential/presentation/07-evaluate-dcql-query.js.map +1 -0
  48. package/lib/module/credential/presentation/07-evaluate-input-descriptor.js +278 -0
  49. package/lib/module/credential/presentation/07-evaluate-input-descriptor.js.map +1 -0
  50. package/lib/module/credential/presentation/08-send-authorization-response.js +158 -0
  51. package/lib/module/credential/presentation/08-send-authorization-response.js.map +1 -0
  52. package/lib/module/credential/presentation/errors.js +64 -0
  53. package/lib/module/credential/presentation/errors.js.map +1 -1
  54. package/lib/module/credential/presentation/index.js +6 -2
  55. package/lib/module/credential/presentation/index.js.map +1 -1
  56. package/lib/module/credential/presentation/types.js +121 -2
  57. package/lib/module/credential/presentation/types.js.map +1 -1
  58. package/lib/module/sd-jwt/index.js +40 -1
  59. package/lib/module/sd-jwt/index.js.map +1 -1
  60. package/lib/module/trust/chain.js.map +1 -1
  61. package/lib/module/trust/types.js +26 -6
  62. package/lib/module/trust/types.js.map +1 -1
  63. package/lib/module/trust/utils.js +5 -0
  64. package/lib/module/trust/utils.js.map +1 -1
  65. package/lib/module/utils/jwk.js +3 -0
  66. package/lib/module/utils/jwk.js.map +1 -1
  67. package/lib/typescript/credential/issuance/03-start-user-authorization.d.ts.map +1 -1
  68. package/lib/typescript/credential/presentation/01-start-flow.d.ts +26 -5
  69. package/lib/typescript/credential/presentation/01-start-flow.d.ts.map +1 -1
  70. package/lib/typescript/credential/presentation/03-get-request-object.d.ts +7 -10
  71. package/lib/typescript/credential/presentation/03-get-request-object.d.ts.map +1 -1
  72. package/lib/typescript/credential/presentation/04-retrieve-rp-jwks.d.ts +23 -0
  73. package/lib/typescript/credential/presentation/04-retrieve-rp-jwks.d.ts.map +1 -0
  74. package/lib/typescript/credential/presentation/05-verify-request-object.d.ts +18 -0
  75. package/lib/typescript/credential/presentation/05-verify-request-object.d.ts.map +1 -0
  76. package/lib/typescript/credential/presentation/06-fetch-presentation-definition.d.ts +21 -0
  77. package/lib/typescript/credential/presentation/06-fetch-presentation-definition.d.ts.map +1 -0
  78. package/lib/typescript/credential/presentation/07-evaluate-dcql-query.d.ts +20 -0
  79. package/lib/typescript/credential/presentation/07-evaluate-dcql-query.d.ts.map +1 -0
  80. package/lib/typescript/credential/presentation/07-evaluate-input-descriptor.d.ts +88 -0
  81. package/lib/typescript/credential/presentation/07-evaluate-input-descriptor.d.ts.map +1 -0
  82. package/lib/typescript/credential/presentation/08-send-authorization-response.d.ts +70 -0
  83. package/lib/typescript/credential/presentation/08-send-authorization-response.d.ts.map +1 -0
  84. package/lib/typescript/credential/presentation/errors.d.ts +44 -0
  85. package/lib/typescript/credential/presentation/errors.d.ts.map +1 -1
  86. package/lib/typescript/credential/presentation/index.d.ts +7 -3
  87. package/lib/typescript/credential/presentation/index.d.ts.map +1 -1
  88. package/lib/typescript/credential/presentation/types.d.ts +747 -10
  89. package/lib/typescript/credential/presentation/types.d.ts.map +1 -1
  90. package/lib/typescript/sd-jwt/index.d.ts +19 -0
  91. package/lib/typescript/sd-jwt/index.d.ts.map +1 -1
  92. package/lib/typescript/trust/index.d.ts +236 -8
  93. package/lib/typescript/trust/index.d.ts.map +1 -1
  94. package/lib/typescript/trust/types.d.ts +3046 -76
  95. package/lib/typescript/trust/types.d.ts.map +1 -1
  96. package/lib/typescript/trust/utils.d.ts +6 -6
  97. package/lib/typescript/trust/utils.d.ts.map +1 -1
  98. package/lib/typescript/utils/decoder.d.ts +1 -1
  99. package/lib/typescript/utils/decoder.d.ts.map +1 -1
  100. package/lib/typescript/utils/errors.d.ts.map +1 -1
  101. package/lib/typescript/utils/jwk.d.ts +137 -0
  102. package/lib/typescript/utils/jwk.d.ts.map +1 -1
  103. package/lib/typescript/utils/misc.d.ts.map +1 -1
  104. package/lib/typescript/wallet-instance-attestation/types.d.ts +16 -16
  105. package/package.json +15 -11
  106. package/src/credential/issuance/03-start-user-authorization.ts +3 -0
  107. package/src/credential/presentation/01-start-flow.ts +19 -26
  108. package/src/credential/presentation/03-get-request-object.ts +35 -58
  109. package/src/credential/presentation/04-retrieve-rp-jwks.ts +34 -0
  110. package/src/credential/presentation/05-verify-request-object.ts +52 -0
  111. package/src/credential/presentation/06-fetch-presentation-definition.ts +48 -0
  112. package/src/credential/presentation/07-evaluate-dcql-query.ts +166 -0
  113. package/src/credential/presentation/07-evaluate-input-descriptor.ts +391 -0
  114. package/src/credential/presentation/08-send-authorization-response.ts +220 -0
  115. package/src/credential/presentation/errors.ts +64 -0
  116. package/src/credential/presentation/index.ts +22 -1
  117. package/src/credential/presentation/types.ts +134 -3
  118. package/src/sd-jwt/index.ts +49 -1
  119. package/src/trust/chain.ts +2 -2
  120. package/src/trust/types.ts +25 -5
  121. package/src/trust/utils.ts +6 -3
  122. package/src/utils/decoder.ts +1 -1
  123. package/src/utils/errors.ts +2 -2
  124. package/src/utils/jwk.ts +8 -1
  125. package/src/utils/misc.ts +2 -2
  126. package/lib/commonjs/credential/presentation/04-send-authorization-response.js +0 -138
  127. package/lib/commonjs/credential/presentation/04-send-authorization-response.js.map +0 -1
  128. package/lib/module/credential/presentation/04-send-authorization-response.js +0 -128
  129. package/lib/module/credential/presentation/04-send-authorization-response.js.map +0 -1
  130. package/lib/typescript/credential/presentation/04-send-authorization-response.d.ts +0 -34
  131. package/lib/typescript/credential/presentation/04-send-authorization-response.d.ts.map +0 -1
  132. package/src/credential/presentation/04-send-authorization-response.ts +0 -168
@@ -1 +1 @@
1
- {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/credential/presentation/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAEjE,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACO,MAAM;IACzB,MAAM,EAAE;IACsC,aAAa;CACzE,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAC1D,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYxB,CAAC"}
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/credential/presentation/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAEjE,OAAO,KAAK,CAAC,MAAM,KAAK,CAAC;AAEzB;;GAEG;AACH,MAAM,MAAM,YAAY,GAAG;IACO,MAAM;IACzB,MAAM,EAAE;IACsC,aAAa;CACzE,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG;IACrC,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,eAAe,EAAE,eAAe,CAAC;IACjC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF;;;GAGG;AACH,MAAM,MAAM,kBAAkB,GAAG;IAC/B,eAAe,EAAE,MAAM,EAAE,CAAC;IAC1B,YAAY,EAAE,MAAM,CAAC;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAmBF,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAC9D,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO1B,CAAC;AAqBH,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAC5E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMjC,CAAC;AAEH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAC1D,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcxB,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAC5D,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;EAWzB,CAAC;AAEH;;;GAGG;AACH,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,+BAA+B,CACvC,CAAC;AACF,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAG1C,CAAC;AAEH;;;GAGG;AACH,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CACxD,OAAO,oCAAoC,CAC5C,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oCAAoC;;;;;;;;;EAG/C,CAAC;AAEH;;GAEG;AACH,MAAM,MAAM,8BAA8B,GAAG,CAAC,CAAC,KAAK,CAClD,OAAO,8BAA8B,CACtC,CAAC;AACF,eAAO,MAAM,8BAA8B;;;;;;EAEzC,CAAC"}
@@ -2,6 +2,7 @@ import { z } from "zod";
2
2
  import { Disclosure, SdJwt4VC, type DisclosureWithEncoded } from "./types";
3
3
  import type { JWK } from "../utils/jwk";
4
4
  import * as Errors from "./errors";
5
+ import { type Presentation } from "../credential/presentation/types";
5
6
  /**
6
7
  * Decode a given SD-JWT with Disclosures to get the parsed SD-JWT object they define.
7
8
  * It ensures provided data is in a valid shape.
@@ -248,5 +249,23 @@ export declare const verify: <S extends z.ZodType<{
248
249
  sdJwt: z.TypeOf<S>;
249
250
  disclosures: Disclosure[];
250
251
  }>;
252
+ /**
253
+ * Prepares a Verified Presentation (VP) token to be sent as part of an
254
+ * authorization response in an OpenID 4 Verifiable Presentations flow.
255
+ *
256
+ * @param nonce - The nonce provided by the relying party.
257
+ * @param client_id - The client identifier of the relying party.
258
+ * @param presentation - An object containing the verifiable credential, the claims to disclose,
259
+ * and the cryptographic context for signing.
260
+ * @returns An object containing the signed VP token (`vp_token`).
261
+ *
262
+ * @remarks
263
+ * 1. The `disclose()` function is used to produce a token with only the requested claims.
264
+ * 2. A KB-JWT is then signed, including sd_hash and `nonce`.
265
+ * 3. The `vp_token` is composed of the disclosed VP and the KB-JWT.
266
+ */
267
+ export declare const prepareVpToken: (nonce: string, client_id: string, [verifiableCredential, requestedClaims, cryptoContext]: Presentation) => Promise<{
268
+ vp_token: string;
269
+ }>;
251
270
  export { SdJwt4VC, Errors };
252
271
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sd-jwt/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,KAAK,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAE3E,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AASnC;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WACV,MAAM;;iBAIA,qBAAqB,EAAE;CA0BrC,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,QAAQ,UACZ,MAAM,UACL,MAAM,EAAE;WACE,MAAM;WAAS;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE;EAwCnE,CAAC;AAEF;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WACV,MAAM,aACF,GAAG,GAAG,GAAG,EAAE;;iBAEqB,UAAU,EAAE;EAqBxD,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/sd-jwt/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAKxB,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,KAAK,qBAAqB,EAAE,MAAM,SAAS,CAAC;AAE3E,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,cAAc,CAAC;AACxC,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AAEnC,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAQrE;;;;;;;;;;;;;GAaG;AACH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WACV,MAAM;;iBAIA,qBAAqB,EAAE;CA0BrC,CAAC;AAEF;;;;;;;;;;;;GAYG;AACH,eAAO,MAAM,QAAQ,UACZ,MAAM,UACL,MAAM,EAAE;WACE,MAAM;WAAS;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE;EAwCnE,CAAC;AAEF;;;;;;;;;;;;;;;GAeG;AACH,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WACV,MAAM,aACF,GAAG,GAAG,GAAG,EAAE;;iBAEqB,UAAU,EAAE;EAqBxD,CAAC;AAEF;;;;;;;;;;;;;;GAcG;AACH,eAAO,MAAM,cAAc,UAClB,MAAM,aACF,MAAM;cAGP,MAAM;EAyBjB,CAAC;AAEF,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,CAAC"}
@@ -290,12 +290,12 @@ export declare const getCredentialIssuerEntityConfiguration: (entityBaseUrl: Par
290
290
  revocation_endpoint: string;
291
291
  status_attestation_endpoint: string;
292
292
  credential_configurations_supported: Record<string, {
293
+ format: "vc+sd-jwt" | "vc+mdoc-cbor";
294
+ scope: string;
293
295
  display: {
294
296
  name: string;
295
297
  locale: string;
296
298
  }[];
297
- format: "vc+sd-jwt" | "vc+mdoc-cbor";
298
- scope: string;
299
299
  claims: Record<string, {
300
300
  value_type: string;
301
301
  display: {
@@ -316,6 +316,7 @@ export declare const getCredentialIssuerEntityConfiguration: (entityBaseUrl: Par
316
316
  }>;
317
317
  };
318
318
  oauth_authorization_server: {
319
+ request_object_signing_alg_values_supported: string[];
319
320
  jwks: {
320
321
  keys: {
321
322
  kty: "RSA" | "EC";
@@ -354,8 +355,80 @@ export declare const getCredentialIssuerEntityConfiguration: (entityBaseUrl: Par
354
355
  response_modes_supported: string[];
355
356
  token_endpoint_auth_methods_supported: string[];
356
357
  token_endpoint_auth_signing_alg_values_supported: string[];
357
- request_object_signing_alg_values_supported: string[];
358
358
  };
359
+ openid_credential_verifier?: {
360
+ jwks: {
361
+ keys: {
362
+ kty: "RSA" | "EC";
363
+ alg?: string | undefined;
364
+ crv?: string | undefined;
365
+ d?: string | undefined;
366
+ dp?: string | undefined;
367
+ dq?: string | undefined;
368
+ e?: string | undefined;
369
+ ext?: boolean | undefined;
370
+ k?: string | undefined;
371
+ key_ops?: string[] | undefined;
372
+ kid?: string | undefined;
373
+ n?: string | undefined;
374
+ p?: string | undefined;
375
+ q?: string | undefined;
376
+ qi?: string | undefined;
377
+ use?: string | undefined;
378
+ x?: string | undefined;
379
+ y?: string | undefined;
380
+ x5c?: string[] | undefined;
381
+ x5t?: string | undefined;
382
+ "x5t#S256"?: string | undefined;
383
+ x5u?: string | undefined;
384
+ }[];
385
+ };
386
+ application_type?: string | undefined;
387
+ client_id?: string | undefined;
388
+ client_name?: string | undefined;
389
+ contacts?: string[] | undefined;
390
+ presentation_definition?: {
391
+ id: string;
392
+ input_descriptors: {
393
+ id: string;
394
+ constraints: {
395
+ fields?: {
396
+ path: string[];
397
+ id?: string | undefined;
398
+ purpose?: string | undefined;
399
+ name?: string | undefined;
400
+ filter?: any;
401
+ optional?: boolean | undefined;
402
+ intent_to_retain?: boolean | undefined;
403
+ }[] | undefined;
404
+ limit_disclosure?: "required" | "preferred" | undefined;
405
+ };
406
+ name?: string | undefined;
407
+ purpose?: string | undefined;
408
+ format?: Record<string, any> | undefined;
409
+ group?: string | undefined;
410
+ }[];
411
+ name?: string | undefined;
412
+ purpose?: string | undefined;
413
+ submission_requirements?: {
414
+ rule: string;
415
+ name?: string | undefined;
416
+ purpose?: string | undefined;
417
+ from?: string | undefined;
418
+ from_nested?: {
419
+ rule: string;
420
+ from: string;
421
+ name?: string | undefined;
422
+ purpose?: string | undefined;
423
+ }[] | undefined;
424
+ count?: number | undefined;
425
+ }[] | undefined;
426
+ } | undefined;
427
+ request_uris?: string[] | undefined;
428
+ authorization_signed_response_alg?: string | undefined;
429
+ authorization_encrypted_response_alg?: string | undefined;
430
+ authorization_encrypted_response_enc?: string | undefined;
431
+ } | undefined;
359
432
  wallet_relying_party?: {
360
433
  jwks: {
361
434
  keys: {
@@ -519,7 +592,7 @@ export declare const getRelyingPartyEntityConfiguration: (entityBaseUrl: Paramet
519
592
  } & {
520
593
  payload: {
521
594
  metadata: {
522
- wallet_relying_party: {
595
+ openid_credential_verifier: {
523
596
  jwks: {
524
597
  keys: {
525
598
  kty: "RSA" | "EC";
@@ -550,6 +623,47 @@ export declare const getRelyingPartyEntityConfiguration: (entityBaseUrl: Paramet
550
623
  client_id?: string | undefined;
551
624
  client_name?: string | undefined;
552
625
  contacts?: string[] | undefined;
626
+ presentation_definition?: {
627
+ id: string;
628
+ input_descriptors: {
629
+ id: string;
630
+ constraints: {
631
+ fields?: {
632
+ path: string[];
633
+ id?: string | undefined;
634
+ purpose?: string | undefined;
635
+ name?: string | undefined;
636
+ filter?: any;
637
+ optional?: boolean | undefined;
638
+ intent_to_retain?: boolean | undefined;
639
+ }[] | undefined;
640
+ limit_disclosure?: "required" | "preferred" | undefined;
641
+ };
642
+ name?: string | undefined;
643
+ purpose?: string | undefined;
644
+ format?: Record<string, any> | undefined;
645
+ group?: string | undefined;
646
+ }[];
647
+ name?: string | undefined;
648
+ purpose?: string | undefined;
649
+ submission_requirements?: {
650
+ rule: string;
651
+ name?: string | undefined;
652
+ purpose?: string | undefined;
653
+ from?: string | undefined;
654
+ from_nested?: {
655
+ rule: string;
656
+ from: string;
657
+ name?: string | undefined;
658
+ purpose?: string | undefined;
659
+ }[] | undefined;
660
+ count?: number | undefined;
661
+ }[] | undefined;
662
+ } | undefined;
663
+ request_uris?: string[] | undefined;
664
+ authorization_signed_response_alg?: string | undefined;
665
+ authorization_encrypted_response_alg?: string | undefined;
666
+ authorization_encrypted_response_enc?: string | undefined;
553
667
  };
554
668
  };
555
669
  };
@@ -743,12 +857,12 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
743
857
  revocation_endpoint: string;
744
858
  status_attestation_endpoint: string;
745
859
  credential_configurations_supported: Record<string, {
860
+ format: "vc+sd-jwt" | "vc+mdoc-cbor";
861
+ scope: string;
746
862
  display: {
747
863
  name: string;
748
864
  locale: string;
749
865
  }[];
750
- format: "vc+sd-jwt" | "vc+mdoc-cbor";
751
- scope: string;
752
866
  claims: Record<string, {
753
867
  value_type: string;
754
868
  display: {
@@ -769,6 +883,7 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
769
883
  }>;
770
884
  };
771
885
  oauth_authorization_server: {
886
+ request_object_signing_alg_values_supported: string[];
772
887
  jwks: {
773
888
  keys: {
774
889
  kty: "RSA" | "EC";
@@ -807,8 +922,80 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
807
922
  response_modes_supported: string[];
808
923
  token_endpoint_auth_methods_supported: string[];
809
924
  token_endpoint_auth_signing_alg_values_supported: string[];
810
- request_object_signing_alg_values_supported: string[];
811
925
  };
926
+ openid_credential_verifier?: {
927
+ jwks: {
928
+ keys: {
929
+ kty: "RSA" | "EC";
930
+ alg?: string | undefined;
931
+ crv?: string | undefined;
932
+ d?: string | undefined;
933
+ dp?: string | undefined;
934
+ dq?: string | undefined;
935
+ e?: string | undefined;
936
+ ext?: boolean | undefined;
937
+ k?: string | undefined;
938
+ key_ops?: string[] | undefined;
939
+ kid?: string | undefined;
940
+ n?: string | undefined;
941
+ p?: string | undefined;
942
+ q?: string | undefined;
943
+ qi?: string | undefined;
944
+ use?: string | undefined;
945
+ x?: string | undefined;
946
+ y?: string | undefined;
947
+ x5c?: string[] | undefined;
948
+ x5t?: string | undefined;
949
+ "x5t#S256"?: string | undefined;
950
+ x5u?: string | undefined;
951
+ }[];
952
+ };
953
+ application_type?: string | undefined;
954
+ client_id?: string | undefined;
955
+ client_name?: string | undefined;
956
+ contacts?: string[] | undefined;
957
+ presentation_definition?: {
958
+ id: string;
959
+ input_descriptors: {
960
+ id: string;
961
+ constraints: {
962
+ fields?: {
963
+ path: string[];
964
+ id?: string | undefined;
965
+ purpose?: string | undefined;
966
+ name?: string | undefined;
967
+ filter?: any;
968
+ optional?: boolean | undefined;
969
+ intent_to_retain?: boolean | undefined;
970
+ }[] | undefined;
971
+ limit_disclosure?: "required" | "preferred" | undefined;
972
+ };
973
+ name?: string | undefined;
974
+ purpose?: string | undefined;
975
+ format?: Record<string, any> | undefined;
976
+ group?: string | undefined;
977
+ }[];
978
+ name?: string | undefined;
979
+ purpose?: string | undefined;
980
+ submission_requirements?: {
981
+ rule: string;
982
+ name?: string | undefined;
983
+ purpose?: string | undefined;
984
+ from?: string | undefined;
985
+ from_nested?: {
986
+ rule: string;
987
+ from: string;
988
+ name?: string | undefined;
989
+ purpose?: string | undefined;
990
+ }[] | undefined;
991
+ count?: number | undefined;
992
+ }[] | undefined;
993
+ } | undefined;
994
+ request_uris?: string[] | undefined;
995
+ authorization_signed_response_alg?: string | undefined;
996
+ authorization_encrypted_response_alg?: string | undefined;
997
+ authorization_encrypted_response_enc?: string | undefined;
998
+ } | undefined;
812
999
  wallet_relying_party?: {
813
1000
  jwks: {
814
1001
  keys: {
@@ -908,7 +1095,7 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
908
1095
  } & {
909
1096
  payload: {
910
1097
  metadata: {
911
- wallet_relying_party: {
1098
+ openid_credential_verifier: {
912
1099
  jwks: {
913
1100
  keys: {
914
1101
  kty: "RSA" | "EC";
@@ -939,6 +1126,47 @@ export declare const getEntityConfiguration: (entityBaseUrl: Parameters<typeof f
939
1126
  client_id?: string | undefined;
940
1127
  client_name?: string | undefined;
941
1128
  contacts?: string[] | undefined;
1129
+ presentation_definition?: {
1130
+ id: string;
1131
+ input_descriptors: {
1132
+ id: string;
1133
+ constraints: {
1134
+ fields?: {
1135
+ path: string[];
1136
+ id?: string | undefined;
1137
+ purpose?: string | undefined;
1138
+ name?: string | undefined;
1139
+ filter?: any;
1140
+ optional?: boolean | undefined;
1141
+ intent_to_retain?: boolean | undefined;
1142
+ }[] | undefined;
1143
+ limit_disclosure?: "required" | "preferred" | undefined;
1144
+ };
1145
+ name?: string | undefined;
1146
+ purpose?: string | undefined;
1147
+ format?: Record<string, any> | undefined;
1148
+ group?: string | undefined;
1149
+ }[];
1150
+ name?: string | undefined;
1151
+ purpose?: string | undefined;
1152
+ submission_requirements?: {
1153
+ rule: string;
1154
+ name?: string | undefined;
1155
+ purpose?: string | undefined;
1156
+ from?: string | undefined;
1157
+ from_nested?: {
1158
+ rule: string;
1159
+ from: string;
1160
+ name?: string | undefined;
1161
+ purpose?: string | undefined;
1162
+ }[] | undefined;
1163
+ count?: number | undefined;
1164
+ }[] | undefined;
1165
+ } | undefined;
1166
+ request_uris?: string[] | undefined;
1167
+ authorization_signed_response_alg?: string | undefined;
1168
+ authorization_encrypted_response_alg?: string | undefined;
1169
+ authorization_encrypted_response_enc?: string | undefined;
942
1170
  };
943
1171
  };
944
1172
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/trust/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/trust/index.ts"],"names":[],"mappings":"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"}