@pagopa/io-react-native-wallet 2.5.1 → 3.0.0

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 (1551) hide show
  1. package/README.md +41 -7
  2. package/lib/commonjs/IoWallet.js +47 -0
  3. package/lib/commonjs/IoWallet.js.map +1 -0
  4. package/lib/commonjs/api/index.js +51 -0
  5. package/lib/commonjs/api/index.js.map +1 -0
  6. package/lib/commonjs/credential/index.js +1 -9
  7. package/lib/commonjs/credential/index.js.map +1 -1
  8. package/lib/commonjs/credential/issuance/README.md +37 -44
  9. package/lib/commonjs/credential/issuance/api/01-evaluate-issuer-trust.js +6 -0
  10. package/lib/commonjs/credential/issuance/api/01-evaluate-issuer-trust.js.map +1 -0
  11. package/lib/commonjs/credential/issuance/api/02-start-user-authorization.js +6 -0
  12. package/lib/commonjs/credential/issuance/api/02-start-user-authorization.js.map +1 -0
  13. package/lib/commonjs/credential/issuance/api/03-complete-user-authorization.js +6 -0
  14. package/lib/commonjs/credential/issuance/api/03-complete-user-authorization.js.map +1 -0
  15. package/lib/commonjs/credential/issuance/api/04-authorize-access.js +6 -0
  16. package/lib/commonjs/credential/issuance/api/04-authorize-access.js.map +1 -0
  17. package/lib/commonjs/credential/issuance/api/05-obtain-credential.js +6 -0
  18. package/lib/commonjs/credential/issuance/api/05-obtain-credential.js.map +1 -0
  19. package/lib/commonjs/credential/issuance/api/06-verify-and-parse-credential.js +6 -0
  20. package/lib/commonjs/credential/issuance/api/06-verify-and-parse-credential.js.map +1 -0
  21. package/lib/commonjs/credential/issuance/api/IssuerConfig.js +67 -0
  22. package/lib/commonjs/credential/issuance/api/IssuerConfig.js.map +1 -0
  23. package/lib/commonjs/credential/issuance/api/index.js +6 -0
  24. package/lib/commonjs/credential/issuance/api/index.js.map +1 -0
  25. package/lib/commonjs/credential/issuance/api/mrtd-pop/index.js +17 -0
  26. package/lib/commonjs/credential/issuance/api/mrtd-pop/index.js.map +1 -0
  27. package/lib/commonjs/credential/issuance/api/mrtd-pop/types.js +2 -0
  28. package/lib/commonjs/credential/issuance/api/mrtd-pop/types.js.map +1 -0
  29. package/lib/commonjs/credential/issuance/api/types.js +26 -0
  30. package/lib/commonjs/credential/issuance/api/types.js.map +1 -0
  31. package/lib/commonjs/credential/issuance/common/02-start-user-authorization.js +55 -0
  32. package/lib/commonjs/credential/issuance/common/02-start-user-authorization.js.map +1 -0
  33. package/lib/commonjs/credential/issuance/common/06-verify-and-parse-credential.mdoc.js +178 -0
  34. package/lib/commonjs/credential/issuance/common/06-verify-and-parse-credential.mdoc.js.map +1 -0
  35. package/lib/commonjs/credential/issuance/common/06-verify-and-parse-credential.sdjwt.js +183 -0
  36. package/lib/commonjs/credential/issuance/common/06-verify-and-parse-credential.sdjwt.js.map +1 -0
  37. package/lib/commonjs/credential/issuance/common/authorization.js +56 -0
  38. package/lib/commonjs/credential/issuance/common/authorization.js.map +1 -0
  39. package/lib/commonjs/credential/issuance/common/errors.js +35 -0
  40. package/lib/commonjs/credential/issuance/common/errors.js.map +1 -0
  41. package/lib/commonjs/credential/issuance/index.js +8 -68
  42. package/lib/commonjs/credential/issuance/index.js.map +1 -1
  43. package/lib/commonjs/credential/issuance/mrtd-pop/01-verify-and-parse-challenge-info.js +13 -42
  44. package/lib/commonjs/credential/issuance/mrtd-pop/01-verify-and-parse-challenge-info.js.map +1 -1
  45. package/lib/commonjs/credential/issuance/mrtd-pop/02-init-challenge.js +25 -37
  46. package/lib/commonjs/credential/issuance/mrtd-pop/02-init-challenge.js.map +1 -1
  47. package/lib/commonjs/credential/issuance/mrtd-pop/03-validate-challenge.js +24 -46
  48. package/lib/commonjs/credential/issuance/mrtd-pop/03-validate-challenge.js.map +1 -1
  49. package/lib/commonjs/credential/issuance/mrtd-pop/index.js +8 -24
  50. package/lib/commonjs/credential/issuance/mrtd-pop/index.js.map +1 -1
  51. package/lib/commonjs/credential/issuance/v1.0.0/01-evaluate-issuer-trust.js +19 -0
  52. package/lib/commonjs/credential/issuance/v1.0.0/01-evaluate-issuer-trust.js.map +1 -0
  53. package/lib/commonjs/credential/issuance/v1.0.0/02-start-user-authorization.js +63 -0
  54. package/lib/commonjs/credential/issuance/v1.0.0/02-start-user-authorization.js.map +1 -0
  55. package/lib/commonjs/credential/issuance/v1.0.0/03-complete-user-authorization.js +195 -0
  56. package/lib/commonjs/credential/issuance/v1.0.0/03-complete-user-authorization.js.map +1 -0
  57. package/lib/commonjs/credential/issuance/v1.0.0/04-authorize-access.js +69 -0
  58. package/lib/commonjs/credential/issuance/v1.0.0/04-authorize-access.js.map +1 -0
  59. package/lib/commonjs/credential/issuance/v1.0.0/05-obtain-credential.js +148 -0
  60. package/lib/commonjs/credential/issuance/v1.0.0/05-obtain-credential.js.map +1 -0
  61. package/lib/commonjs/credential/issuance/v1.0.0/06-verify-and-parse-credential.js +34 -0
  62. package/lib/commonjs/credential/issuance/v1.0.0/06-verify-and-parse-credential.js.map +1 -0
  63. package/lib/commonjs/credential/issuance/v1.0.0/index.js +28 -0
  64. package/lib/commonjs/credential/issuance/v1.0.0/index.js.map +1 -0
  65. package/lib/commonjs/credential/issuance/v1.0.0/mappers.js +28 -0
  66. package/lib/commonjs/credential/issuance/v1.0.0/mappers.js.map +1 -0
  67. package/lib/commonjs/credential/issuance/v1.0.0/types.js +44 -0
  68. package/lib/commonjs/credential/issuance/v1.0.0/types.js.map +1 -0
  69. package/lib/commonjs/credential/issuance/v1.3.3/01-evaluate-issuer-trust.js +24 -0
  70. package/lib/commonjs/credential/issuance/v1.3.3/01-evaluate-issuer-trust.js.map +1 -0
  71. package/lib/commonjs/credential/issuance/v1.3.3/02-start-user-authorization.js +92 -0
  72. package/lib/commonjs/credential/issuance/v1.3.3/02-start-user-authorization.js.map +1 -0
  73. package/lib/commonjs/credential/issuance/v1.3.3/03-complete-user-authorization.js +187 -0
  74. package/lib/commonjs/credential/issuance/v1.3.3/03-complete-user-authorization.js.map +1 -0
  75. package/lib/commonjs/credential/issuance/v1.3.3/04-authorize-access.js +75 -0
  76. package/lib/commonjs/credential/issuance/v1.3.3/04-authorize-access.js.map +1 -0
  77. package/lib/commonjs/credential/issuance/v1.3.3/05-obtain-credential.js +143 -0
  78. package/lib/commonjs/credential/issuance/v1.3.3/05-obtain-credential.js.map +1 -0
  79. package/lib/commonjs/credential/issuance/v1.3.3/06-verify-and-parse-credential.js +34 -0
  80. package/lib/commonjs/credential/issuance/v1.3.3/06-verify-and-parse-credential.js.map +1 -0
  81. package/lib/commonjs/credential/issuance/v1.3.3/index.js +28 -0
  82. package/lib/commonjs/credential/issuance/v1.3.3/index.js.map +1 -0
  83. package/lib/commonjs/credential/issuance/v1.3.3/mappers.js +73 -0
  84. package/lib/commonjs/credential/issuance/v1.3.3/mappers.js.map +1 -0
  85. package/lib/commonjs/credential/issuance/v1.3.3/types.js +14 -0
  86. package/lib/commonjs/credential/issuance/v1.3.3/types.js.map +1 -0
  87. package/lib/commonjs/credential/offer/README.md +103 -119
  88. package/lib/commonjs/credential/offer/api/01-resolve-credential-offer.js +6 -0
  89. package/lib/commonjs/credential/offer/api/01-resolve-credential-offer.js.map +1 -0
  90. package/lib/commonjs/credential/offer/api/02-extract-grant-details.js +6 -0
  91. package/lib/commonjs/credential/offer/api/02-extract-grant-details.js.map +1 -0
  92. package/lib/commonjs/credential/offer/api/index.js +17 -0
  93. package/lib/commonjs/credential/offer/api/index.js.map +1 -0
  94. package/lib/commonjs/credential/offer/api/types.js +6 -0
  95. package/lib/commonjs/credential/offer/api/types.js.map +1 -0
  96. package/lib/commonjs/credential/offer/common/errors.js +22 -0
  97. package/lib/commonjs/credential/offer/common/errors.js.map +1 -0
  98. package/lib/commonjs/credential/offer/index.js +7 -7
  99. package/lib/commonjs/credential/offer/index.js.map +1 -1
  100. package/lib/commonjs/credential/offer/v1.0.0/index.js +17 -0
  101. package/lib/commonjs/credential/offer/v1.0.0/index.js.map +1 -0
  102. package/lib/commonjs/credential/offer/v1.3.3/01-resolve-credential-offer.js +62 -0
  103. package/lib/commonjs/credential/offer/v1.3.3/01-resolve-credential-offer.js.map +1 -0
  104. package/lib/commonjs/credential/offer/v1.3.3/02-extract-grant-details.js +25 -0
  105. package/lib/commonjs/credential/offer/v1.3.3/02-extract-grant-details.js.map +1 -0
  106. package/lib/commonjs/credential/offer/v1.3.3/index.js +14 -0
  107. package/lib/commonjs/credential/offer/v1.3.3/index.js.map +1 -0
  108. package/lib/commonjs/credential/presentation/README.md +12 -9
  109. package/lib/commonjs/credential/presentation/api/01-start-flow.js +6 -0
  110. package/lib/commonjs/credential/presentation/api/01-start-flow.js.map +1 -0
  111. package/lib/commonjs/credential/presentation/api/02-evaluate-rp-trust.js +6 -0
  112. package/lib/commonjs/credential/presentation/api/02-evaluate-rp-trust.js.map +1 -0
  113. package/lib/commonjs/credential/presentation/api/03-get-request-object.js +6 -0
  114. package/lib/commonjs/credential/presentation/api/03-get-request-object.js.map +1 -0
  115. package/lib/commonjs/credential/presentation/api/04-verify-request-object.js +6 -0
  116. package/lib/commonjs/credential/presentation/api/04-verify-request-object.js.map +1 -0
  117. package/lib/commonjs/credential/presentation/api/05-evaluate-dcql-query.js +6 -0
  118. package/lib/commonjs/credential/presentation/api/05-evaluate-dcql-query.js.map +1 -0
  119. package/lib/commonjs/credential/presentation/api/06-send-authorization-response.js +6 -0
  120. package/lib/commonjs/credential/presentation/api/06-send-authorization-response.js.map +1 -0
  121. package/lib/commonjs/credential/presentation/api/RelyingPartyConfig.js +31 -0
  122. package/lib/commonjs/credential/presentation/api/RelyingPartyConfig.js.map +1 -0
  123. package/lib/commonjs/credential/presentation/api/index.js +17 -0
  124. package/lib/commonjs/credential/presentation/api/index.js.map +1 -0
  125. package/lib/commonjs/credential/presentation/api/types.js +74 -0
  126. package/lib/commonjs/credential/presentation/api/types.js.map +1 -0
  127. package/lib/commonjs/credential/presentation/common/errors.js +121 -0
  128. package/lib/commonjs/credential/presentation/common/errors.js.map +1 -0
  129. package/lib/commonjs/credential/presentation/common/utils/dcql.js +164 -0
  130. package/lib/commonjs/credential/presentation/common/utils/dcql.js.map +1 -0
  131. package/lib/commonjs/credential/presentation/common/utils/http.js +28 -0
  132. package/lib/commonjs/credential/presentation/common/utils/http.js.map +1 -0
  133. package/lib/commonjs/credential/presentation/common/utils/sd-jwt.js +56 -0
  134. package/lib/commonjs/credential/presentation/common/utils/sd-jwt.js.map +1 -0
  135. package/lib/commonjs/credential/presentation/common/utils.js +28 -0
  136. package/lib/commonjs/credential/presentation/common/utils.js.map +1 -0
  137. package/lib/commonjs/credential/presentation/index.js +7 -80
  138. package/lib/commonjs/credential/presentation/index.js.map +1 -1
  139. package/lib/commonjs/credential/presentation/v1.0.0/01-start-flow.js +21 -0
  140. package/lib/commonjs/credential/presentation/v1.0.0/01-start-flow.js.map +1 -0
  141. package/lib/commonjs/credential/presentation/v1.0.0/02-evaluate-rp-trust.js +21 -0
  142. package/lib/commonjs/credential/presentation/v1.0.0/02-evaluate-rp-trust.js.map +1 -0
  143. package/lib/commonjs/credential/presentation/v1.0.0/03-get-request-object.js +58 -0
  144. package/lib/commonjs/credential/presentation/v1.0.0/03-get-request-object.js.map +1 -0
  145. package/lib/commonjs/credential/presentation/v1.0.0/04-verify-request-object.js +86 -0
  146. package/lib/commonjs/credential/presentation/v1.0.0/04-verify-request-object.js.map +1 -0
  147. package/lib/commonjs/credential/presentation/v1.0.0/05-evaluate-dcql-query.js +85 -0
  148. package/lib/commonjs/credential/presentation/v1.0.0/05-evaluate-dcql-query.js.map +1 -0
  149. package/lib/commonjs/credential/presentation/v1.0.0/06-send-authorization-response.js +165 -0
  150. package/lib/commonjs/credential/presentation/v1.0.0/06-send-authorization-response.js.map +1 -0
  151. package/lib/commonjs/credential/presentation/v1.0.0/index.js +24 -0
  152. package/lib/commonjs/credential/presentation/v1.0.0/index.js.map +1 -0
  153. package/lib/commonjs/credential/presentation/v1.0.0/mappers.js +33 -0
  154. package/lib/commonjs/credential/presentation/v1.0.0/mappers.js.map +1 -0
  155. package/lib/commonjs/credential/presentation/v1.0.0/types.js +46 -0
  156. package/lib/commonjs/credential/presentation/v1.0.0/types.js.map +1 -0
  157. package/lib/commonjs/credential/presentation/v1.0.0/utils.js +27 -0
  158. package/lib/commonjs/credential/presentation/v1.0.0/utils.js.map +1 -0
  159. package/lib/commonjs/credential/presentation/v1.0.0/utils.jwks.js +27 -0
  160. package/lib/commonjs/credential/presentation/v1.0.0/utils.jwks.js.map +1 -0
  161. package/lib/commonjs/credential/presentation/v1.3.3/01-start-flow.js +23 -0
  162. package/lib/commonjs/credential/presentation/v1.3.3/01-start-flow.js.map +1 -0
  163. package/lib/commonjs/credential/presentation/v1.3.3/02-evaluate-rp-trust.js +22 -0
  164. package/lib/commonjs/credential/presentation/v1.3.3/02-evaluate-rp-trust.js.map +1 -0
  165. package/lib/commonjs/credential/presentation/v1.3.3/03-get-request-object.js +37 -0
  166. package/lib/commonjs/credential/presentation/v1.3.3/03-get-request-object.js.map +1 -0
  167. package/lib/commonjs/credential/presentation/v1.3.3/04-verify-request-object.js +33 -0
  168. package/lib/commonjs/credential/presentation/v1.3.3/04-verify-request-object.js.map +1 -0
  169. package/lib/commonjs/credential/presentation/v1.3.3/05-evaluate-dcql-query.js +105 -0
  170. package/lib/commonjs/credential/presentation/v1.3.3/05-evaluate-dcql-query.js.map +1 -0
  171. package/lib/commonjs/credential/presentation/v1.3.3/06-send-authorization-response.js +137 -0
  172. package/lib/commonjs/credential/presentation/v1.3.3/06-send-authorization-response.js.map +1 -0
  173. package/lib/commonjs/credential/presentation/v1.3.3/index.js +24 -0
  174. package/lib/commonjs/credential/presentation/v1.3.3/index.js.map +1 -0
  175. package/lib/commonjs/credential/presentation/v1.3.3/mappers.js +32 -0
  176. package/lib/commonjs/credential/presentation/v1.3.3/mappers.js.map +1 -0
  177. package/lib/commonjs/credential/presentation/v1.3.3/sdkErrorMapper.js +74 -0
  178. package/lib/commonjs/credential/presentation/v1.3.3/sdkErrorMapper.js.map +1 -0
  179. package/lib/commonjs/credential/presentation/v1.3.3/types.js +19 -0
  180. package/lib/commonjs/credential/presentation/v1.3.3/types.js.map +1 -0
  181. package/lib/commonjs/credential/presentation/v1.3.3/utils.mdoc.js +88 -0
  182. package/lib/commonjs/credential/presentation/v1.3.3/utils.mdoc.js.map +1 -0
  183. package/lib/commonjs/credential/status/README.md +77 -19
  184. package/lib/commonjs/credential/status/api/index.js +17 -0
  185. package/lib/commonjs/credential/status/api/index.js.map +1 -0
  186. package/lib/commonjs/credential/status/api/status-assertion.js +6 -0
  187. package/lib/commonjs/credential/status/api/status-assertion.js.map +1 -0
  188. package/lib/commonjs/credential/status/api/status-list.js +6 -0
  189. package/lib/commonjs/credential/status/api/status-list.js.map +1 -0
  190. package/lib/commonjs/credential/status/api/types.js +2 -0
  191. package/lib/commonjs/credential/status/api/types.js.map +1 -0
  192. package/lib/commonjs/credential/status/index.js +21 -12
  193. package/lib/commonjs/credential/status/index.js.map +1 -1
  194. package/lib/commonjs/credential/status/v1.0.0/01-status-assertion.js +71 -0
  195. package/lib/commonjs/credential/status/v1.0.0/01-status-assertion.js.map +1 -0
  196. package/lib/commonjs/credential/status/v1.0.0/02-verify-and-parse-status-assertion.js +74 -0
  197. package/lib/commonjs/credential/status/v1.0.0/02-verify-and-parse-status-assertion.js.map +1 -0
  198. package/lib/commonjs/credential/status/v1.0.0/index.js +20 -0
  199. package/lib/commonjs/credential/status/v1.0.0/index.js.map +1 -0
  200. package/lib/commonjs/credential/status/v1.0.0/mappers.js +10 -0
  201. package/lib/commonjs/credential/status/v1.0.0/mappers.js.map +1 -0
  202. package/lib/commonjs/credential/status/v1.0.0/types.js +81 -0
  203. package/lib/commonjs/credential/status/v1.0.0/types.js.map +1 -0
  204. package/lib/commonjs/credential/status/v1.3.3/01-status-list.js +48 -0
  205. package/lib/commonjs/credential/status/v1.3.3/01-status-list.js.map +1 -0
  206. package/lib/commonjs/credential/status/v1.3.3/02-verify-and-parse-status-list.js +24 -0
  207. package/lib/commonjs/credential/status/v1.3.3/02-verify-and-parse-status-list.js.map +1 -0
  208. package/lib/commonjs/credential/status/v1.3.3/index.js +20 -0
  209. package/lib/commonjs/credential/status/v1.3.3/index.js.map +1 -0
  210. package/lib/commonjs/credential/trustmark/README.md +5 -1
  211. package/lib/commonjs/credential/trustmark/api/index.js +6 -0
  212. package/lib/commonjs/credential/trustmark/api/index.js.map +1 -0
  213. package/lib/commonjs/credential/trustmark/index.js +10 -3
  214. package/lib/commonjs/credential/trustmark/index.js.map +1 -1
  215. package/lib/commonjs/credential/trustmark/v1.0.0/get-credential-trustmark.js +70 -0
  216. package/lib/commonjs/credential/trustmark/v1.0.0/get-credential-trustmark.js.map +1 -0
  217. package/lib/commonjs/credential/trustmark/v1.0.0/index.js +12 -0
  218. package/lib/commonjs/credential/trustmark/v1.0.0/index.js.map +1 -0
  219. package/lib/commonjs/credential/trustmark/v1.3.3/get-credential-trustmark.js +12 -0
  220. package/lib/commonjs/credential/trustmark/v1.3.3/get-credential-trustmark.js.map +1 -0
  221. package/lib/commonjs/credential/trustmark/v1.3.3/index.js +12 -0
  222. package/lib/commonjs/credential/trustmark/v1.3.3/index.js.map +1 -0
  223. package/lib/commonjs/credentials-catalogue/README.md +8 -2
  224. package/lib/commonjs/credentials-catalogue/api/DigitalCredentialsCatalogue.js +84 -0
  225. package/lib/commonjs/credentials-catalogue/api/DigitalCredentialsCatalogue.js.map +1 -0
  226. package/lib/commonjs/credentials-catalogue/api/index.js +6 -0
  227. package/lib/commonjs/credentials-catalogue/api/index.js.map +1 -0
  228. package/lib/commonjs/credentials-catalogue/index.js +10 -3
  229. package/lib/commonjs/credentials-catalogue/index.js.map +1 -1
  230. package/lib/commonjs/credentials-catalogue/v1.0.0/fetch-and-parse-catalogue.js +33 -0
  231. package/lib/commonjs/credentials-catalogue/v1.0.0/fetch-and-parse-catalogue.js.map +1 -0
  232. package/lib/commonjs/credentials-catalogue/v1.0.0/index.js +12 -0
  233. package/lib/commonjs/credentials-catalogue/v1.0.0/index.js.map +1 -0
  234. package/lib/commonjs/credentials-catalogue/v1.0.0/mappers.js +29 -0
  235. package/lib/commonjs/credentials-catalogue/v1.0.0/mappers.js.map +1 -0
  236. package/lib/commonjs/credentials-catalogue/v1.0.0/types.js +99 -0
  237. package/lib/commonjs/credentials-catalogue/v1.0.0/types.js.map +1 -0
  238. package/lib/commonjs/credentials-catalogue/v1.3.3/fetch-and-parse-catalogue.js +47 -0
  239. package/lib/commonjs/credentials-catalogue/v1.3.3/fetch-and-parse-catalogue.js.map +1 -0
  240. package/lib/commonjs/credentials-catalogue/v1.3.3/index.js +12 -0
  241. package/lib/commonjs/credentials-catalogue/v1.3.3/index.js.map +1 -0
  242. package/lib/commonjs/credentials-catalogue/v1.3.3/mappers.js +61 -0
  243. package/lib/commonjs/credentials-catalogue/v1.3.3/mappers.js.map +1 -0
  244. package/lib/commonjs/credentials-catalogue/v1.3.3/types.js +156 -0
  245. package/lib/commonjs/credentials-catalogue/v1.3.3/types.js.map +1 -0
  246. package/lib/commonjs/credentials-catalogue/v1.3.3/utils.js +57 -0
  247. package/lib/commonjs/credentials-catalogue/v1.3.3/utils.js.map +1 -0
  248. package/lib/commonjs/index.js +21 -7
  249. package/lib/commonjs/index.js.map +1 -1
  250. package/lib/commonjs/mdoc/index.js +22 -3
  251. package/lib/commonjs/mdoc/index.js.map +1 -1
  252. package/lib/commonjs/mdoc/utils.js.map +1 -1
  253. package/lib/commonjs/sd-jwt/__test__/types.test.js +0 -61
  254. package/lib/commonjs/sd-jwt/__test__/types.test.js.map +1 -1
  255. package/lib/commonjs/sd-jwt/__test__/utils.test.js +3 -12
  256. package/lib/commonjs/sd-jwt/__test__/utils.test.js.map +1 -1
  257. package/lib/commonjs/sd-jwt/index.js +20 -164
  258. package/lib/commonjs/sd-jwt/index.js.map +1 -1
  259. package/lib/commonjs/sd-jwt/types.js +26 -50
  260. package/lib/commonjs/sd-jwt/types.js.map +1 -1
  261. package/lib/commonjs/sd-jwt/utils.js +5 -7
  262. package/lib/commonjs/sd-jwt/utils.js.map +1 -1
  263. package/lib/commonjs/trust/README.md +24 -11
  264. package/lib/commonjs/trust/api/TrustAnchorConfig.js +29 -0
  265. package/lib/commonjs/trust/api/TrustAnchorConfig.js.map +1 -0
  266. package/lib/commonjs/trust/api/index.js +6 -0
  267. package/lib/commonjs/trust/api/index.js.map +1 -0
  268. package/lib/commonjs/trust/common/build-chain.js +118 -0
  269. package/lib/commonjs/trust/common/build-chain.js.map +1 -0
  270. package/lib/commonjs/trust/common/errors.js +134 -0
  271. package/lib/commonjs/trust/common/errors.js.map +1 -0
  272. package/lib/commonjs/trust/common/types.js +82 -0
  273. package/lib/commonjs/trust/common/types.js.map +1 -0
  274. package/lib/commonjs/trust/common/utils.js +139 -0
  275. package/lib/commonjs/trust/common/utils.js.map +1 -0
  276. package/lib/commonjs/trust/common/verify-chain.js +193 -0
  277. package/lib/commonjs/trust/common/verify-chain.js.map +1 -0
  278. package/lib/commonjs/trust/index.js +9 -8
  279. package/lib/commonjs/trust/index.js.map +1 -1
  280. package/lib/commonjs/trust/v1.0.0/build-chain.js +15 -0
  281. package/lib/commonjs/trust/v1.0.0/build-chain.js.map +1 -0
  282. package/lib/commonjs/trust/v1.0.0/entities.js +51 -0
  283. package/lib/commonjs/trust/v1.0.0/entities.js.map +1 -0
  284. package/lib/commonjs/trust/v1.0.0/index.js +18 -0
  285. package/lib/commonjs/trust/v1.0.0/index.js.map +1 -0
  286. package/lib/commonjs/trust/v1.0.0/mappers.js +21 -0
  287. package/lib/commonjs/trust/v1.0.0/mappers.js.map +1 -0
  288. package/lib/commonjs/trust/v1.0.0/types.js +159 -0
  289. package/lib/commonjs/trust/v1.0.0/types.js.map +1 -0
  290. package/lib/commonjs/trust/v1.0.0/verify-chain.js +19 -0
  291. package/lib/commonjs/trust/v1.0.0/verify-chain.js.map +1 -0
  292. package/lib/commonjs/trust/v1.3.3/entities.js +43 -0
  293. package/lib/commonjs/trust/v1.3.3/entities.js.map +1 -0
  294. package/lib/commonjs/trust/v1.3.3/types.js +54 -0
  295. package/lib/commonjs/trust/v1.3.3/types.js.map +1 -0
  296. package/lib/commonjs/utils/callbacks.js +101 -0
  297. package/lib/commonjs/utils/callbacks.js.map +1 -0
  298. package/lib/commonjs/utils/config.js +23 -0
  299. package/lib/commonjs/utils/config.js.map +1 -0
  300. package/lib/commonjs/utils/credentials.js +9 -6
  301. package/lib/commonjs/utils/credentials.js.map +1 -1
  302. package/lib/commonjs/utils/errors.js +68 -5
  303. package/lib/commonjs/utils/errors.js.map +1 -1
  304. package/lib/commonjs/utils/mappers.js +71 -0
  305. package/lib/commonjs/utils/mappers.js.map +1 -0
  306. package/lib/commonjs/utils/misc.js +19 -4
  307. package/lib/commonjs/utils/misc.js.map +1 -1
  308. package/lib/commonjs/utils/object.js +20 -0
  309. package/lib/commonjs/utils/object.js.map +1 -0
  310. package/lib/commonjs/utils/par.js +5 -4
  311. package/lib/commonjs/utils/par.js.map +1 -1
  312. package/lib/commonjs/utils/zod.js +3 -1
  313. package/lib/commonjs/utils/zod.js.map +1 -1
  314. package/lib/commonjs/wallet-instance/README.md +8 -5
  315. package/lib/commonjs/wallet-instance/api/index.js +6 -0
  316. package/lib/commonjs/wallet-instance/api/index.js.map +1 -0
  317. package/lib/commonjs/wallet-instance/common/wallet-instance.js +75 -0
  318. package/lib/commonjs/wallet-instance/common/wallet-instance.js.map +1 -0
  319. package/lib/commonjs/wallet-instance/index.js +13 -83
  320. package/lib/commonjs/wallet-instance/index.js.map +1 -1
  321. package/lib/commonjs/wallet-instance/v1.0.0/index.js +15 -0
  322. package/lib/commonjs/wallet-instance/v1.0.0/index.js.map +1 -0
  323. package/lib/commonjs/wallet-instance/v1.3.3/index.js +15 -0
  324. package/lib/commonjs/wallet-instance/v1.3.3/index.js.map +1 -0
  325. package/lib/commonjs/wallet-instance-attestation/README.md +8 -2
  326. package/lib/commonjs/wallet-instance-attestation/api/index.js +6 -0
  327. package/lib/commonjs/wallet-instance-attestation/api/index.js.map +1 -0
  328. package/lib/commonjs/wallet-instance-attestation/api/types.js +30 -0
  329. package/lib/commonjs/wallet-instance-attestation/api/types.js.map +1 -0
  330. package/lib/commonjs/wallet-instance-attestation/common/types.js +34 -0
  331. package/lib/commonjs/wallet-instance-attestation/common/types.js.map +1 -0
  332. package/lib/commonjs/wallet-instance-attestation/index.js +10 -53
  333. package/lib/commonjs/wallet-instance-attestation/index.js.map +1 -1
  334. package/lib/commonjs/wallet-instance-attestation/v1.0.0/index.js +17 -0
  335. package/lib/commonjs/wallet-instance-attestation/v1.0.0/index.js.map +1 -0
  336. package/lib/commonjs/wallet-instance-attestation/v1.0.0/issuing.js +106 -0
  337. package/lib/commonjs/wallet-instance-attestation/v1.0.0/issuing.js.map +1 -0
  338. package/lib/commonjs/wallet-instance-attestation/v1.0.0/mappers.js +19 -0
  339. package/lib/commonjs/wallet-instance-attestation/v1.0.0/mappers.js.map +1 -0
  340. package/lib/commonjs/wallet-instance-attestation/v1.0.0/types.js +46 -0
  341. package/lib/commonjs/wallet-instance-attestation/v1.0.0/types.js.map +1 -0
  342. package/lib/commonjs/wallet-instance-attestation/v1.0.0/utils.js +37 -0
  343. package/lib/commonjs/wallet-instance-attestation/v1.0.0/utils.js.map +1 -0
  344. package/lib/commonjs/wallet-instance-attestation/v1.3.3/index.js +19 -0
  345. package/lib/commonjs/wallet-instance-attestation/v1.3.3/index.js.map +1 -0
  346. package/lib/commonjs/wallet-instance-attestation/v1.3.3/issuing.js +12 -0
  347. package/lib/commonjs/wallet-instance-attestation/v1.3.3/issuing.js.map +1 -0
  348. package/lib/commonjs/wallet-instance-attestation/v1.3.3/types.js +42 -0
  349. package/lib/commonjs/wallet-instance-attestation/v1.3.3/types.js.map +1 -0
  350. package/lib/module/IoWallet.js +40 -0
  351. package/lib/module/IoWallet.js.map +1 -0
  352. package/lib/module/api/index.js +43 -0
  353. package/lib/module/api/index.js.map +1 -0
  354. package/lib/module/credential/index.js +1 -5
  355. package/lib/module/credential/index.js.map +1 -1
  356. package/lib/module/credential/issuance/README.md +37 -44
  357. package/lib/module/credential/issuance/api/01-evaluate-issuer-trust.js +2 -0
  358. package/lib/module/credential/issuance/api/01-evaluate-issuer-trust.js.map +1 -0
  359. package/lib/module/credential/issuance/api/02-start-user-authorization.js +2 -0
  360. package/lib/module/credential/issuance/api/02-start-user-authorization.js.map +1 -0
  361. package/lib/module/credential/issuance/api/03-complete-user-authorization.js +2 -0
  362. package/lib/module/credential/issuance/api/03-complete-user-authorization.js.map +1 -0
  363. package/lib/module/credential/issuance/api/04-authorize-access.js +2 -0
  364. package/lib/module/credential/issuance/api/04-authorize-access.js.map +1 -0
  365. package/lib/module/credential/issuance/api/05-obtain-credential.js +2 -0
  366. package/lib/module/credential/issuance/api/05-obtain-credential.js.map +1 -0
  367. package/lib/module/credential/issuance/api/06-verify-and-parse-credential.js +2 -0
  368. package/lib/module/credential/issuance/api/06-verify-and-parse-credential.js.map +1 -0
  369. package/lib/module/credential/issuance/api/IssuerConfig.js +60 -0
  370. package/lib/module/credential/issuance/api/IssuerConfig.js.map +1 -0
  371. package/lib/module/credential/issuance/api/index.js +2 -0
  372. package/lib/module/credential/issuance/api/index.js.map +1 -0
  373. package/lib/module/credential/issuance/api/mrtd-pop/index.js +3 -0
  374. package/lib/module/credential/issuance/api/mrtd-pop/index.js.map +1 -0
  375. package/lib/module/credential/issuance/api/mrtd-pop/types.js +2 -0
  376. package/lib/module/credential/issuance/api/mrtd-pop/types.js.map +1 -0
  377. package/lib/module/credential/issuance/api/types.js +17 -0
  378. package/lib/module/credential/issuance/api/types.js.map +1 -0
  379. package/lib/module/credential/issuance/common/02-start-user-authorization.js +47 -0
  380. package/lib/module/credential/issuance/common/02-start-user-authorization.js.map +1 -0
  381. package/lib/module/credential/issuance/common/06-verify-and-parse-credential.mdoc.js +171 -0
  382. package/lib/module/credential/issuance/common/06-verify-and-parse-credential.mdoc.js.map +1 -0
  383. package/lib/module/credential/issuance/common/06-verify-and-parse-credential.sdjwt.js +176 -0
  384. package/lib/module/credential/issuance/common/06-verify-and-parse-credential.sdjwt.js.map +1 -0
  385. package/lib/module/credential/issuance/common/authorization.js +48 -0
  386. package/lib/module/credential/issuance/common/authorization.js.map +1 -0
  387. package/lib/module/credential/issuance/common/errors.js +28 -0
  388. package/lib/module/credential/issuance/common/errors.js.map +1 -0
  389. package/lib/module/credential/issuance/index.js +4 -9
  390. package/lib/module/credential/issuance/index.js.map +1 -1
  391. package/lib/module/credential/issuance/mrtd-pop/01-verify-and-parse-challenge-info.js +13 -42
  392. package/lib/module/credential/issuance/mrtd-pop/01-verify-and-parse-challenge-info.js.map +1 -1
  393. package/lib/module/credential/issuance/mrtd-pop/02-init-challenge.js +24 -38
  394. package/lib/module/credential/issuance/mrtd-pop/02-init-challenge.js.map +1 -1
  395. package/lib/module/credential/issuance/mrtd-pop/03-validate-challenge.js +22 -46
  396. package/lib/module/credential/issuance/mrtd-pop/03-validate-challenge.js.map +1 -1
  397. package/lib/module/credential/issuance/mrtd-pop/index.js +6 -1
  398. package/lib/module/credential/issuance/mrtd-pop/index.js.map +1 -1
  399. package/lib/module/credential/issuance/v1.0.0/01-evaluate-issuer-trust.js +12 -0
  400. package/lib/module/credential/issuance/v1.0.0/01-evaluate-issuer-trust.js.map +1 -0
  401. package/lib/module/credential/issuance/v1.0.0/02-start-user-authorization.js +56 -0
  402. package/lib/module/credential/issuance/v1.0.0/02-start-user-authorization.js.map +1 -0
  403. package/lib/module/credential/issuance/v1.0.0/03-complete-user-authorization.js +182 -0
  404. package/lib/module/credential/issuance/v1.0.0/03-complete-user-authorization.js.map +1 -0
  405. package/lib/module/credential/issuance/v1.0.0/04-authorize-access.js +60 -0
  406. package/lib/module/credential/issuance/v1.0.0/04-authorize-access.js.map +1 -0
  407. package/lib/module/credential/issuance/v1.0.0/05-obtain-credential.js +140 -0
  408. package/lib/module/credential/issuance/v1.0.0/05-obtain-credential.js.map +1 -0
  409. package/lib/module/credential/issuance/v1.0.0/06-verify-and-parse-credential.js +27 -0
  410. package/lib/module/credential/issuance/v1.0.0/06-verify-and-parse-credential.js.map +1 -0
  411. package/lib/module/credential/issuance/v1.0.0/index.js +21 -0
  412. package/lib/module/credential/issuance/v1.0.0/index.js.map +1 -0
  413. package/lib/module/credential/issuance/v1.0.0/mappers.js +21 -0
  414. package/lib/module/credential/issuance/v1.0.0/mappers.js.map +1 -0
  415. package/lib/module/credential/issuance/v1.0.0/types.js +22 -0
  416. package/lib/module/credential/issuance/v1.0.0/types.js.map +1 -0
  417. package/lib/module/credential/issuance/v1.3.3/01-evaluate-issuer-trust.js +17 -0
  418. package/lib/module/credential/issuance/v1.3.3/01-evaluate-issuer-trust.js.map +1 -0
  419. package/lib/module/credential/issuance/v1.3.3/02-start-user-authorization.js +85 -0
  420. package/lib/module/credential/issuance/v1.3.3/02-start-user-authorization.js.map +1 -0
  421. package/lib/module/credential/issuance/v1.3.3/03-complete-user-authorization.js +174 -0
  422. package/lib/module/credential/issuance/v1.3.3/03-complete-user-authorization.js.map +1 -0
  423. package/lib/module/credential/issuance/v1.3.3/04-authorize-access.js +66 -0
  424. package/lib/module/credential/issuance/v1.3.3/04-authorize-access.js.map +1 -0
  425. package/lib/module/credential/issuance/v1.3.3/05-obtain-credential.js +135 -0
  426. package/lib/module/credential/issuance/v1.3.3/05-obtain-credential.js.map +1 -0
  427. package/lib/module/credential/issuance/v1.3.3/06-verify-and-parse-credential.js +27 -0
  428. package/lib/module/credential/issuance/v1.3.3/06-verify-and-parse-credential.js.map +1 -0
  429. package/lib/module/credential/issuance/v1.3.3/index.js +21 -0
  430. package/lib/module/credential/issuance/v1.3.3/index.js.map +1 -0
  431. package/lib/module/credential/issuance/v1.3.3/mappers.js +66 -0
  432. package/lib/module/credential/issuance/v1.3.3/mappers.js.map +1 -0
  433. package/lib/module/credential/issuance/v1.3.3/types.js +5 -0
  434. package/lib/module/credential/issuance/v1.3.3/types.js.map +1 -0
  435. package/lib/module/credential/offer/README.md +103 -119
  436. package/lib/module/credential/offer/api/01-resolve-credential-offer.js +2 -0
  437. package/lib/module/credential/offer/api/01-resolve-credential-offer.js.map +1 -0
  438. package/lib/module/credential/offer/api/02-extract-grant-details.js +2 -0
  439. package/lib/module/credential/offer/api/02-extract-grant-details.js.map +1 -0
  440. package/lib/module/credential/offer/api/index.js +3 -0
  441. package/lib/module/credential/offer/api/index.js.map +1 -0
  442. package/lib/module/credential/offer/api/types.js +2 -0
  443. package/lib/module/credential/offer/api/types.js.map +1 -0
  444. package/lib/module/credential/offer/common/errors.js +14 -0
  445. package/lib/module/credential/offer/common/errors.js.map +1 -0
  446. package/lib/module/credential/offer/index.js +4 -4
  447. package/lib/module/credential/offer/index.js.map +1 -1
  448. package/lib/module/credential/offer/v1.0.0/index.js +10 -0
  449. package/lib/module/credential/offer/v1.0.0/index.js.map +1 -0
  450. package/lib/module/credential/offer/v1.3.3/01-resolve-credential-offer.js +55 -0
  451. package/lib/module/credential/offer/v1.3.3/01-resolve-credential-offer.js.map +1 -0
  452. package/lib/module/credential/offer/v1.3.3/02-extract-grant-details.js +18 -0
  453. package/lib/module/credential/offer/v1.3.3/02-extract-grant-details.js.map +1 -0
  454. package/lib/module/credential/offer/v1.3.3/index.js +7 -0
  455. package/lib/module/credential/offer/v1.3.3/index.js.map +1 -0
  456. package/lib/module/credential/presentation/README.md +12 -9
  457. package/lib/module/credential/presentation/api/01-start-flow.js +2 -0
  458. package/lib/module/credential/presentation/api/01-start-flow.js.map +1 -0
  459. package/lib/module/credential/presentation/api/02-evaluate-rp-trust.js +2 -0
  460. package/lib/module/credential/presentation/api/02-evaluate-rp-trust.js.map +1 -0
  461. package/lib/module/credential/presentation/api/03-get-request-object.js +2 -0
  462. package/lib/module/credential/presentation/api/03-get-request-object.js.map +1 -0
  463. package/lib/module/credential/presentation/api/04-verify-request-object.js +2 -0
  464. package/lib/module/credential/presentation/api/04-verify-request-object.js.map +1 -0
  465. package/lib/module/credential/presentation/api/05-evaluate-dcql-query.js +2 -0
  466. package/lib/module/credential/presentation/api/05-evaluate-dcql-query.js.map +1 -0
  467. package/lib/module/credential/presentation/api/06-send-authorization-response.js +2 -0
  468. package/lib/module/credential/presentation/api/06-send-authorization-response.js.map +1 -0
  469. package/lib/module/credential/presentation/api/RelyingPartyConfig.js +23 -0
  470. package/lib/module/credential/presentation/api/RelyingPartyConfig.js.map +1 -0
  471. package/lib/module/credential/presentation/api/index.js +3 -0
  472. package/lib/module/credential/presentation/api/index.js.map +1 -0
  473. package/lib/module/credential/presentation/api/types.js +64 -0
  474. package/lib/module/credential/presentation/api/types.js.map +1 -0
  475. package/lib/module/credential/presentation/common/errors.js +103 -0
  476. package/lib/module/credential/presentation/common/errors.js.map +1 -0
  477. package/lib/module/credential/presentation/common/utils/dcql.js +152 -0
  478. package/lib/module/credential/presentation/common/utils/dcql.js.map +1 -0
  479. package/lib/module/credential/presentation/common/utils/http.js +21 -0
  480. package/lib/module/credential/presentation/common/utils/http.js.map +1 -0
  481. package/lib/module/credential/presentation/common/utils/sd-jwt.js +49 -0
  482. package/lib/module/credential/presentation/common/utils/sd-jwt.js.map +1 -0
  483. package/lib/module/credential/presentation/common/utils.js +21 -0
  484. package/lib/module/credential/presentation/common/utils.js.map +1 -0
  485. package/lib/module/credential/presentation/index.js +4 -11
  486. package/lib/module/credential/presentation/index.js.map +1 -1
  487. package/lib/module/credential/presentation/v1.0.0/01-start-flow.js +14 -0
  488. package/lib/module/credential/presentation/v1.0.0/01-start-flow.js.map +1 -0
  489. package/lib/module/credential/presentation/v1.0.0/02-evaluate-rp-trust.js +14 -0
  490. package/lib/module/credential/presentation/v1.0.0/02-evaluate-rp-trust.js.map +1 -0
  491. package/lib/module/credential/presentation/v1.0.0/03-get-request-object.js +51 -0
  492. package/lib/module/credential/presentation/v1.0.0/03-get-request-object.js.map +1 -0
  493. package/lib/module/credential/presentation/v1.0.0/04-verify-request-object.js +79 -0
  494. package/lib/module/credential/presentation/v1.0.0/04-verify-request-object.js.map +1 -0
  495. package/lib/module/credential/presentation/v1.0.0/05-evaluate-dcql-query.js +76 -0
  496. package/lib/module/credential/presentation/v1.0.0/05-evaluate-dcql-query.js.map +1 -0
  497. package/lib/module/credential/presentation/v1.0.0/06-send-authorization-response.js +155 -0
  498. package/lib/module/credential/presentation/v1.0.0/06-send-authorization-response.js.map +1 -0
  499. package/lib/module/credential/presentation/v1.0.0/index.js +17 -0
  500. package/lib/module/credential/presentation/v1.0.0/index.js.map +1 -0
  501. package/lib/module/credential/presentation/v1.0.0/mappers.js +25 -0
  502. package/lib/module/credential/presentation/v1.0.0/mappers.js.map +1 -0
  503. package/lib/module/credential/presentation/v1.0.0/types.js +36 -0
  504. package/lib/module/credential/presentation/v1.0.0/types.js.map +1 -0
  505. package/lib/module/credential/presentation/v1.0.0/utils.js +20 -0
  506. package/lib/module/credential/presentation/v1.0.0/utils.js.map +1 -0
  507. package/lib/module/credential/presentation/v1.0.0/utils.jwks.js +20 -0
  508. package/lib/module/credential/presentation/v1.0.0/utils.jwks.js.map +1 -0
  509. package/lib/module/credential/presentation/v1.3.3/01-start-flow.js +16 -0
  510. package/lib/module/credential/presentation/v1.3.3/01-start-flow.js.map +1 -0
  511. package/lib/module/credential/presentation/v1.3.3/02-evaluate-rp-trust.js +15 -0
  512. package/lib/module/credential/presentation/v1.3.3/02-evaluate-rp-trust.js.map +1 -0
  513. package/lib/module/credential/presentation/v1.3.3/03-get-request-object.js +30 -0
  514. package/lib/module/credential/presentation/v1.3.3/03-get-request-object.js.map +1 -0
  515. package/lib/module/credential/presentation/v1.3.3/04-verify-request-object.js +26 -0
  516. package/lib/module/credential/presentation/v1.3.3/04-verify-request-object.js.map +1 -0
  517. package/lib/module/credential/presentation/v1.3.3/05-evaluate-dcql-query.js +97 -0
  518. package/lib/module/credential/presentation/v1.3.3/05-evaluate-dcql-query.js.map +1 -0
  519. package/lib/module/credential/presentation/v1.3.3/06-send-authorization-response.js +129 -0
  520. package/lib/module/credential/presentation/v1.3.3/06-send-authorization-response.js.map +1 -0
  521. package/lib/module/credential/presentation/v1.3.3/index.js +17 -0
  522. package/lib/module/credential/presentation/v1.3.3/index.js.map +1 -0
  523. package/lib/module/credential/presentation/v1.3.3/mappers.js +24 -0
  524. package/lib/module/credential/presentation/v1.3.3/mappers.js.map +1 -0
  525. package/lib/module/credential/presentation/v1.3.3/sdkErrorMapper.js +65 -0
  526. package/lib/module/credential/presentation/v1.3.3/sdkErrorMapper.js.map +1 -0
  527. package/lib/module/credential/presentation/v1.3.3/types.js +9 -0
  528. package/lib/module/credential/presentation/v1.3.3/types.js.map +1 -0
  529. package/lib/module/credential/presentation/v1.3.3/utils.mdoc.js +79 -0
  530. package/lib/module/credential/presentation/v1.3.3/utils.mdoc.js.map +1 -0
  531. package/lib/module/credential/status/README.md +77 -19
  532. package/lib/module/credential/status/api/index.js +14 -0
  533. package/lib/module/credential/status/api/index.js.map +1 -0
  534. package/lib/module/credential/status/api/status-assertion.js +2 -0
  535. package/lib/module/credential/status/api/status-assertion.js.map +1 -0
  536. package/lib/module/credential/status/api/status-list.js +2 -0
  537. package/lib/module/credential/status/api/status-list.js.map +1 -0
  538. package/lib/module/credential/status/api/types.js +2 -0
  539. package/lib/module/credential/status/api/types.js.map +1 -0
  540. package/lib/module/credential/status/index.js +3 -4
  541. package/lib/module/credential/status/index.js.map +1 -1
  542. package/lib/module/credential/status/v1.0.0/01-status-assertion.js +64 -0
  543. package/lib/module/credential/status/v1.0.0/01-status-assertion.js.map +1 -0
  544. package/lib/module/credential/status/v1.0.0/02-verify-and-parse-status-assertion.js +67 -0
  545. package/lib/module/credential/status/v1.0.0/02-verify-and-parse-status-assertion.js.map +1 -0
  546. package/lib/module/credential/status/v1.0.0/index.js +13 -0
  547. package/lib/module/credential/status/v1.0.0/index.js.map +1 -0
  548. package/lib/module/credential/status/v1.0.0/mappers.js +3 -0
  549. package/lib/module/credential/status/v1.0.0/mappers.js.map +1 -0
  550. package/lib/module/credential/status/v1.0.0/types.js +71 -0
  551. package/lib/module/credential/status/v1.0.0/types.js.map +1 -0
  552. package/lib/module/credential/status/v1.3.3/01-status-list.js +41 -0
  553. package/lib/module/credential/status/v1.3.3/01-status-list.js.map +1 -0
  554. package/lib/module/credential/status/v1.3.3/02-verify-and-parse-status-list.js +17 -0
  555. package/lib/module/credential/status/v1.3.3/02-verify-and-parse-status-list.js.map +1 -0
  556. package/lib/module/credential/status/v1.3.3/index.js +13 -0
  557. package/lib/module/credential/status/v1.3.3/index.js.map +1 -0
  558. package/lib/module/credential/trustmark/README.md +5 -1
  559. package/lib/module/credential/trustmark/api/index.js +2 -0
  560. package/lib/module/credential/trustmark/api/index.js.map +1 -0
  561. package/lib/module/credential/trustmark/index.js +2 -2
  562. package/lib/module/credential/trustmark/index.js.map +1 -1
  563. package/lib/module/credential/trustmark/v1.0.0/get-credential-trustmark.js +61 -0
  564. package/lib/module/credential/trustmark/v1.0.0/get-credential-trustmark.js.map +1 -0
  565. package/lib/module/credential/trustmark/v1.0.0/index.js +5 -0
  566. package/lib/module/credential/trustmark/v1.0.0/index.js.map +1 -0
  567. package/lib/module/credential/trustmark/v1.3.3/get-credential-trustmark.js +5 -0
  568. package/lib/module/credential/trustmark/v1.3.3/get-credential-trustmark.js.map +1 -0
  569. package/lib/module/credential/trustmark/v1.3.3/index.js +5 -0
  570. package/lib/module/credential/trustmark/v1.3.3/index.js.map +1 -0
  571. package/lib/module/credentials-catalogue/README.md +8 -2
  572. package/lib/module/credentials-catalogue/api/DigitalCredentialsCatalogue.js +73 -0
  573. package/lib/module/credentials-catalogue/api/DigitalCredentialsCatalogue.js.map +1 -0
  574. package/lib/module/credentials-catalogue/api/index.js +2 -0
  575. package/lib/module/credentials-catalogue/api/index.js.map +1 -0
  576. package/lib/module/credentials-catalogue/index.js +2 -1
  577. package/lib/module/credentials-catalogue/index.js.map +1 -1
  578. package/lib/module/credentials-catalogue/v1.0.0/fetch-and-parse-catalogue.js +26 -0
  579. package/lib/module/credentials-catalogue/v1.0.0/fetch-and-parse-catalogue.js.map +1 -0
  580. package/lib/module/credentials-catalogue/v1.0.0/index.js +5 -0
  581. package/lib/module/credentials-catalogue/v1.0.0/index.js.map +1 -0
  582. package/lib/module/credentials-catalogue/v1.0.0/mappers.js +22 -0
  583. package/lib/module/credentials-catalogue/v1.0.0/mappers.js.map +1 -0
  584. package/lib/module/credentials-catalogue/v1.0.0/types.js +89 -0
  585. package/lib/module/credentials-catalogue/v1.0.0/types.js.map +1 -0
  586. package/lib/module/credentials-catalogue/v1.3.3/fetch-and-parse-catalogue.js +39 -0
  587. package/lib/module/credentials-catalogue/v1.3.3/fetch-and-parse-catalogue.js.map +1 -0
  588. package/lib/module/credentials-catalogue/v1.3.3/index.js +5 -0
  589. package/lib/module/credentials-catalogue/v1.3.3/index.js.map +1 -0
  590. package/lib/module/credentials-catalogue/v1.3.3/mappers.js +54 -0
  591. package/lib/module/credentials-catalogue/v1.3.3/mappers.js.map +1 -0
  592. package/lib/module/credentials-catalogue/v1.3.3/types.js +141 -0
  593. package/lib/module/credentials-catalogue/v1.3.3/types.js.map +1 -0
  594. package/lib/module/credentials-catalogue/v1.3.3/utils.js +50 -0
  595. package/lib/module/credentials-catalogue/v1.3.3/utils.js.map +1 -0
  596. package/lib/module/index.js +9 -4
  597. package/lib/module/index.js.map +1 -1
  598. package/lib/module/mdoc/index.js +19 -2
  599. package/lib/module/mdoc/index.js.map +1 -1
  600. package/lib/module/mdoc/utils.js.map +1 -1
  601. package/lib/module/sd-jwt/__test__/types.test.js +1 -62
  602. package/lib/module/sd-jwt/__test__/types.test.js.map +1 -1
  603. package/lib/module/sd-jwt/__test__/utils.test.js +3 -12
  604. package/lib/module/sd-jwt/__test__/utils.test.js.map +1 -1
  605. package/lib/module/sd-jwt/index.js +19 -147
  606. package/lib/module/sd-jwt/index.js.map +1 -1
  607. package/lib/module/sd-jwt/types.js +21 -44
  608. package/lib/module/sd-jwt/types.js.map +1 -1
  609. package/lib/module/sd-jwt/utils.js +5 -7
  610. package/lib/module/sd-jwt/utils.js.map +1 -1
  611. package/lib/module/trust/README.md +24 -11
  612. package/lib/module/trust/api/TrustAnchorConfig.js +21 -0
  613. package/lib/module/trust/api/TrustAnchorConfig.js.map +1 -0
  614. package/lib/module/trust/api/index.js +2 -0
  615. package/lib/module/trust/api/index.js.map +1 -0
  616. package/lib/module/trust/common/build-chain.js +111 -0
  617. package/lib/module/trust/common/build-chain.js.map +1 -0
  618. package/lib/module/trust/common/errors.js +116 -0
  619. package/lib/module/trust/common/errors.js.map +1 -0
  620. package/lib/module/trust/common/types.js +69 -0
  621. package/lib/module/trust/common/types.js.map +1 -0
  622. package/lib/module/trust/common/utils.js +126 -0
  623. package/lib/module/trust/common/utils.js.map +1 -0
  624. package/lib/module/trust/common/verify-chain.js +188 -0
  625. package/lib/module/trust/common/verify-chain.js.map +1 -0
  626. package/lib/module/trust/index.js +3 -5
  627. package/lib/module/trust/index.js.map +1 -1
  628. package/lib/module/trust/v1.0.0/build-chain.js +8 -0
  629. package/lib/module/trust/v1.0.0/build-chain.js.map +1 -0
  630. package/lib/module/trust/v1.0.0/entities.js +41 -0
  631. package/lib/module/trust/v1.0.0/entities.js.map +1 -0
  632. package/lib/module/trust/v1.0.0/index.js +11 -0
  633. package/lib/module/trust/v1.0.0/index.js.map +1 -0
  634. package/lib/module/trust/v1.0.0/mappers.js +14 -0
  635. package/lib/module/trust/v1.0.0/mappers.js.map +1 -0
  636. package/lib/module/trust/v1.0.0/types.js +150 -0
  637. package/lib/module/trust/v1.0.0/types.js.map +1 -0
  638. package/lib/module/trust/v1.0.0/verify-chain.js +12 -0
  639. package/lib/module/trust/v1.0.0/verify-chain.js.map +1 -0
  640. package/lib/module/trust/v1.3.3/entities.js +37 -0
  641. package/lib/module/trust/v1.3.3/entities.js.map +1 -0
  642. package/lib/module/trust/v1.3.3/types.js +46 -0
  643. package/lib/module/trust/v1.3.3/types.js.map +1 -0
  644. package/lib/module/utils/callbacks.js +94 -0
  645. package/lib/module/utils/callbacks.js.map +1 -0
  646. package/lib/module/utils/config.js +16 -0
  647. package/lib/module/utils/config.js.map +1 -0
  648. package/lib/module/utils/credentials.js +9 -6
  649. package/lib/module/utils/credentials.js.map +1 -1
  650. package/lib/module/utils/errors.js +62 -2
  651. package/lib/module/utils/errors.js.map +1 -1
  652. package/lib/module/utils/mappers.js +62 -0
  653. package/lib/module/utils/mappers.js.map +1 -0
  654. package/lib/module/utils/misc.js +15 -1
  655. package/lib/module/utils/misc.js.map +1 -1
  656. package/lib/module/utils/object.js +11 -0
  657. package/lib/module/utils/object.js.map +1 -0
  658. package/lib/module/utils/par.js +5 -4
  659. package/lib/module/utils/par.js.map +1 -1
  660. package/lib/module/utils/zod.js +1 -0
  661. package/lib/module/utils/zod.js.map +1 -1
  662. package/lib/module/wallet-instance/README.md +8 -5
  663. package/lib/module/wallet-instance/api/index.js +2 -0
  664. package/lib/module/wallet-instance/api/index.js.map +1 -0
  665. package/lib/module/wallet-instance/common/wallet-instance.js +65 -0
  666. package/lib/module/wallet-instance/common/wallet-instance.js.map +1 -0
  667. package/lib/module/wallet-instance/index.js +2 -80
  668. package/lib/module/wallet-instance/index.js.map +1 -1
  669. package/lib/module/wallet-instance/v1.0.0/index.js +8 -0
  670. package/lib/module/wallet-instance/v1.0.0/index.js.map +1 -0
  671. package/lib/module/wallet-instance/v1.3.3/index.js +8 -0
  672. package/lib/module/wallet-instance/v1.3.3/index.js.map +1 -0
  673. package/lib/module/wallet-instance-attestation/README.md +8 -2
  674. package/lib/module/wallet-instance-attestation/api/index.js +2 -0
  675. package/lib/module/wallet-instance-attestation/api/index.js.map +1 -0
  676. package/lib/module/wallet-instance-attestation/api/types.js +22 -0
  677. package/lib/module/wallet-instance-attestation/api/types.js.map +1 -0
  678. package/lib/module/wallet-instance-attestation/common/types.js +25 -0
  679. package/lib/module/wallet-instance-attestation/common/types.js.map +1 -0
  680. package/lib/module/wallet-instance-attestation/index.js +2 -51
  681. package/lib/module/wallet-instance-attestation/index.js.map +1 -1
  682. package/lib/module/wallet-instance-attestation/v1.0.0/index.js +10 -0
  683. package/lib/module/wallet-instance-attestation/v1.0.0/index.js.map +1 -0
  684. package/lib/module/wallet-instance-attestation/v1.0.0/issuing.js +100 -0
  685. package/lib/module/wallet-instance-attestation/v1.0.0/issuing.js.map +1 -0
  686. package/lib/module/wallet-instance-attestation/v1.0.0/mappers.js +11 -0
  687. package/lib/module/wallet-instance-attestation/v1.0.0/mappers.js.map +1 -0
  688. package/lib/module/wallet-instance-attestation/v1.0.0/types.js +35 -0
  689. package/lib/module/wallet-instance-attestation/v1.0.0/types.js.map +1 -0
  690. package/lib/module/wallet-instance-attestation/v1.0.0/utils.js +31 -0
  691. package/lib/module/wallet-instance-attestation/v1.0.0/utils.js.map +1 -0
  692. package/lib/module/wallet-instance-attestation/v1.3.3/index.js +12 -0
  693. package/lib/module/wallet-instance-attestation/v1.3.3/index.js.map +1 -0
  694. package/lib/module/wallet-instance-attestation/v1.3.3/issuing.js +5 -0
  695. package/lib/module/wallet-instance-attestation/v1.3.3/issuing.js.map +1 -0
  696. package/lib/module/wallet-instance-attestation/v1.3.3/types.js +32 -0
  697. package/lib/module/wallet-instance-attestation/v1.3.3/types.js.map +1 -0
  698. package/lib/typescript/IoWallet.d.ts +28 -0
  699. package/lib/typescript/IoWallet.d.ts.map +1 -0
  700. package/lib/typescript/api/index.d.ts +29 -0
  701. package/lib/typescript/api/index.d.ts.map +1 -0
  702. package/lib/typescript/client/generated/wallet-provider.d.ts +14 -14
  703. package/lib/typescript/credential/index.d.ts +1 -5
  704. package/lib/typescript/credential/index.d.ts.map +1 -1
  705. package/lib/typescript/credential/issuance/api/01-evaluate-issuer-trust.d.ts +18 -0
  706. package/lib/typescript/credential/issuance/api/01-evaluate-issuer-trust.d.ts.map +1 -0
  707. package/lib/typescript/credential/issuance/api/02-start-user-authorization.d.ts +48 -0
  708. package/lib/typescript/credential/issuance/api/02-start-user-authorization.d.ts.map +1 -0
  709. package/lib/typescript/credential/issuance/api/03-complete-user-authorization.d.ts +78 -0
  710. package/lib/typescript/credential/issuance/api/03-complete-user-authorization.d.ts.map +1 -0
  711. package/lib/typescript/credential/issuance/api/04-authorize-access.d.ts +33 -0
  712. package/lib/typescript/credential/issuance/api/04-authorize-access.d.ts.map +1 -0
  713. package/lib/typescript/credential/issuance/api/05-obtain-credential.d.ts +36 -0
  714. package/lib/typescript/credential/issuance/api/05-obtain-credential.d.ts.map +1 -0
  715. package/lib/typescript/credential/issuance/api/06-verify-and-parse-credential.d.ts +36 -0
  716. package/lib/typescript/credential/issuance/api/06-verify-and-parse-credential.d.ts.map +1 -0
  717. package/lib/typescript/credential/issuance/api/IssuerConfig.d.ts +423 -0
  718. package/lib/typescript/credential/issuance/api/IssuerConfig.d.ts.map +1 -0
  719. package/lib/typescript/credential/issuance/api/index.d.ts +14 -0
  720. package/lib/typescript/credential/issuance/api/index.d.ts.map +1 -0
  721. package/lib/typescript/credential/issuance/api/mrtd-pop/index.d.ts +74 -0
  722. package/lib/typescript/credential/issuance/api/mrtd-pop/index.d.ts.map +1 -0
  723. package/lib/typescript/credential/issuance/api/mrtd-pop/types.d.ts +34 -0
  724. package/lib/typescript/credential/issuance/api/mrtd-pop/types.d.ts.map +1 -0
  725. package/lib/typescript/credential/issuance/api/types.d.ts +64 -0
  726. package/lib/typescript/credential/issuance/api/types.d.ts.map +1 -0
  727. package/lib/typescript/credential/issuance/common/02-start-user-authorization.d.ts +21 -0
  728. package/lib/typescript/credential/issuance/common/02-start-user-authorization.d.ts.map +1 -0
  729. package/lib/typescript/credential/issuance/common/06-verify-and-parse-credential.mdoc.d.ts +3 -0
  730. package/lib/typescript/credential/issuance/common/06-verify-and-parse-credential.mdoc.d.ts.map +1 -0
  731. package/lib/typescript/credential/issuance/common/06-verify-and-parse-credential.sdjwt.d.ts +3 -0
  732. package/lib/typescript/credential/issuance/common/06-verify-and-parse-credential.sdjwt.d.ts.map +1 -0
  733. package/lib/typescript/credential/issuance/common/authorization.d.ts +21 -0
  734. package/lib/typescript/credential/issuance/common/authorization.d.ts.map +1 -0
  735. package/lib/typescript/credential/issuance/common/errors.d.ts +19 -0
  736. package/lib/typescript/credential/issuance/common/errors.d.ts.map +1 -0
  737. package/lib/typescript/credential/issuance/index.d.ts +5 -11
  738. package/lib/typescript/credential/issuance/index.d.ts.map +1 -1
  739. package/lib/typescript/credential/issuance/mrtd-pop/01-verify-and-parse-challenge-info.d.ts +2 -24
  740. package/lib/typescript/credential/issuance/mrtd-pop/01-verify-and-parse-challenge-info.d.ts.map +1 -1
  741. package/lib/typescript/credential/issuance/mrtd-pop/02-init-challenge.d.ts +2 -22
  742. package/lib/typescript/credential/issuance/mrtd-pop/02-init-challenge.d.ts.map +1 -1
  743. package/lib/typescript/credential/issuance/mrtd-pop/03-validate-challenge.d.ts +3 -38
  744. package/lib/typescript/credential/issuance/mrtd-pop/03-validate-challenge.d.ts.map +1 -1
  745. package/lib/typescript/credential/issuance/mrtd-pop/index.d.ts +2 -6
  746. package/lib/typescript/credential/issuance/mrtd-pop/index.d.ts.map +1 -1
  747. package/lib/typescript/credential/issuance/v1.0.0/01-evaluate-issuer-trust.d.ts +3 -0
  748. package/lib/typescript/credential/issuance/v1.0.0/01-evaluate-issuer-trust.d.ts.map +1 -0
  749. package/lib/typescript/credential/issuance/v1.0.0/02-start-user-authorization.d.ts +3 -0
  750. package/lib/typescript/credential/issuance/v1.0.0/02-start-user-authorization.d.ts.map +1 -0
  751. package/lib/typescript/credential/issuance/v1.0.0/03-complete-user-authorization.d.ts +16 -0
  752. package/lib/typescript/credential/issuance/v1.0.0/03-complete-user-authorization.d.ts.map +1 -0
  753. package/lib/typescript/credential/issuance/v1.0.0/04-authorize-access.d.ts +3 -0
  754. package/lib/typescript/credential/issuance/v1.0.0/04-authorize-access.d.ts.map +1 -0
  755. package/lib/typescript/credential/issuance/v1.0.0/05-obtain-credential.d.ts +5 -0
  756. package/lib/typescript/credential/issuance/v1.0.0/05-obtain-credential.d.ts.map +1 -0
  757. package/lib/typescript/credential/issuance/v1.0.0/06-verify-and-parse-credential.d.ts +3 -0
  758. package/lib/typescript/credential/issuance/v1.0.0/06-verify-and-parse-credential.d.ts.map +1 -0
  759. package/lib/typescript/credential/issuance/v1.0.0/index.d.ts +3 -0
  760. package/lib/typescript/credential/issuance/v1.0.0/index.d.ts.map +1 -0
  761. package/lib/typescript/credential/issuance/v1.0.0/mappers.d.ts +307 -0
  762. package/lib/typescript/credential/issuance/v1.0.0/mappers.d.ts.map +1 -0
  763. package/lib/typescript/credential/issuance/v1.0.0/types.d.ts +43 -0
  764. package/lib/typescript/credential/issuance/v1.0.0/types.d.ts.map +1 -0
  765. package/lib/typescript/credential/issuance/v1.3.3/01-evaluate-issuer-trust.d.ts +3 -0
  766. package/lib/typescript/credential/issuance/v1.3.3/01-evaluate-issuer-trust.d.ts.map +1 -0
  767. package/lib/typescript/credential/issuance/v1.3.3/02-start-user-authorization.d.ts +3 -0
  768. package/lib/typescript/credential/issuance/v1.3.3/02-start-user-authorization.d.ts.map +1 -0
  769. package/lib/typescript/credential/issuance/v1.3.3/03-complete-user-authorization.d.ts +16 -0
  770. package/lib/typescript/credential/issuance/v1.3.3/03-complete-user-authorization.d.ts.map +1 -0
  771. package/lib/typescript/credential/issuance/v1.3.3/04-authorize-access.d.ts +3 -0
  772. package/lib/typescript/credential/issuance/v1.3.3/04-authorize-access.d.ts.map +1 -0
  773. package/lib/typescript/credential/issuance/v1.3.3/05-obtain-credential.d.ts +5 -0
  774. package/lib/typescript/credential/issuance/v1.3.3/05-obtain-credential.d.ts.map +1 -0
  775. package/lib/typescript/credential/issuance/v1.3.3/06-verify-and-parse-credential.d.ts +3 -0
  776. package/lib/typescript/credential/issuance/v1.3.3/06-verify-and-parse-credential.d.ts.map +1 -0
  777. package/lib/typescript/credential/issuance/v1.3.3/index.d.ts +3 -0
  778. package/lib/typescript/credential/issuance/v1.3.3/index.d.ts.map +1 -0
  779. package/lib/typescript/credential/issuance/v1.3.3/mappers.d.ts +2309 -0
  780. package/lib/typescript/credential/issuance/v1.3.3/mappers.d.ts.map +1 -0
  781. package/lib/typescript/credential/issuance/v1.3.3/types.d.ts +10 -0
  782. package/lib/typescript/credential/issuance/v1.3.3/types.d.ts.map +1 -0
  783. package/lib/typescript/credential/offer/api/01-resolve-credential-offer.d.ts +22 -0
  784. package/lib/typescript/credential/offer/api/01-resolve-credential-offer.d.ts.map +1 -0
  785. package/lib/typescript/credential/offer/api/02-extract-grant-details.d.ts +13 -0
  786. package/lib/typescript/credential/offer/api/02-extract-grant-details.d.ts.map +1 -0
  787. package/lib/typescript/credential/offer/api/index.d.ts +6 -0
  788. package/lib/typescript/credential/offer/api/index.d.ts.map +1 -0
  789. package/lib/typescript/credential/offer/api/types.d.ts +5 -0
  790. package/lib/typescript/credential/offer/api/types.d.ts.map +1 -0
  791. package/lib/typescript/credential/offer/common/errors.d.ts +10 -0
  792. package/lib/typescript/credential/offer/common/errors.d.ts.map +1 -0
  793. package/lib/typescript/credential/offer/index.d.ts +5 -6
  794. package/lib/typescript/credential/offer/index.d.ts.map +1 -1
  795. package/lib/typescript/credential/offer/v1.0.0/index.d.ts +3 -0
  796. package/lib/typescript/credential/offer/v1.0.0/index.d.ts.map +1 -0
  797. package/lib/typescript/credential/offer/v1.3.3/01-resolve-credential-offer.d.ts +25 -0
  798. package/lib/typescript/credential/offer/v1.3.3/01-resolve-credential-offer.d.ts.map +1 -0
  799. package/lib/typescript/credential/offer/v1.3.3/02-extract-grant-details.d.ts +16 -0
  800. package/lib/typescript/credential/offer/v1.3.3/02-extract-grant-details.d.ts.map +1 -0
  801. package/lib/typescript/credential/offer/v1.3.3/index.d.ts +3 -0
  802. package/lib/typescript/credential/offer/v1.3.3/index.d.ts.map +1 -0
  803. package/lib/typescript/credential/presentation/api/01-start-flow.d.ts +18 -0
  804. package/lib/typescript/credential/presentation/api/01-start-flow.d.ts.map +1 -0
  805. package/lib/typescript/credential/presentation/api/02-evaluate-rp-trust.d.ts +18 -0
  806. package/lib/typescript/credential/presentation/api/02-evaluate-rp-trust.d.ts.map +1 -0
  807. package/lib/typescript/credential/presentation/api/03-get-request-object.d.ts +19 -0
  808. package/lib/typescript/credential/presentation/api/03-get-request-object.d.ts.map +1 -0
  809. package/lib/typescript/credential/presentation/api/04-verify-request-object.d.ts +23 -0
  810. package/lib/typescript/credential/presentation/api/04-verify-request-object.d.ts.map +1 -0
  811. package/lib/typescript/credential/presentation/api/05-evaluate-dcql-query.d.ts +41 -0
  812. package/lib/typescript/credential/presentation/api/05-evaluate-dcql-query.d.ts.map +1 -0
  813. package/lib/typescript/credential/presentation/api/06-send-authorization-response.d.ts +54 -0
  814. package/lib/typescript/credential/presentation/api/06-send-authorization-response.d.ts.map +1 -0
  815. package/lib/typescript/credential/presentation/api/RelyingPartyConfig.d.ts +185 -0
  816. package/lib/typescript/credential/presentation/api/RelyingPartyConfig.d.ts.map +1 -0
  817. package/lib/typescript/credential/presentation/api/index.d.ts +12 -0
  818. package/lib/typescript/credential/presentation/api/index.d.ts.map +1 -0
  819. package/lib/typescript/credential/presentation/api/types.d.ts +207 -0
  820. package/lib/typescript/credential/presentation/api/types.d.ts.map +1 -0
  821. package/lib/typescript/credential/presentation/common/errors.d.ts +80 -0
  822. package/lib/typescript/credential/presentation/common/errors.d.ts.map +1 -0
  823. package/lib/typescript/credential/presentation/common/utils/dcql.d.ts +293 -0
  824. package/lib/typescript/credential/presentation/common/utils/dcql.d.ts.map +1 -0
  825. package/lib/typescript/credential/presentation/common/utils/http.d.ts +11 -0
  826. package/lib/typescript/credential/presentation/common/utils/http.d.ts.map +1 -0
  827. package/lib/typescript/credential/presentation/common/utils/sd-jwt.d.ts +14 -0
  828. package/lib/typescript/credential/presentation/common/utils/sd-jwt.d.ts.map +1 -0
  829. package/lib/typescript/credential/presentation/common/utils.d.ts +11 -0
  830. package/lib/typescript/credential/presentation/common/utils.d.ts.map +1 -0
  831. package/lib/typescript/credential/presentation/index.d.ts +5 -12
  832. package/lib/typescript/credential/presentation/index.d.ts.map +1 -1
  833. package/lib/typescript/credential/presentation/v1.0.0/01-start-flow.d.ts +3 -0
  834. package/lib/typescript/credential/presentation/v1.0.0/01-start-flow.d.ts.map +1 -0
  835. package/lib/typescript/credential/presentation/v1.0.0/02-evaluate-rp-trust.d.ts +3 -0
  836. package/lib/typescript/credential/presentation/v1.0.0/02-evaluate-rp-trust.d.ts.map +1 -0
  837. package/lib/typescript/credential/presentation/v1.0.0/03-get-request-object.d.ts +3 -0
  838. package/lib/typescript/credential/presentation/v1.0.0/03-get-request-object.d.ts.map +1 -0
  839. package/lib/typescript/credential/presentation/v1.0.0/04-verify-request-object.d.ts +3 -0
  840. package/lib/typescript/credential/presentation/v1.0.0/04-verify-request-object.d.ts.map +1 -0
  841. package/lib/typescript/credential/presentation/v1.0.0/05-evaluate-dcql-query.d.ts +3 -0
  842. package/lib/typescript/credential/presentation/v1.0.0/05-evaluate-dcql-query.d.ts.map +1 -0
  843. package/lib/typescript/credential/presentation/v1.0.0/06-send-authorization-response.d.ts +26 -0
  844. package/lib/typescript/credential/presentation/v1.0.0/06-send-authorization-response.d.ts.map +1 -0
  845. package/lib/typescript/credential/presentation/v1.0.0/index.d.ts +3 -0
  846. package/lib/typescript/credential/presentation/v1.0.0/index.d.ts.map +1 -0
  847. package/lib/typescript/credential/presentation/v1.0.0/mappers.d.ts +143 -0
  848. package/lib/typescript/credential/presentation/v1.0.0/mappers.d.ts.map +1 -0
  849. package/lib/typescript/credential/presentation/v1.0.0/types.d.ts +80 -0
  850. package/lib/typescript/credential/presentation/v1.0.0/types.d.ts.map +1 -0
  851. package/lib/typescript/credential/presentation/v1.0.0/utils.d.ts +11 -0
  852. package/lib/typescript/credential/presentation/v1.0.0/utils.d.ts.map +1 -0
  853. package/lib/typescript/credential/presentation/v1.0.0/utils.jwks.d.ts +11 -0
  854. package/lib/typescript/credential/presentation/v1.0.0/utils.jwks.d.ts.map +1 -0
  855. package/lib/typescript/credential/presentation/v1.3.3/01-start-flow.d.ts +3 -0
  856. package/lib/typescript/credential/presentation/v1.3.3/01-start-flow.d.ts.map +1 -0
  857. package/lib/typescript/credential/presentation/v1.3.3/02-evaluate-rp-trust.d.ts +3 -0
  858. package/lib/typescript/credential/presentation/v1.3.3/02-evaluate-rp-trust.d.ts.map +1 -0
  859. package/lib/typescript/credential/presentation/v1.3.3/03-get-request-object.d.ts +3 -0
  860. package/lib/typescript/credential/presentation/v1.3.3/03-get-request-object.d.ts.map +1 -0
  861. package/lib/typescript/credential/presentation/v1.3.3/04-verify-request-object.d.ts +3 -0
  862. package/lib/typescript/credential/presentation/v1.3.3/04-verify-request-object.d.ts.map +1 -0
  863. package/lib/typescript/credential/presentation/v1.3.3/05-evaluate-dcql-query.d.ts +3 -0
  864. package/lib/typescript/credential/presentation/v1.3.3/05-evaluate-dcql-query.d.ts.map +1 -0
  865. package/lib/typescript/credential/presentation/v1.3.3/06-send-authorization-response.d.ts +18 -0
  866. package/lib/typescript/credential/presentation/v1.3.3/06-send-authorization-response.d.ts.map +1 -0
  867. package/lib/typescript/credential/presentation/v1.3.3/index.d.ts +3 -0
  868. package/lib/typescript/credential/presentation/v1.3.3/index.d.ts.map +1 -0
  869. package/lib/typescript/credential/presentation/v1.3.3/mappers.d.ts +619 -0
  870. package/lib/typescript/credential/presentation/v1.3.3/mappers.d.ts.map +1 -0
  871. package/lib/typescript/credential/presentation/v1.3.3/sdkErrorMapper.d.ts +13 -0
  872. package/lib/typescript/credential/presentation/v1.3.3/sdkErrorMapper.d.ts.map +1 -0
  873. package/lib/typescript/credential/presentation/v1.3.3/types.d.ts +3730 -0
  874. package/lib/typescript/credential/presentation/v1.3.3/types.d.ts.map +1 -0
  875. package/lib/typescript/credential/presentation/v1.3.3/utils.mdoc.d.ts +28 -0
  876. package/lib/typescript/credential/presentation/v1.3.3/utils.mdoc.d.ts.map +1 -0
  877. package/lib/typescript/credential/status/api/index.d.ts +21 -0
  878. package/lib/typescript/credential/status/api/index.d.ts.map +1 -0
  879. package/lib/typescript/credential/status/api/status-assertion.d.ts +49 -0
  880. package/lib/typescript/credential/status/api/status-assertion.d.ts.map +1 -0
  881. package/lib/typescript/credential/status/api/status-list.d.ts +40 -0
  882. package/lib/typescript/credential/status/api/status-list.d.ts.map +1 -0
  883. package/lib/typescript/credential/status/api/types.d.ts +16 -0
  884. package/lib/typescript/credential/status/api/types.d.ts.map +1 -0
  885. package/lib/typescript/credential/status/index.d.ts +3 -6
  886. package/lib/typescript/credential/status/index.d.ts.map +1 -1
  887. package/lib/typescript/credential/status/v1.0.0/01-status-assertion.d.ts +3 -0
  888. package/lib/typescript/credential/status/v1.0.0/01-status-assertion.d.ts.map +1 -0
  889. package/lib/typescript/credential/status/v1.0.0/02-verify-and-parse-status-assertion.d.ts +3 -0
  890. package/lib/typescript/credential/status/v1.0.0/02-verify-and-parse-status-assertion.d.ts.map +1 -0
  891. package/lib/typescript/credential/status/v1.0.0/index.d.ts +3 -0
  892. package/lib/typescript/credential/status/v1.0.0/index.d.ts.map +1 -0
  893. package/lib/typescript/credential/status/v1.0.0/mappers.d.ts +47 -0
  894. package/lib/typescript/credential/status/v1.0.0/mappers.d.ts.map +1 -0
  895. package/lib/typescript/credential/status/v1.0.0/types.d.ts +782 -0
  896. package/lib/typescript/credential/status/v1.0.0/types.d.ts.map +1 -0
  897. package/lib/typescript/credential/status/v1.3.3/01-status-list.d.ts +3 -0
  898. package/lib/typescript/credential/status/v1.3.3/01-status-list.d.ts.map +1 -0
  899. package/lib/typescript/credential/status/v1.3.3/02-verify-and-parse-status-list.d.ts +3 -0
  900. package/lib/typescript/credential/status/v1.3.3/02-verify-and-parse-status-list.d.ts.map +1 -0
  901. package/lib/typescript/credential/status/v1.3.3/index.d.ts +3 -0
  902. package/lib/typescript/credential/status/v1.3.3/index.d.ts.map +1 -0
  903. package/lib/typescript/credential/trustmark/api/index.d.ts +49 -0
  904. package/lib/typescript/credential/trustmark/api/index.d.ts.map +1 -0
  905. package/lib/typescript/credential/trustmark/index.d.ts +3 -3
  906. package/lib/typescript/credential/trustmark/index.d.ts.map +1 -1
  907. package/lib/typescript/credential/trustmark/v1.0.0/get-credential-trustmark.d.ts +3 -0
  908. package/lib/typescript/credential/trustmark/v1.0.0/get-credential-trustmark.d.ts.map +1 -0
  909. package/lib/typescript/credential/trustmark/v1.0.0/index.d.ts +3 -0
  910. package/lib/typescript/credential/trustmark/v1.0.0/index.d.ts.map +1 -0
  911. package/lib/typescript/credential/trustmark/v1.3.3/get-credential-trustmark.d.ts +3 -0
  912. package/lib/typescript/credential/trustmark/v1.3.3/get-credential-trustmark.d.ts.map +1 -0
  913. package/lib/typescript/credential/trustmark/v1.3.3/index.d.ts +3 -0
  914. package/lib/typescript/credential/trustmark/v1.3.3/index.d.ts.map +1 -0
  915. package/lib/typescript/credentials-catalogue/api/DigitalCredentialsCatalogue.d.ts +613 -0
  916. package/lib/typescript/credentials-catalogue/api/DigitalCredentialsCatalogue.d.ts.map +1 -0
  917. package/lib/typescript/credentials-catalogue/api/index.d.ts +18 -0
  918. package/lib/typescript/credentials-catalogue/api/index.d.ts.map +1 -0
  919. package/lib/typescript/credentials-catalogue/index.d.ts +3 -2
  920. package/lib/typescript/credentials-catalogue/index.d.ts.map +1 -1
  921. package/lib/typescript/credentials-catalogue/v1.0.0/fetch-and-parse-catalogue.d.ts +3 -0
  922. package/lib/typescript/credentials-catalogue/v1.0.0/fetch-and-parse-catalogue.d.ts.map +1 -0
  923. package/lib/typescript/credentials-catalogue/v1.0.0/index.d.ts +3 -0
  924. package/lib/typescript/credentials-catalogue/v1.0.0/index.d.ts.map +1 -0
  925. package/lib/typescript/credentials-catalogue/v1.0.0/mappers.d.ts +54 -0
  926. package/lib/typescript/credentials-catalogue/v1.0.0/mappers.d.ts.map +1 -0
  927. package/lib/typescript/credentials-catalogue/v1.0.0/types.d.ts +844 -0
  928. package/lib/typescript/credentials-catalogue/v1.0.0/types.d.ts.map +1 -0
  929. package/lib/typescript/credentials-catalogue/v1.3.3/fetch-and-parse-catalogue.d.ts +3 -0
  930. package/lib/typescript/credentials-catalogue/v1.3.3/fetch-and-parse-catalogue.d.ts.map +1 -0
  931. package/lib/typescript/credentials-catalogue/v1.3.3/index.d.ts +3 -0
  932. package/lib/typescript/credentials-catalogue/v1.3.3/index.d.ts.map +1 -0
  933. package/lib/typescript/credentials-catalogue/v1.3.3/mappers.d.ts +168 -0
  934. package/lib/typescript/credentials-catalogue/v1.3.3/mappers.d.ts.map +1 -0
  935. package/lib/typescript/credentials-catalogue/v1.3.3/types.d.ts +1074 -0
  936. package/lib/typescript/credentials-catalogue/v1.3.3/types.d.ts.map +1 -0
  937. package/lib/typescript/credentials-catalogue/v1.3.3/utils.d.ts +26 -0
  938. package/lib/typescript/credentials-catalogue/v1.3.3/utils.d.ts.map +1 -0
  939. package/lib/typescript/index.d.ts +9 -4
  940. package/lib/typescript/index.d.ts.map +1 -1
  941. package/lib/typescript/mdoc/index.d.ts +4 -0
  942. package/lib/typescript/mdoc/index.d.ts.map +1 -1
  943. package/lib/typescript/mdoc/utils.d.ts +2 -2
  944. package/lib/typescript/mdoc/utils.d.ts.map +1 -1
  945. package/lib/typescript/sd-jwt/index.d.ts +58 -278
  946. package/lib/typescript/sd-jwt/index.d.ts.map +1 -1
  947. package/lib/typescript/sd-jwt/types.d.ts +118 -153
  948. package/lib/typescript/sd-jwt/types.d.ts.map +1 -1
  949. package/lib/typescript/sd-jwt/utils.d.ts.map +1 -1
  950. package/lib/typescript/trust/api/TrustAnchorConfig.d.ts +247 -0
  951. package/lib/typescript/trust/api/TrustAnchorConfig.d.ts.map +1 -0
  952. package/lib/typescript/trust/api/index.d.ts +43 -0
  953. package/lib/typescript/trust/api/index.d.ts.map +1 -0
  954. package/lib/typescript/trust/common/build-chain.d.ts +21 -0
  955. package/lib/typescript/trust/common/build-chain.d.ts.map +1 -0
  956. package/lib/typescript/trust/common/errors.d.ts +103 -0
  957. package/lib/typescript/trust/common/errors.d.ts.map +1 -0
  958. package/lib/typescript/trust/common/types.d.ts +1306 -0
  959. package/lib/typescript/trust/common/types.d.ts.map +1 -0
  960. package/lib/typescript/trust/common/utils.d.ts +53 -0
  961. package/lib/typescript/trust/common/utils.d.ts.map +1 -0
  962. package/lib/typescript/trust/common/verify-chain.d.ts +27 -0
  963. package/lib/typescript/trust/common/verify-chain.d.ts.map +1 -0
  964. package/lib/typescript/trust/index.d.ts +4 -5
  965. package/lib/typescript/trust/index.d.ts.map +1 -1
  966. package/lib/typescript/trust/v1.0.0/build-chain.d.ts +54 -0
  967. package/lib/typescript/trust/v1.0.0/build-chain.d.ts.map +1 -0
  968. package/lib/typescript/trust/v1.0.0/entities.d.ts +968 -0
  969. package/lib/typescript/trust/v1.0.0/entities.d.ts.map +1 -0
  970. package/lib/typescript/trust/v1.0.0/index.d.ts +3 -0
  971. package/lib/typescript/trust/v1.0.0/index.d.ts.map +1 -0
  972. package/lib/typescript/trust/v1.0.0/mappers.d.ts +113 -0
  973. package/lib/typescript/trust/v1.0.0/mappers.d.ts.map +1 -0
  974. package/lib/typescript/trust/v1.0.0/types.d.ts +12744 -0
  975. package/lib/typescript/trust/v1.0.0/types.d.ts.map +1 -0
  976. package/lib/typescript/trust/v1.0.0/verify-chain.d.ts +57 -0
  977. package/lib/typescript/trust/v1.0.0/verify-chain.d.ts.map +1 -0
  978. package/lib/typescript/trust/v1.3.3/entities.d.ts +103 -0
  979. package/lib/typescript/trust/v1.3.3/entities.d.ts.map +1 -0
  980. package/lib/typescript/trust/v1.3.3/types.d.ts +14620 -0
  981. package/lib/typescript/trust/v1.3.3/types.d.ts.map +1 -0
  982. package/lib/typescript/utils/auth.d.ts +2 -2
  983. package/lib/typescript/utils/callbacks.d.ts +21 -0
  984. package/lib/typescript/utils/callbacks.d.ts.map +1 -0
  985. package/lib/typescript/utils/config.d.ts +10 -0
  986. package/lib/typescript/utils/config.d.ts.map +1 -0
  987. package/lib/typescript/utils/credentials.d.ts +2 -3
  988. package/lib/typescript/utils/credentials.d.ts.map +1 -1
  989. package/lib/typescript/utils/errors.d.ts +38 -3
  990. package/lib/typescript/utils/errors.d.ts.map +1 -1
  991. package/lib/typescript/utils/mappers.d.ts +47 -0
  992. package/lib/typescript/utils/mappers.d.ts.map +1 -0
  993. package/lib/typescript/utils/misc.d.ts +7 -1
  994. package/lib/typescript/utils/misc.d.ts.map +1 -1
  995. package/lib/typescript/utils/object.d.ts +4 -0
  996. package/lib/typescript/utils/object.d.ts.map +1 -0
  997. package/lib/typescript/utils/par.d.ts +2 -2
  998. package/lib/typescript/utils/par.d.ts.map +1 -1
  999. package/lib/typescript/utils/pop.d.ts +2 -2
  1000. package/lib/typescript/utils/zod.d.ts +2 -0
  1001. package/lib/typescript/utils/zod.d.ts.map +1 -1
  1002. package/lib/typescript/wallet-instance/api/index.d.ts +45 -0
  1003. package/lib/typescript/wallet-instance/api/index.d.ts.map +1 -0
  1004. package/lib/typescript/wallet-instance/common/wallet-instance.d.ts +6 -0
  1005. package/lib/typescript/wallet-instance/common/wallet-instance.d.ts.map +1 -0
  1006. package/lib/typescript/wallet-instance/index.d.ts +3 -35
  1007. package/lib/typescript/wallet-instance/index.d.ts.map +1 -1
  1008. package/lib/typescript/wallet-instance/v1.0.0/index.d.ts +3 -0
  1009. package/lib/typescript/wallet-instance/v1.0.0/index.d.ts.map +1 -0
  1010. package/lib/typescript/wallet-instance/v1.3.3/index.d.ts +3 -0
  1011. package/lib/typescript/wallet-instance/v1.3.3/index.d.ts.map +1 -0
  1012. package/lib/typescript/wallet-instance-attestation/api/index.d.ts +46 -0
  1013. package/lib/typescript/wallet-instance-attestation/api/index.d.ts.map +1 -0
  1014. package/lib/typescript/wallet-instance-attestation/api/types.d.ts +211 -0
  1015. package/lib/typescript/wallet-instance-attestation/api/types.d.ts.map +1 -0
  1016. package/lib/typescript/wallet-instance-attestation/common/types.d.ts +306 -0
  1017. package/lib/typescript/wallet-instance-attestation/common/types.d.ts.map +1 -0
  1018. package/lib/typescript/wallet-instance-attestation/index.d.ts +3 -34
  1019. package/lib/typescript/wallet-instance-attestation/index.d.ts.map +1 -1
  1020. package/lib/typescript/wallet-instance-attestation/v1.0.0/index.d.ts +3 -0
  1021. package/lib/typescript/wallet-instance-attestation/v1.0.0/index.d.ts.map +1 -0
  1022. package/lib/typescript/wallet-instance-attestation/v1.0.0/issuing.d.ts +3 -0
  1023. package/lib/typescript/wallet-instance-attestation/v1.0.0/issuing.d.ts.map +1 -0
  1024. package/lib/typescript/wallet-instance-attestation/v1.0.0/mappers.d.ts +91 -0
  1025. package/lib/typescript/wallet-instance-attestation/v1.0.0/mappers.d.ts.map +1 -0
  1026. package/lib/typescript/wallet-instance-attestation/v1.0.0/types.d.ts +710 -0
  1027. package/lib/typescript/wallet-instance-attestation/v1.0.0/types.d.ts.map +1 -0
  1028. package/lib/typescript/wallet-instance-attestation/v1.0.0/utils.d.ts +15 -0
  1029. package/lib/typescript/wallet-instance-attestation/v1.0.0/utils.d.ts.map +1 -0
  1030. package/lib/typescript/wallet-instance-attestation/v1.3.3/index.d.ts +3 -0
  1031. package/lib/typescript/wallet-instance-attestation/v1.3.3/index.d.ts.map +1 -0
  1032. package/lib/typescript/wallet-instance-attestation/v1.3.3/issuing.d.ts +3 -0
  1033. package/lib/typescript/wallet-instance-attestation/v1.3.3/issuing.d.ts.map +1 -0
  1034. package/lib/typescript/wallet-instance-attestation/v1.3.3/types.d.ts +925 -0
  1035. package/lib/typescript/wallet-instance-attestation/v1.3.3/types.d.ts.map +1 -0
  1036. package/package.json +20 -13
  1037. package/src/IoWallet.ts +50 -0
  1038. package/src/api/index.ts +55 -0
  1039. package/src/credential/index.ts +1 -5
  1040. package/src/credential/issuance/README.md +37 -44
  1041. package/src/credential/issuance/api/01-evaluate-issuer-trust.ts +17 -0
  1042. package/src/credential/issuance/api/02-start-user-authorization.ts +50 -0
  1043. package/src/credential/issuance/api/03-complete-user-authorization.ts +102 -0
  1044. package/src/credential/issuance/api/04-authorize-access.ts +37 -0
  1045. package/src/credential/issuance/api/05-obtain-credential.ts +42 -0
  1046. package/src/credential/issuance/api/06-verify-and-parse-credential.ts +42 -0
  1047. package/src/credential/issuance/api/IssuerConfig.ts +65 -0
  1048. package/src/credential/issuance/api/index.ts +21 -0
  1049. package/src/credential/issuance/api/mrtd-pop/index.ts +104 -0
  1050. package/src/credential/issuance/api/mrtd-pop/types.ts +37 -0
  1051. package/src/credential/issuance/api/types.ts +34 -0
  1052. package/src/credential/issuance/common/02-start-user-authorization.ts +86 -0
  1053. package/src/credential/issuance/common/06-verify-and-parse-credential.mdoc.ts +236 -0
  1054. package/src/credential/issuance/common/06-verify-and-parse-credential.sdjwt.ts +261 -0
  1055. package/src/credential/issuance/common/authorization.ts +89 -0
  1056. package/src/credential/issuance/common/errors.ts +29 -0
  1057. package/src/credential/issuance/index.ts +5 -62
  1058. package/src/credential/issuance/mrtd-pop/01-verify-and-parse-challenge-info.ts +20 -65
  1059. package/src/credential/issuance/mrtd-pop/02-init-challenge.ts +25 -56
  1060. package/src/credential/issuance/mrtd-pop/03-validate-challenge.ts +34 -90
  1061. package/src/credential/issuance/mrtd-pop/index.ts +4 -17
  1062. package/src/credential/issuance/v1.0.0/01-evaluate-issuer-trust.ts +14 -0
  1063. package/src/credential/issuance/v1.0.0/02-start-user-authorization.ts +68 -0
  1064. package/src/credential/issuance/v1.0.0/03-complete-user-authorization.ts +279 -0
  1065. package/src/credential/issuance/v1.0.0/04-authorize-access.ts +93 -0
  1066. package/src/credential/issuance/v1.0.0/05-obtain-credential.ts +212 -0
  1067. package/src/credential/issuance/v1.0.0/06-verify-and-parse-credential.ts +46 -0
  1068. package/src/credential/issuance/v1.0.0/index.ts +28 -0
  1069. package/src/credential/issuance/v1.0.0/mappers.ts +29 -0
  1070. package/src/credential/issuance/v1.0.0/types.ts +28 -0
  1071. package/src/credential/issuance/v1.3.3/01-evaluate-issuer-trust.ts +19 -0
  1072. package/src/credential/issuance/v1.3.3/02-start-user-authorization.ts +109 -0
  1073. package/src/credential/issuance/v1.3.3/03-complete-user-authorization.ts +249 -0
  1074. package/src/credential/issuance/v1.3.3/04-authorize-access.ts +84 -0
  1075. package/src/credential/issuance/v1.3.3/05-obtain-credential.ts +188 -0
  1076. package/src/credential/issuance/v1.3.3/06-verify-and-parse-credential.ts +46 -0
  1077. package/src/credential/issuance/v1.3.3/index.ts +28 -0
  1078. package/src/credential/issuance/v1.3.3/mappers.ts +87 -0
  1079. package/src/credential/issuance/v1.3.3/types.ts +6 -0
  1080. package/src/credential/offer/README.md +103 -119
  1081. package/src/credential/offer/api/01-resolve-credential-offer.ts +23 -0
  1082. package/src/credential/offer/api/02-extract-grant-details.ts +13 -0
  1083. package/src/credential/offer/api/index.ts +8 -0
  1084. package/src/credential/offer/api/types.ts +5 -0
  1085. package/src/credential/offer/common/errors.ts +17 -0
  1086. package/src/credential/offer/index.ts +5 -16
  1087. package/src/credential/offer/v1.0.0/index.ts +11 -0
  1088. package/src/credential/offer/v1.3.3/01-resolve-credential-offer.ts +60 -0
  1089. package/src/credential/offer/v1.3.3/02-extract-grant-details.ts +27 -0
  1090. package/src/credential/offer/v1.3.3/index.ts +8 -0
  1091. package/src/credential/presentation/README.md +12 -9
  1092. package/src/credential/presentation/api/01-start-flow.ts +18 -0
  1093. package/src/credential/presentation/api/02-evaluate-rp-trust.ts +19 -0
  1094. package/src/credential/presentation/api/03-get-request-object.ts +20 -0
  1095. package/src/credential/presentation/api/04-verify-request-object.ts +24 -0
  1096. package/src/credential/presentation/api/05-evaluate-dcql-query.ts +54 -0
  1097. package/src/credential/presentation/api/06-send-authorization-response.ts +67 -0
  1098. package/src/credential/presentation/api/RelyingPartyConfig.ts +25 -0
  1099. package/src/credential/presentation/api/index.ts +18 -0
  1100. package/src/credential/presentation/api/types.ts +129 -0
  1101. package/src/credential/presentation/common/errors.ts +116 -0
  1102. package/src/credential/presentation/common/utils/dcql.ts +188 -0
  1103. package/src/credential/presentation/common/utils/http.ts +30 -0
  1104. package/src/credential/presentation/common/utils/sd-jwt.ts +68 -0
  1105. package/src/credential/presentation/common/utils.ts +30 -0
  1106. package/src/credential/presentation/index.ts +5 -71
  1107. package/src/credential/presentation/v1.0.0/01-start-flow.ts +22 -0
  1108. package/src/credential/presentation/v1.0.0/02-evaluate-rp-trust.ts +14 -0
  1109. package/src/credential/presentation/v1.0.0/03-get-request-object.ts +61 -0
  1110. package/src/credential/presentation/v1.0.0/04-verify-request-object.ts +104 -0
  1111. package/src/credential/presentation/v1.0.0/05-evaluate-dcql-query.ts +97 -0
  1112. package/src/credential/presentation/v1.0.0/06-send-authorization-response.ts +196 -0
  1113. package/src/credential/presentation/v1.0.0/index.ts +22 -0
  1114. package/src/credential/presentation/v1.0.0/mappers.ts +35 -0
  1115. package/src/credential/presentation/v1.0.0/types.ts +40 -0
  1116. package/src/credential/presentation/v1.0.0/utils.jwks.ts +26 -0
  1117. package/src/credential/presentation/v1.0.0/utils.ts +26 -0
  1118. package/src/credential/presentation/v1.3.3/01-start-flow.ts +22 -0
  1119. package/src/credential/presentation/v1.3.3/02-evaluate-rp-trust.ts +15 -0
  1120. package/src/credential/presentation/v1.3.3/03-get-request-object.ts +28 -0
  1121. package/src/credential/presentation/v1.3.3/04-verify-request-object.ts +31 -0
  1122. package/src/credential/presentation/v1.3.3/05-evaluate-dcql-query.ts +119 -0
  1123. package/src/credential/presentation/v1.3.3/06-send-authorization-response.ts +160 -0
  1124. package/src/credential/presentation/v1.3.3/index.ts +22 -0
  1125. package/src/credential/presentation/v1.3.3/mappers.ts +34 -0
  1126. package/src/credential/presentation/v1.3.3/sdkErrorMapper.ts +93 -0
  1127. package/src/credential/presentation/v1.3.3/types.ts +12 -0
  1128. package/src/credential/presentation/v1.3.3/utils.mdoc.ts +98 -0
  1129. package/src/credential/status/README.md +77 -19
  1130. package/src/credential/status/api/index.ts +23 -0
  1131. package/src/credential/status/api/status-assertion.ts +57 -0
  1132. package/src/credential/status/api/status-list.ts +50 -0
  1133. package/src/credential/status/api/types.ts +15 -0
  1134. package/src/credential/status/index.ts +3 -15
  1135. package/src/credential/status/v1.0.0/01-status-assertion.ts +95 -0
  1136. package/src/credential/status/v1.0.0/02-verify-and-parse-status-assertion.ts +87 -0
  1137. package/src/credential/status/v1.0.0/index.ts +14 -0
  1138. package/src/credential/status/v1.0.0/mappers.ts +8 -0
  1139. package/src/credential/status/v1.0.0/types.ts +90 -0
  1140. package/src/credential/status/v1.3.3/01-status-list.ts +50 -0
  1141. package/src/credential/status/v1.3.3/02-verify-and-parse-status-list.ts +19 -0
  1142. package/src/credential/status/v1.3.3/index.ts +14 -0
  1143. package/src/credential/trustmark/README.md +5 -1
  1144. package/src/credential/trustmark/api/index.ts +50 -0
  1145. package/src/credential/trustmark/index.ts +3 -8
  1146. package/src/credential/trustmark/v1.0.0/get-credential-trustmark.ts +89 -0
  1147. package/src/credential/trustmark/v1.0.0/index.ts +6 -0
  1148. package/src/credential/trustmark/v1.3.3/get-credential-trustmark.ts +7 -0
  1149. package/src/credential/trustmark/v1.3.3/index.ts +6 -0
  1150. package/src/credentials-catalogue/README.md +8 -2
  1151. package/src/credentials-catalogue/api/DigitalCredentialsCatalogue.ts +82 -0
  1152. package/src/credentials-catalogue/api/index.ts +21 -0
  1153. package/src/credentials-catalogue/index.ts +3 -2
  1154. package/src/credentials-catalogue/v1.0.0/fetch-and-parse-catalogue.ts +41 -0
  1155. package/src/credentials-catalogue/v1.0.0/index.ts +6 -0
  1156. package/src/credentials-catalogue/v1.0.0/mappers.ts +20 -0
  1157. package/src/credentials-catalogue/v1.0.0/types.ts +97 -0
  1158. package/src/credentials-catalogue/v1.3.3/fetch-and-parse-catalogue.ts +52 -0
  1159. package/src/credentials-catalogue/v1.3.3/index.ts +6 -0
  1160. package/src/credentials-catalogue/v1.3.3/mappers.ts +75 -0
  1161. package/src/credentials-catalogue/v1.3.3/types.ts +162 -0
  1162. package/src/credentials-catalogue/v1.3.3/utils.ts +64 -0
  1163. package/src/index.ts +18 -7
  1164. package/src/mdoc/index.ts +43 -2
  1165. package/src/mdoc/utils.ts +4 -2
  1166. package/src/sd-jwt/__test__/types.test.ts +1 -77
  1167. package/src/sd-jwt/__test__/utils.test.ts +3 -13
  1168. package/src/sd-jwt/index.ts +19 -164
  1169. package/src/sd-jwt/types.ts +33 -63
  1170. package/src/sd-jwt/utils.ts +11 -8
  1171. package/src/trust/README.md +24 -11
  1172. package/src/trust/api/TrustAnchorConfig.ts +20 -0
  1173. package/src/trust/api/index.ts +57 -0
  1174. package/src/trust/common/build-chain.ts +161 -0
  1175. package/src/trust/common/errors.ts +138 -0
  1176. package/src/trust/common/types.ts +78 -0
  1177. package/src/trust/common/utils.ts +150 -0
  1178. package/src/trust/common/verify-chain.ts +293 -0
  1179. package/src/trust/index.ts +4 -6
  1180. package/src/trust/v1.0.0/build-chain.ts +8 -0
  1181. package/src/trust/v1.0.0/entities.ts +93 -0
  1182. package/src/trust/v1.0.0/index.ts +15 -0
  1183. package/src/trust/v1.0.0/mappers.ts +15 -0
  1184. package/src/trust/v1.0.0/types.ts +178 -0
  1185. package/src/trust/v1.0.0/verify-chain.ts +12 -0
  1186. package/src/trust/v1.3.3/entities.ts +51 -0
  1187. package/src/trust/v1.3.3/types.ts +68 -0
  1188. package/src/utils/callbacks.ts +84 -0
  1189. package/src/utils/config.ts +18 -0
  1190. package/src/utils/credentials.ts +10 -9
  1191. package/src/utils/errors.ts +69 -6
  1192. package/src/utils/mappers.ts +84 -0
  1193. package/src/utils/misc.ts +16 -2
  1194. package/src/utils/object.ts +15 -0
  1195. package/src/utils/par.ts +3 -5
  1196. package/src/utils/zod.ts +3 -0
  1197. package/src/wallet-instance/README.md +8 -5
  1198. package/src/wallet-instance/api/index.ts +53 -0
  1199. package/src/wallet-instance/common/wallet-instance.ts +96 -0
  1200. package/src/wallet-instance/index.ts +3 -120
  1201. package/src/wallet-instance/v1.0.0/index.ts +14 -0
  1202. package/src/wallet-instance/v1.3.3/index.ts +14 -0
  1203. package/src/wallet-instance-attestation/README.md +8 -2
  1204. package/src/wallet-instance-attestation/api/index.ts +48 -0
  1205. package/src/wallet-instance-attestation/api/types.ts +25 -0
  1206. package/src/wallet-instance-attestation/common/types.ts +25 -0
  1207. package/src/wallet-instance-attestation/index.ts +3 -56
  1208. package/src/wallet-instance-attestation/v1.0.0/index.ts +11 -0
  1209. package/src/wallet-instance-attestation/v1.0.0/issuing.ts +154 -0
  1210. package/src/wallet-instance-attestation/v1.0.0/mappers.ts +24 -0
  1211. package/src/wallet-instance-attestation/v1.0.0/types.ts +59 -0
  1212. package/src/wallet-instance-attestation/v1.0.0/utils.ts +37 -0
  1213. package/src/wallet-instance-attestation/v1.3.3/index.ts +13 -0
  1214. package/src/wallet-instance-attestation/v1.3.3/issuing.ts +7 -0
  1215. package/src/wallet-instance-attestation/v1.3.3/types.ts +48 -0
  1216. package/lib/commonjs/credential/issuance/01-start-flow.js +0 -2
  1217. package/lib/commonjs/credential/issuance/01-start-flow.js.map +0 -1
  1218. package/lib/commonjs/credential/issuance/02-evaluate-issuer-trust.js +0 -32
  1219. package/lib/commonjs/credential/issuance/02-evaluate-issuer-trust.js.map +0 -1
  1220. package/lib/commonjs/credential/issuance/03-start-user-authorization.js +0 -132
  1221. package/lib/commonjs/credential/issuance/03-start-user-authorization.js.map +0 -1
  1222. package/lib/commonjs/credential/issuance/04-complete-user-authorization.js +0 -259
  1223. package/lib/commonjs/credential/issuance/04-complete-user-authorization.js.map +0 -1
  1224. package/lib/commonjs/credential/issuance/05-authorize-access.js +0 -87
  1225. package/lib/commonjs/credential/issuance/05-authorize-access.js.map +0 -1
  1226. package/lib/commonjs/credential/issuance/06-obtain-credential.js +0 -168
  1227. package/lib/commonjs/credential/issuance/06-obtain-credential.js.map +0 -1
  1228. package/lib/commonjs/credential/issuance/07-verify-and-parse-credential.js +0 -388
  1229. package/lib/commonjs/credential/issuance/07-verify-and-parse-credential.js.map +0 -1
  1230. package/lib/commonjs/credential/issuance/errors.js +0 -35
  1231. package/lib/commonjs/credential/issuance/errors.js.map +0 -1
  1232. package/lib/commonjs/credential/issuance/mrtd-pop/types.js +0 -57
  1233. package/lib/commonjs/credential/issuance/mrtd-pop/types.js.map +0 -1
  1234. package/lib/commonjs/credential/issuance/types.js +0 -43
  1235. package/lib/commonjs/credential/issuance/types.js.map +0 -1
  1236. package/lib/commonjs/credential/offer/01-start-flow.js +0 -75
  1237. package/lib/commonjs/credential/offer/01-start-flow.js.map +0 -1
  1238. package/lib/commonjs/credential/offer/02-fetch-credential-offer.js +0 -45
  1239. package/lib/commonjs/credential/offer/02-fetch-credential-offer.js.map +0 -1
  1240. package/lib/commonjs/credential/offer/errors.js +0 -22
  1241. package/lib/commonjs/credential/offer/errors.js.map +0 -1
  1242. package/lib/commonjs/credential/offer/types.js +0 -51
  1243. package/lib/commonjs/credential/offer/types.js.map +0 -1
  1244. package/lib/commonjs/credential/presentation/01-start-flow.js +0 -45
  1245. package/lib/commonjs/credential/presentation/01-start-flow.js.map +0 -1
  1246. package/lib/commonjs/credential/presentation/02-evaluate-rp-trust.js +0 -34
  1247. package/lib/commonjs/credential/presentation/02-evaluate-rp-trust.js.map +0 -1
  1248. package/lib/commonjs/credential/presentation/03-get-request-object.js +0 -56
  1249. package/lib/commonjs/credential/presentation/03-get-request-object.js.map +0 -1
  1250. package/lib/commonjs/credential/presentation/04-retrieve-rp-jwks.js +0 -32
  1251. package/lib/commonjs/credential/presentation/04-retrieve-rp-jwks.js.map +0 -1
  1252. package/lib/commonjs/credential/presentation/05-verify-request-object.js +0 -95
  1253. package/lib/commonjs/credential/presentation/05-verify-request-object.js.map +0 -1
  1254. package/lib/commonjs/credential/presentation/06-fetch-presentation-definition.js +0 -39
  1255. package/lib/commonjs/credential/presentation/06-fetch-presentation-definition.js.map +0 -1
  1256. package/lib/commonjs/credential/presentation/07-evaluate-dcql-query.js +0 -155
  1257. package/lib/commonjs/credential/presentation/07-evaluate-dcql-query.js.map +0 -1
  1258. package/lib/commonjs/credential/presentation/07-evaluate-input-descriptor.js +0 -307
  1259. package/lib/commonjs/credential/presentation/07-evaluate-input-descriptor.js.map +0 -1
  1260. package/lib/commonjs/credential/presentation/08-send-authorization-response.js +0 -252
  1261. package/lib/commonjs/credential/presentation/08-send-authorization-response.js.map +0 -1
  1262. package/lib/commonjs/credential/presentation/errors.js +0 -121
  1263. package/lib/commonjs/credential/presentation/errors.js.map +0 -1
  1264. package/lib/commonjs/credential/presentation/types.js +0 -157
  1265. package/lib/commonjs/credential/presentation/types.js.map +0 -1
  1266. package/lib/commonjs/credential/status/01-start-flow.js +0 -2
  1267. package/lib/commonjs/credential/status/01-start-flow.js.map +0 -1
  1268. package/lib/commonjs/credential/status/02-status-assertion.js +0 -79
  1269. package/lib/commonjs/credential/status/02-status-assertion.js.map +0 -1
  1270. package/lib/commonjs/credential/status/03-verify-and-parse-status-assertion.js +0 -85
  1271. package/lib/commonjs/credential/status/03-verify-and-parse-status-assertion.js.map +0 -1
  1272. package/lib/commonjs/credential/status/types.js +0 -81
  1273. package/lib/commonjs/credential/status/types.js.map +0 -1
  1274. package/lib/commonjs/credential/trustmark/get-credential-trustmark.js +0 -86
  1275. package/lib/commonjs/credential/trustmark/get-credential-trustmark.js.map +0 -1
  1276. package/lib/commonjs/credentials-catalogue/fetch-and-parse-catalogue.js +0 -42
  1277. package/lib/commonjs/credentials-catalogue/fetch-and-parse-catalogue.js.map +0 -1
  1278. package/lib/commonjs/credentials-catalogue/types.js +0 -99
  1279. package/lib/commonjs/credentials-catalogue/types.js.map +0 -1
  1280. package/lib/commonjs/pid/index.js +0 -11
  1281. package/lib/commonjs/pid/index.js.map +0 -1
  1282. package/lib/commonjs/pid/sd-jwt/converters.js +0 -25
  1283. package/lib/commonjs/pid/sd-jwt/converters.js.map +0 -1
  1284. package/lib/commonjs/pid/sd-jwt/index.js +0 -77
  1285. package/lib/commonjs/pid/sd-jwt/index.js.map +0 -1
  1286. package/lib/commonjs/pid/sd-jwt/types.js +0 -50
  1287. package/lib/commonjs/pid/sd-jwt/types.js.map +0 -1
  1288. package/lib/commonjs/sd-jwt/__test__/converters.test.js +0 -25
  1289. package/lib/commonjs/sd-jwt/__test__/converters.test.js.map +0 -1
  1290. package/lib/commonjs/sd-jwt/__test__/index.test.js +0 -134
  1291. package/lib/commonjs/sd-jwt/__test__/index.test.js.map +0 -1
  1292. package/lib/commonjs/sd-jwt/converters.js +0 -30
  1293. package/lib/commonjs/sd-jwt/converters.js.map +0 -1
  1294. package/lib/commonjs/sd-jwt/errors.js +0 -40
  1295. package/lib/commonjs/sd-jwt/errors.js.map +0 -1
  1296. package/lib/commonjs/sd-jwt/verifier.js +0 -24
  1297. package/lib/commonjs/sd-jwt/verifier.js.map +0 -1
  1298. package/lib/commonjs/trust/build-chain.js +0 -255
  1299. package/lib/commonjs/trust/build-chain.js.map +0 -1
  1300. package/lib/commonjs/trust/errors.js +0 -134
  1301. package/lib/commonjs/trust/errors.js.map +0 -1
  1302. package/lib/commonjs/trust/types.js +0 -234
  1303. package/lib/commonjs/trust/types.js.map +0 -1
  1304. package/lib/commonjs/trust/utils.js +0 -70
  1305. package/lib/commonjs/trust/utils.js.map +0 -1
  1306. package/lib/commonjs/trust/verify-chain.js +0 -188
  1307. package/lib/commonjs/trust/verify-chain.js.map +0 -1
  1308. package/lib/commonjs/wallet-instance-attestation/issuing.js +0 -117
  1309. package/lib/commonjs/wallet-instance-attestation/issuing.js.map +0 -1
  1310. package/lib/commonjs/wallet-instance-attestation/types.js +0 -69
  1311. package/lib/commonjs/wallet-instance-attestation/types.js.map +0 -1
  1312. package/lib/module/credential/issuance/01-start-flow.js +0 -2
  1313. package/lib/module/credential/issuance/01-start-flow.js.map +0 -1
  1314. package/lib/module/credential/issuance/02-evaluate-issuer-trust.js +0 -25
  1315. package/lib/module/credential/issuance/02-evaluate-issuer-trust.js.map +0 -1
  1316. package/lib/module/credential/issuance/03-start-user-authorization.js +0 -125
  1317. package/lib/module/credential/issuance/03-start-user-authorization.js.map +0 -1
  1318. package/lib/module/credential/issuance/04-complete-user-authorization.js +0 -247
  1319. package/lib/module/credential/issuance/04-complete-user-authorization.js.map +0 -1
  1320. package/lib/module/credential/issuance/05-authorize-access.js +0 -78
  1321. package/lib/module/credential/issuance/05-authorize-access.js.map +0 -1
  1322. package/lib/module/credential/issuance/06-obtain-credential.js +0 -160
  1323. package/lib/module/credential/issuance/06-obtain-credential.js.map +0 -1
  1324. package/lib/module/credential/issuance/07-verify-and-parse-credential.js +0 -382
  1325. package/lib/module/credential/issuance/07-verify-and-parse-credential.js.map +0 -1
  1326. package/lib/module/credential/issuance/errors.js +0 -28
  1327. package/lib/module/credential/issuance/errors.js.map +0 -1
  1328. package/lib/module/credential/issuance/mrtd-pop/types.js +0 -46
  1329. package/lib/module/credential/issuance/mrtd-pop/types.js.map +0 -1
  1330. package/lib/module/credential/issuance/types.js +0 -30
  1331. package/lib/module/credential/issuance/types.js.map +0 -1
  1332. package/lib/module/credential/offer/01-start-flow.js +0 -66
  1333. package/lib/module/credential/offer/01-start-flow.js.map +0 -1
  1334. package/lib/module/credential/offer/02-fetch-credential-offer.js +0 -38
  1335. package/lib/module/credential/offer/02-fetch-credential-offer.js.map +0 -1
  1336. package/lib/module/credential/offer/errors.js +0 -14
  1337. package/lib/module/credential/offer/errors.js.map +0 -1
  1338. package/lib/module/credential/offer/types.js +0 -41
  1339. package/lib/module/credential/offer/types.js.map +0 -1
  1340. package/lib/module/credential/presentation/01-start-flow.js +0 -36
  1341. package/lib/module/credential/presentation/01-start-flow.js.map +0 -1
  1342. package/lib/module/credential/presentation/02-evaluate-rp-trust.js +0 -27
  1343. package/lib/module/credential/presentation/02-evaluate-rp-trust.js.map +0 -1
  1344. package/lib/module/credential/presentation/03-get-request-object.js +0 -49
  1345. package/lib/module/credential/presentation/03-get-request-object.js.map +0 -1
  1346. package/lib/module/credential/presentation/04-retrieve-rp-jwks.js +0 -25
  1347. package/lib/module/credential/presentation/04-retrieve-rp-jwks.js.map +0 -1
  1348. package/lib/module/credential/presentation/05-verify-request-object.js +0 -88
  1349. package/lib/module/credential/presentation/05-verify-request-object.js.map +0 -1
  1350. package/lib/module/credential/presentation/06-fetch-presentation-definition.js +0 -32
  1351. package/lib/module/credential/presentation/06-fetch-presentation-definition.js.map +0 -1
  1352. package/lib/module/credential/presentation/07-evaluate-dcql-query.js +0 -148
  1353. package/lib/module/credential/presentation/07-evaluate-dcql-query.js.map +0 -1
  1354. package/lib/module/credential/presentation/07-evaluate-input-descriptor.js +0 -296
  1355. package/lib/module/credential/presentation/07-evaluate-input-descriptor.js.map +0 -1
  1356. package/lib/module/credential/presentation/08-send-authorization-response.js +0 -239
  1357. package/lib/module/credential/presentation/08-send-authorization-response.js.map +0 -1
  1358. package/lib/module/credential/presentation/errors.js +0 -103
  1359. package/lib/module/credential/presentation/errors.js.map +0 -1
  1360. package/lib/module/credential/presentation/types.js +0 -146
  1361. package/lib/module/credential/presentation/types.js.map +0 -1
  1362. package/lib/module/credential/status/01-start-flow.js +0 -2
  1363. package/lib/module/credential/status/01-start-flow.js.map +0 -1
  1364. package/lib/module/credential/status/02-status-assertion.js +0 -72
  1365. package/lib/module/credential/status/02-status-assertion.js.map +0 -1
  1366. package/lib/module/credential/status/03-verify-and-parse-status-assertion.js +0 -78
  1367. package/lib/module/credential/status/03-verify-and-parse-status-assertion.js.map +0 -1
  1368. package/lib/module/credential/status/types.js +0 -71
  1369. package/lib/module/credential/status/types.js.map +0 -1
  1370. package/lib/module/credential/trustmark/get-credential-trustmark.js +0 -77
  1371. package/lib/module/credential/trustmark/get-credential-trustmark.js.map +0 -1
  1372. package/lib/module/credentials-catalogue/fetch-and-parse-catalogue.js +0 -35
  1373. package/lib/module/credentials-catalogue/fetch-and-parse-catalogue.js.map +0 -1
  1374. package/lib/module/credentials-catalogue/types.js +0 -89
  1375. package/lib/module/credentials-catalogue/types.js.map +0 -1
  1376. package/lib/module/pid/index.js +0 -3
  1377. package/lib/module/pid/index.js.map +0 -1
  1378. package/lib/module/pid/sd-jwt/converters.js +0 -19
  1379. package/lib/module/pid/sd-jwt/converters.js.map +0 -1
  1380. package/lib/module/pid/sd-jwt/index.js +0 -66
  1381. package/lib/module/pid/sd-jwt/index.js.map +0 -1
  1382. package/lib/module/pid/sd-jwt/types.js +0 -43
  1383. package/lib/module/pid/sd-jwt/types.js.map +0 -1
  1384. package/lib/module/sd-jwt/__test__/converters.test.js +0 -23
  1385. package/lib/module/sd-jwt/__test__/converters.test.js.map +0 -1
  1386. package/lib/module/sd-jwt/__test__/index.test.js +0 -132
  1387. package/lib/module/sd-jwt/__test__/index.test.js.map +0 -1
  1388. package/lib/module/sd-jwt/converters.js +0 -24
  1389. package/lib/module/sd-jwt/converters.js.map +0 -1
  1390. package/lib/module/sd-jwt/errors.js +0 -32
  1391. package/lib/module/sd-jwt/errors.js.map +0 -1
  1392. package/lib/module/sd-jwt/verifier.js +0 -17
  1393. package/lib/module/sd-jwt/verifier.js.map +0 -1
  1394. package/lib/module/trust/build-chain.js +0 -238
  1395. package/lib/module/trust/build-chain.js.map +0 -1
  1396. package/lib/module/trust/errors.js +0 -116
  1397. package/lib/module/trust/errors.js.map +0 -1
  1398. package/lib/module/trust/types.js +0 -221
  1399. package/lib/module/trust/types.js.map +0 -1
  1400. package/lib/module/trust/utils.js +0 -60
  1401. package/lib/module/trust/utils.js.map +0 -1
  1402. package/lib/module/trust/verify-chain.js +0 -179
  1403. package/lib/module/trust/verify-chain.js.map +0 -1
  1404. package/lib/module/wallet-instance-attestation/issuing.js +0 -110
  1405. package/lib/module/wallet-instance-attestation/issuing.js.map +0 -1
  1406. package/lib/module/wallet-instance-attestation/types.js +0 -58
  1407. package/lib/module/wallet-instance-attestation/types.js.map +0 -1
  1408. package/lib/typescript/credential/issuance/01-start-flow.d.ts +0 -12
  1409. package/lib/typescript/credential/issuance/01-start-flow.d.ts.map +0 -1
  1410. package/lib/typescript/credential/issuance/02-evaluate-issuer-trust.d.ts +0 -19
  1411. package/lib/typescript/credential/issuance/02-evaluate-issuer-trust.d.ts.map +0 -1
  1412. package/lib/typescript/credential/issuance/03-start-user-authorization.d.ts +0 -47
  1413. package/lib/typescript/credential/issuance/03-start-user-authorization.d.ts.map +0 -1
  1414. package/lib/typescript/credential/issuance/04-complete-user-authorization.d.ts +0 -79
  1415. package/lib/typescript/credential/issuance/04-complete-user-authorization.d.ts.map +0 -1
  1416. package/lib/typescript/credential/issuance/05-authorize-access.d.ts +0 -34
  1417. package/lib/typescript/credential/issuance/05-authorize-access.d.ts.map +0 -1
  1418. package/lib/typescript/credential/issuance/06-obtain-credential.d.ts +0 -36
  1419. package/lib/typescript/credential/issuance/06-obtain-credential.d.ts.map +0 -1
  1420. package/lib/typescript/credential/issuance/07-verify-and-parse-credential.d.ts +0 -43
  1421. package/lib/typescript/credential/issuance/07-verify-and-parse-credential.d.ts.map +0 -1
  1422. package/lib/typescript/credential/issuance/errors.d.ts +0 -19
  1423. package/lib/typescript/credential/issuance/errors.d.ts.map +0 -1
  1424. package/lib/typescript/credential/issuance/mrtd-pop/types.d.ts +0 -201
  1425. package/lib/typescript/credential/issuance/mrtd-pop/types.d.ts.map +0 -1
  1426. package/lib/typescript/credential/issuance/types.d.ts +0 -96
  1427. package/lib/typescript/credential/issuance/types.d.ts.map +0 -1
  1428. package/lib/typescript/credential/offer/01-start-flow.d.ts +0 -172
  1429. package/lib/typescript/credential/offer/01-start-flow.d.ts.map +0 -1
  1430. package/lib/typescript/credential/offer/02-fetch-credential-offer.d.ts +0 -20
  1431. package/lib/typescript/credential/offer/02-fetch-credential-offer.d.ts.map +0 -1
  1432. package/lib/typescript/credential/offer/errors.d.ts +0 -10
  1433. package/lib/typescript/credential/offer/errors.d.ts.map +0 -1
  1434. package/lib/typescript/credential/offer/types.d.ts +0 -264
  1435. package/lib/typescript/credential/offer/types.d.ts.map +0 -1
  1436. package/lib/typescript/credential/presentation/01-start-flow.d.ts +0 -39
  1437. package/lib/typescript/credential/presentation/01-start-flow.d.ts.map +0 -1
  1438. package/lib/typescript/credential/presentation/02-evaluate-rp-trust.d.ts +0 -19
  1439. package/lib/typescript/credential/presentation/02-evaluate-rp-trust.d.ts.map +0 -1
  1440. package/lib/typescript/credential/presentation/03-get-request-object.d.ts +0 -19
  1441. package/lib/typescript/credential/presentation/03-get-request-object.d.ts.map +0 -1
  1442. package/lib/typescript/credential/presentation/04-retrieve-rp-jwks.d.ts +0 -23
  1443. package/lib/typescript/credential/presentation/04-retrieve-rp-jwks.d.ts.map +0 -1
  1444. package/lib/typescript/credential/presentation/05-verify-request-object.d.ts +0 -21
  1445. package/lib/typescript/credential/presentation/05-verify-request-object.d.ts.map +0 -1
  1446. package/lib/typescript/credential/presentation/06-fetch-presentation-definition.d.ts +0 -21
  1447. package/lib/typescript/credential/presentation/06-fetch-presentation-definition.d.ts.map +0 -1
  1448. package/lib/typescript/credential/presentation/07-evaluate-dcql-query.d.ts +0 -29
  1449. package/lib/typescript/credential/presentation/07-evaluate-dcql-query.d.ts.map +0 -1
  1450. package/lib/typescript/credential/presentation/07-evaluate-input-descriptor.d.ts +0 -97
  1451. package/lib/typescript/credential/presentation/07-evaluate-input-descriptor.d.ts.map +0 -1
  1452. package/lib/typescript/credential/presentation/08-send-authorization-response.d.ts +0 -98
  1453. package/lib/typescript/credential/presentation/08-send-authorization-response.d.ts.map +0 -1
  1454. package/lib/typescript/credential/presentation/errors.d.ts +0 -73
  1455. package/lib/typescript/credential/presentation/errors.d.ts.map +0 -1
  1456. package/lib/typescript/credential/presentation/types.d.ts +0 -792
  1457. package/lib/typescript/credential/presentation/types.d.ts.map +0 -1
  1458. package/lib/typescript/credential/status/01-start-flow.d.ts +0 -10
  1459. package/lib/typescript/credential/status/01-start-flow.d.ts.map +0 -1
  1460. package/lib/typescript/credential/status/02-status-assertion.d.ts +0 -24
  1461. package/lib/typescript/credential/status/02-status-assertion.d.ts.map +0 -1
  1462. package/lib/typescript/credential/status/03-verify-and-parse-status-assertion.d.ts +0 -22
  1463. package/lib/typescript/credential/status/03-verify-and-parse-status-assertion.d.ts.map +0 -1
  1464. package/lib/typescript/credential/status/types.d.ts +0 -782
  1465. package/lib/typescript/credential/status/types.d.ts.map +0 -1
  1466. package/lib/typescript/credential/trustmark/get-credential-trustmark.d.ts +0 -52
  1467. package/lib/typescript/credential/trustmark/get-credential-trustmark.d.ts.map +0 -1
  1468. package/lib/typescript/credentials-catalogue/fetch-and-parse-catalogue.d.ts +0 -15
  1469. package/lib/typescript/credentials-catalogue/fetch-and-parse-catalogue.d.ts.map +0 -1
  1470. package/lib/typescript/credentials-catalogue/types.d.ts +0 -844
  1471. package/lib/typescript/credentials-catalogue/types.d.ts.map +0 -1
  1472. package/lib/typescript/pid/index.d.ts +0 -3
  1473. package/lib/typescript/pid/index.d.ts.map +0 -1
  1474. package/lib/typescript/pid/sd-jwt/converters.d.ts +0 -4
  1475. package/lib/typescript/pid/sd-jwt/converters.d.ts.map +0 -1
  1476. package/lib/typescript/pid/sd-jwt/index.d.ts +0 -50
  1477. package/lib/typescript/pid/sd-jwt/index.d.ts.map +0 -1
  1478. package/lib/typescript/pid/sd-jwt/types.d.ts +0 -196
  1479. package/lib/typescript/pid/sd-jwt/types.d.ts.map +0 -1
  1480. package/lib/typescript/sd-jwt/__test__/converters.test.d.ts +0 -2
  1481. package/lib/typescript/sd-jwt/__test__/converters.test.d.ts.map +0 -1
  1482. package/lib/typescript/sd-jwt/__test__/index.test.d.ts +0 -2
  1483. package/lib/typescript/sd-jwt/__test__/index.test.d.ts.map +0 -1
  1484. package/lib/typescript/sd-jwt/converters.d.ts +0 -3
  1485. package/lib/typescript/sd-jwt/converters.d.ts.map +0 -1
  1486. package/lib/typescript/sd-jwt/errors.d.ts +0 -20
  1487. package/lib/typescript/sd-jwt/errors.d.ts.map +0 -1
  1488. package/lib/typescript/sd-jwt/verifier.d.ts +0 -3
  1489. package/lib/typescript/sd-jwt/verifier.d.ts.map +0 -1
  1490. package/lib/typescript/trust/build-chain.d.ts +0 -1299
  1491. package/lib/typescript/trust/build-chain.d.ts.map +0 -1
  1492. package/lib/typescript/trust/errors.d.ts +0 -103
  1493. package/lib/typescript/trust/errors.d.ts.map +0 -1
  1494. package/lib/typescript/trust/types.d.ts +0 -15945
  1495. package/lib/typescript/trust/types.d.ts.map +0 -1
  1496. package/lib/typescript/trust/utils.d.ts +0 -22
  1497. package/lib/typescript/trust/utils.d.ts.map +0 -1
  1498. package/lib/typescript/trust/verify-chain.d.ts +0 -39
  1499. package/lib/typescript/trust/verify-chain.d.ts.map +0 -1
  1500. package/lib/typescript/wallet-instance-attestation/issuing.d.ts +0 -34
  1501. package/lib/typescript/wallet-instance-attestation/issuing.d.ts.map +0 -1
  1502. package/lib/typescript/wallet-instance-attestation/types.d.ts +0 -715
  1503. package/lib/typescript/wallet-instance-attestation/types.d.ts.map +0 -1
  1504. package/src/credential/issuance/01-start-flow.ts +0 -11
  1505. package/src/credential/issuance/02-evaluate-issuer-trust.ts +0 -33
  1506. package/src/credential/issuance/03-start-user-authorization.ts +0 -196
  1507. package/src/credential/issuance/04-complete-user-authorization.ts +0 -372
  1508. package/src/credential/issuance/05-authorize-access.ts +0 -129
  1509. package/src/credential/issuance/06-obtain-credential.ts +0 -254
  1510. package/src/credential/issuance/07-verify-and-parse-credential.ts +0 -572
  1511. package/src/credential/issuance/errors.ts +0 -29
  1512. package/src/credential/issuance/mrtd-pop/types.ts +0 -65
  1513. package/src/credential/issuance/types.ts +0 -43
  1514. package/src/credential/offer/01-start-flow.ts +0 -89
  1515. package/src/credential/offer/02-fetch-credential-offer.ts +0 -54
  1516. package/src/credential/offer/errors.ts +0 -17
  1517. package/src/credential/offer/types.ts +0 -59
  1518. package/src/credential/presentation/01-start-flow.ts +0 -42
  1519. package/src/credential/presentation/02-evaluate-rp-trust.ts +0 -34
  1520. package/src/credential/presentation/03-get-request-object.ts +0 -61
  1521. package/src/credential/presentation/04-retrieve-rp-jwks.ts +0 -34
  1522. package/src/credential/presentation/05-verify-request-object.ts +0 -121
  1523. package/src/credential/presentation/06-fetch-presentation-definition.ts +0 -48
  1524. package/src/credential/presentation/07-evaluate-dcql-query.ts +0 -198
  1525. package/src/credential/presentation/07-evaluate-input-descriptor.ts +0 -408
  1526. package/src/credential/presentation/08-send-authorization-response.ts +0 -329
  1527. package/src/credential/presentation/errors.ts +0 -112
  1528. package/src/credential/presentation/types.ts +0 -169
  1529. package/src/credential/status/01-start-flow.ts +0 -9
  1530. package/src/credential/status/02-status-assertion.ts +0 -115
  1531. package/src/credential/status/03-verify-and-parse-status-assertion.ts +0 -110
  1532. package/src/credential/status/types.ts +0 -90
  1533. package/src/credential/trustmark/get-credential-trustmark.ts +0 -139
  1534. package/src/credentials-catalogue/fetch-and-parse-catalogue.ts +0 -54
  1535. package/src/credentials-catalogue/types.ts +0 -97
  1536. package/src/pid/index.ts +0 -2
  1537. package/src/pid/sd-jwt/converters.ts +0 -20
  1538. package/src/pid/sd-jwt/index.ts +0 -74
  1539. package/src/pid/sd-jwt/types.ts +0 -46
  1540. package/src/sd-jwt/__test__/converters.test.ts +0 -27
  1541. package/src/sd-jwt/__test__/index.test.ts +0 -152
  1542. package/src/sd-jwt/converters.ts +0 -24
  1543. package/src/sd-jwt/errors.ts +0 -39
  1544. package/src/sd-jwt/verifier.ts +0 -18
  1545. package/src/trust/build-chain.ts +0 -398
  1546. package/src/trust/errors.ts +0 -138
  1547. package/src/trust/types.ts +0 -259
  1548. package/src/trust/utils.ts +0 -70
  1549. package/src/trust/verify-chain.ts +0 -267
  1550. package/src/wallet-instance-attestation/issuing.ts +0 -164
  1551. package/src/wallet-instance-attestation/types.ts +0 -85
@@ -0,0 +1,94 @@
1
+ import { EncryptJwe, getJwkFromHeader } from "@pagopa/io-react-native-jwt";
2
+ import { verify } from "@pagopa/io-react-native-jwt";
3
+ import { digest } from "@sd-jwt/crypto-nodejs";
4
+ import { X509 } from "jsrsasign";
5
+ import { IoWalletError } from "./errors";
6
+ import { generateRandomBytes } from "./misc";
7
+ /**
8
+ * Shared callbacks with React Native implementations for use
9
+ * in IO Wallet SDK. Callbacks not found here must be provided by the caller,
10
+ * as they require parameters that depends on the use case.
11
+ */
12
+ export const partialCallbacks = {
13
+ generateRandom: generateRandomBytes,
14
+ hash: digest,
15
+ encryptJwe: async (_ref, data) => {
16
+ let {
17
+ publicJwk,
18
+ alg,
19
+ enc,
20
+ kid
21
+ } = _ref;
22
+ return {
23
+ // @ts-expect-error `alg` and `enc` are strings, but EncryptJwe expects specific string literals
24
+ jwe: await new EncryptJwe(data, {
25
+ alg,
26
+ enc,
27
+ kid
28
+ }).encrypt(publicJwk),
29
+ encryptionJwk: publicJwk
30
+ };
31
+ },
32
+ verifyJwt: async (jwtSigner, jwt) => {
33
+ // TODO: support other signing methods if needed
34
+ if (jwtSigner.method !== "jwk") {
35
+ throw new IoWalletError(`Unsupported signer method: ${jwtSigner.method}`);
36
+ }
37
+ try {
38
+ await verify(jwt.compact, jwtSigner.publicJwk);
39
+ return {
40
+ verified: true,
41
+ signerJwk: jwtSigner.publicJwk
42
+ };
43
+ } catch {
44
+ return {
45
+ verified: false
46
+ };
47
+ }
48
+ },
49
+ decryptJwe: () => {
50
+ throw new IoWalletError("decryptJwe is not implemented");
51
+ },
52
+ getX509CertificateMetadata: certificate => {
53
+ const x509 = new X509();
54
+ x509.readCertPEM(certificate);
55
+ const sanExt = x509.getExtSubjectAltName(certificate);
56
+ const sanDnsNames = [];
57
+ const sanUriNames = [];
58
+ for (const item of sanExt.array) {
59
+ if (!item) continue;
60
+ if ("dns" in item) sanDnsNames.push(item.dns);
61
+ if ("uri" in item) sanUriNames.push(item.uri);
62
+ }
63
+ return {
64
+ sanDnsNames,
65
+ sanUriNames
66
+ };
67
+ }
68
+ };
69
+ /**
70
+ * Create a verifyJwt implementation that extracts the JWK for signature verification
71
+ * from a list of keys, matching the `kid` in the JWT header.
72
+ *
73
+ * This function does not support other `JwtSigner` methods.
74
+ *
75
+ * @param jwks The list of available keys
76
+ * @returns Function that implements `verifyJwt` callback
77
+ */
78
+ export const createVerifyJwtFromJwks = jwks => {
79
+ return async function verifyJwt(_, jwt) {
80
+ try {
81
+ const signerJwk = getJwkFromHeader(jwt.header, jwks);
82
+ await verify(jwt.compact, signerJwk);
83
+ return {
84
+ verified: true,
85
+ signerJwk
86
+ };
87
+ } catch {
88
+ return {
89
+ verified: false
90
+ };
91
+ }
92
+ };
93
+ };
94
+ //# sourceMappingURL=callbacks.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["EncryptJwe","getJwkFromHeader","verify","digest","X509","IoWalletError","generateRandomBytes","partialCallbacks","generateRandom","hash","encryptJwe","_ref","data","publicJwk","alg","enc","kid","jwe","encrypt","encryptionJwk","verifyJwt","jwtSigner","jwt","method","compact","verified","signerJwk","decryptJwe","getX509CertificateMetadata","certificate","x509","readCertPEM","sanExt","getExtSubjectAltName","sanDnsNames","sanUriNames","item","array","push","dns","uri","createVerifyJwtFromJwks","jwks","_","header"],"sourceRoot":"../../../src","sources":["utils/callbacks.ts"],"mappings":"AAAA,SAASA,UAAU,EAAEC,gBAAgB,QAAQ,6BAA6B;AAC1E,SAASC,MAAM,QAAQ,6BAA6B;AAEpD,SAASC,MAAM,QAAQ,uBAAuB;AAC9C,SAASC,IAAI,QAAQ,WAAW;AAChC,SAASC,aAAa,QAAQ,UAAU;AACxC,SAASC,mBAAmB,QAAQ,QAAQ;AAQ5C;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,gBAAwC,GAAG;EACtDC,cAAc,EAAEF,mBAAmB;EACnCG,IAAI,EAAEN,MAAM;EACZO,UAAU,EAAE,MAAAA,CAAAC,IAAA,EAAqCC,IAAI;IAAA,IAAlC;MAAEC,SAAS;MAAEC,GAAG;MAAEC,GAAG;MAAEC;IAAI,CAAC,GAAAL,IAAA;IAAA,OAAY;MACzD;MACAM,GAAG,EAAE,MAAM,IAAIjB,UAAU,CAACY,IAAI,EAAE;QAAEE,GAAG;QAAEC,GAAG;QAAEC;MAAI,CAAC,CAAC,CAACE,OAAO,CAACL,SAAS,CAAC;MACrEM,aAAa,EAAEN;IACjB,CAAC;EAAA,CAAC;EACFO,SAAS,EAAE,MAAAA,CAAOC,SAAS,EAAEC,GAAG,KAAK;IACnC;IACA,IAAID,SAAS,CAACE,MAAM,KAAK,KAAK,EAAE;MAC9B,MAAM,IAAIlB,aAAa,CAAE,8BAA6BgB,SAAS,CAACE,MAAO,EAAC,CAAC;IAC3E;IACA,IAAI;MACF,MAAMrB,MAAM,CAACoB,GAAG,CAACE,OAAO,EAAEH,SAAS,CAACR,SAAS,CAAC;MAC9C,OAAO;QAAEY,QAAQ,EAAE,IAAI;QAAEC,SAAS,EAAEL,SAAS,CAACR;MAAU,CAAC;IAC3D,CAAC,CAAC,MAAM;MACN,OAAO;QAAEY,QAAQ,EAAE;MAAM,CAAC;IAC5B;EACF,CAAC;EACDE,UAAU,EAAEA,CAAA,KAAM;IAChB,MAAM,IAAItB,aAAa,CAAC,+BAA+B,CAAC;EAC1D,CAAC;EACDuB,0BAA0B,EAAGC,WAAW,IAAK;IAC3C,MAAMC,IAAI,GAAG,IAAI1B,IAAI,CAAC,CAAC;IACvB0B,IAAI,CAACC,WAAW,CAACF,WAAW,CAAC;IAC7B,MAAMG,MAAM,GAAGF,IAAI,CAACG,oBAAoB,CAACJ,WAAW,CAAC;IAErD,MAAMK,WAAqB,GAAG,EAAE;IAChC,MAAMC,WAAqB,GAAG,EAAE;IAEhC,KAAK,MAAMC,IAAI,IAAIJ,MAAM,CAACK,KAAK,EAAE;MAC/B,IAAI,CAACD,IAAI,EAAE;MACX,IAAI,KAAK,IAAIA,IAAI,EAAEF,WAAW,CAACI,IAAI,CAACF,IAAI,CAACG,GAAG,CAAC;MAC7C,IAAI,KAAK,IAAIH,IAAI,EAAED,WAAW,CAACG,IAAI,CAACF,IAAI,CAACI,GAAG,CAAC;IAC/C;IAEA,OAAO;MAAEN,WAAW;MAAEC;IAAY,CAAC;EACrC;AACF,CAAC;AAID;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMM,uBAAuB,GAClCC,IAAW,IACsB;EACjC,OAAO,eAAetB,SAASA,CAACuB,CAAC,EAAErB,GAAG,EAAE;IACtC,IAAI;MACF,MAAMI,SAAS,GAAGzB,gBAAgB,CAACqB,GAAG,CAACsB,MAAM,EAAeF,IAAI,CAAC;MACjE,MAAMxC,MAAM,CAACoB,GAAG,CAACE,OAAO,EAAEE,SAAS,CAAC;MACpC,OAAO;QAAED,QAAQ,EAAE,IAAI;QAAEC;MAAU,CAAC;IACtC,CAAC,CAAC,MAAM;MACN,OAAO;QAAED,QAAQ,EAAE;MAAM,CAAC;IAC5B;EACF,CAAC;AACH,CAAC"}
@@ -0,0 +1,16 @@
1
+ import { IoWalletSdkConfig, ItWalletSpecsVersion } from "@pagopa/io-wallet-utils";
2
+
3
+ /**
4
+ * IO Wallet SDK configuration object for v1.0 specs.
5
+ */
6
+ export const sdkConfigV1_0 = new IoWalletSdkConfig({
7
+ itWalletSpecsVersion: ItWalletSpecsVersion.V1_0
8
+ });
9
+
10
+ /**
11
+ * IO Wallet SDK configuration object for v1.3 specs.
12
+ */
13
+ export const sdkConfigV1_3 = new IoWalletSdkConfig({
14
+ itWalletSpecsVersion: ItWalletSpecsVersion.V1_3
15
+ });
16
+ //# sourceMappingURL=config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["IoWalletSdkConfig","ItWalletSpecsVersion","sdkConfigV1_0","itWalletSpecsVersion","V1_0","sdkConfigV1_3","V1_3"],"sourceRoot":"../../../src","sources":["utils/config.ts"],"mappings":"AAAA,SACEA,iBAAiB,EACjBC,oBAAoB,QACf,yBAAyB;;AAEhC;AACA;AACA;AACA,OAAO,MAAMC,aAAa,GAAG,IAAIF,iBAAiB,CAAC;EACjDG,oBAAoB,EAAEF,oBAAoB,CAACG;AAC7C,CAAC,CAAC;;AAEF;AACA;AACA;AACA,OAAO,MAAMC,aAAa,GAAG,IAAIL,iBAAiB,CAAC;EACjDG,oBAAoB,EAAEF,oBAAoB,CAACK;AAC7C,CAAC,CAAC"}
@@ -1,4 +1,5 @@
1
- import { decode } from "../sd-jwt";
1
+ import { decodeSdJwtSync } from "@sd-jwt/decode";
2
+ import { digest } from "@sd-jwt/crypto-nodejs";
2
3
  import { thumbprint } from "@pagopa/io-react-native-jwt";
3
4
  import { IoWalletError } from "./errors";
4
5
  import { LEGACY_SD_JWT } from "../sd-jwt/types";
@@ -13,12 +14,14 @@ const SD_JWT = ["dc+sd-jwt", LEGACY_SD_JWT];
13
14
  export const extractJwkFromCredential = async (credential, format) => {
14
15
  if (SD_JWT.includes(format)) {
15
16
  // 1. SD-JWT case
16
- const decoded = decode(credential);
17
- const jwk = decoded.sdJwt.payload.cnf.jwk;
18
- if (jwk) {
17
+ const decoded = decodeSdJwtSync(credential, digest);
18
+ const {
19
+ cnf
20
+ } = decoded.jwt.payload;
21
+ if (cnf.jwk) {
19
22
  return {
20
- ...jwk,
21
- kid: await thumbprint(jwk)
23
+ ...cnf.jwk,
24
+ kid: await thumbprint(cnf.jwk)
22
25
  };
23
26
  }
24
27
  }
@@ -1 +1 @@
1
- {"version":3,"names":["decode","thumbprint","IoWalletError","LEGACY_SD_JWT","SD_JWT","extractJwkFromCredential","credential","format","includes","decoded","jwk","sdJwt","payload","cnf","kid"],"sourceRoot":"../../../src","sources":["utils/credentials.ts"],"mappings":"AAAA,SAASA,MAAM,QAAQ,WAAW;AAClC,SAASC,UAAU,QAAQ,6BAA6B;AAIxD,SAASC,aAAa,QAAQ,UAAU;AACxC,SACEC,aAAa,QAER,iBAAiB;AAExB,MAAMC,MAAM,GAAG,CAAC,WAAW,EAAED,aAAa,CAAC;;AAE3C;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,wBAAwB,GAAG,MAAAA,CACtCC,UAA+C,EAC/CC,MAAoE,KACnD;EACjB,IAAIH,MAAM,CAACI,QAAQ,CAACD,MAAM,CAAC,EAAE;IAC3B;IACA,MAAME,OAAO,GAAGT,MAAM,CAACM,UAAU,CAAC;IAClC,MAAMI,GAAG,GAAGD,OAAO,CAACE,KAAK,CAACC,OAAO,CAACC,GAAG,CAACH,GAAG;IACzC,IAAIA,GAAG,EAAE;MACP,OAAO;QAAE,GAAGA,GAAG;QAAEI,GAAG,EAAE,MAAMb,UAAU,CAACS,GAAG;MAAE,CAAC;IAC/C;EACF;EACA,MAAM,IAAIR,aAAa,CAAE,qBAAoBK,MAAO,gBAAe,CAAC;AACtE,CAAC"}
1
+ {"version":3,"names":["decodeSdJwtSync","digest","thumbprint","IoWalletError","LEGACY_SD_JWT","SD_JWT","extractJwkFromCredential","credential","format","includes","decoded","cnf","jwt","payload","jwk","kid"],"sourceRoot":"../../../src","sources":["utils/credentials.ts"],"mappings":"AAAA,SAASA,eAAe,QAAQ,gBAAgB;AAChD,SAASC,MAAM,QAAQ,uBAAuB;AAC9C,SAASC,UAAU,QAAQ,6BAA6B;AAGxD,SAASC,aAAa,QAAQ,UAAU;AACxC,SACEC,aAAa,QAGR,iBAAiB;AAExB,MAAMC,MAAM,GAAG,CAAC,WAAW,EAAED,aAAa,CAAC;;AAE3C;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,wBAAwB,GAAG,MAAAA,CACtCC,UAAkB,EAClBC,MAAqD,KACpC;EACjB,IAAIH,MAAM,CAACI,QAAQ,CAACD,MAAM,CAAC,EAAE;IAC3B;IACA,MAAME,OAAO,GAAGV,eAAe,CAACO,UAAU,EAAEN,MAAM,CAAC;IACnD,MAAM;MAAEU;IAAI,CAAC,GAAGD,OAAO,CAACE,GAAG,CAACC,OAAkC;IAC9D,IAAIF,GAAG,CAACG,GAAG,EAAE;MACX,OAAO;QAAE,GAAGH,GAAG,CAACG,GAAG;QAAEC,GAAG,EAAE,MAAMb,UAAU,CAACS,GAAG,CAACG,GAAG;MAAE,CAAC;IACvD;EACF;EACA,MAAM,IAAIX,aAAa,CAAE,qBAAoBK,MAAO,gBAAe,CAAC;AACtE,CAAC"}
@@ -1,3 +1,4 @@
1
+ import { UnexpectedStatusCodeError as SdkUnexpectedStatusCodeError } from "@pagopa/io-wallet-utils";
1
2
  import { IssuerResponseErrorCodes, RelyingPartyResponseErrorCodes, WalletProviderResponseErrorCodes } from "./error-codes";
2
3
  export { IssuerResponseErrorCodes, WalletProviderResponseErrorCodes, RelyingPartyResponseErrorCodes };
3
4
 
@@ -23,6 +24,33 @@ export const serializeAttrs = attrs => Object.entries(attrs).filter(_ref => {
23
24
  return [k, v];
24
25
  }).map(_ => _.join("=")).join(" ");
25
26
 
27
+ /**
28
+ * Wraps a synchronous function and maps a specific error type to a library error.
29
+ *
30
+ * @param fn - The function to execute
31
+ * @param sourceError - The error class constructor to catch
32
+ * @param mapError - Function to map the caught error to a library error
33
+ * @returns The result of the function if it succeeds
34
+ * @throws The mapped error if sourceError is caught, or the original error otherwise
35
+ *
36
+ * @example
37
+ * const result = withMappedErrors(
38
+ * () => sdkExtractGrantDetails(offer),
39
+ * CredentialOfferError,
40
+ * (e) => new InvalidCredentialOfferError(e.message)
41
+ * );
42
+ */
43
+ export const withMappedErrors = (fn, sourceError, mapError) => {
44
+ try {
45
+ return fn();
46
+ } catch (e) {
47
+ if (e instanceof sourceError) {
48
+ throw mapError(e);
49
+ }
50
+ throw e;
51
+ }
52
+ };
53
+
26
54
  /**
27
55
  * A generic Error that all other io-wallet specific Error subclasses extend.
28
56
  *
@@ -137,7 +165,7 @@ export function extractErrorMessageFromIssuerConf(errorCode, _ref5) {
137
165
  issuerConf,
138
166
  credentialType
139
167
  } = _ref5;
140
- const credentialConfiguration = issuerConf.openid_credential_issuer.credential_configurations_supported[credentialType];
168
+ const credentialConfiguration = issuerConf.credential_configurations_supported[credentialType];
141
169
  if (!credentialConfiguration) {
142
170
  throw new IoWalletError(`No configuration found for ${credentialType} in the provided EC`);
143
171
  }
@@ -178,7 +206,7 @@ export const isRelyingPartyResponseError = makeErrorTypeGuard(RelyingPartyRespon
178
206
  *
179
207
  * Chain multiple `handle` to add cases that depend on the status code, then call `buildFrom` when done.
180
208
  *
181
- * For example:
209
+ * @example
182
210
  * ```
183
211
  * new ResponseErrorBuilder(IssuerResponseError)
184
212
  * .handle(403, { code: "ERROR_CODE_1", message: "Forbidden" })
@@ -207,4 +235,36 @@ export class ResponseErrorBuilder {
207
235
  return originalError;
208
236
  }
209
237
  }
238
+
239
+ /**
240
+ * Error thrown when the library does not implement
241
+ * a feature aligned with the specified version.
242
+ */
243
+ export class UnimplementedFeatureError extends IoWalletError {
244
+ code = "ERR_IO_WALLET_UNIMPLEMENTED_FEATURE";
245
+ constructor(feature, version) {
246
+ super(`Missing v${version} compatible implementation for ${feature}`);
247
+ }
248
+ }
249
+
250
+ /**
251
+ * Map `UnexpectedStatusCodeError` thrown from IO Wallet SDK to `IssuerResponseError`.
252
+ * Use this function in catch blocks.
253
+ * @param err The original error
254
+ * @throws Generic {@link IssuerResponseError}
255
+ * @throws The original error if it doesn't match
256
+ * @example
257
+ * await fetchAuthorizationRequest().catch(sdkUnexpectedStatusCodeToIssuerError)
258
+ */
259
+ export const sdkUnexpectedStatusCodeToIssuerError = err => {
260
+ if (err instanceof SdkUnexpectedStatusCodeError) {
261
+ throw new IssuerResponseError({
262
+ code: IssuerResponseErrorCodes.IssuerGenericError,
263
+ message: err.message,
264
+ reason: err.reason,
265
+ statusCode: err.statusCode
266
+ });
267
+ }
268
+ throw err;
269
+ };
210
270
  //# sourceMappingURL=errors.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["IssuerResponseErrorCodes","RelyingPartyResponseErrorCodes","WalletProviderResponseErrorCodes","serializeAttrs","attrs","Object","entries","filter","_ref","v","undefined","map","_ref2","k","Array","isArray","join","JSON","stringify","_","IoWalletError","Error","code","constructor","message","name","ValidationFailed","_ref3","claim","reason","UnexpectedStatusCodeError","_ref4","statusCode","IssuerResponseError","params","IssuerGenericError","WalletProviderResponseError","WalletProviderGenericError","RelyingPartyResponseError","RelyingPartyGenericError","extractErrorMessageFromIssuerConf","errorCode","_ref5","issuerConf","credentialType","credentialConfiguration","openid_credential_issuer","credential_configurations_supported","issuance_errors_supported","localesList","display","reduce","acc","_ref6","locale","rest","makeErrorTypeGuard","ErrorClass","error","isIssuerResponseError","isWalletProviderResponseError","isRelyingPartyResponseError","ResponseErrorBuilder","errorCases","handle","status","buildFrom","originalError"],"sourceRoot":"../../../src","sources":["utils/errors.ts"],"mappings":"AACA,SAEEA,wBAAwB,EAExBC,8BAA8B,EAE9BC,gCAAgC,QAC3B,eAAe;AAGtB,SACEF,wBAAwB,EACxBE,gCAAgC,EAChCD,8BAA8B;;AAGhC;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,cAAc,GACzBC,KAA8E,IAE9EC,MAAM,CAACC,OAAO,CAACF,KAAK,CAAC,CAClBG,MAAM,CAACC,IAAA;EAAA,IAAC,GAAGC,CAAC,CAAC,GAAAD,IAAA;EAAA,OAAKC,CAAC,KAAKC,SAAS;AAAA,EAAC,CAClCC,GAAG,CAACC,KAAA,IAAY;EAAA,IAAX,CAACC,CAAC,EAAEJ,CAAC,CAAC,GAAAG,KAAA;EACV,IAAIE,KAAK,CAACC,OAAO,CAACN,CAAC,CAAC,EAAE,OAAO,CAACI,CAAC,EAAG,IAAGJ,CAAC,CAACO,IAAI,CAAC,IAAI,CAAE,GAAE,CAAC;EACrD,IAAI,OAAOP,CAAC,KAAK,QAAQ,EAAE,OAAO,CAACI,CAAC,EAAEI,IAAI,CAACC,SAAS,CAACT,CAAC,CAAC,CAAC;EACxD,OAAO,CAACI,CAAC,EAAEJ,CAAC,CAAC;AACf,CAAC,CAAC,CACDE,GAAG,CAAEQ,CAAC,IAAKA,CAAC,CAACH,IAAI,CAAC,GAAG,CAAC,CAAC,CACvBA,IAAI,CAAC,GAAG,CAAC;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMI,aAAa,SAASC,KAAK,CAAC;EACvC;EACAC,IAAI,GAAW,uBAAuB;EAEtCC,WAAWA,CAACC,OAAgB,EAAE;IAC5B,KAAK,CAACA,OAAO,CAAC;IACd,IAAI,CAACC,IAAI,GAAG,IAAI,CAACF,WAAW,CAACE,IAAI;EACnC;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,gBAAgB,SAASN,aAAa,CAAC;EAClDE,IAAI,GAAG,iCAAiC;;EAExC;;EAGA;;EAGAC,WAAWA,CAAAI,KAAA,EAQR;IAAA,IARS;MACVH,OAAO;MACPI,KAAK,GAAG,aAAa;MACrBC,MAAM,GAAG;IAKX,CAAC,GAAAF,KAAA;IACC,KAAK,CAACxB,cAAc,CAAC;MAAEqB,OAAO;MAAEI,KAAK;MAAEC;IAAO,CAAC,CAAC,CAAC;IACjD,IAAI,CAACD,KAAK,GAAGA,KAAK;IAClB,IAAI,CAACC,MAAM,GAAGA,MAAM;EACtB;AACF;;AAEA;AACA;AACA;AACA,OAAO,MAAMC,yBAAyB,SAASV,aAAa,CAAC;EAC3DE,IAAI,GAAW,4BAA4B;EAI3CC,WAAWA,CAAAQ,KAAA,EAQR;IAAA,IARS;MACVP,OAAO;MACPK,MAAM;MACNG;IAKF,CAAC,GAAAD,KAAA;IACC,KAAK,CAAC5B,cAAc,CAAC;MAAEqB,OAAO;MAAEK,MAAM;MAAEG;IAAW,CAAC,CAAC,CAAC;IACtD,IAAI,CAACH,MAAM,GAAGA,MAAM;IACpB,IAAI,CAACG,UAAU,GAAGA,UAAU;EAC9B;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,mBAAmB,SAASH,yBAAyB,CAAC;EAGjEP,WAAWA,CAACW,MAKX,EAAE;IACD,KAAK,CAACA,MAAM,CAAC;IACb,IAAI,CAACZ,IAAI,GAAGY,MAAM,CAACZ,IAAI,IAAItB,wBAAwB,CAACmC,kBAAkB;EACxE;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,2BAA2B,SAASN,yBAAyB,CAAC;EAIzEP,WAAWA,CAACW,MAKX,EAAE;IACD,KAAK,CAACA,MAAM,CAAC;IACb,IAAI,CAACL,MAAM,GAAGK,MAAM,CAACL,MAAM;IAC3B,IAAI,CAACP,IAAI,GACPY,MAAM,CAACZ,IAAI,IACXpB,gCAAgC,CAACmC,0BAA0B;EAC/D;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,yBAAyB,SAASR,yBAAyB,CAAC;EAGvEP,WAAWA,CAACW,MAKX,EAAE;IACD,KAAK,CAACA,MAAM,CAAC;IACb,IAAI,CAACZ,IAAI,GACPY,MAAM,CAACZ,IAAI,IAAIrB,8BAA8B,CAACsC,wBAAwB;EAC1E;AACF;AASA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,iCAAiCA,CAC/CC,SAAiB,EAAAC,KAAA,EAQmB;EAAA,IAPpC;IACEC,UAAU;IACVC;EAIF,CAAC,GAAAF,KAAA;EAED,MAAMG,uBAAuB,GAC3BF,UAAU,CAACG,wBAAwB,CAACC,mCAAmC,CACrEH,cAAc,CACf;EAEH,IAAI,CAACC,uBAAuB,EAAE;IAC5B,MAAM,IAAIzB,aAAa,CACpB,8BAA6BwB,cAAe,qBAC/C,CAAC;EACH;EAEA,MAAM;IAAEI;EAA0B,CAAC,GAAGH,uBAAuB;EAE7D,IAAI,EAACG,yBAAyB,aAAzBA,yBAAyB,eAAzBA,yBAAyB,CAAGP,SAAS,CAAC,GAAE;IAC3C,OAAO/B,SAAS;EAClB;EAEA,MAAMuC,WAAW,GAAGD,yBAAyB,CAACP,SAAS,CAAC,CAAES,OAAO;EAEjE,OAAOD,WAAW,CAACE,MAAM,CACvB,CAACC,GAAG,EAAAC,KAAA;IAAA,IAAE;MAAEC,MAAM;MAAE,GAAGC;IAAK,CAAC,GAAAF,KAAA;IAAA,OAAM;MAAE,GAAGD,GAAG;MAAE,CAACE,MAAM,GAAGC;IAAK,CAAC;EAAA,CAAC,EAC1D,CAAC,CACH,CAAC;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,kBAAkB,GACuBC,UAAa,IAC1D,CAACC,KAAc,EAAEpC,IAA0B,KACzCoC,KAAK,YAAYD,UAAU,IAAIC,KAAK,CAACpC,IAAI,MAAMA,IAAI,IAAIoC,KAAK,CAACpC,IAAI,CAAC;AAEtE,OAAO,MAAMqC,qBAAqB,GAAGH,kBAAkB,CAACvB,mBAAmB,CAAC;AAC5E,OAAO,MAAM2B,6BAA6B,GAAGJ,kBAAkB,CAC7DpB,2BACF,CAAC;AACD,OAAO,MAAMyB,2BAA2B,GAAGL,kBAAkB,CAC3DlB,yBACF,CAAC;;AAED;;AAuBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMwB,oBAAoB,CAA6C;EACpEC,UAAU,GAEd,CAAC,CAAC;EAENxC,WAAWA,CAASkC,UAAa,EAAE;IAAA,KAAfA,UAAa,GAAbA,UAAa;EAAG;EAEpCO,MAAMA,CAACC,MAAoB,EAAE/B,MAAoB,EAAE;IACjD,IAAI,CAAC6B,UAAU,CAACE,MAAM,CAAC,GAAG/B,MAAM;IAChC,OAAO,IAAI;EACb;EAEAgC,SAASA,CAACC,aAAwC,EAAE;IAClD,MAAMjC,MAAM,GACV,IAAI,CAAC6B,UAAU,CAACI,aAAa,CAACnC,UAAU,CAAC,IAAI,IAAI,CAAC+B,UAAU,CAAC,GAAG,CAAC;IAEnE,IAAI7B,MAAM,EAAE;MACV,OAAO,IAAI,IAAI,CAACuB,UAAU,CAAC;QAAE,GAAGU,aAAa;QAAE,GAAGjC;MAAO,CAAC,CAAC;IAC7D;IAEA,OAAOiC,aAAa;EACtB;AACF"}
1
+ {"version":3,"names":["UnexpectedStatusCodeError","SdkUnexpectedStatusCodeError","IssuerResponseErrorCodes","RelyingPartyResponseErrorCodes","WalletProviderResponseErrorCodes","serializeAttrs","attrs","Object","entries","filter","_ref","v","undefined","map","_ref2","k","Array","isArray","join","JSON","stringify","_","withMappedErrors","fn","sourceError","mapError","e","IoWalletError","Error","code","constructor","message","name","ValidationFailed","_ref3","claim","reason","_ref4","statusCode","IssuerResponseError","params","IssuerGenericError","WalletProviderResponseError","WalletProviderGenericError","RelyingPartyResponseError","RelyingPartyGenericError","extractErrorMessageFromIssuerConf","errorCode","_ref5","issuerConf","credentialType","credentialConfiguration","credential_configurations_supported","issuance_errors_supported","localesList","display","reduce","acc","_ref6","locale","rest","makeErrorTypeGuard","ErrorClass","error","isIssuerResponseError","isWalletProviderResponseError","isRelyingPartyResponseError","ResponseErrorBuilder","errorCases","handle","status","buildFrom","originalError","UnimplementedFeatureError","feature","version","sdkUnexpectedStatusCodeToIssuerError","err"],"sourceRoot":"../../../src","sources":["utils/errors.ts"],"mappings":"AAAA,SAASA,yBAAyB,IAAIC,4BAA4B,QAAQ,yBAAyB;AAGnG,SAEEC,wBAAwB,EAExBC,8BAA8B,EAE9BC,gCAAgC,QAC3B,eAAe;AAEtB,SACEF,wBAAwB,EACxBE,gCAAgC,EAChCD,8BAA8B;;AAGhC;;AAGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,cAAc,GACzBC,KAA8E,IAE9EC,MAAM,CAACC,OAAO,CAACF,KAAK,CAAC,CAClBG,MAAM,CAACC,IAAA;EAAA,IAAC,GAAGC,CAAC,CAAC,GAAAD,IAAA;EAAA,OAAKC,CAAC,KAAKC,SAAS;AAAA,EAAC,CAClCC,GAAG,CAACC,KAAA,IAAY;EAAA,IAAX,CAACC,CAAC,EAAEJ,CAAC,CAAC,GAAAG,KAAA;EACV,IAAIE,KAAK,CAACC,OAAO,CAACN,CAAC,CAAC,EAAE,OAAO,CAACI,CAAC,EAAG,IAAGJ,CAAC,CAACO,IAAI,CAAC,IAAI,CAAE,GAAE,CAAC;EACrD,IAAI,OAAOP,CAAC,KAAK,QAAQ,EAAE,OAAO,CAACI,CAAC,EAAEI,IAAI,CAACC,SAAS,CAACT,CAAC,CAAC,CAAC;EACxD,OAAO,CAACI,CAAC,EAAEJ,CAAC,CAAC;AACf,CAAC,CAAC,CACDE,GAAG,CAAEQ,CAAC,IAAKA,CAAC,CAACH,IAAI,CAAC,GAAG,CAAC,CAAC,CACvBA,IAAI,CAAC,GAAG,CAAC;;AAEd;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMI,gBAAgB,GAAGA,CAC9BC,EAAW,EACXC,WAAsC,EACtCC,QAA6B,KACvB;EACN,IAAI;IACF,OAAOF,EAAE,CAAC,CAAC;EACb,CAAC,CAAC,OAAOG,CAAC,EAAE;IACV,IAAIA,CAAC,YAAYF,WAAW,EAAE;MAC5B,MAAMC,QAAQ,CAACC,CAAC,CAAC;IACnB;IACA,MAAMA,CAAC;EACT;AACF,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,aAAa,SAASC,KAAK,CAAC;EACvC;EACAC,IAAI,GAAW,uBAAuB;EAEtCC,WAAWA,CAACC,OAAgB,EAAE;IAC5B,KAAK,CAACA,OAAO,CAAC;IACd,IAAI,CAACC,IAAI,GAAG,IAAI,CAACF,WAAW,CAACE,IAAI;EACnC;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,gBAAgB,SAASN,aAAa,CAAC;EAClDE,IAAI,GAAG,iCAAiC;;EAExC;;EAGA;;EAGAC,WAAWA,CAAAI,KAAA,EAQR;IAAA,IARS;MACVH,OAAO;MACPI,KAAK,GAAG,aAAa;MACrBC,MAAM,GAAG;IAKX,CAAC,GAAAF,KAAA;IACC,KAAK,CAAC7B,cAAc,CAAC;MAAE0B,OAAO;MAAEI,KAAK;MAAEC;IAAO,CAAC,CAAC,CAAC;IACjD,IAAI,CAACD,KAAK,GAAGA,KAAK;IAClB,IAAI,CAACC,MAAM,GAAGA,MAAM;EACtB;AACF;;AAEA;AACA;AACA;AACA,OAAO,MAAMpC,yBAAyB,SAAS2B,aAAa,CAAC;EAC3DE,IAAI,GAAW,4BAA4B;EAI3CC,WAAWA,CAAAO,KAAA,EAQR;IAAA,IARS;MACVN,OAAO;MACPK,MAAM;MACNE;IAKF,CAAC,GAAAD,KAAA;IACC,KAAK,CAAChC,cAAc,CAAC;MAAE0B,OAAO;MAAEK,MAAM;MAAEE;IAAW,CAAC,CAAC,CAAC;IACtD,IAAI,CAACF,MAAM,GAAGA,MAAM;IACpB,IAAI,CAACE,UAAU,GAAGA,UAAU;EAC9B;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,mBAAmB,SAASvC,yBAAyB,CAAC;EAGjE8B,WAAWA,CAACU,MAKX,EAAE;IACD,KAAK,CAACA,MAAM,CAAC;IACb,IAAI,CAACX,IAAI,GAAGW,MAAM,CAACX,IAAI,IAAI3B,wBAAwB,CAACuC,kBAAkB;EACxE;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,2BAA2B,SAAS1C,yBAAyB,CAAC;EAIzE8B,WAAWA,CAACU,MAKX,EAAE;IACD,KAAK,CAACA,MAAM,CAAC;IACb,IAAI,CAACJ,MAAM,GAAGI,MAAM,CAACJ,MAAM;IAC3B,IAAI,CAACP,IAAI,GACPW,MAAM,CAACX,IAAI,IACXzB,gCAAgC,CAACuC,0BAA0B;EAC/D;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,yBAAyB,SAAS5C,yBAAyB,CAAC;EAGvE8B,WAAWA,CAACU,MAKX,EAAE;IACD,KAAK,CAACA,MAAM,CAAC;IACb,IAAI,CAACX,IAAI,GACPW,MAAM,CAACX,IAAI,IAAI1B,8BAA8B,CAAC0C,wBAAwB;EAC1E;AACF;AASA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,iCAAiCA,CAC/CC,SAAiB,EAAAC,KAAA,EAQmB;EAAA,IAPpC;IACEC,UAAU;IACVC;EAIF,CAAC,GAAAF,KAAA;EAED,MAAMG,uBAAuB,GAC3BF,UAAU,CAACG,mCAAmC,CAACF,cAAc,CAAC;EAEhE,IAAI,CAACC,uBAAuB,EAAE;IAC5B,MAAM,IAAIxB,aAAa,CACpB,8BAA6BuB,cAAe,qBAC/C,CAAC;EACH;EAEA,MAAM;IAAEG;EAA0B,CAAC,GAAGF,uBAAuB;EAE7D,IAAI,EAACE,yBAAyB,aAAzBA,yBAAyB,eAAzBA,yBAAyB,CAAGN,SAAS,CAAC,GAAE;IAC3C,OAAOnC,SAAS;EAClB;EAEA,MAAM0C,WAAW,GAAGD,yBAAyB,CAACN,SAAS,CAAC,CAAEQ,OAAO;EAEjE,OAAOD,WAAW,CAACE,MAAM,CACvB,CAACC,GAAG,EAAAC,KAAA;IAAA,IAAE;MAAEC,MAAM;MAAE,GAAGC;IAAK,CAAC,GAAAF,KAAA;IAAA,OAAM;MAAE,GAAGD,GAAG;MAAE,CAACE,MAAM,GAAGC;IAAK,CAAC;EAAA,CAAC,EAC1D,CAAC,CACH,CAAC;AACH;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,kBAAkB,GACuBC,UAAa,IAC1D,CAACC,KAAc,EAAElC,IAA0B,KACzCkC,KAAK,YAAYD,UAAU,IAAIC,KAAK,CAAClC,IAAI,MAAMA,IAAI,IAAIkC,KAAK,CAAClC,IAAI,CAAC;AAEtE,OAAO,MAAMmC,qBAAqB,GAAGH,kBAAkB,CAACtB,mBAAmB,CAAC;AAC5E,OAAO,MAAM0B,6BAA6B,GAAGJ,kBAAkB,CAC7DnB,2BACF,CAAC;AACD,OAAO,MAAMwB,2BAA2B,GAAGL,kBAAkB,CAC3DjB,yBACF,CAAC;;AAED;;AAuBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMuB,oBAAoB,CAA6C;EACpEC,UAAU,GAEd,CAAC,CAAC;EAENtC,WAAWA,CAASgC,UAAa,EAAE;IAAA,KAAfA,UAAa,GAAbA,UAAa;EAAG;EAEpCO,MAAMA,CAACC,MAAoB,EAAE9B,MAAoB,EAAE;IACjD,IAAI,CAAC4B,UAAU,CAACE,MAAM,CAAC,GAAG9B,MAAM;IAChC,OAAO,IAAI;EACb;EAEA+B,SAASA,CAACC,aAAwC,EAAE;IAClD,MAAMhC,MAAM,GACV,IAAI,CAAC4B,UAAU,CAACI,aAAa,CAAClC,UAAU,CAAC,IAAI,IAAI,CAAC8B,UAAU,CAAC,GAAG,CAAC;IAEnE,IAAI5B,MAAM,EAAE;MACV,OAAO,IAAI,IAAI,CAACsB,UAAU,CAAC;QAAE,GAAGU,aAAa;QAAE,GAAGhC;MAAO,CAAC,CAAC;IAC7D;IAEA,OAAOgC,aAAa;EACtB;AACF;;AAEA;AACA;AACA;AACA;AACA,OAAO,MAAMC,yBAAyB,SAAS9C,aAAa,CAAC;EAC3DE,IAAI,GAAG,qCAAqC;EAE5CC,WAAWA,CAAC4C,OAAe,EAAEC,OAAe,EAAE;IAC5C,KAAK,CAAE,YAAWA,OAAQ,kCAAiCD,OAAQ,EAAC,CAAC;EACvE;AACF;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAME,oCAAoC,GAAIC,GAAY,IAAK;EACpE,IAAIA,GAAG,YAAY5E,4BAA4B,EAAE;IAC/C,MAAM,IAAIsC,mBAAmB,CAAC;MAC5BV,IAAI,EAAE3B,wBAAwB,CAACuC,kBAAkB;MACjDV,OAAO,EAAE8C,GAAG,CAAC9C,OAAO;MACpBK,MAAM,EAAEyC,GAAG,CAACzC,MAAM;MAClBE,UAAU,EAAEuC,GAAG,CAACvC;IAClB,CAAC,CAAC;EACJ;EACA,MAAMuC,GAAG;AACX,CAAC"}
@@ -0,0 +1,62 @@
1
+ /**
2
+ * Create a mapper to convert data from type I to type O.
3
+ *
4
+ * By default only static type checking is applied when mapping types.
5
+ * To include runtime validation, provide zod schemas for I (optional) and O.
6
+ *
7
+ * @param mapper The mapping function
8
+ * @param config.inputSchema The schema to validate the input before mapping (optional)
9
+ * @param config.outputSchema The schema to validate the mapped input (required when config is provided)
10
+ * @returns A function to convert I to O
11
+ *
12
+ * @example
13
+ * // Type checking only
14
+ * createMapper<TypeA, TypeB>(mapper)
15
+ *
16
+ * // Type checking with runtime validation
17
+ * createMapper(mapper, {
18
+ * inputSchema: TypeA,
19
+ * outputSchema: TypeB
20
+ * })
21
+ */
22
+
23
+ export function createMapper(mapper, config) {
24
+ if (!config) {
25
+ return mapper;
26
+ }
27
+ const {
28
+ inputSchema,
29
+ outputSchema
30
+ } = config;
31
+ if (inputSchema) {
32
+ return input => inputSchema.transform(mapper).pipe(outputSchema).parse(input);
33
+ }
34
+ return input => outputSchema.parse(mapper(input));
35
+ }
36
+
37
+ /**
38
+ * Higher order function to pipe a function return value to the provided mapper.
39
+ * Supports only synchronous functions. Use {@link withMapperAsync} for async ones.
40
+ * @param mapper The mapping function
41
+ * @fn The function to wrap
42
+ * @return The original function with the mapper applied to its return value
43
+ */
44
+ export const withMapper = (mapper, fn) => {
45
+ return function wrappedFunction() {
46
+ return mapper(fn(...arguments));
47
+ };
48
+ };
49
+
50
+ /**
51
+ * Higher order function to pipe an async function return value to the provided mapper.
52
+ * Supports only asynchronous functions. Use {@link withMapper} for sync ones.
53
+ * @param mapper The mapping function
54
+ * @fn The function to wrap
55
+ * @return The original function with the mapper applied to its return value
56
+ */
57
+ export const withMapperAsync = (mapper, fn) => {
58
+ return async function wrappedAsyncFunction() {
59
+ return mapper(await fn(...arguments));
60
+ };
61
+ };
62
+ //# sourceMappingURL=mappers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["createMapper","mapper","config","inputSchema","outputSchema","input","transform","pipe","parse","withMapper","fn","wrappedFunction","arguments","withMapperAsync","wrappedAsyncFunction"],"sourceRoot":"../../../src","sources":["utils/mappers.ts"],"mappings":"AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAUA,OAAO,SAASA,YAAYA,CAC1BC,MAAuB,EACvBC,MAGC,EACD;EACA,IAAI,CAACA,MAAM,EAAE;IACX,OAAOD,MAAM;EACf;EAEA,MAAM;IAAEE,WAAW;IAAEC;EAAa,CAAC,GAAGF,MAAM;EAE5C,IAAIC,WAAW,EAAE;IACf,OAAQE,KAAc,IACpBF,WAAW,CAACG,SAAS,CAACL,MAAM,CAAC,CAACM,IAAI,CAACH,YAAY,CAAC,CAACI,KAAK,CAACH,KAAK,CAAC;EACjE;EAEA,OAAQA,KAAQ,IAAKD,YAAY,CAACI,KAAK,CAACP,MAAM,CAACI,KAAK,CAAC,CAAC;AACxD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMI,UAAU,GAAGA,CACxBR,MAAuB,EACvBS,EAAqB,KAClB;EACH,OAAO,SAASC,eAAeA,CAAA,EAAa;IAC1C,OAAOV,MAAM,CAACS,EAAE,CAAC,GAAAE,SAAO,CAAC,CAAC;EAC5B,CAAC;AACH,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,eAAe,GAAGA,CAC7BZ,MAAuB,EACvBS,EAA8B,KAC3B;EACH,OAAO,eAAeI,oBAAoBA,CAAA,EAAa;IACrD,OAAOb,MAAM,CAAC,MAAMS,EAAE,CAAC,GAAAE,SAAO,CAAC,CAAC;EAClC,CAAC;AACH,CAAC"}
@@ -40,6 +40,15 @@ export const parseRawHttpResponse = response => {
40
40
  */
41
41
  export const generateRandomAlphaNumericString = size => Array.from(Array(size), () => Math.floor(Math.random() * 36).toString(36)).join("");
42
42
 
43
+ /**
44
+ * TODO [SIW-1310]: replace this function with a cryptographically secure one.
45
+ * @param size - The size of the array in bytes
46
+ * @returns An array of the given size filled with random bytes
47
+ */
48
+ export const generateRandomBytes = size => Uint8Array.from({
49
+ length: size
50
+ }, () => Math.floor(Math.random() * 256));
51
+
43
52
  /**
44
53
  * Get the hash of a credential without discloures.
45
54
  * A credential is a string like `header.body.sign~sd1~sd2....` where `~` is the separator between the credential and the discloures.
@@ -60,5 +69,10 @@ export const safeJsonParse = (text, withDefault) => {
60
69
  return withDefault ?? null;
61
70
  }
62
71
  };
63
- export const isObject = value => typeof value === "object" && value !== null && !Array.isArray(value);
72
+ export function assert(condition) {
73
+ let msg = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "Assertion failed";
74
+ if (!condition) {
75
+ throw new IoWalletError(msg);
76
+ }
77
+ }
64
78
  //# sourceMappingURL=misc.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["IoWalletError","UnexpectedStatusCodeError","sha256","LogLevel","Logger","hasStatusOrThrow","status","customError","res","ErrorClass","log","ERROR","url","message","statusCode","reason","parseRawHttpResponse","response","_response$headers$get","headers","get","includes","json","text","generateRandomAlphaNumericString","size","Array","from","Math","floor","random","toString","join","getCredentialHashWithouDiscloures","credential","tildeIndex","indexOf","slice","safeJsonParse","withDefault","JSON","parse","_","isObject","value","isArray"],"sourceRoot":"../../../src","sources":["utils/misc.ts"],"mappings":"AAAA,SAASA,aAAa,EAAEC,yBAAyB,QAAQ,UAAU;AACnE,SAASC,MAAM,QAAQ,WAAW;AAClC,SAASC,QAAQ,EAAEC,MAAM,QAAQ,WAAW;;AAE5C;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,gBAAgB,GAC3BA,CAACC,MAAc,EAAEC,WAA8C,KAC/D,MAAOC,GAAa,IAAwB;EAC1C,IAAIA,GAAG,CAACF,MAAM,KAAKA,MAAM,EAAE;IACzB,MAAMG,UAAU,GAAGF,WAAW,IAAIN,yBAAyB;IAC3DG,MAAM,CAACM,GAAG,CACRP,QAAQ,CAACQ,KAAK,EACb,iCAAgCL,MAAO,SAAQE,GAAG,CAACF,MAAO,UAASE,GAAG,CAACI,GAAI,EAC9E,CAAC;IACD,MAAM,IAAIH,UAAU,CAAC;MACnBI,OAAO,EAAG,iCAAgCP,MAAO,SAAQE,GAAG,CAACF,MAAO,UAASE,GAAG,CAACI,GAAI,EAAC;MACtFE,UAAU,EAAEN,GAAG,CAACF,MAAM;MACtBS,MAAM,EAAE,MAAMC,oBAAoB,CAACR,GAAG,CAAC,CAAE;IAC3C,CAAC,CAAC;EACJ;;EACA,OAAOA,GAAG;AACZ,CAAC;;AAEH;AACA;AACA;AACA,OAAO,MAAMQ,oBAAoB,GAC/BC,QAAkB;EAAA,IAAAC,qBAAA;EAAA,OAElB,CAAAA,qBAAA,GAAAD,QAAQ,CAACE,OAAO,CAACC,GAAG,CAAC,cAAc,CAAC,cAAAF,qBAAA,eAApCA,qBAAA,CAAsCG,QAAQ,CAAC,kBAAkB,CAAC,GAC7DJ,QAAQ,CAACK,IAAI,CAAC,CAAC,GAChBL,QAAQ,CAACM,IAAI,CAAC,CAAC;AAAA;;AAErB;AACA;AAOA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,gCAAgC,GAAIC,IAAY,IAC3DC,KAAK,CAACC,IAAI,CAACD,KAAK,CAACD,IAAI,CAAC,EAAE,MACtBG,IAAI,CAACC,KAAK,CAACD,IAAI,CAACE,MAAM,CAAC,CAAC,GAAG,EAAE,CAAC,CAACC,QAAQ,CAAC,EAAE,CAC5C,CAAC,CAACC,IAAI,CAAC,EAAE,CAAC;;AAEZ;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,MAAMC,iCAAiC,GAAG,MAC/CC,UAAkB,IACE;EACpB,MAAMC,UAAU,GAAGD,UAAU,CAACE,OAAO,CAAC,GAAG,CAAC;EAC1C,IAAID,UAAU,KAAK,CAAC,CAAC,EAAE;IACrB,MAAM,IAAInC,aAAa,CAAC,2BAA2B,CAAC;EACtD;EACA,OAAOE,MAAM,CAACgC,UAAU,CAACG,KAAK,CAAC,CAAC,EAAEF,UAAU,CAAC,CAAC;AAChD,CAAC;AAED,OAAO,MAAMG,aAAa,GAAGA,CAAIf,IAAY,EAAEgB,WAAe,KAAe;EAC3E,IAAI;IACF,OAAOC,IAAI,CAACC,KAAK,CAAClB,IAAI,CAAC;EACzB,CAAC,CAAC,OAAOmB,CAAC,EAAE;IACV,OAAOH,WAAW,IAAI,IAAI;EAC5B;AACF,CAAC;AAED,OAAO,MAAMI,QAAQ,GAAIC,KAAc,IACrC,OAAOA,KAAK,KAAK,QAAQ,IAAIA,KAAK,KAAK,IAAI,IAAI,CAAClB,KAAK,CAACmB,OAAO,CAACD,KAAK,CAAC"}
1
+ {"version":3,"names":["IoWalletError","UnexpectedStatusCodeError","sha256","LogLevel","Logger","hasStatusOrThrow","status","customError","res","ErrorClass","log","ERROR","url","message","statusCode","reason","parseRawHttpResponse","response","_response$headers$get","headers","get","includes","json","text","generateRandomAlphaNumericString","size","Array","from","Math","floor","random","toString","join","generateRandomBytes","Uint8Array","length","getCredentialHashWithouDiscloures","credential","tildeIndex","indexOf","slice","safeJsonParse","withDefault","JSON","parse","_","assert","condition","msg","arguments","undefined"],"sourceRoot":"../../../src","sources":["utils/misc.ts"],"mappings":"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"}
@@ -0,0 +1,11 @@
1
+ export const isObject = value => typeof value === "object" && value !== null && !Array.isArray(value);
2
+ export const keyBy = (array, key) => array.reduce((acc, item) => {
3
+ acc.set(item[key], item);
4
+ return acc;
5
+ }, new Map());
6
+ export const groupBy = (array, key) => array.reduce((acc, item) => {
7
+ const k = item[key];
8
+ acc.set(k, [...(acc.get(k) ?? []), item]);
9
+ return acc;
10
+ }, new Map());
11
+ //# sourceMappingURL=object.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["isObject","value","Array","isArray","keyBy","array","key","reduce","acc","item","set","Map","groupBy","k","get"],"sourceRoot":"../../../src","sources":["utils/object.ts"],"mappings":"AAAA,OAAO,MAAMA,QAAQ,GAAIC,KAAc,IACrC,OAAOA,KAAK,KAAK,QAAQ,IAAIA,KAAK,KAAK,IAAI,IAAI,CAACC,KAAK,CAACC,OAAO,CAACF,KAAK,CAAC;AAEtE,OAAO,MAAMG,KAAK,GAAGA,CAAuBC,KAAU,EAAEC,GAAM,KAC5DD,KAAK,CAACE,MAAM,CAAC,CAACC,GAAG,EAAEC,IAAI,KAAK;EAC1BD,GAAG,CAACE,GAAG,CAACD,IAAI,CAACH,GAAG,CAAC,EAAEG,IAAI,CAAC;EACxB,OAAOD,GAAG;AACZ,CAAC,EAAE,IAAIG,GAAG,CAAU,CAAC,CAAC;AAExB,OAAO,MAAMC,OAAO,GAAGA,CAAuBP,KAAU,EAAEC,GAAM,KAC9DD,KAAK,CAACE,MAAM,CAAC,CAACC,GAAG,EAAEC,IAAI,KAAK;EAC1B,MAAMI,CAAC,GAAGJ,IAAI,CAACH,GAAG,CAAC;EACnBE,GAAG,CAACE,GAAG,CAACG,CAAC,EAAE,CAAC,IAAIL,GAAG,CAACM,GAAG,CAACD,CAAC,CAAC,IAAI,EAAE,CAAC,EAAEJ,IAAI,CAAC,CAAC;EACzC,OAAOD,GAAG;AACZ,CAAC,EAAE,IAAIG,GAAG,CAAY,CAAC,CAAC"}
@@ -1,7 +1,6 @@
1
1
  import { sha256ToBase64, SignJWT } from "@pagopa/io-react-native-jwt";
2
2
  import { v4 as uuidv4 } from "uuid";
3
3
  import * as z from "zod";
4
- import * as WalletInstanceAttestation from "../wallet-instance-attestation";
5
4
  import { generateRandomAlphaNumericString, hasStatusOrThrow } from "./misc";
6
5
  import { createPopToken } from "./pop";
7
6
  import { IssuerResponseError } from "./errors";
@@ -39,11 +38,13 @@ export const makeParRequest = _ref => {
39
38
  aud
40
39
  } = _ref2;
41
40
  const wiaPublicKey = await wiaCryptoContext.getPublicKey();
42
- const iss = WalletInstanceAttestation.decode(walletInstanceAttestation).payload.cnf.jwk.kid;
41
+
42
+ // const iss = WalletInstanceAttestation.decode(walletInstanceAttestation).payload.cnf.jwk.kid;
43
+
43
44
  const signedWiaPoP = await createPopToken({
44
45
  jti: `${uuidv4()}`,
45
46
  aud,
46
- iss
47
+ iss: clientId
47
48
  }, wiaCryptoContext);
48
49
 
49
50
  /** A code challenge is provided so that the PAR is bound
@@ -65,7 +66,7 @@ export const makeParRequest = _ref => {
65
66
  response_type: "code",
66
67
  response_mode: responseMode,
67
68
  client_id: clientId,
68
- iss,
69
+ iss: clientId,
69
70
  state: generateRandomAlphaNumericString(32),
70
71
  code_challenge: codeChallenge,
71
72
  code_challenge_method: codeChallengeMethod,
@@ -1 +1 @@
1
- {"version":3,"names":["sha256ToBase64","SignJWT","v4","uuidv4","z","WalletInstanceAttestation","generateRandomAlphaNumericString","hasStatusOrThrow","createPopToken","IssuerResponseError","LogLevel","Logger","AuthorizationDetail","union","object","type","literal","credential_configuration_id","string","idphinting","challenge_method","challenge_redirect_uri","AuthorizationDetails","array","ParResponse","request_uri","expires_in","number","makeParRequest","_ref","wiaCryptoContext","appFetch","parEndpoint","walletInstanceAttestation","_ref2","codeVerifier","responseMode","clientId","redirectUri","authorizationDetails","scope","aud","wiaPublicKey","getPublicKey","iss","decode","payload","cnf","jwk","kid","signedWiaPoP","jti","codeChallengeMethod","codeChallenge","signedJwtForPar","setProtectedHeader","typ","setPayload","response_type","response_mode","client_id","state","code_challenge","code_challenge_method","redirect_uri","authorization_details","setIssuedAt","setExpirationTime","sign","formBody","URLSearchParams","request","log","DEBUG","method","headers","body","toString","then","res","json","parse","result"],"sourceRoot":"../../../src","sources":["utils/par.ts"],"mappings":"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"}
1
+ {"version":3,"names":["sha256ToBase64","SignJWT","v4","uuidv4","z","generateRandomAlphaNumericString","hasStatusOrThrow","createPopToken","IssuerResponseError","LogLevel","Logger","AuthorizationDetail","union","object","type","literal","credential_configuration_id","string","idphinting","challenge_method","challenge_redirect_uri","AuthorizationDetails","array","ParResponse","request_uri","expires_in","number","makeParRequest","_ref","wiaCryptoContext","appFetch","parEndpoint","walletInstanceAttestation","_ref2","codeVerifier","responseMode","clientId","redirectUri","authorizationDetails","scope","aud","wiaPublicKey","getPublicKey","signedWiaPoP","jti","iss","codeChallengeMethod","codeChallenge","signedJwtForPar","setProtectedHeader","typ","kid","setPayload","response_type","response_mode","client_id","state","code_challenge","code_challenge_method","redirect_uri","authorization_details","setIssuedAt","setExpirationTime","sign","formBody","URLSearchParams","request","log","DEBUG","method","headers","body","toString","then","res","json","parse","result"],"sourceRoot":"../../../src","sources":["utils/par.ts"],"mappings":"AAAA,SACEA,cAAc,EAEdC,OAAO,QACF,6BAA6B;AACpC,SAASC,EAAE,IAAIC,MAAM,QAAQ,MAAM;AACnC,OAAO,KAAKC,CAAC,MAAM,KAAK;AACxB,SAASC,gCAAgC,EAAEC,gBAAgB,QAAQ,QAAQ;AAC3E,SAASC,cAAc,QAAQ,OAAO;AACtC,SAASC,mBAAmB,QAAQ,UAAU;AAC9C,SAASC,QAAQ,EAAEC,MAAM,QAAQ,WAAW;AAG5C,OAAO,MAAMC,mBAAmB,GAAGP,CAAC,CAACQ,KAAK,CAAC,CACzCR,CAAC,CAACS,MAAM,CAAC;EACPC,IAAI,EAAEV,CAAC,CAACW,OAAO,CAAC,mBAAmB,CAAC;EACpCC,2BAA2B,EAAEZ,CAAC,CAACa,MAAM,CAAC;AACxC,CAAC,CAAC,EACFb,CAAC,CAACS,MAAM,CAAC;EACPC,IAAI,EAAEV,CAAC,CAACW,OAAO,CAAC,sBAAsB,CAAC;EACvCG,UAAU,EAAEd,CAAC,CAACa,MAAM,CAAC,CAAC;EACtBE,gBAAgB,EAAEf,CAAC,CAACW,OAAO,CAAC,UAAU,CAAC;EACvCK,sBAAsB,EAAEhB,CAAC,CAACa,MAAM,CAAC;AACnC,CAAC,CAAC,CACH,CAAC;AAGF,OAAO,MAAMI,oBAAoB,GAAGjB,CAAC,CAACkB,KAAK,CAACX,mBAAmB,CAAC;AAGhE,OAAO,MAAMY,WAAW,GAAGnB,CAAC,CAACS,MAAM,CAAC;EAClCW,WAAW,EAAEpB,CAAC,CAACa,MAAM,CAAC,CAAC;EACvBQ,UAAU,EAAErB,CAAC,CAACsB,MAAM,CAAC;AACvB,CAAC,CAAC;AAcF;AACA;AACA;AACA,OAAO,MAAMC,cAAc,GACzBC,IAAA;EAAA,IAAC;IACCC,gBAAgB;IAChBC;EAIF,CAAC,GAAAF,IAAA;EAAA,OACD,OACEG,WAAmB,EACnBC,yBAAiC,EAAAC,KAAA,KAUb;IAAA,IATpB;MACEC,YAAY;MACZC,YAAY;MACZC,QAAQ;MACRC,WAAW;MACXC,oBAAoB;MACpBC,KAAK;MACLC;IACiB,CAAC,GAAAP,KAAA;IAEpB,MAAMQ,YAAY,GAAG,MAAMZ,gBAAgB,CAACa,YAAY,CAAC,CAAC;;IAE1D;;IAEA,MAAMC,YAAY,GAAG,MAAMpC,cAAc,CACvC;MACEqC,GAAG,EAAG,GAAEzC,MAAM,CAAC,CAAE,EAAC;MAClBqC,GAAG;MACHK,GAAG,EAAET;IACP,CAAC,EACDP,gBACF,CAAC;;IAED;AACJ;AACA;IACI,MAAMiB,mBAAmB,GAAG,MAAM;IAClC,MAAMC,aAAa,GAAG,MAAM/C,cAAc,CAACkC,YAAY,CAAC;;IAExD;AACJ;AACA;AACA;IACI,MAAMc,eAAe,GAAG,MAAM,IAAI/C,OAAO,CAAC4B,gBAAgB,CAAC,CACxDoB,kBAAkB,CAAC;MAClBC,GAAG,EAAE,KAAK;MACVC,GAAG,EAAEV,YAAY,CAACU;IACpB,CAAC,CAAC,CACDC,UAAU,CAAC;MACVR,GAAG,EAAG,GAAEzC,MAAM,CAAC,CAAE,EAAC;MAClBqC,GAAG;MACHa,aAAa,EAAE,MAAM;MACrBC,aAAa,EAAEnB,YAAY;MAC3BoB,SAAS,EAAEnB,QAAQ;MACnBS,GAAG,EAAET,QAAQ;MACboB,KAAK,EAAEnD,gCAAgC,CAAC,EAAE,CAAC;MAC3CoD,cAAc,EAAEV,aAAa;MAC7BW,qBAAqB,EAAEZ,mBAAmB;MAC1Ca,YAAY,EAAEtB,WAAW;MACzB,IAAIC,oBAAoB,IAAI;QAC1BsB,qBAAqB,EAAEtB;MACzB,CAAC,CAAC;MACF,IAAIC,KAAK,IAAI;QAAEA;MAAM,CAAC;IACxB,CAAC,CAAC,CACDsB,WAAW,CAAC,CAAC,CAAC;IAAA,CACdC,iBAAiB,CAAC,MAAM,CAAC,CACzBC,IAAI,CAAC,CAAC;;IAET;IACA,IAAIC,QAAQ,GAAG,IAAIC,eAAe,CAAC;MACjCV,SAAS,EAAEnB,QAAQ;MACnB8B,OAAO,EAAElB;IACX,CAAC,CAAC;IAEFtC,MAAM,CAACyD,GAAG,CACR1D,QAAQ,CAAC2D,KAAK,EACb,2BAA0BrC,WAAY,KAAIiC,QAAS,EACtD,CAAC;IAED,OAAO,MAAMlC,QAAQ,CAACC,WAAW,EAAE;MACjCsC,MAAM,EAAE,MAAM;MACdC,OAAO,EAAE;QACP,cAAc,EAAE,mCAAmC;QACnD,0BAA0B,EAAEtC,yBAAyB;QACrD,8BAA8B,EAAEW;MAClC,CAAC;MACD4B,IAAI,EAAEP,QAAQ,CAACQ,QAAQ,CAAC;IAC1B,CAAC,CAAC,CACCC,IAAI,CAACnE,gBAAgB,CAAC,GAAG,EAAEE,mBAAmB,CAAC,CAAC,CAChDiE,IAAI,CAAEC,GAAG,IAAKA,GAAG,CAACC,IAAI,CAAC,CAAC,CAAC,CACzBF,IAAI,CAAClD,WAAW,CAACqD,KAAK,CAAC,CACvBH,IAAI,CAAEI,MAAM,IAAKA,MAAM,CAACrD,WAAW,CAAC;EACzC,CAAC;AAAA"}
@@ -17,4 +17,5 @@ export const stringToJSONSchema = z.string().transform((str, ctx) => {
17
17
  return z.NEVER;
18
18
  }
19
19
  });
20
+ export const UnixTime = z.number().min(0).max(2147483647000);
20
21
  //# sourceMappingURL=zod.js.map
@@ -1 +1 @@
1
- {"version":3,"names":["z","literalSchema","union","string","number","boolean","null","jsonSchema","lazy","array","record","json","stringToJSONSchema","transform","str","ctx","JSON","parse","e","addIssue","code","message","NEVER"],"sourceRoot":"../../../src","sources":["utils/zod.ts"],"mappings":"AAAA;AACA;AACA;;AAEA,SAASA,CAAC,QAAQ,KAAK;AAEvB,MAAMC,aAAa,GAAGD,CAAC,CAACE,KAAK,CAAC,CAACF,CAAC,CAACG,MAAM,CAAC,CAAC,EAAEH,CAAC,CAACI,MAAM,CAAC,CAAC,EAAEJ,CAAC,CAACK,OAAO,CAAC,CAAC,EAAEL,CAAC,CAACM,IAAI,CAAC,CAAC,CAAC,CAAC;AAM9E,MAAMC,UAA2B,GAAGP,CAAC,CAACQ,IAAI,CAAC,MACzCR,CAAC,CAACE,KAAK,CAAC,CAACD,aAAa,EAAED,CAAC,CAACS,KAAK,CAACF,UAAU,CAAC,EAAEP,CAAC,CAACU,MAAM,CAACH,UAAU,CAAC,CAAC,CACpE,CAAC;AAED,OAAO,MAAMI,IAAI,GAAGA,CAAA,KAAMJ,UAAU;AAEpC,OAAO,MAAMK,kBAAkB,GAAGZ,CAAC,CAChCG,MAAM,CAAC,CAAC,CACRU,SAAS,CAAC,CAACC,GAAG,EAAEC,GAAG,KAAuC;EACzD,IAAI;IACF,OAAOC,IAAI,CAACC,KAAK,CAACH,GAAG,CAAC;EACxB,CAAC,CAAC,OAAOI,CAAC,EAAE;IACVH,GAAG,CAACI,QAAQ,CAAC;MAAEC,IAAI,EAAE,QAAQ;MAAEC,OAAO,EAAE;IAAe,CAAC,CAAC;IACzD,OAAOrB,CAAC,CAACsB,KAAK;EAChB;AACF,CAAC,CAAC"}
1
+ {"version":3,"names":["z","literalSchema","union","string","number","boolean","null","jsonSchema","lazy","array","record","json","stringToJSONSchema","transform","str","ctx","JSON","parse","e","addIssue","code","message","NEVER","UnixTime","min","max"],"sourceRoot":"../../../src","sources":["utils/zod.ts"],"mappings":"AAAA;AACA;AACA;;AAEA,SAASA,CAAC,QAAQ,KAAK;AAEvB,MAAMC,aAAa,GAAGD,CAAC,CAACE,KAAK,CAAC,CAACF,CAAC,CAACG,MAAM,CAAC,CAAC,EAAEH,CAAC,CAACI,MAAM,CAAC,CAAC,EAAEJ,CAAC,CAACK,OAAO,CAAC,CAAC,EAAEL,CAAC,CAACM,IAAI,CAAC,CAAC,CAAC,CAAC;AAM9E,MAAMC,UAA2B,GAAGP,CAAC,CAACQ,IAAI,CAAC,MACzCR,CAAC,CAACE,KAAK,CAAC,CAACD,aAAa,EAAED,CAAC,CAACS,KAAK,CAACF,UAAU,CAAC,EAAEP,CAAC,CAACU,MAAM,CAACH,UAAU,CAAC,CAAC,CACpE,CAAC;AAED,OAAO,MAAMI,IAAI,GAAGA,CAAA,KAAMJ,UAAU;AAEpC,OAAO,MAAMK,kBAAkB,GAAGZ,CAAC,CAChCG,MAAM,CAAC,CAAC,CACRU,SAAS,CAAC,CAACC,GAAG,EAAEC,GAAG,KAAuC;EACzD,IAAI;IACF,OAAOC,IAAI,CAACC,KAAK,CAACH,GAAG,CAAC;EACxB,CAAC,CAAC,OAAOI,CAAC,EAAE;IACVH,GAAG,CAACI,QAAQ,CAAC;MAAEC,IAAI,EAAE,QAAQ;MAAEC,OAAO,EAAE;IAAe,CAAC,CAAC;IACzD,OAAOrB,CAAC,CAACsB,KAAK;EAChB;AACF,CAAC,CAAC;AAEJ,OAAO,MAAMC,QAAQ,GAAGvB,CAAC,CAACI,MAAM,CAAC,CAAC,CAACoB,GAAG,CAAC,CAAC,CAAC,CAACC,GAAG,CAAC,aAAa,CAAC"}
@@ -14,6 +14,7 @@ Examples are provided as follows:
14
14
  ### Wallet instance creation
15
15
 
16
16
  ```ts
17
+ const wallet = new IoWallet({ version: "1.0.0" });
17
18
  // Get env
18
19
  const { GOOGLE_CLOUD_PROJECT_NUMBER, WALLET_PROVIDER_BASE_URL } = env; // Let's assume env is an object containing the environment variables
19
20
 
@@ -25,7 +26,7 @@ await ensureIntegrityServiceIsReady(googleCloudProjectNumber); // Required by io
25
26
  const integrityKeyTag = await generateIntegrityHardwareKeyTag();
26
27
  const integrityContext = getIntegrityContext(integrityKeyTag); // This function is supposed to return an object as required by IntegrityContext.
27
28
 
28
- await WalletInstance.createWalletInstance({
29
+ await wallet.WalletInstance.createWalletInstance({
29
30
  integrityContext,
30
31
  walletProviderBaseUrl: WALLET_PROVIDER_BASE_URL,
31
32
  appFetch,
@@ -41,10 +42,11 @@ The returned `integrityKeyTag` is supposed to be stored and used to verify the i
41
42
  Revoke a Wallet Instance by ID. The ID matches the hardware/integrity key tag used for creation.
42
43
 
43
44
  ```ts
45
+ const wallet = new IoWallet({ version: "1.0.0" });
44
46
  const { WALLET_PROVIDER_BASE_URL } = env;
45
47
 
46
- await WalletInstance.revokeWalletInstance({
47
- id: "495e5bec-b93f-4fd7-952a-94b27233abdb"
48
+ await wallet.WalletInstance.revokeWalletInstance({
49
+ id: "495e5bec-b93f-4fd7-952a-94b27233abdb",
48
50
  walletProviderBaseUrl: WALLET_PROVIDER_BASE_URL,
49
51
  appFetch,
50
52
  });
@@ -55,10 +57,11 @@ await WalletInstance.revokeWalletInstance({
55
57
  Get the status of a Wallet Instance by ID. The ID matches the hardware/integrity key tag used for creation.
56
58
 
57
59
  ```ts
60
+ const wallet = new IoWallet({ version: "1.0.0" });
58
61
  const { WALLET_PROVIDER_BASE_URL } = env;
59
62
 
60
- const status = await WalletInstance.getWalletInstanceStatus({
61
- id: "495e5bec-b93f-4fd7-952a-94b27233abdb"
63
+ const status = await wallet.WalletInstance.getWalletInstanceStatus({
64
+ id: "495e5bec-b93f-4fd7-952a-94b27233abdb",
62
65
  walletProviderBaseUrl: WALLET_PROVIDER_BASE_URL,
63
66
  appFetch,
64
67
  });
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../../src","sources":["wallet-instance/api/index.ts"],"mappings":""}
@@ -0,0 +1,65 @@
1
+ import { getWalletProviderClient } from "../../client";
2
+ import { ResponseErrorBuilder, WalletProviderResponseError, WalletProviderResponseErrorCodes } from "../../utils/errors";
3
+ import { LogLevel, Logger } from "../../utils/logging";
4
+ export const createWalletInstance = async context => {
5
+ const {
6
+ integrityContext,
7
+ isRenewal
8
+ } = context;
9
+ const api = getWalletProviderClient(context);
10
+
11
+ //1. Obtain nonce
12
+ const challenge = await api.get("/nonce").then(response => response.nonce);
13
+ Logger.log(LogLevel.DEBUG, `Challenge obtained from ${context.walletProviderBaseUrl}: ${challenge}`);
14
+ const keyAttestation = await integrityContext.getAttestation(challenge);
15
+ const hardwareKeyTag = integrityContext.getHardwareKeyTag();
16
+ Logger.log(LogLevel.DEBUG, `Key attestation: ${keyAttestation}\nAssociated hardware key tag: ${hardwareKeyTag}`);
17
+
18
+ //2. Create Wallet Instance
19
+ await api.post("/wallet-instances", {
20
+ body: {
21
+ challenge,
22
+ key_attestation: keyAttestation,
23
+ hardware_key_tag: hardwareKeyTag,
24
+ is_renewal: isRenewal
25
+ }
26
+ }).catch(handleCreateWalletInstanceError);
27
+ return hardwareKeyTag;
28
+ };
29
+ const handleCreateWalletInstanceError = e => {
30
+ Logger.log(LogLevel.ERROR, `An error occurred while calling /wallet-instances endpoint: ${e}`);
31
+ if (!(e instanceof WalletProviderResponseError)) {
32
+ throw e;
33
+ }
34
+ throw new ResponseErrorBuilder(WalletProviderResponseError).handle(409, {
35
+ code: WalletProviderResponseErrorCodes.WalletInstanceIntegrityFailed,
36
+ message: "Unable to create a wallet instance with a device that failed the integrity check"
37
+ }).handle("*", {
38
+ code: WalletProviderResponseErrorCodes.WalletInstanceCreationFailed,
39
+ message: "Unable to create wallet instance"
40
+ }).buildFrom(e);
41
+ };
42
+ export const revokeWalletInstance = async context => {
43
+ const api = getWalletProviderClient(context);
44
+ await api.put("/wallet-instances/{id}/status", {
45
+ path: {
46
+ id: context.id
47
+ },
48
+ body: {
49
+ status: "REVOKED"
50
+ }
51
+ });
52
+ };
53
+ export const getWalletInstanceStatus = context => {
54
+ const api = getWalletProviderClient(context);
55
+ return api.get("/wallet-instances/{id}/status", {
56
+ path: {
57
+ id: context.id
58
+ }
59
+ });
60
+ };
61
+ export const getCurrentWalletInstanceStatus = context => {
62
+ const api = getWalletProviderClient(context);
63
+ return api.get("/wallet-instances/current/status");
64
+ };
65
+ //# sourceMappingURL=wallet-instance.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["getWalletProviderClient","ResponseErrorBuilder","WalletProviderResponseError","WalletProviderResponseErrorCodes","LogLevel","Logger","createWalletInstance","context","integrityContext","isRenewal","api","challenge","get","then","response","nonce","log","DEBUG","walletProviderBaseUrl","keyAttestation","getAttestation","hardwareKeyTag","getHardwareKeyTag","post","body","key_attestation","hardware_key_tag","is_renewal","catch","handleCreateWalletInstanceError","e","ERROR","handle","code","WalletInstanceIntegrityFailed","message","WalletInstanceCreationFailed","buildFrom","revokeWalletInstance","put","path","id","status","getWalletInstanceStatus","getCurrentWalletInstanceStatus"],"sourceRoot":"../../../../src","sources":["wallet-instance/common/wallet-instance.ts"],"mappings":"AAAA,SAASA,uBAAuB,QAAQ,cAAc;AACtD,SACEC,oBAAoB,EACpBC,2BAA2B,EAC3BC,gCAAgC,QAC3B,oBAAoB;AAC3B,SAASC,QAAQ,EAAEC,MAAM,QAAQ,qBAAqB;AAGtD,OAAO,MAAMC,oBAA+D,GAC1E,MAAOC,OAAO,IAAK;EACjB,MAAM;IAAEC,gBAAgB;IAAEC;EAAU,CAAC,GAAGF,OAAO;EAC/C,MAAMG,GAAG,GAAGV,uBAAuB,CAACO,OAAO,CAAC;;EAE5C;EACA,MAAMI,SAAS,GAAG,MAAMD,GAAG,CACxBE,GAAG,CAAC,QAAQ,CAAC,CACbC,IAAI,CAAEC,QAAQ,IAAKA,QAAQ,CAACC,KAAK,CAAC;EAErCV,MAAM,CAACW,GAAG,CACRZ,QAAQ,CAACa,KAAK,EACb,2BAA0BV,OAAO,CAACW,qBAAsB,KAAIP,SAAU,EACzE,CAAC;EAED,MAAMQ,cAAc,GAAG,MAAMX,gBAAgB,CAACY,cAAc,CAACT,SAAS,CAAC;EAEvE,MAAMU,cAAc,GAAGb,gBAAgB,CAACc,iBAAiB,CAAC,CAAC;EAE3DjB,MAAM,CAACW,GAAG,CACRZ,QAAQ,CAACa,KAAK,EACb,oBAAmBE,cAAe,kCAAiCE,cAAe,EACrF,CAAC;;EAED;EACA,MAAMX,GAAG,CACNa,IAAI,CAAC,mBAAmB,EAAE;IACzBC,IAAI,EAAE;MACJb,SAAS;MACTc,eAAe,EAAEN,cAAc;MAC/BO,gBAAgB,EAAEL,cAAc;MAChCM,UAAU,EAAElB;IACd;EACF,CAAC,CAAC,CACDmB,KAAK,CAACC,+BAA+B,CAAC;EAEzC,OAAOR,cAAc;AACvB,CAAC;AAEH,MAAMQ,+BAA+B,GAAIC,CAAU,IAAK;EACtDzB,MAAM,CAACW,GAAG,CACRZ,QAAQ,CAAC2B,KAAK,EACb,+DAA8DD,CAAE,EACnE,CAAC;EAED,IAAI,EAAEA,CAAC,YAAY5B,2BAA2B,CAAC,EAAE;IAC/C,MAAM4B,CAAC;EACT;EAEA,MAAM,IAAI7B,oBAAoB,CAACC,2BAA2B,CAAC,CACxD8B,MAAM,CAAC,GAAG,EAAE;IACXC,IAAI,EAAE9B,gCAAgC,CAAC+B,6BAA6B;IACpEC,OAAO,EACL;EACJ,CAAC,CAAC,CACDH,MAAM,CAAC,GAAG,EAAE;IACXC,IAAI,EAAE9B,gCAAgC,CAACiC,4BAA4B;IACnED,OAAO,EAAE;EACX,CAAC,CAAC,CACDE,SAAS,CAACP,CAAC,CAAC;AACjB,CAAC;AAED,OAAO,MAAMQ,oBAA+D,GAC1E,MAAO/B,OAAO,IAAK;EACjB,MAAMG,GAAG,GAAGV,uBAAuB,CAACO,OAAO,CAAC;EAE5C,MAAMG,GAAG,CAAC6B,GAAG,CAAC,+BAA+B,EAAE;IAC7CC,IAAI,EAAE;MAAEC,EAAE,EAAElC,OAAO,CAACkC;IAAG,CAAC;IACxBjB,IAAI,EAAE;MAAEkB,MAAM,EAAE;IAAU;EAC5B,CAAC,CAAC;AACJ,CAAC;AAEH,OAAO,MAAMC,uBAAqE,GAC/EpC,OAAO,IAAK;EACX,MAAMG,GAAG,GAAGV,uBAAuB,CAACO,OAAO,CAAC;EAE5C,OAAOG,GAAG,CAACE,GAAG,CAAC,+BAA+B,EAAE;IAC9C4B,IAAI,EAAE;MAAEC,EAAE,EAAElC,OAAO,CAACkC;IAAG;EACzB,CAAC,CAAC;AACJ,CAAC;AAEH,OAAO,MAAMG,8BAAmF,GAC7FrC,OAAO,IAAK;EACX,MAAMG,GAAG,GAAGV,uBAAuB,CAACO,OAAO,CAAC;EAE5C,OAAOG,GAAG,CAACE,GAAG,CAAC,kCAAkC,CAAC;AACpD,CAAC"}