@credo-ts/core 0.4.1-alpha.157

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 (2238) hide show
  1. package/LICENSE +202 -0
  2. package/README.md +31 -0
  3. package/build/agent/Agent.d.ts +33 -0
  4. package/build/agent/Agent.js +186 -0
  5. package/build/agent/Agent.js.map +1 -0
  6. package/build/agent/AgentConfig.d.ts +56 -0
  7. package/build/agent/AgentConfig.js +74 -0
  8. package/build/agent/AgentConfig.js.map +1 -0
  9. package/build/agent/AgentDependencies.d.ts +13 -0
  10. package/build/agent/AgentDependencies.js +3 -0
  11. package/build/agent/AgentDependencies.js.map +1 -0
  12. package/build/agent/AgentMessage.d.ts +92 -0
  13. package/build/agent/AgentMessage.js +66 -0
  14. package/build/agent/AgentMessage.js.map +1 -0
  15. package/build/agent/AgentModules.d.ts +156 -0
  16. package/build/agent/AgentModules.js +112 -0
  17. package/build/agent/AgentModules.js.map +1 -0
  18. package/build/agent/BaseAgent.d.ts +65 -0
  19. package/build/agent/BaseAgent.js +141 -0
  20. package/build/agent/BaseAgent.js.map +1 -0
  21. package/build/agent/BaseMessage.d.ts +11 -0
  22. package/build/agent/BaseMessage.js +34 -0
  23. package/build/agent/BaseMessage.js.map +1 -0
  24. package/build/agent/Dispatcher.d.ts +14 -0
  25. package/build/agent/Dispatcher.js +102 -0
  26. package/build/agent/Dispatcher.js.map +1 -0
  27. package/build/agent/EnvelopeService.d.ts +21 -0
  28. package/build/agent/EnvelopeService.js +66 -0
  29. package/build/agent/EnvelopeService.js.map +1 -0
  30. package/build/agent/EventEmitter.d.ts +15 -0
  31. package/build/agent/EventEmitter.js +48 -0
  32. package/build/agent/EventEmitter.js.map +1 -0
  33. package/build/agent/Events.d.ts +40 -0
  34. package/build/agent/Events.js +17 -0
  35. package/build/agent/Events.js.map +1 -0
  36. package/build/agent/FeatureRegistry.d.ts +21 -0
  37. package/build/agent/FeatureRegistry.js +66 -0
  38. package/build/agent/FeatureRegistry.js.map +1 -0
  39. package/build/agent/MessageHandler.d.ts +14 -0
  40. package/build/agent/MessageHandler.js +3 -0
  41. package/build/agent/MessageHandler.js.map +1 -0
  42. package/build/agent/MessageHandlerRegistry.d.ts +20 -0
  43. package/build/agent/MessageHandlerRegistry.js +84 -0
  44. package/build/agent/MessageHandlerRegistry.js.map +1 -0
  45. package/build/agent/MessageReceiver.d.ts +62 -0
  46. package/build/agent/MessageReceiver.js +246 -0
  47. package/build/agent/MessageReceiver.js.map +1 -0
  48. package/build/agent/MessageSender.d.ts +56 -0
  49. package/build/agent/MessageSender.js +482 -0
  50. package/build/agent/MessageSender.js.map +1 -0
  51. package/build/agent/TransportService.d.ts +32 -0
  52. package/build/agent/TransportService.js +78 -0
  53. package/build/agent/TransportService.js.map +1 -0
  54. package/build/agent/context/AgentContext.d.ts +39 -0
  55. package/build/agent/context/AgentContext.js +37 -0
  56. package/build/agent/context/AgentContext.js.map +1 -0
  57. package/build/agent/context/AgentContextProvider.d.ts +26 -0
  58. package/build/agent/context/AgentContextProvider.js +3 -0
  59. package/build/agent/context/AgentContextProvider.js.map +1 -0
  60. package/build/agent/context/DefaultAgentContextProvider.d.ts +17 -0
  61. package/build/agent/context/DefaultAgentContextProvider.js +54 -0
  62. package/build/agent/context/DefaultAgentContextProvider.js.map +1 -0
  63. package/build/agent/context/index.d.ts +3 -0
  64. package/build/agent/context/index.js +20 -0
  65. package/build/agent/context/index.js.map +1 -0
  66. package/build/agent/getOutboundMessageContext.d.ts +27 -0
  67. package/build/agent/getOutboundMessageContext.js +199 -0
  68. package/build/agent/getOutboundMessageContext.js.map +1 -0
  69. package/build/agent/index.d.ts +1 -0
  70. package/build/agent/index.js +18 -0
  71. package/build/agent/index.js.map +1 -0
  72. package/build/agent/models/InboundMessageContext.d.ts +35 -0
  73. package/build/agent/models/InboundMessageContext.js +39 -0
  74. package/build/agent/models/InboundMessageContext.js.map +1 -0
  75. package/build/agent/models/OutboundMessageContext.d.ts +51 -0
  76. package/build/agent/models/OutboundMessageContext.js +46 -0
  77. package/build/agent/models/OutboundMessageContext.js.map +1 -0
  78. package/build/agent/models/OutboundMessageSendStatus.d.ts +6 -0
  79. package/build/agent/models/OutboundMessageSendStatus.js +11 -0
  80. package/build/agent/models/OutboundMessageSendStatus.js.map +1 -0
  81. package/build/agent/models/features/Feature.d.ts +18 -0
  82. package/build/agent/models/features/Feature.js +62 -0
  83. package/build/agent/models/features/Feature.js.map +1 -0
  84. package/build/agent/models/features/FeatureQuery.d.ts +9 -0
  85. package/build/agent/models/features/FeatureQuery.js +33 -0
  86. package/build/agent/models/features/FeatureQuery.js.map +1 -0
  87. package/build/agent/models/features/GoalCode.d.ts +7 -0
  88. package/build/agent/models/features/GoalCode.js +12 -0
  89. package/build/agent/models/features/GoalCode.js.map +1 -0
  90. package/build/agent/models/features/GovernanceFramework.d.ts +7 -0
  91. package/build/agent/models/features/GovernanceFramework.js +12 -0
  92. package/build/agent/models/features/GovernanceFramework.js.map +1 -0
  93. package/build/agent/models/features/Protocol.d.ts +10 -0
  94. package/build/agent/models/features/Protocol.js +30 -0
  95. package/build/agent/models/features/Protocol.js.map +1 -0
  96. package/build/agent/models/features/index.d.ts +5 -0
  97. package/build/agent/models/features/index.js +22 -0
  98. package/build/agent/models/features/index.js.map +1 -0
  99. package/build/agent/models/index.d.ts +4 -0
  100. package/build/agent/models/index.js +21 -0
  101. package/build/agent/models/index.js.map +1 -0
  102. package/build/constants.d.ts +11 -0
  103. package/build/constants.js +15 -0
  104. package/build/constants.js.map +1 -0
  105. package/build/crypto/JwsService.d.ts +47 -0
  106. package/build/crypto/JwsService.js +188 -0
  107. package/build/crypto/JwsService.js.map +1 -0
  108. package/build/crypto/JwsTypes.d.ts +51 -0
  109. package/build/crypto/JwsTypes.js +5 -0
  110. package/build/crypto/JwsTypes.js.map +1 -0
  111. package/build/crypto/Key.d.ts +16 -0
  112. package/build/crypto/Key.js +55 -0
  113. package/build/crypto/Key.js.map +1 -0
  114. package/build/crypto/KeyType.d.ts +11 -0
  115. package/build/crypto/KeyType.js +16 -0
  116. package/build/crypto/KeyType.js.map +1 -0
  117. package/build/crypto/WalletKeyPair.d.ts +107 -0
  118. package/build/crypto/WalletKeyPair.js +95 -0
  119. package/build/crypto/WalletKeyPair.js.map +1 -0
  120. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.d.ts +24 -0
  121. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.js +29 -0
  122. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.js.map +1 -0
  123. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.d.ts +24 -0
  124. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.js +29 -0
  125. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.js.map +1 -0
  126. package/build/crypto/__tests__/__fixtures__/didJwszDnaey.d.ts +24 -0
  127. package/build/crypto/__tests__/__fixtures__/didJwszDnaey.js +29 -0
  128. package/build/crypto/__tests__/__fixtures__/didJwszDnaey.js.map +1 -0
  129. package/build/crypto/index.d.ts +7 -0
  130. package/build/crypto/index.js +27 -0
  131. package/build/crypto/index.js.map +1 -0
  132. package/build/crypto/jose/index.d.ts +3 -0
  133. package/build/crypto/jose/index.js +20 -0
  134. package/build/crypto/jose/index.js.map +1 -0
  135. package/build/crypto/jose/jwa/alg.d.ts +37 -0
  136. package/build/crypto/jose/jwa/alg.js +42 -0
  137. package/build/crypto/jose/jwa/alg.js.map +1 -0
  138. package/build/crypto/jose/jwa/crv.d.ts +8 -0
  139. package/build/crypto/jose/jwa/crv.js +13 -0
  140. package/build/crypto/jose/jwa/crv.js.map +1 -0
  141. package/build/crypto/jose/jwa/index.d.ts +3 -0
  142. package/build/crypto/jose/jwa/index.js +11 -0
  143. package/build/crypto/jose/jwa/index.js.map +1 -0
  144. package/build/crypto/jose/jwa/kty.d.ts +6 -0
  145. package/build/crypto/jose/jwa/kty.js +11 -0
  146. package/build/crypto/jose/jwa/kty.js.map +1 -0
  147. package/build/crypto/jose/jwk/Ed25519Jwk.d.ts +31 -0
  148. package/build/crypto/jose/jwk/Ed25519Jwk.js +63 -0
  149. package/build/crypto/jose/jwk/Ed25519Jwk.js.map +1 -0
  150. package/build/crypto/jose/jwk/Jwk.d.ts +28 -0
  151. package/build/crypto/jose/jwk/Jwk.js +20 -0
  152. package/build/crypto/jose/jwk/Jwk.js.map +1 -0
  153. package/build/crypto/jose/jwk/K256Jwk.d.ts +41 -0
  154. package/build/crypto/jose/jwk/K256Jwk.js +80 -0
  155. package/build/crypto/jose/jwk/K256Jwk.js.map +1 -0
  156. package/build/crypto/jose/jwk/P256Jwk.d.ts +41 -0
  157. package/build/crypto/jose/jwk/P256Jwk.js +80 -0
  158. package/build/crypto/jose/jwk/P256Jwk.js.map +1 -0
  159. package/build/crypto/jose/jwk/P384Jwk.d.ts +41 -0
  160. package/build/crypto/jose/jwk/P384Jwk.js +80 -0
  161. package/build/crypto/jose/jwk/P384Jwk.js.map +1 -0
  162. package/build/crypto/jose/jwk/P521Jwk.d.ts +41 -0
  163. package/build/crypto/jose/jwk/P521Jwk.js +80 -0
  164. package/build/crypto/jose/jwk/P521Jwk.js.map +1 -0
  165. package/build/crypto/jose/jwk/X25519Jwk.d.ts +30 -0
  166. package/build/crypto/jose/jwk/X25519Jwk.js +67 -0
  167. package/build/crypto/jose/jwk/X25519Jwk.js.map +1 -0
  168. package/build/crypto/jose/jwk/ecCompression.d.ts +5 -0
  169. package/build/crypto/jose/jwk/ecCompression.js +109 -0
  170. package/build/crypto/jose/jwk/ecCompression.js.map +1 -0
  171. package/build/crypto/jose/jwk/index.d.ts +7 -0
  172. package/build/crypto/jose/jwk/index.js +31 -0
  173. package/build/crypto/jose/jwk/index.js.map +1 -0
  174. package/build/crypto/jose/jwk/transform.d.ts +14 -0
  175. package/build/crypto/jose/jwk/transform.js +59 -0
  176. package/build/crypto/jose/jwk/transform.js.map +1 -0
  177. package/build/crypto/jose/jwk/validate.d.ts +16 -0
  178. package/build/crypto/jose/jwk/validate.js +24 -0
  179. package/build/crypto/jose/jwk/validate.js.map +1 -0
  180. package/build/crypto/jose/jwt/Jwt.d.ts +22 -0
  181. package/build/crypto/jose/jwt/Jwt.js +34 -0
  182. package/build/crypto/jose/jwt/Jwt.js.map +1 -0
  183. package/build/crypto/jose/jwt/JwtPayload.d.ts +101 -0
  184. package/build/crypto/jose/jwt/JwtPayload.js +127 -0
  185. package/build/crypto/jose/jwt/JwtPayload.js.map +1 -0
  186. package/build/crypto/jose/jwt/index.d.ts +2 -0
  187. package/build/crypto/jose/jwt/index.js +8 -0
  188. package/build/crypto/jose/jwt/index.js.map +1 -0
  189. package/build/crypto/keyUtils.d.ts +6 -0
  190. package/build/crypto/keyUtils.js +66 -0
  191. package/build/crypto/keyUtils.js.map +1 -0
  192. package/build/crypto/multiCodecKey.d.ts +3 -0
  193. package/build/crypto/multiCodecKey.js +34 -0
  194. package/build/crypto/multiCodecKey.js.map +1 -0
  195. package/build/crypto/signing-provider/SigningProvider.d.ts +27 -0
  196. package/build/crypto/signing-provider/SigningProvider.js +3 -0
  197. package/build/crypto/signing-provider/SigningProvider.js.map +1 -0
  198. package/build/crypto/signing-provider/SigningProviderError.d.ts +3 -0
  199. package/build/crypto/signing-provider/SigningProviderError.js +8 -0
  200. package/build/crypto/signing-provider/SigningProviderError.js.map +1 -0
  201. package/build/crypto/signing-provider/SigningProviderRegistry.d.ts +10 -0
  202. package/build/crypto/signing-provider/SigningProviderRegistry.js +49 -0
  203. package/build/crypto/signing-provider/SigningProviderRegistry.js.map +1 -0
  204. package/build/crypto/signing-provider/index.d.ts +3 -0
  205. package/build/crypto/signing-provider/index.js +20 -0
  206. package/build/crypto/signing-provider/index.js.map +1 -0
  207. package/build/decorators/ack/AckDecorator.d.ts +13 -0
  208. package/build/decorators/ack/AckDecorator.js +38 -0
  209. package/build/decorators/ack/AckDecorator.js.map +1 -0
  210. package/build/decorators/ack/AckDecoratorExtension.d.ts +13 -0
  211. package/build/decorators/ack/AckDecoratorExtension.js +39 -0
  212. package/build/decorators/ack/AckDecoratorExtension.js.map +1 -0
  213. package/build/decorators/attachment/Attachment.d.ts +75 -0
  214. package/build/decorators/attachment/Attachment.js +168 -0
  215. package/build/decorators/attachment/Attachment.js.map +1 -0
  216. package/build/decorators/attachment/AttachmentExtension.d.ts +15 -0
  217. package/build/decorators/attachment/AttachmentExtension.js +42 -0
  218. package/build/decorators/attachment/AttachmentExtension.js.map +1 -0
  219. package/build/decorators/l10n/L10nDecorator.d.ts +7 -0
  220. package/build/decorators/l10n/L10nDecorator.js +13 -0
  221. package/build/decorators/l10n/L10nDecorator.js.map +1 -0
  222. package/build/decorators/l10n/L10nDecoratorExtension.d.ts +12 -0
  223. package/build/decorators/l10n/L10nDecoratorExtension.js +41 -0
  224. package/build/decorators/l10n/L10nDecoratorExtension.js.map +1 -0
  225. package/build/decorators/service/ServiceDecorator.d.ts +20 -0
  226. package/build/decorators/service/ServiceDecorator.js +63 -0
  227. package/build/decorators/service/ServiceDecorator.js.map +1 -0
  228. package/build/decorators/service/ServiceDecoratorExtension.d.ts +12 -0
  229. package/build/decorators/service/ServiceDecoratorExtension.js +32 -0
  230. package/build/decorators/service/ServiceDecoratorExtension.js.map +1 -0
  231. package/build/decorators/signature/SignatureDecorator.d.ts +11 -0
  232. package/build/decorators/signature/SignatureDecorator.js +55 -0
  233. package/build/decorators/signature/SignatureDecorator.js.map +1 -0
  234. package/build/decorators/signature/SignatureDecoratorUtils.d.ts +21 -0
  235. package/build/decorators/signature/SignatureDecoratorUtils.js +59 -0
  236. package/build/decorators/signature/SignatureDecoratorUtils.js.map +1 -0
  237. package/build/decorators/thread/ThreadDecorator.d.ts +26 -0
  238. package/build/decorators/thread/ThreadDecorator.js +52 -0
  239. package/build/decorators/thread/ThreadDecorator.js.map +1 -0
  240. package/build/decorators/thread/ThreadDecoratorExtension.d.ts +15 -0
  241. package/build/decorators/thread/ThreadDecoratorExtension.js +37 -0
  242. package/build/decorators/thread/ThreadDecoratorExtension.js.map +1 -0
  243. package/build/decorators/timing/TimingDecorator.d.ts +38 -0
  244. package/build/decorators/timing/TimingDecorator.js +93 -0
  245. package/build/decorators/timing/TimingDecorator.js.map +1 -0
  246. package/build/decorators/timing/TimingDecoratorExtension.d.ts +14 -0
  247. package/build/decorators/timing/TimingDecoratorExtension.js +33 -0
  248. package/build/decorators/timing/TimingDecoratorExtension.js.map +1 -0
  249. package/build/decorators/transport/TransportDecorator.d.ts +20 -0
  250. package/build/decorators/transport/TransportDecorator.js +51 -0
  251. package/build/decorators/transport/TransportDecorator.js.map +1 -0
  252. package/build/decorators/transport/TransportDecoratorExtension.d.ts +13 -0
  253. package/build/decorators/transport/TransportDecoratorExtension.js +55 -0
  254. package/build/decorators/transport/TransportDecoratorExtension.js.map +1 -0
  255. package/build/error/BaseError.d.ts +42 -0
  256. package/build/error/BaseError.js +70 -0
  257. package/build/error/BaseError.js.map +1 -0
  258. package/build/error/ClassValidationError.d.ts +11 -0
  259. package/build/error/ClassValidationError.js +18 -0
  260. package/build/error/ClassValidationError.js.map +1 -0
  261. package/build/error/CredoError.d.ts +11 -0
  262. package/build/error/CredoError.js +16 -0
  263. package/build/error/CredoError.js.map +1 -0
  264. package/build/error/MessageSendingError.d.ts +9 -0
  265. package/build/error/MessageSendingError.js +12 -0
  266. package/build/error/MessageSendingError.js.map +1 -0
  267. package/build/error/RecordDuplicateError.d.ts +7 -0
  268. package/build/error/RecordDuplicateError.js +11 -0
  269. package/build/error/RecordDuplicateError.js.map +1 -0
  270. package/build/error/RecordNotFoundError.d.ts +7 -0
  271. package/build/error/RecordNotFoundError.js +11 -0
  272. package/build/error/RecordNotFoundError.js.map +1 -0
  273. package/build/error/ValidationErrorUtils.d.ts +2 -0
  274. package/build/error/ValidationErrorUtils.js +13 -0
  275. package/build/error/ValidationErrorUtils.js.map +1 -0
  276. package/build/error/index.d.ts +5 -0
  277. package/build/error/index.js +22 -0
  278. package/build/error/index.js.map +1 -0
  279. package/build/index.d.ts +72 -0
  280. package/build/index.js +127 -0
  281. package/build/index.js.map +1 -0
  282. package/build/logger/BaseLogger.d.ts +14 -0
  283. package/build/logger/BaseLogger.js +14 -0
  284. package/build/logger/BaseLogger.js.map +1 -0
  285. package/build/logger/ConsoleLogger.d.ts +12 -0
  286. package/build/logger/ConsoleLogger.js +61 -0
  287. package/build/logger/ConsoleLogger.js.map +1 -0
  288. package/build/logger/Logger.d.ts +20 -0
  289. package/build/logger/Logger.js +16 -0
  290. package/build/logger/Logger.js.map +1 -0
  291. package/build/logger/index.d.ts +3 -0
  292. package/build/logger/index.js +20 -0
  293. package/build/logger/index.js.map +1 -0
  294. package/build/logger/replaceError.d.ts +1 -0
  295. package/build/logger/replaceError.js +18 -0
  296. package/build/logger/replaceError.js.map +1 -0
  297. package/build/modules/basic-messages/BasicMessageEvents.d.ts +13 -0
  298. package/build/modules/basic-messages/BasicMessageEvents.js +8 -0
  299. package/build/modules/basic-messages/BasicMessageEvents.js.map +1 -0
  300. package/build/modules/basic-messages/BasicMessageRole.d.ts +4 -0
  301. package/build/modules/basic-messages/BasicMessageRole.js +9 -0
  302. package/build/modules/basic-messages/BasicMessageRole.js.map +1 -0
  303. package/build/modules/basic-messages/BasicMessagesApi.d.ts +57 -0
  304. package/build/modules/basic-messages/BasicMessagesApi.js +102 -0
  305. package/build/modules/basic-messages/BasicMessagesApi.js.map +1 -0
  306. package/build/modules/basic-messages/BasicMessagesModule.d.ts +10 -0
  307. package/build/modules/basic-messages/BasicMessagesModule.js +29 -0
  308. package/build/modules/basic-messages/BasicMessagesModule.js.map +1 -0
  309. package/build/modules/basic-messages/handlers/BasicMessageHandler.d.ts +9 -0
  310. package/build/modules/basic-messages/handlers/BasicMessageHandler.js +16 -0
  311. package/build/modules/basic-messages/handlers/BasicMessageHandler.js.map +1 -0
  312. package/build/modules/basic-messages/handlers/index.d.ts +1 -0
  313. package/build/modules/basic-messages/handlers/index.js +18 -0
  314. package/build/modules/basic-messages/handlers/index.js.map +1 -0
  315. package/build/modules/basic-messages/index.d.ts +7 -0
  316. package/build/modules/basic-messages/index.js +24 -0
  317. package/build/modules/basic-messages/index.js.map +1 -0
  318. package/build/modules/basic-messages/messages/BasicMessage.d.ts +19 -0
  319. package/build/modules/basic-messages/messages/BasicMessage.js +53 -0
  320. package/build/modules/basic-messages/messages/BasicMessage.js.map +1 -0
  321. package/build/modules/basic-messages/messages/index.d.ts +1 -0
  322. package/build/modules/basic-messages/messages/index.js +18 -0
  323. package/build/modules/basic-messages/messages/index.js.map +1 -0
  324. package/build/modules/basic-messages/repository/BasicMessageRecord.d.ts +39 -0
  325. package/build/modules/basic-messages/repository/BasicMessageRecord.js +29 -0
  326. package/build/modules/basic-messages/repository/BasicMessageRecord.js.map +1 -0
  327. package/build/modules/basic-messages/repository/BasicMessageRepository.d.ts +7 -0
  328. package/build/modules/basic-messages/repository/BasicMessageRepository.js +32 -0
  329. package/build/modules/basic-messages/repository/BasicMessageRepository.js.map +1 -0
  330. package/build/modules/basic-messages/repository/index.d.ts +2 -0
  331. package/build/modules/basic-messages/repository/index.js +19 -0
  332. package/build/modules/basic-messages/repository/index.js.map +1 -0
  333. package/build/modules/basic-messages/services/BasicMessageService.d.ts +26 -0
  334. package/build/modules/basic-messages/services/BasicMessageService.js +86 -0
  335. package/build/modules/basic-messages/services/BasicMessageService.js.map +1 -0
  336. package/build/modules/basic-messages/services/index.d.ts +1 -0
  337. package/build/modules/basic-messages/services/index.js +18 -0
  338. package/build/modules/basic-messages/services/index.js.map +1 -0
  339. package/build/modules/cache/Cache.d.ts +6 -0
  340. package/build/modules/cache/Cache.js +3 -0
  341. package/build/modules/cache/Cache.js.map +1 -0
  342. package/build/modules/cache/CacheModule.d.ts +10 -0
  343. package/build/modules/cache/CacheModule.js +23 -0
  344. package/build/modules/cache/CacheModule.js.map +1 -0
  345. package/build/modules/cache/CacheModuleConfig.d.ts +21 -0
  346. package/build/modules/cache/CacheModuleConfig.js +14 -0
  347. package/build/modules/cache/CacheModuleConfig.js.map +1 -0
  348. package/build/modules/cache/InMemoryLruCache.d.ts +21 -0
  349. package/build/modules/cache/InMemoryLruCache.js +51 -0
  350. package/build/modules/cache/InMemoryLruCache.js.map +1 -0
  351. package/build/modules/cache/index.d.ts +5 -0
  352. package/build/modules/cache/index.js +14 -0
  353. package/build/modules/cache/index.js.map +1 -0
  354. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.d.ts +22 -0
  355. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.js +38 -0
  356. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.js.map +1 -0
  357. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.d.ts +7 -0
  358. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.js +32 -0
  359. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.js.map +1 -0
  360. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.d.ts +34 -0
  361. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.js +126 -0
  362. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.js.map +1 -0
  363. package/build/modules/cache/singleContextLruCache/index.d.ts +1 -0
  364. package/build/modules/cache/singleContextLruCache/index.js +6 -0
  365. package/build/modules/cache/singleContextLruCache/index.js.map +1 -0
  366. package/build/modules/common/index.d.ts +1 -0
  367. package/build/modules/common/index.js +18 -0
  368. package/build/modules/common/index.js.map +1 -0
  369. package/build/modules/common/messages/AckMessage.d.ts +26 -0
  370. package/build/modules/common/messages/AckMessage.js +54 -0
  371. package/build/modules/common/messages/AckMessage.js.map +1 -0
  372. package/build/modules/connections/ConnectionEvents.d.ts +13 -0
  373. package/build/modules/connections/ConnectionEvents.js +8 -0
  374. package/build/modules/connections/ConnectionEvents.js.map +1 -0
  375. package/build/modules/connections/ConnectionsApi.d.ts +194 -0
  376. package/build/modules/connections/ConnectionsApi.js +428 -0
  377. package/build/modules/connections/ConnectionsApi.js.map +1 -0
  378. package/build/modules/connections/ConnectionsModule.d.ts +14 -0
  379. package/build/modules/connections/ConnectionsModule.js +43 -0
  380. package/build/modules/connections/ConnectionsModule.js.map +1 -0
  381. package/build/modules/connections/ConnectionsModuleConfig.d.ts +47 -0
  382. package/build/modules/connections/ConnectionsModuleConfig.js +57 -0
  383. package/build/modules/connections/ConnectionsModuleConfig.js.map +1 -0
  384. package/build/modules/connections/DidExchangeProtocol.d.ts +60 -0
  385. package/build/modules/connections/DidExchangeProtocol.js +480 -0
  386. package/build/modules/connections/DidExchangeProtocol.js.map +1 -0
  387. package/build/modules/connections/DidExchangeStateMachine.d.ts +10 -0
  388. package/build/modules/connections/DidExchangeStateMachine.js +78 -0
  389. package/build/modules/connections/DidExchangeStateMachine.js.map +1 -0
  390. package/build/modules/connections/TrustPingEvents.d.ts +21 -0
  391. package/build/modules/connections/TrustPingEvents.js +9 -0
  392. package/build/modules/connections/TrustPingEvents.js.map +1 -0
  393. package/build/modules/connections/errors/ConnectionProblemReportError.d.ts +13 -0
  394. package/build/modules/connections/errors/ConnectionProblemReportError.js +19 -0
  395. package/build/modules/connections/errors/ConnectionProblemReportError.js.map +1 -0
  396. package/build/modules/connections/errors/ConnectionProblemReportReason.d.ts +11 -0
  397. package/build/modules/connections/errors/ConnectionProblemReportReason.js +16 -0
  398. package/build/modules/connections/errors/ConnectionProblemReportReason.js.map +1 -0
  399. package/build/modules/connections/errors/DidExchangeProblemReportError.d.ts +13 -0
  400. package/build/modules/connections/errors/DidExchangeProblemReportError.js +19 -0
  401. package/build/modules/connections/errors/DidExchangeProblemReportError.js.map +1 -0
  402. package/build/modules/connections/errors/DidExchangeProblemReportReason.d.ts +12 -0
  403. package/build/modules/connections/errors/DidExchangeProblemReportReason.js +17 -0
  404. package/build/modules/connections/errors/DidExchangeProblemReportReason.js.map +1 -0
  405. package/build/modules/connections/errors/index.d.ts +4 -0
  406. package/build/modules/connections/errors/index.js +21 -0
  407. package/build/modules/connections/errors/index.js.map +1 -0
  408. package/build/modules/connections/handlers/AckMessageHandler.d.ts +9 -0
  409. package/build/modules/connections/handlers/AckMessageHandler.js +15 -0
  410. package/build/modules/connections/handlers/AckMessageHandler.js.map +1 -0
  411. package/build/modules/connections/handlers/ConnectionProblemReportHandler.d.ts +9 -0
  412. package/build/modules/connections/handlers/ConnectionProblemReportHandler.js +15 -0
  413. package/build/modules/connections/handlers/ConnectionProblemReportHandler.js.map +1 -0
  414. package/build/modules/connections/handlers/ConnectionRequestHandler.d.ts +18 -0
  415. package/build/modules/connections/handlers/ConnectionRequestHandler.js +63 -0
  416. package/build/modules/connections/handlers/ConnectionRequestHandler.js.map +1 -0
  417. package/build/modules/connections/handlers/ConnectionResponseHandler.d.ts +16 -0
  418. package/build/modules/connections/handlers/ConnectionResponseHandler.js +62 -0
  419. package/build/modules/connections/handlers/ConnectionResponseHandler.js.map +1 -0
  420. package/build/modules/connections/handlers/DidExchangeCompleteHandler.d.ts +11 -0
  421. package/build/modules/connections/handlers/DidExchangeCompleteHandler.js +41 -0
  422. package/build/modules/connections/handlers/DidExchangeCompleteHandler.js.map +1 -0
  423. package/build/modules/connections/handlers/DidExchangeRequestHandler.d.ts +18 -0
  424. package/build/modules/connections/handlers/DidExchangeRequestHandler.js +72 -0
  425. package/build/modules/connections/handlers/DidExchangeRequestHandler.js.map +1 -0
  426. package/build/modules/connections/handlers/DidExchangeResponseHandler.d.ts +18 -0
  427. package/build/modules/connections/handlers/DidExchangeResponseHandler.js +78 -0
  428. package/build/modules/connections/handlers/DidExchangeResponseHandler.js.map +1 -0
  429. package/build/modules/connections/handlers/DidRotateAckHandler.d.ts +9 -0
  430. package/build/modules/connections/handlers/DidRotateAckHandler.js +15 -0
  431. package/build/modules/connections/handlers/DidRotateAckHandler.js.map +1 -0
  432. package/build/modules/connections/handlers/DidRotateHandler.d.ts +11 -0
  433. package/build/modules/connections/handlers/DidRotateHandler.js +21 -0
  434. package/build/modules/connections/handlers/DidRotateHandler.js.map +1 -0
  435. package/build/modules/connections/handlers/DidRotateProblemReportHandler.d.ts +9 -0
  436. package/build/modules/connections/handlers/DidRotateProblemReportHandler.js +15 -0
  437. package/build/modules/connections/handlers/DidRotateProblemReportHandler.js.map +1 -0
  438. package/build/modules/connections/handlers/HangupHandler.d.ts +9 -0
  439. package/build/modules/connections/handlers/HangupHandler.js +15 -0
  440. package/build/modules/connections/handlers/HangupHandler.js.map +1 -0
  441. package/build/modules/connections/handlers/TrustPingMessageHandler.d.ts +11 -0
  442. package/build/modules/connections/handlers/TrustPingMessageHandler.js +27 -0
  443. package/build/modules/connections/handlers/TrustPingMessageHandler.js.map +1 -0
  444. package/build/modules/connections/handlers/TrustPingResponseMessageHandler.d.ts +9 -0
  445. package/build/modules/connections/handlers/TrustPingResponseMessageHandler.js +15 -0
  446. package/build/modules/connections/handlers/TrustPingResponseMessageHandler.js.map +1 -0
  447. package/build/modules/connections/handlers/index.d.ts +13 -0
  448. package/build/modules/connections/handlers/index.js +30 -0
  449. package/build/modules/connections/handlers/index.js.map +1 -0
  450. package/build/modules/connections/index.d.ts +10 -0
  451. package/build/modules/connections/index.js +27 -0
  452. package/build/modules/connections/index.js.map +1 -0
  453. package/build/modules/connections/messages/ConnectionInvitationMessage.d.ts +55 -0
  454. package/build/modules/connections/messages/ConnectionInvitationMessage.js +141 -0
  455. package/build/modules/connections/messages/ConnectionInvitationMessage.js.map +1 -0
  456. package/build/modules/connections/messages/ConnectionProblemReportMessage.d.ts +16 -0
  457. package/build/modules/connections/messages/ConnectionProblemReportMessage.js +35 -0
  458. package/build/modules/connections/messages/ConnectionProblemReportMessage.js.map +1 -0
  459. package/build/modules/connections/messages/ConnectionRequestMessage.d.ts +28 -0
  460. package/build/modules/connections/messages/ConnectionRequestMessage.js +64 -0
  461. package/build/modules/connections/messages/ConnectionRequestMessage.js.map +1 -0
  462. package/build/modules/connections/messages/ConnectionResponseMessage.d.ts +23 -0
  463. package/build/modules/connections/messages/ConnectionResponseMessage.js +52 -0
  464. package/build/modules/connections/messages/ConnectionResponseMessage.js.map +1 -0
  465. package/build/modules/connections/messages/DidExchangeCompleteMessage.d.ts +14 -0
  466. package/build/modules/connections/messages/DidExchangeCompleteMessage.js +38 -0
  467. package/build/modules/connections/messages/DidExchangeCompleteMessage.js.map +1 -0
  468. package/build/modules/connections/messages/DidExchangeProblemReportMessage.d.ts +11 -0
  469. package/build/modules/connections/messages/DidExchangeProblemReportMessage.js +30 -0
  470. package/build/modules/connections/messages/DidExchangeProblemReportMessage.js.map +1 -0
  471. package/build/modules/connections/messages/DidExchangeRequestMessage.d.ts +29 -0
  472. package/build/modules/connections/messages/DidExchangeRequestMessage.js +73 -0
  473. package/build/modules/connections/messages/DidExchangeRequestMessage.js.map +1 -0
  474. package/build/modules/connections/messages/DidExchangeResponseMessage.d.ts +24 -0
  475. package/build/modules/connections/messages/DidExchangeResponseMessage.js +64 -0
  476. package/build/modules/connections/messages/DidExchangeResponseMessage.js.map +1 -0
  477. package/build/modules/connections/messages/DidRotateAckMessage.d.ts +12 -0
  478. package/build/modules/connections/messages/DidRotateAckMessage.js +31 -0
  479. package/build/modules/connections/messages/DidRotateAckMessage.js.map +1 -0
  480. package/build/modules/connections/messages/DidRotateMessage.d.ts +20 -0
  481. package/build/modules/connections/messages/DidRotateMessage.js +47 -0
  482. package/build/modules/connections/messages/DidRotateMessage.js.map +1 -0
  483. package/build/modules/connections/messages/DidRotateProblemReportMessage.d.ts +11 -0
  484. package/build/modules/connections/messages/DidRotateProblemReportMessage.js +30 -0
  485. package/build/modules/connections/messages/DidRotateProblemReportMessage.js.map +1 -0
  486. package/build/modules/connections/messages/HangupMessage.d.ts +19 -0
  487. package/build/modules/connections/messages/HangupMessage.js +40 -0
  488. package/build/modules/connections/messages/HangupMessage.js.map +1 -0
  489. package/build/modules/connections/messages/TrustPingMessage.d.ts +26 -0
  490. package/build/modules/connections/messages/TrustPingMessage.js +63 -0
  491. package/build/modules/connections/messages/TrustPingMessage.js.map +1 -0
  492. package/build/modules/connections/messages/TrustPingResponseMessage.d.ts +25 -0
  493. package/build/modules/connections/messages/TrustPingResponseMessage.js +57 -0
  494. package/build/modules/connections/messages/TrustPingResponseMessage.js.map +1 -0
  495. package/build/modules/connections/messages/index.d.ts +14 -0
  496. package/build/modules/connections/messages/index.js +31 -0
  497. package/build/modules/connections/messages/index.js.map +1 -0
  498. package/build/modules/connections/models/Connection.d.ts +10 -0
  499. package/build/modules/connections/models/Connection.js +38 -0
  500. package/build/modules/connections/models/Connection.js.map +1 -0
  501. package/build/modules/connections/models/ConnectionRole.d.ts +4 -0
  502. package/build/modules/connections/models/ConnectionRole.js +9 -0
  503. package/build/modules/connections/models/ConnectionRole.js.map +1 -0
  504. package/build/modules/connections/models/ConnectionState.d.ts +14 -0
  505. package/build/modules/connections/models/ConnectionState.js +33 -0
  506. package/build/modules/connections/models/ConnectionState.js.map +1 -0
  507. package/build/modules/connections/models/ConnectionType.d.ts +3 -0
  508. package/build/modules/connections/models/ConnectionType.js +8 -0
  509. package/build/modules/connections/models/ConnectionType.js.map +1 -0
  510. package/build/modules/connections/models/DidExchangeRole.d.ts +4 -0
  511. package/build/modules/connections/models/DidExchangeRole.js +9 -0
  512. package/build/modules/connections/models/DidExchangeRole.js.map +1 -0
  513. package/build/modules/connections/models/DidExchangeState.d.ts +16 -0
  514. package/build/modules/connections/models/DidExchangeState.js +21 -0
  515. package/build/modules/connections/models/DidExchangeState.js.map +1 -0
  516. package/build/modules/connections/models/DidRotateRole.d.ts +4 -0
  517. package/build/modules/connections/models/DidRotateRole.js +9 -0
  518. package/build/modules/connections/models/DidRotateRole.js.map +1 -0
  519. package/build/modules/connections/models/HandshakeProtocol.d.ts +8 -0
  520. package/build/modules/connections/models/HandshakeProtocol.js +13 -0
  521. package/build/modules/connections/models/HandshakeProtocol.js.map +1 -0
  522. package/build/modules/connections/models/InvitationDetails.d.ts +6 -0
  523. package/build/modules/connections/models/InvitationDetails.js +3 -0
  524. package/build/modules/connections/models/InvitationDetails.js.map +1 -0
  525. package/build/modules/connections/models/did/DidDoc.d.ts +37 -0
  526. package/build/modules/connections/models/did/DidDoc.js +94 -0
  527. package/build/modules/connections/models/did/DidDoc.js.map +1 -0
  528. package/build/modules/connections/models/did/authentication/Authentication.d.ts +4 -0
  529. package/build/modules/connections/models/did/authentication/Authentication.js +7 -0
  530. package/build/modules/connections/models/did/authentication/Authentication.js.map +1 -0
  531. package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.d.ts +6 -0
  532. package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.js +29 -0
  533. package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.js.map +1 -0
  534. package/build/modules/connections/models/did/authentication/ReferencedAuthentication.d.ts +7 -0
  535. package/build/modules/connections/models/did/authentication/ReferencedAuthentication.js +35 -0
  536. package/build/modules/connections/models/did/authentication/ReferencedAuthentication.js.map +1 -0
  537. package/build/modules/connections/models/did/authentication/index.d.ts +19 -0
  538. package/build/modules/connections/models/did/authentication/index.js +59 -0
  539. package/build/modules/connections/models/did/authentication/index.js.map +1 -0
  540. package/build/modules/connections/models/did/index.d.ts +3 -0
  541. package/build/modules/connections/models/did/index.js +20 -0
  542. package/build/modules/connections/models/did/index.js.map +1 -0
  543. package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.d.ts +10 -0
  544. package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.js +35 -0
  545. package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.js.map +1 -0
  546. package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.d.ts +10 -0
  547. package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.js +35 -0
  548. package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.js.map +1 -0
  549. package/build/modules/connections/models/did/publicKey/PublicKey.d.ts +12 -0
  550. package/build/modules/connections/models/did/publicKey/PublicKey.js +42 -0
  551. package/build/modules/connections/models/did/publicKey/PublicKey.js.map +1 -0
  552. package/build/modules/connections/models/did/publicKey/RsaSig2018.d.ts +10 -0
  553. package/build/modules/connections/models/did/publicKey/RsaSig2018.js +35 -0
  554. package/build/modules/connections/models/did/publicKey/RsaSig2018.js.map +1 -0
  555. package/build/modules/connections/models/did/publicKey/index.d.ts +18 -0
  556. package/build/modules/connections/models/did/publicKey/index.js +40 -0
  557. package/build/modules/connections/models/did/publicKey/index.js.map +1 -0
  558. package/build/modules/connections/models/index.d.ts +9 -0
  559. package/build/modules/connections/models/index.js +26 -0
  560. package/build/modules/connections/models/index.js.map +1 -0
  561. package/build/modules/connections/repository/ConnectionMetadataTypes.d.ts +14 -0
  562. package/build/modules/connections/repository/ConnectionMetadataTypes.js +9 -0
  563. package/build/modules/connections/repository/ConnectionMetadataTypes.js.map +1 -0
  564. package/build/modules/connections/repository/ConnectionRecord.d.ts +70 -0
  565. package/build/modules/connections/repository/ConnectionRecord.js +90 -0
  566. package/build/modules/connections/repository/ConnectionRecord.js.map +1 -0
  567. package/build/modules/connections/repository/ConnectionRepository.d.ts +15 -0
  568. package/build/modules/connections/repository/ConnectionRepository.js +50 -0
  569. package/build/modules/connections/repository/ConnectionRepository.js.map +1 -0
  570. package/build/modules/connections/repository/index.d.ts +2 -0
  571. package/build/modules/connections/repository/index.js +19 -0
  572. package/build/modules/connections/repository/index.js.map +1 -0
  573. package/build/modules/connections/services/ConnectionService.d.ts +180 -0
  574. package/build/modules/connections/services/ConnectionService.js +679 -0
  575. package/build/modules/connections/services/ConnectionService.js.map +1 -0
  576. package/build/modules/connections/services/DidRotateService.d.ts +51 -0
  577. package/build/modules/connections/services/DidRotateService.js +211 -0
  578. package/build/modules/connections/services/DidRotateService.js.map +1 -0
  579. package/build/modules/connections/services/TrustPingService.d.ts +12 -0
  580. package/build/modules/connections/services/TrustPingService.js +54 -0
  581. package/build/modules/connections/services/TrustPingService.js.map +1 -0
  582. package/build/modules/connections/services/helpers.d.ts +9 -0
  583. package/build/modules/connections/services/helpers.js +131 -0
  584. package/build/modules/connections/services/helpers.js.map +1 -0
  585. package/build/modules/connections/services/index.d.ts +3 -0
  586. package/build/modules/connections/services/index.js +20 -0
  587. package/build/modules/connections/services/index.js.map +1 -0
  588. package/build/modules/credentials/CredentialEvents.d.ts +20 -0
  589. package/build/modules/credentials/CredentialEvents.js +9 -0
  590. package/build/modules/credentials/CredentialEvents.js.map +1 -0
  591. package/build/modules/credentials/CredentialsApi.d.ts +60 -0
  592. package/build/modules/credentials/CredentialsApi.js +485 -0
  593. package/build/modules/credentials/CredentialsApi.js.map +1 -0
  594. package/build/modules/credentials/CredentialsApiOptions.d.ts +104 -0
  595. package/build/modules/credentials/CredentialsApiOptions.js +3 -0
  596. package/build/modules/credentials/CredentialsApiOptions.js.map +1 -0
  597. package/build/modules/credentials/CredentialsModule.d.ts +22 -0
  598. package/build/modules/credentials/CredentialsModule.js +45 -0
  599. package/build/modules/credentials/CredentialsModule.js.map +1 -0
  600. package/build/modules/credentials/CredentialsModuleConfig.d.ts +34 -0
  601. package/build/modules/credentials/CredentialsModuleConfig.js +20 -0
  602. package/build/modules/credentials/CredentialsModuleConfig.js.map +1 -0
  603. package/build/modules/credentials/formats/CredentialFormat.d.ts +40 -0
  604. package/build/modules/credentials/formats/CredentialFormat.js +3 -0
  605. package/build/modules/credentials/formats/CredentialFormat.js.map +1 -0
  606. package/build/modules/credentials/formats/CredentialFormatService.d.ts +23 -0
  607. package/build/modules/credentials/formats/CredentialFormatService.js +3 -0
  608. package/build/modules/credentials/formats/CredentialFormatService.js.map +1 -0
  609. package/build/modules/credentials/formats/CredentialFormatServiceOptions.d.ts +117 -0
  610. package/build/modules/credentials/formats/CredentialFormatServiceOptions.js +3 -0
  611. package/build/modules/credentials/formats/CredentialFormatServiceOptions.js.map +1 -0
  612. package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.d.ts +51 -0
  613. package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.js +3 -0
  614. package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.js.map +1 -0
  615. package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.d.ts +77 -0
  616. package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.js +129 -0
  617. package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.js.map +1 -0
  618. package/build/modules/credentials/formats/dataIntegrity/index.d.ts +2 -0
  619. package/build/modules/credentials/formats/dataIntegrity/index.js +19 -0
  620. package/build/modules/credentials/formats/dataIntegrity/index.js.map +1 -0
  621. package/build/modules/credentials/formats/index.d.ts +5 -0
  622. package/build/modules/credentials/formats/index.js +22 -0
  623. package/build/modules/credentials/formats/index.js.map +1 -0
  624. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.d.ts +15 -0
  625. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.js +38 -0
  626. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.js.map +1 -0
  627. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.d.ts +24 -0
  628. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.js +67 -0
  629. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.js.map +1 -0
  630. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.d.ts +92 -0
  631. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.js +3 -0
  632. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.js.map +1 -0
  633. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.d.ts +71 -0
  634. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.js +300 -0
  635. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.js.map +1 -0
  636. package/build/modules/credentials/formats/jsonld/index.d.ts +4 -0
  637. package/build/modules/credentials/formats/jsonld/index.js +21 -0
  638. package/build/modules/credentials/formats/jsonld/index.js.map +1 -0
  639. package/build/modules/credentials/index.d.ts +9 -0
  640. package/build/modules/credentials/index.js +26 -0
  641. package/build/modules/credentials/index.js.map +1 -0
  642. package/build/modules/credentials/models/CredentialAutoAcceptType.d.ts +11 -0
  643. package/build/modules/credentials/models/CredentialAutoAcceptType.js +16 -0
  644. package/build/modules/credentials/models/CredentialAutoAcceptType.js.map +1 -0
  645. package/build/modules/credentials/models/CredentialFormatSpec.d.ts +9 -0
  646. package/build/modules/credentials/models/CredentialFormatSpec.js +35 -0
  647. package/build/modules/credentials/models/CredentialFormatSpec.js.map +1 -0
  648. package/build/modules/credentials/models/CredentialPreviewAttribute.d.ts +15 -0
  649. package/build/modules/credentials/models/CredentialPreviewAttribute.js +44 -0
  650. package/build/modules/credentials/models/CredentialPreviewAttribute.js.map +1 -0
  651. package/build/modules/credentials/models/CredentialProblemReportReason.d.ts +8 -0
  652. package/build/modules/credentials/models/CredentialProblemReportReason.js +13 -0
  653. package/build/modules/credentials/models/CredentialProblemReportReason.js.map +1 -0
  654. package/build/modules/credentials/models/CredentialRole.d.ts +4 -0
  655. package/build/modules/credentials/models/CredentialRole.js +9 -0
  656. package/build/modules/credentials/models/CredentialRole.js.map +1 -0
  657. package/build/modules/credentials/models/CredentialState.d.ts +18 -0
  658. package/build/modules/credentials/models/CredentialState.js +23 -0
  659. package/build/modules/credentials/models/CredentialState.js.map +1 -0
  660. package/build/modules/credentials/models/RevocationNotification.d.ts +5 -0
  661. package/build/modules/credentials/models/RevocationNotification.js +11 -0
  662. package/build/modules/credentials/models/RevocationNotification.js.map +1 -0
  663. package/build/modules/credentials/models/index.d.ts +7 -0
  664. package/build/modules/credentials/models/index.js +24 -0
  665. package/build/modules/credentials/models/index.js.map +1 -0
  666. package/build/modules/credentials/protocol/BaseCredentialProtocol.d.ts +112 -0
  667. package/build/modules/credentials/protocol/BaseCredentialProtocol.js +158 -0
  668. package/build/modules/credentials/protocol/BaseCredentialProtocol.js.map +1 -0
  669. package/build/modules/credentials/protocol/CredentialProtocol.d.ts +54 -0
  670. package/build/modules/credentials/protocol/CredentialProtocol.js +3 -0
  671. package/build/modules/credentials/protocol/CredentialProtocol.js.map +1 -0
  672. package/build/modules/credentials/protocol/CredentialProtocolOptions.d.ts +143 -0
  673. package/build/modules/credentials/protocol/CredentialProtocolOptions.js +3 -0
  674. package/build/modules/credentials/protocol/CredentialProtocolOptions.js.map +1 -0
  675. package/build/modules/credentials/protocol/index.d.ts +6 -0
  676. package/build/modules/credentials/protocol/index.js +40 -0
  677. package/build/modules/credentials/protocol/index.js.map +1 -0
  678. package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.d.ts +9 -0
  679. package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.js +15 -0
  680. package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.js.map +1 -0
  681. package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.d.ts +9 -0
  682. package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.js +15 -0
  683. package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.js.map +1 -0
  684. package/build/modules/credentials/protocol/revocation-notification/handlers/index.d.ts +2 -0
  685. package/build/modules/credentials/protocol/revocation-notification/handlers/index.js +19 -0
  686. package/build/modules/credentials/protocol/revocation-notification/handlers/index.js.map +1 -0
  687. package/build/modules/credentials/protocol/revocation-notification/index.d.ts +1 -0
  688. package/build/modules/credentials/protocol/revocation-notification/index.js +18 -0
  689. package/build/modules/credentials/protocol/revocation-notification/index.js.map +1 -0
  690. package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.d.ts +15 -0
  691. package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.js +46 -0
  692. package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.js.map +1 -0
  693. package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.d.ts +17 -0
  694. package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.js +52 -0
  695. package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.js.map +1 -0
  696. package/build/modules/credentials/protocol/revocation-notification/messages/index.d.ts +2 -0
  697. package/build/modules/credentials/protocol/revocation-notification/messages/index.js +19 -0
  698. package/build/modules/credentials/protocol/revocation-notification/messages/index.js.map +1 -0
  699. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.d.ts +36 -0
  700. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.js +129 -0
  701. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.js.map +1 -0
  702. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.d.ts +6 -0
  703. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.js +3 -0
  704. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.js.map +1 -0
  705. package/build/modules/credentials/protocol/revocation-notification/services/index.d.ts +2 -0
  706. package/build/modules/credentials/protocol/revocation-notification/services/index.js +19 -0
  707. package/build/modules/credentials/protocol/revocation-notification/services/index.js.map +1 -0
  708. package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.d.ts +5 -0
  709. package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.js +13 -0
  710. package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.js.map +1 -0
  711. package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.d.ts +100 -0
  712. package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.js +365 -0
  713. package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.js.map +1 -0
  714. package/build/modules/credentials/protocol/v2/V2CredentialProtocol.d.ts +178 -0
  715. package/build/modules/credentials/protocol/v2/V2CredentialProtocol.js +935 -0
  716. package/build/modules/credentials/protocol/v2/V2CredentialProtocol.js.map +1 -0
  717. package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.d.ts +11 -0
  718. package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.js +18 -0
  719. package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.js.map +1 -0
  720. package/build/modules/credentials/protocol/v2/errors/index.d.ts +1 -0
  721. package/build/modules/credentials/protocol/v2/errors/index.js +6 -0
  722. package/build/modules/credentials/protocol/v2/errors/index.js.map +1 -0
  723. package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.d.ts +9 -0
  724. package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.js +15 -0
  725. package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.js.map +1 -0
  726. package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.d.ts +9 -0
  727. package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.js +15 -0
  728. package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.js.map +1 -0
  729. package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.d.ts +11 -0
  730. package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.js +41 -0
  731. package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.js.map +1 -0
  732. package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.d.ts +11 -0
  733. package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.js +33 -0
  734. package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.js.map +1 -0
  735. package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.d.ts +12 -0
  736. package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.js +36 -0
  737. package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.js.map +1 -0
  738. package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.d.ts +11 -0
  739. package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.js +41 -0
  740. package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.js.map +1 -0
  741. package/build/modules/credentials/protocol/v2/handlers/index.d.ts +6 -0
  742. package/build/modules/credentials/protocol/v2/handlers/index.js +23 -0
  743. package/build/modules/credentials/protocol/v2/handlers/index.js.map +1 -0
  744. package/build/modules/credentials/protocol/v2/index.d.ts +3 -0
  745. package/build/modules/credentials/protocol/v2/index.js +20 -0
  746. package/build/modules/credentials/protocol/v2/index.js.map +1 -0
  747. package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.d.ts +15 -0
  748. package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.js +34 -0
  749. package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.js.map +1 -0
  750. package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.d.ts +26 -0
  751. package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.js +71 -0
  752. package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.js.map +1 -0
  753. package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.d.ts +15 -0
  754. package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.js +34 -0
  755. package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.js.map +1 -0
  756. package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.d.ts +22 -0
  757. package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.js +76 -0
  758. package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.js.map +1 -0
  759. package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.d.ts +27 -0
  760. package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.js +91 -0
  761. package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.js.map +1 -0
  762. package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.d.ts +30 -0
  763. package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.js +87 -0
  764. package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.js.map +1 -0
  765. package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.d.ts +27 -0
  766. package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.js +77 -0
  767. package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.js.map +1 -0
  768. package/build/modules/credentials/protocol/v2/messages/index.d.ts +7 -0
  769. package/build/modules/credentials/protocol/v2/messages/index.js +24 -0
  770. package/build/modules/credentials/protocol/v2/messages/index.js.map +1 -0
  771. package/build/modules/credentials/repository/CredentialExchangeRecord.d.ts +66 -0
  772. package/build/modules/credentials/repository/CredentialExchangeRecord.js +80 -0
  773. package/build/modules/credentials/repository/CredentialExchangeRecord.js.map +1 -0
  774. package/build/modules/credentials/repository/CredentialRepository.d.ts +7 -0
  775. package/build/modules/credentials/repository/CredentialRepository.js +32 -0
  776. package/build/modules/credentials/repository/CredentialRepository.js.map +1 -0
  777. package/build/modules/credentials/repository/index.d.ts +2 -0
  778. package/build/modules/credentials/repository/index.js +19 -0
  779. package/build/modules/credentials/repository/index.js.map +1 -0
  780. package/build/modules/credentials/util/composeAutoAccept.d.ts +8 -0
  781. package/build/modules/credentials/util/composeAutoAccept.js +16 -0
  782. package/build/modules/credentials/util/composeAutoAccept.js.map +1 -0
  783. package/build/modules/credentials/util/previewAttributes.d.ts +2 -0
  784. package/build/modules/credentials/util/previewAttributes.js +25 -0
  785. package/build/modules/credentials/util/previewAttributes.js.map +1 -0
  786. package/build/modules/didcomm/index.d.ts +2 -0
  787. package/build/modules/didcomm/index.js +19 -0
  788. package/build/modules/didcomm/index.js.map +1 -0
  789. package/build/modules/didcomm/services/DidCommDocumentService.d.ts +8 -0
  790. package/build/modules/didcomm/services/DidCommDocumentService.js +78 -0
  791. package/build/modules/didcomm/services/DidCommDocumentService.js.map +1 -0
  792. package/build/modules/didcomm/services/index.d.ts +1 -0
  793. package/build/modules/didcomm/services/index.js +18 -0
  794. package/build/modules/didcomm/services/index.js.map +1 -0
  795. package/build/modules/didcomm/types.d.ts +7 -0
  796. package/build/modules/didcomm/types.js +3 -0
  797. package/build/modules/didcomm/types.js.map +1 -0
  798. package/build/modules/didcomm/util/matchingEd25519Key.d.ts +9 -0
  799. package/build/modules/didcomm/util/matchingEd25519Key.js +34 -0
  800. package/build/modules/didcomm/util/matchingEd25519Key.js.map +1 -0
  801. package/build/modules/dids/DidsApi.d.ts +71 -0
  802. package/build/modules/dids/DidsApi.js +160 -0
  803. package/build/modules/dids/DidsApi.js.map +1 -0
  804. package/build/modules/dids/DidsApiOptions.d.ts +29 -0
  805. package/build/modules/dids/DidsApiOptions.js +3 -0
  806. package/build/modules/dids/DidsApiOptions.js.map +1 -0
  807. package/build/modules/dids/DidsModule.d.ts +13 -0
  808. package/build/modules/dids/DidsModule.js +26 -0
  809. package/build/modules/dids/DidsModule.js.map +1 -0
  810. package/build/modules/dids/DidsModuleConfig.d.ts +41 -0
  811. package/build/modules/dids/DidsModuleConfig.js +62 -0
  812. package/build/modules/dids/DidsModuleConfig.js.map +1 -0
  813. package/build/modules/dids/domain/DidDocument.d.ts +62 -0
  814. package/build/modules/dids/domain/DidDocument.js +276 -0
  815. package/build/modules/dids/domain/DidDocument.js.map +1 -0
  816. package/build/modules/dids/domain/DidDocumentBuilder.d.ts +16 -0
  817. package/build/modules/dids/domain/DidDocumentBuilder.js +90 -0
  818. package/build/modules/dids/domain/DidDocumentBuilder.js.map +1 -0
  819. package/build/modules/dids/domain/DidDocumentRole.d.ts +4 -0
  820. package/build/modules/dids/domain/DidDocumentRole.js +9 -0
  821. package/build/modules/dids/domain/DidDocumentRole.js.map +1 -0
  822. package/build/modules/dids/domain/DidRegistrar.d.ts +8 -0
  823. package/build/modules/dids/domain/DidRegistrar.js +3 -0
  824. package/build/modules/dids/domain/DidRegistrar.js.map +1 -0
  825. package/build/modules/dids/domain/DidResolver.d.ts +7 -0
  826. package/build/modules/dids/domain/DidResolver.js +3 -0
  827. package/build/modules/dids/domain/DidResolver.js.map +1 -0
  828. package/build/modules/dids/domain/index.d.ts +9 -0
  829. package/build/modules/dids/domain/index.js +28 -0
  830. package/build/modules/dids/domain/index.js.map +1 -0
  831. package/build/modules/dids/domain/key-type/bls12381g1.d.ts +2 -0
  832. package/build/modules/dids/domain/key-type/bls12381g1.js +19 -0
  833. package/build/modules/dids/domain/key-type/bls12381g1.js.map +1 -0
  834. package/build/modules/dids/domain/key-type/bls12381g1g2.d.ts +4 -0
  835. package/build/modules/dids/domain/key-type/bls12381g1g2.js +34 -0
  836. package/build/modules/dids/domain/key-type/bls12381g1g2.js.map +1 -0
  837. package/build/modules/dids/domain/key-type/bls12381g2.d.ts +2 -0
  838. package/build/modules/dids/domain/key-type/bls12381g2.js +19 -0
  839. package/build/modules/dids/domain/key-type/bls12381g2.js.map +1 -0
  840. package/build/modules/dids/domain/key-type/ed25519.d.ts +3 -0
  841. package/build/modules/dids/domain/key-type/ed25519.js +35 -0
  842. package/build/modules/dids/domain/key-type/ed25519.js.map +1 -0
  843. package/build/modules/dids/domain/key-type/index.d.ts +6 -0
  844. package/build/modules/dids/domain/key-type/index.js +27 -0
  845. package/build/modules/dids/domain/key-type/index.js.map +1 -0
  846. package/build/modules/dids/domain/key-type/keyDidJsonWebKey.d.ts +2 -0
  847. package/build/modules/dids/domain/key-type/keyDidJsonWebKey.js +18 -0
  848. package/build/modules/dids/domain/key-type/keyDidJsonWebKey.js.map +1 -0
  849. package/build/modules/dids/domain/key-type/keyDidMapping.d.ts +11 -0
  850. package/build/modules/dids/domain/key-type/keyDidMapping.js +78 -0
  851. package/build/modules/dids/domain/key-type/keyDidMapping.js.map +1 -0
  852. package/build/modules/dids/domain/key-type/secp256k1.d.ts +2 -0
  853. package/build/modules/dids/domain/key-type/secp256k1.js +23 -0
  854. package/build/modules/dids/domain/key-type/secp256k1.js.map +1 -0
  855. package/build/modules/dids/domain/key-type/x25519.d.ts +2 -0
  856. package/build/modules/dids/domain/key-type/x25519.js +29 -0
  857. package/build/modules/dids/domain/key-type/x25519.js.map +1 -0
  858. package/build/modules/dids/domain/keyDidDocument.d.ts +4 -0
  859. package/build/modules/dids/domain/keyDidDocument.js +115 -0
  860. package/build/modules/dids/domain/keyDidDocument.js.map +1 -0
  861. package/build/modules/dids/domain/parse.d.ts +3 -0
  862. package/build/modules/dids/domain/parse.js +18 -0
  863. package/build/modules/dids/domain/parse.js.map +1 -0
  864. package/build/modules/dids/domain/service/DidCommV1Service.d.ts +16 -0
  865. package/build/modules/dids/domain/service/DidCommV1Service.js +45 -0
  866. package/build/modules/dids/domain/service/DidCommV1Service.js.map +1 -0
  867. package/build/modules/dids/domain/service/DidCommV2Service.d.ts +12 -0
  868. package/build/modules/dids/domain/service/DidCommV2Service.js +36 -0
  869. package/build/modules/dids/domain/service/DidCommV2Service.js.map +1 -0
  870. package/build/modules/dids/domain/service/DidDocumentService.d.ts +11 -0
  871. package/build/modules/dids/domain/service/DidDocumentService.js +40 -0
  872. package/build/modules/dids/domain/service/DidDocumentService.js.map +1 -0
  873. package/build/modules/dids/domain/service/IndyAgentService.d.ts +14 -0
  874. package/build/modules/dids/domain/service/IndyAgentService.js +39 -0
  875. package/build/modules/dids/domain/service/IndyAgentService.js.map +1 -0
  876. package/build/modules/dids/domain/service/ServiceTransformer.d.ts +13 -0
  877. package/build/modules/dids/domain/service/ServiceTransformer.js +36 -0
  878. package/build/modules/dids/domain/service/ServiceTransformer.js.map +1 -0
  879. package/build/modules/dids/domain/service/index.d.ts +6 -0
  880. package/build/modules/dids/domain/service/index.js +15 -0
  881. package/build/modules/dids/domain/service/index.js.map +1 -0
  882. package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.d.ts +23 -0
  883. package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.js +38 -0
  884. package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.js.map +1 -0
  885. package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.d.ts +23 -0
  886. package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.js +38 -0
  887. package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.js.map +1 -0
  888. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.d.ts +23 -0
  889. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.js +38 -0
  890. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.js.map +1 -0
  891. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.d.ts +23 -0
  892. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.js +38 -0
  893. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.js.map +1 -0
  894. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.d.ts +23 -0
  895. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.js +42 -0
  896. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.js.map +1 -0
  897. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.d.ts +37 -0
  898. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.js +40 -0
  899. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.js.map +1 -0
  900. package/build/modules/dids/domain/verificationMethod/Multikey.d.ts +30 -0
  901. package/build/modules/dids/domain/verificationMethod/Multikey.js +39 -0
  902. package/build/modules/dids/domain/verificationMethod/Multikey.js.map +1 -0
  903. package/build/modules/dids/domain/verificationMethod/VerificationMethod.d.ts +28 -0
  904. package/build/modules/dids/domain/verificationMethod/VerificationMethod.js +79 -0
  905. package/build/modules/dids/domain/verificationMethod/VerificationMethod.js.map +1 -0
  906. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.d.ts +16 -0
  907. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.js +50 -0
  908. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.js.map +1 -0
  909. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.d.ts +23 -0
  910. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.js +38 -0
  911. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.js.map +1 -0
  912. package/build/modules/dids/domain/verificationMethod/index.d.ts +10 -0
  913. package/build/modules/dids/domain/verificationMethod/index.js +31 -0
  914. package/build/modules/dids/domain/verificationMethod/index.js.map +1 -0
  915. package/build/modules/dids/helpers.d.ts +6 -0
  916. package/build/modules/dids/helpers.js +38 -0
  917. package/build/modules/dids/helpers.js.map +1 -0
  918. package/build/modules/dids/index.d.ts +9 -0
  919. package/build/modules/dids/index.js +26 -0
  920. package/build/modules/dids/index.js.map +1 -0
  921. package/build/modules/dids/methods/index.d.ts +4 -0
  922. package/build/modules/dids/methods/index.js +21 -0
  923. package/build/modules/dids/methods/index.js.map +1 -0
  924. package/build/modules/dids/methods/jwk/DidJwk.d.ts +18 -0
  925. package/build/modules/dids/methods/jwk/DidJwk.js +53 -0
  926. package/build/modules/dids/methods/jwk/DidJwk.js.map +1 -0
  927. package/build/modules/dids/methods/jwk/JwkDidRegistrar.d.ts +25 -0
  928. package/build/modules/dids/methods/jwk/JwkDidRegistrar.js +94 -0
  929. package/build/modules/dids/methods/jwk/JwkDidRegistrar.js.map +1 -0
  930. package/build/modules/dids/methods/jwk/JwkDidResolver.d.ts +11 -0
  931. package/build/modules/dids/methods/jwk/JwkDidResolver.js +36 -0
  932. package/build/modules/dids/methods/jwk/JwkDidResolver.js.map +1 -0
  933. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.d.ts +20 -0
  934. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.js +36 -0
  935. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.js.map +1 -0
  936. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.d.ts +16 -0
  937. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.js +24 -0
  938. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.js.map +1 -0
  939. package/build/modules/dids/methods/jwk/didJwkDidDocument.d.ts +2 -0
  940. package/build/modules/dids/methods/jwk/didJwkDidDocument.js +36 -0
  941. package/build/modules/dids/methods/jwk/didJwkDidDocument.js.map +1 -0
  942. package/build/modules/dids/methods/jwk/index.d.ts +3 -0
  943. package/build/modules/dids/methods/jwk/index.js +22 -0
  944. package/build/modules/dids/methods/jwk/index.js.map +1 -0
  945. package/build/modules/dids/methods/key/DidKey.d.ts +8 -0
  946. package/build/modules/dids/methods/key/DidKey.js +24 -0
  947. package/build/modules/dids/methods/key/DidKey.js.map +1 -0
  948. package/build/modules/dids/methods/key/KeyDidRegistrar.d.ts +25 -0
  949. package/build/modules/dids/methods/key/KeyDidRegistrar.js +92 -0
  950. package/build/modules/dids/methods/key/KeyDidRegistrar.js.map +1 -0
  951. package/build/modules/dids/methods/key/KeyDidResolver.d.ts +11 -0
  952. package/build/modules/dids/methods/key/KeyDidResolver.js +36 -0
  953. package/build/modules/dids/methods/key/KeyDidResolver.js.map +1 -0
  954. package/build/modules/dids/methods/key/index.d.ts +3 -0
  955. package/build/modules/dids/methods/key/index.js +22 -0
  956. package/build/modules/dids/methods/key/index.js.map +1 -0
  957. package/build/modules/dids/methods/peer/PeerDidRegistrar.d.ts +56 -0
  958. package/build/modules/dids/methods/peer/PeerDidRegistrar.js +149 -0
  959. package/build/modules/dids/methods/peer/PeerDidRegistrar.js.map +1 -0
  960. package/build/modules/dids/methods/peer/PeerDidResolver.d.ts +11 -0
  961. package/build/modules/dids/methods/peer/PeerDidResolver.js +80 -0
  962. package/build/modules/dids/methods/peer/PeerDidResolver.js.map +1 -0
  963. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.d.ts +2 -0
  964. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.js +60 -0
  965. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.js.map +1 -0
  966. package/build/modules/dids/methods/peer/didPeer.d.ts +15 -0
  967. package/build/modules/dids/methods/peer/didPeer.js +42 -0
  968. package/build/modules/dids/methods/peer/didPeer.js.map +1 -0
  969. package/build/modules/dids/methods/peer/index.d.ts +4 -0
  970. package/build/modules/dids/methods/peer/index.js +21 -0
  971. package/build/modules/dids/methods/peer/index.js.map +1 -0
  972. package/build/modules/dids/methods/peer/peerDidNumAlgo0.d.ts +3 -0
  973. package/build/modules/dids/methods/peer/peerDidNumAlgo0.js +27 -0
  974. package/build/modules/dids/methods/peer/peerDidNumAlgo0.js.map +1 -0
  975. package/build/modules/dids/methods/peer/peerDidNumAlgo1.d.ts +1 -0
  976. package/build/modules/dids/methods/peer/peerDidNumAlgo1.js +13 -0
  977. package/build/modules/dids/methods/peer/peerDidNumAlgo1.js.map +1 -0
  978. package/build/modules/dids/methods/peer/peerDidNumAlgo2.d.ts +5 -0
  979. package/build/modules/dids/methods/peer/peerDidNumAlgo2.js +191 -0
  980. package/build/modules/dids/methods/peer/peerDidNumAlgo2.js.map +1 -0
  981. package/build/modules/dids/methods/peer/peerDidNumAlgo4.d.ts +14 -0
  982. package/build/modules/dids/methods/peer/peerDidNumAlgo4.js +118 -0
  983. package/build/modules/dids/methods/peer/peerDidNumAlgo4.js.map +1 -0
  984. package/build/modules/dids/methods/web/WebDidResolver.d.ts +11 -0
  985. package/build/modules/dids/methods/web/WebDidResolver.js +55 -0
  986. package/build/modules/dids/methods/web/WebDidResolver.js.map +1 -0
  987. package/build/modules/dids/methods/web/index.d.ts +1 -0
  988. package/build/modules/dids/methods/web/index.js +18 -0
  989. package/build/modules/dids/methods/web/index.js.map +1 -0
  990. package/build/modules/dids/repository/DidRecord.d.ts +42 -0
  991. package/build/modules/dids/repository/DidRecord.js +52 -0
  992. package/build/modules/dids/repository/DidRecord.js.map +1 -0
  993. package/build/modules/dids/repository/DidRepository.d.ts +37 -0
  994. package/build/modules/dids/repository/DidRepository.js +98 -0
  995. package/build/modules/dids/repository/DidRepository.js.map +1 -0
  996. package/build/modules/dids/repository/didRecordMetadataTypes.d.ts +9 -0
  997. package/build/modules/dids/repository/didRecordMetadataTypes.js +8 -0
  998. package/build/modules/dids/repository/didRecordMetadataTypes.js.map +1 -0
  999. package/build/modules/dids/repository/index.d.ts +2 -0
  1000. package/build/modules/dids/repository/index.js +19 -0
  1001. package/build/modules/dids/repository/index.js.map +1 -0
  1002. package/build/modules/dids/services/DidRegistrarService.d.ts +17 -0
  1003. package/build/modules/dids/services/DidRegistrarService.js +108 -0
  1004. package/build/modules/dids/services/DidRegistrarService.js.map +1 -0
  1005. package/build/modules/dids/services/DidResolverService.d.ts +21 -0
  1006. package/build/modules/dids/services/DidResolverService.js +109 -0
  1007. package/build/modules/dids/services/DidResolverService.js.map +1 -0
  1008. package/build/modules/dids/services/index.d.ts +2 -0
  1009. package/build/modules/dids/services/index.js +19 -0
  1010. package/build/modules/dids/services/index.js.map +1 -0
  1011. package/build/modules/dids/types.d.ts +100 -0
  1012. package/build/modules/dids/types.js +3 -0
  1013. package/build/modules/dids/types.js.map +1 -0
  1014. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.d.ts +8 -0
  1015. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.js +12 -0
  1016. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.js.map +1 -0
  1017. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.d.ts +10 -0
  1018. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.js +23 -0
  1019. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.js.map +1 -0
  1020. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.d.ts +54 -0
  1021. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.js +409 -0
  1022. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.js.map +1 -0
  1023. package/build/modules/dif-presentation-exchange/index.d.ts +4 -0
  1024. package/build/modules/dif-presentation-exchange/index.js +21 -0
  1025. package/build/modules/dif-presentation-exchange/index.js.map +1 -0
  1026. package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.d.ts +105 -0
  1027. package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.js +3 -0
  1028. package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.js.map +1 -0
  1029. package/build/modules/dif-presentation-exchange/models/index.d.ts +12 -0
  1030. package/build/modules/dif-presentation-exchange/models/index.js +21 -0
  1031. package/build/modules/dif-presentation-exchange/models/index.js.map +1 -0
  1032. package/build/modules/dif-presentation-exchange/utils/credentialSelection.d.ts +5 -0
  1033. package/build/modules/dif-presentation-exchange/utils/credentialSelection.js +210 -0
  1034. package/build/modules/dif-presentation-exchange/utils/credentialSelection.js.map +1 -0
  1035. package/build/modules/dif-presentation-exchange/utils/index.d.ts +3 -0
  1036. package/build/modules/dif-presentation-exchange/utils/index.js +20 -0
  1037. package/build/modules/dif-presentation-exchange/utils/index.js.map +1 -0
  1038. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.d.ts +31 -0
  1039. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.js +46 -0
  1040. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.js.map +1 -0
  1041. package/build/modules/dif-presentation-exchange/utils/transform.d.ts +9 -0
  1042. package/build/modules/dif-presentation-exchange/utils/transform.js +44 -0
  1043. package/build/modules/dif-presentation-exchange/utils/transform.js.map +1 -0
  1044. package/build/modules/discover-features/DiscoverFeaturesApi.d.ts +31 -0
  1045. package/build/modules/discover-features/DiscoverFeaturesApi.js +131 -0
  1046. package/build/modules/discover-features/DiscoverFeaturesApi.js.map +1 -0
  1047. package/build/modules/discover-features/DiscoverFeaturesApiOptions.d.ts +39 -0
  1048. package/build/modules/discover-features/DiscoverFeaturesApiOptions.js +3 -0
  1049. package/build/modules/discover-features/DiscoverFeaturesApiOptions.js.map +1 -0
  1050. package/build/modules/discover-features/DiscoverFeaturesEvents.d.ts +28 -0
  1051. package/build/modules/discover-features/DiscoverFeaturesEvents.js +9 -0
  1052. package/build/modules/discover-features/DiscoverFeaturesEvents.js.map +1 -0
  1053. package/build/modules/discover-features/DiscoverFeaturesModule.d.ts +14 -0
  1054. package/build/modules/discover-features/DiscoverFeaturesModule.js +34 -0
  1055. package/build/modules/discover-features/DiscoverFeaturesModule.js.map +1 -0
  1056. package/build/modules/discover-features/DiscoverFeaturesModuleConfig.d.ts +18 -0
  1057. package/build/modules/discover-features/DiscoverFeaturesModuleConfig.js +15 -0
  1058. package/build/modules/discover-features/DiscoverFeaturesModuleConfig.js.map +1 -0
  1059. package/build/modules/discover-features/DiscoverFeaturesServiceOptions.d.ts +13 -0
  1060. package/build/modules/discover-features/DiscoverFeaturesServiceOptions.js +3 -0
  1061. package/build/modules/discover-features/DiscoverFeaturesServiceOptions.js.map +1 -0
  1062. package/build/modules/discover-features/index.d.ts +4 -0
  1063. package/build/modules/discover-features/index.js +21 -0
  1064. package/build/modules/discover-features/index.js.map +1 -0
  1065. package/build/modules/discover-features/protocol/index.d.ts +2 -0
  1066. package/build/modules/discover-features/protocol/index.js +19 -0
  1067. package/build/modules/discover-features/protocol/index.js.map +1 -0
  1068. package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.d.ts +22 -0
  1069. package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.js +116 -0
  1070. package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.js.map +1 -0
  1071. package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.d.ts +9 -0
  1072. package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.js +15 -0
  1073. package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.js.map +1 -0
  1074. package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.d.ts +10 -0
  1075. package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.js +23 -0
  1076. package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.js.map +1 -0
  1077. package/build/modules/discover-features/protocol/v1/handlers/index.d.ts +2 -0
  1078. package/build/modules/discover-features/protocol/v1/handlers/index.js +19 -0
  1079. package/build/modules/discover-features/protocol/v1/handlers/index.js.map +1 -0
  1080. package/build/modules/discover-features/protocol/v1/index.d.ts +2 -0
  1081. package/build/modules/discover-features/protocol/v1/index.js +19 -0
  1082. package/build/modules/discover-features/protocol/v1/index.js.map +1 -0
  1083. package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.d.ts +21 -0
  1084. package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.js +61 -0
  1085. package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.js.map +1 -0
  1086. package/build/modules/discover-features/protocol/v1/messages/QueryMessage.d.ts +13 -0
  1087. package/build/modules/discover-features/protocol/v1/messages/QueryMessage.js +43 -0
  1088. package/build/modules/discover-features/protocol/v1/messages/QueryMessage.js.map +1 -0
  1089. package/build/modules/discover-features/protocol/v1/messages/index.d.ts +2 -0
  1090. package/build/modules/discover-features/protocol/v1/messages/index.js +19 -0
  1091. package/build/modules/discover-features/protocol/v1/messages/index.js.map +1 -0
  1092. package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.d.ts +21 -0
  1093. package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.js +96 -0
  1094. package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.js.map +1 -0
  1095. package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.d.ts +9 -0
  1096. package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.js +15 -0
  1097. package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.js.map +1 -0
  1098. package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.d.ts +10 -0
  1099. package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.js +23 -0
  1100. package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.js.map +1 -0
  1101. package/build/modules/discover-features/protocol/v2/handlers/index.d.ts +2 -0
  1102. package/build/modules/discover-features/protocol/v2/handlers/index.js +19 -0
  1103. package/build/modules/discover-features/protocol/v2/handlers/index.js.map +1 -0
  1104. package/build/modules/discover-features/protocol/v2/index.d.ts +2 -0
  1105. package/build/modules/discover-features/protocol/v2/index.js +19 -0
  1106. package/build/modules/discover-features/protocol/v2/index.js.map +1 -0
  1107. package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.d.ts +13 -0
  1108. package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.js +45 -0
  1109. package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.js.map +1 -0
  1110. package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.d.ts +14 -0
  1111. package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.js +41 -0
  1112. package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.js.map +1 -0
  1113. package/build/modules/discover-features/protocol/v2/messages/index.d.ts +2 -0
  1114. package/build/modules/discover-features/protocol/v2/messages/index.js +19 -0
  1115. package/build/modules/discover-features/protocol/v2/messages/index.js.map +1 -0
  1116. package/build/modules/discover-features/services/DiscoverFeaturesService.d.ts +19 -0
  1117. package/build/modules/discover-features/services/DiscoverFeaturesService.js +13 -0
  1118. package/build/modules/discover-features/services/DiscoverFeaturesService.js.map +1 -0
  1119. package/build/modules/discover-features/services/index.d.ts +1 -0
  1120. package/build/modules/discover-features/services/index.js +18 -0
  1121. package/build/modules/discover-features/services/index.js.map +1 -0
  1122. package/build/modules/generic-records/GenericRecordsApi.d.ts +21 -0
  1123. package/build/modules/generic-records/GenericRecordsApi.js +89 -0
  1124. package/build/modules/generic-records/GenericRecordsApi.js.map +1 -0
  1125. package/build/modules/generic-records/GenericRecordsModule.d.ts +9 -0
  1126. package/build/modules/generic-records/GenericRecordsModule.js +22 -0
  1127. package/build/modules/generic-records/GenericRecordsModule.js.map +1 -0
  1128. package/build/modules/generic-records/index.d.ts +2 -0
  1129. package/build/modules/generic-records/index.js +19 -0
  1130. package/build/modules/generic-records/index.js.map +1 -0
  1131. package/build/modules/generic-records/repository/GenericRecord.d.ts +24 -0
  1132. package/build/modules/generic-records/repository/GenericRecord.js +24 -0
  1133. package/build/modules/generic-records/repository/GenericRecord.js.map +1 -0
  1134. package/build/modules/generic-records/repository/GenericRecordsRepository.d.ts +7 -0
  1135. package/build/modules/generic-records/repository/GenericRecordsRepository.js +32 -0
  1136. package/build/modules/generic-records/repository/GenericRecordsRepository.js.map +1 -0
  1137. package/build/modules/generic-records/services/GenericRecordService.d.ts +16 -0
  1138. package/build/modules/generic-records/services/GenericRecordService.js +69 -0
  1139. package/build/modules/generic-records/services/GenericRecordService.js.map +1 -0
  1140. package/build/modules/message-pickup/MessagePickupApi.d.ts +36 -0
  1141. package/build/modules/message-pickup/MessagePickupApi.js +204 -0
  1142. package/build/modules/message-pickup/MessagePickupApi.js.map +1 -0
  1143. package/build/modules/message-pickup/MessagePickupApiOptions.d.ts +39 -0
  1144. package/build/modules/message-pickup/MessagePickupApiOptions.js +3 -0
  1145. package/build/modules/message-pickup/MessagePickupApiOptions.js.map +1 -0
  1146. package/build/modules/message-pickup/MessagePickupEvents.d.ts +27 -0
  1147. package/build/modules/message-pickup/MessagePickupEvents.js +10 -0
  1148. package/build/modules/message-pickup/MessagePickupEvents.js.map +1 -0
  1149. package/build/modules/message-pickup/MessagePickupModule.d.ts +23 -0
  1150. package/build/modules/message-pickup/MessagePickupModule.js +41 -0
  1151. package/build/modules/message-pickup/MessagePickupModule.js.map +1 -0
  1152. package/build/modules/message-pickup/MessagePickupModuleConfig.d.ts +41 -0
  1153. package/build/modules/message-pickup/MessagePickupModuleConfig.js +23 -0
  1154. package/build/modules/message-pickup/MessagePickupModuleConfig.js.map +1 -0
  1155. package/build/modules/message-pickup/MessagePickupSession.d.ts +12 -0
  1156. package/build/modules/message-pickup/MessagePickupSession.js +9 -0
  1157. package/build/modules/message-pickup/MessagePickupSession.js.map +1 -0
  1158. package/build/modules/message-pickup/index.d.ts +8 -0
  1159. package/build/modules/message-pickup/index.js +27 -0
  1160. package/build/modules/message-pickup/index.js.map +1 -0
  1161. package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.d.ts +17 -0
  1162. package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.js +11 -0
  1163. package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.js.map +1 -0
  1164. package/build/modules/message-pickup/protocol/MessagePickupProtocol.d.ts +12 -0
  1165. package/build/modules/message-pickup/protocol/MessagePickupProtocol.js +3 -0
  1166. package/build/modules/message-pickup/protocol/MessagePickupProtocol.js.map +1 -0
  1167. package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.d.ts +27 -0
  1168. package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.js +3 -0
  1169. package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.js.map +1 -0
  1170. package/build/modules/message-pickup/protocol/index.d.ts +2 -0
  1171. package/build/modules/message-pickup/protocol/index.js +19 -0
  1172. package/build/modules/message-pickup/protocol/index.js.map +1 -0
  1173. package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.d.ts +24 -0
  1174. package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.js +126 -0
  1175. package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.js.map +1 -0
  1176. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.d.ts +10 -0
  1177. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.js +23 -0
  1178. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.js.map +1 -0
  1179. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.d.ts +9 -0
  1180. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.js +16 -0
  1181. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.js.map +1 -0
  1182. package/build/modules/message-pickup/protocol/v1/handlers/index.d.ts +2 -0
  1183. package/build/modules/message-pickup/protocol/v1/handlers/index.js +19 -0
  1184. package/build/modules/message-pickup/protocol/v1/handlers/index.js.map +1 -0
  1185. package/build/modules/message-pickup/protocol/v1/index.d.ts +2 -0
  1186. package/build/modules/message-pickup/protocol/v1/index.js +19 -0
  1187. package/build/modules/message-pickup/protocol/v1/index.js.map +1 -0
  1188. package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.d.ts +27 -0
  1189. package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.js +71 -0
  1190. package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.js.map +1 -0
  1191. package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.d.ts +22 -0
  1192. package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.js +49 -0
  1193. package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.js.map +1 -0
  1194. package/build/modules/message-pickup/protocol/v1/messages/index.d.ts +2 -0
  1195. package/build/modules/message-pickup/protocol/v1/messages/index.js +19 -0
  1196. package/build/modules/message-pickup/protocol/v1/messages/index.js.map +1 -0
  1197. package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.d.ts +28 -0
  1198. package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.js +237 -0
  1199. package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.js.map +1 -0
  1200. package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.d.ts +10 -0
  1201. package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.js +16 -0
  1202. package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.js.map +1 -0
  1203. package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.d.ts +10 -0
  1204. package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.js +16 -0
  1205. package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.js.map +1 -0
  1206. package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.d.ts +11 -0
  1207. package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.js +23 -0
  1208. package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.js.map +1 -0
  1209. package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.d.ts +10 -0
  1210. package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.js +16 -0
  1211. package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.js.map +1 -0
  1212. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.d.ts +11 -0
  1213. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.js +23 -0
  1214. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.js.map +1 -0
  1215. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.d.ts +10 -0
  1216. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.js +16 -0
  1217. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.js.map +1 -0
  1218. package/build/modules/message-pickup/protocol/v2/handlers/index.d.ts +6 -0
  1219. package/build/modules/message-pickup/protocol/v2/handlers/index.js +23 -0
  1220. package/build/modules/message-pickup/protocol/v2/handlers/index.js.map +1 -0
  1221. package/build/modules/message-pickup/protocol/v2/index.d.ts +2 -0
  1222. package/build/modules/message-pickup/protocol/v2/index.js +19 -0
  1223. package/build/modules/message-pickup/protocol/v2/index.js.map +1 -0
  1224. package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.d.ts +14 -0
  1225. package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.js +47 -0
  1226. package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.js.map +1 -0
  1227. package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.d.ts +12 -0
  1228. package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.js +41 -0
  1229. package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.js.map +1 -0
  1230. package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.d.ts +15 -0
  1231. package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.js +48 -0
  1232. package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.js.map +1 -0
  1233. package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.d.ts +12 -0
  1234. package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.js +41 -0
  1235. package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.js.map +1 -0
  1236. package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.d.ts +25 -0
  1237. package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.js +89 -0
  1238. package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.js.map +1 -0
  1239. package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.d.ts +12 -0
  1240. package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.js +40 -0
  1241. package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.js.map +1 -0
  1242. package/build/modules/message-pickup/protocol/v2/messages/index.d.ts +6 -0
  1243. package/build/modules/message-pickup/protocol/v2/messages/index.js +23 -0
  1244. package/build/modules/message-pickup/protocol/v2/messages/index.js.map +1 -0
  1245. package/build/modules/message-pickup/services/MessagePickupSessionService.d.ts +27 -0
  1246. package/build/modules/message-pickup/services/MessagePickupSessionService.js +91 -0
  1247. package/build/modules/message-pickup/services/MessagePickupSessionService.js.map +1 -0
  1248. package/build/modules/message-pickup/services/index.d.ts +1 -0
  1249. package/build/modules/message-pickup/services/index.js +18 -0
  1250. package/build/modules/message-pickup/services/index.js.map +1 -0
  1251. package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.d.ts +13 -0
  1252. package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.js +77 -0
  1253. package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.js.map +1 -0
  1254. package/build/modules/message-pickup/storage/MessagePickupRepository.d.ts +8 -0
  1255. package/build/modules/message-pickup/storage/MessagePickupRepository.js +3 -0
  1256. package/build/modules/message-pickup/storage/MessagePickupRepository.js.map +1 -0
  1257. package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.d.ts +20 -0
  1258. package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.js +3 -0
  1259. package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.js.map +1 -0
  1260. package/build/modules/message-pickup/storage/QueuedMessage.d.ts +5 -0
  1261. package/build/modules/message-pickup/storage/QueuedMessage.js +3 -0
  1262. package/build/modules/message-pickup/storage/QueuedMessage.js.map +1 -0
  1263. package/build/modules/message-pickup/storage/index.d.ts +4 -0
  1264. package/build/modules/message-pickup/storage/index.js +21 -0
  1265. package/build/modules/message-pickup/storage/index.js.map +1 -0
  1266. package/build/modules/oob/OutOfBandApi.d.ts +271 -0
  1267. package/build/modules/oob/OutOfBandApi.js +700 -0
  1268. package/build/modules/oob/OutOfBandApi.js.map +1 -0
  1269. package/build/modules/oob/OutOfBandModule.d.ts +10 -0
  1270. package/build/modules/oob/OutOfBandModule.js +28 -0
  1271. package/build/modules/oob/OutOfBandModule.js.map +1 -0
  1272. package/build/modules/oob/OutOfBandService.d.ts +51 -0
  1273. package/build/modules/oob/OutOfBandService.js +224 -0
  1274. package/build/modules/oob/OutOfBandService.js.map +1 -0
  1275. package/build/modules/oob/domain/OutOfBandDidCommService.d.ts +17 -0
  1276. package/build/modules/oob/domain/OutOfBandDidCommService.js +72 -0
  1277. package/build/modules/oob/domain/OutOfBandDidCommService.js.map +1 -0
  1278. package/build/modules/oob/domain/OutOfBandEvents.d.ts +23 -0
  1279. package/build/modules/oob/domain/OutOfBandEvents.js +9 -0
  1280. package/build/modules/oob/domain/OutOfBandEvents.js.map +1 -0
  1281. package/build/modules/oob/domain/OutOfBandRole.d.ts +4 -0
  1282. package/build/modules/oob/domain/OutOfBandRole.js +9 -0
  1283. package/build/modules/oob/domain/OutOfBandRole.js.map +1 -0
  1284. package/build/modules/oob/domain/OutOfBandState.d.ts +6 -0
  1285. package/build/modules/oob/domain/OutOfBandState.js +11 -0
  1286. package/build/modules/oob/domain/OutOfBandState.js.map +1 -0
  1287. package/build/modules/oob/domain/index.d.ts +4 -0
  1288. package/build/modules/oob/domain/index.js +21 -0
  1289. package/build/modules/oob/domain/index.js.map +1 -0
  1290. package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.d.ts +10 -0
  1291. package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.js +16 -0
  1292. package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.js.map +1 -0
  1293. package/build/modules/oob/handlers/HandshakeReuseHandler.d.ts +11 -0
  1294. package/build/modules/oob/handlers/HandshakeReuseHandler.js +21 -0
  1295. package/build/modules/oob/handlers/HandshakeReuseHandler.js.map +1 -0
  1296. package/build/modules/oob/handlers/index.d.ts +1 -0
  1297. package/build/modules/oob/handlers/index.js +18 -0
  1298. package/build/modules/oob/handlers/index.js.map +1 -0
  1299. package/build/modules/oob/helpers.d.ts +4 -0
  1300. package/build/modules/oob/helpers.js +72 -0
  1301. package/build/modules/oob/helpers.js.map +1 -0
  1302. package/build/modules/oob/index.d.ts +6 -0
  1303. package/build/modules/oob/index.js +23 -0
  1304. package/build/modules/oob/index.js.map +1 -0
  1305. package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.d.ts +11 -0
  1306. package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.js +35 -0
  1307. package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.js.map +1 -0
  1308. package/build/modules/oob/messages/HandshakeReuseMessage.d.ts +10 -0
  1309. package/build/modules/oob/messages/HandshakeReuseMessage.js +34 -0
  1310. package/build/modules/oob/messages/HandshakeReuseMessage.js.map +1 -0
  1311. package/build/modules/oob/messages/OutOfBandInvitation.d.ts +55 -0
  1312. package/build/modules/oob/messages/OutOfBandInvitation.js +181 -0
  1313. package/build/modules/oob/messages/OutOfBandInvitation.js.map +1 -0
  1314. package/build/modules/oob/messages/index.d.ts +2 -0
  1315. package/build/modules/oob/messages/index.js +19 -0
  1316. package/build/modules/oob/messages/index.js.map +1 -0
  1317. package/build/modules/oob/repository/OutOfBandRecord.d.ts +59 -0
  1318. package/build/modules/oob/repository/OutOfBandRecord.js +63 -0
  1319. package/build/modules/oob/repository/OutOfBandRecord.js.map +1 -0
  1320. package/build/modules/oob/repository/OutOfBandRepository.d.ts +7 -0
  1321. package/build/modules/oob/repository/OutOfBandRepository.js +32 -0
  1322. package/build/modules/oob/repository/OutOfBandRepository.js.map +1 -0
  1323. package/build/modules/oob/repository/index.d.ts +2 -0
  1324. package/build/modules/oob/repository/index.js +19 -0
  1325. package/build/modules/oob/repository/index.js.map +1 -0
  1326. package/build/modules/oob/repository/outOfBandRecordMetadataTypes.d.ts +19 -0
  1327. package/build/modules/oob/repository/outOfBandRecordMetadataTypes.js +9 -0
  1328. package/build/modules/oob/repository/outOfBandRecordMetadataTypes.js.map +1 -0
  1329. package/build/modules/problem-reports/errors/ProblemReportError.d.ts +9 -0
  1330. package/build/modules/problem-reports/errors/ProblemReportError.js +18 -0
  1331. package/build/modules/problem-reports/errors/ProblemReportError.js.map +1 -0
  1332. package/build/modules/problem-reports/errors/index.d.ts +1 -0
  1333. package/build/modules/problem-reports/errors/index.js +18 -0
  1334. package/build/modules/problem-reports/errors/index.js.map +1 -0
  1335. package/build/modules/problem-reports/index.d.ts +3 -0
  1336. package/build/modules/problem-reports/index.js +20 -0
  1337. package/build/modules/problem-reports/index.js.map +1 -0
  1338. package/build/modules/problem-reports/messages/ProblemReportMessage.d.ts +63 -0
  1339. package/build/modules/problem-reports/messages/ProblemReportMessage.js +119 -0
  1340. package/build/modules/problem-reports/messages/ProblemReportMessage.js.map +1 -0
  1341. package/build/modules/problem-reports/messages/index.d.ts +1 -0
  1342. package/build/modules/problem-reports/messages/index.js +18 -0
  1343. package/build/modules/problem-reports/messages/index.js.map +1 -0
  1344. package/build/modules/problem-reports/models/ProblemReportReason.d.ts +3 -0
  1345. package/build/modules/problem-reports/models/ProblemReportReason.js +8 -0
  1346. package/build/modules/problem-reports/models/ProblemReportReason.js.map +1 -0
  1347. package/build/modules/problem-reports/models/index.d.ts +1 -0
  1348. package/build/modules/problem-reports/models/index.js +18 -0
  1349. package/build/modules/problem-reports/models/index.js.map +1 -0
  1350. package/build/modules/proofs/ProofEvents.d.ts +13 -0
  1351. package/build/modules/proofs/ProofEvents.js +8 -0
  1352. package/build/modules/proofs/ProofEvents.js.map +1 -0
  1353. package/build/modules/proofs/ProofsApi.d.ts +68 -0
  1354. package/build/modules/proofs/ProofsApi.js +467 -0
  1355. package/build/modules/proofs/ProofsApi.js.map +1 -0
  1356. package/build/modules/proofs/ProofsApiOptions.d.ts +129 -0
  1357. package/build/modules/proofs/ProofsApiOptions.js +3 -0
  1358. package/build/modules/proofs/ProofsApiOptions.js.map +1 -0
  1359. package/build/modules/proofs/ProofsModule.d.ts +23 -0
  1360. package/build/modules/proofs/ProofsModule.js +31 -0
  1361. package/build/modules/proofs/ProofsModule.js.map +1 -0
  1362. package/build/modules/proofs/ProofsModuleConfig.d.ts +34 -0
  1363. package/build/modules/proofs/ProofsModuleConfig.js +20 -0
  1364. package/build/modules/proofs/ProofsModuleConfig.js.map +1 -0
  1365. package/build/modules/proofs/errors/PresentationProblemReportReason.d.ts +8 -0
  1366. package/build/modules/proofs/errors/PresentationProblemReportReason.js +13 -0
  1367. package/build/modules/proofs/errors/PresentationProblemReportReason.js.map +1 -0
  1368. package/build/modules/proofs/errors/index.d.ts +1 -0
  1369. package/build/modules/proofs/errors/index.js +18 -0
  1370. package/build/modules/proofs/errors/index.js.map +1 -0
  1371. package/build/modules/proofs/formats/ProofFormat.d.ts +66 -0
  1372. package/build/modules/proofs/formats/ProofFormat.js +3 -0
  1373. package/build/modules/proofs/formats/ProofFormat.js.map +1 -0
  1374. package/build/modules/proofs/formats/ProofFormatService.d.ts +19 -0
  1375. package/build/modules/proofs/formats/ProofFormatService.js +3 -0
  1376. package/build/modules/proofs/formats/ProofFormatService.js.map +1 -0
  1377. package/build/modules/proofs/formats/ProofFormatServiceOptions.d.ts +103 -0
  1378. package/build/modules/proofs/formats/ProofFormatServiceOptions.js +3 -0
  1379. package/build/modules/proofs/formats/ProofFormatServiceOptions.js.map +1 -0
  1380. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.d.ts +53 -0
  1381. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.js +3 -0
  1382. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.js.map +1 -0
  1383. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.d.ts +32 -0
  1384. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.js +276 -0
  1385. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.js.map +1 -0
  1386. package/build/modules/proofs/formats/dif-presentation-exchange/index.d.ts +2 -0
  1387. package/build/modules/proofs/formats/dif-presentation-exchange/index.js +19 -0
  1388. package/build/modules/proofs/formats/dif-presentation-exchange/index.js.map +1 -0
  1389. package/build/modules/proofs/formats/index.d.ts +6 -0
  1390. package/build/modules/proofs/formats/index.js +36 -0
  1391. package/build/modules/proofs/formats/index.js.map +1 -0
  1392. package/build/modules/proofs/index.d.ts +10 -0
  1393. package/build/modules/proofs/index.js +29 -0
  1394. package/build/modules/proofs/index.js.map +1 -0
  1395. package/build/modules/proofs/models/ProofAutoAcceptType.d.ts +8 -0
  1396. package/build/modules/proofs/models/ProofAutoAcceptType.js +16 -0
  1397. package/build/modules/proofs/models/ProofAutoAcceptType.js.map +1 -0
  1398. package/build/modules/proofs/models/ProofFormatSpec.d.ts +9 -0
  1399. package/build/modules/proofs/models/ProofFormatSpec.js +35 -0
  1400. package/build/modules/proofs/models/ProofFormatSpec.js.map +1 -0
  1401. package/build/modules/proofs/models/ProofRole.d.ts +4 -0
  1402. package/build/modules/proofs/models/ProofRole.js +9 -0
  1403. package/build/modules/proofs/models/ProofRole.js.map +1 -0
  1404. package/build/modules/proofs/models/ProofState.d.ts +16 -0
  1405. package/build/modules/proofs/models/ProofState.js +21 -0
  1406. package/build/modules/proofs/models/ProofState.js.map +1 -0
  1407. package/build/modules/proofs/models/index.d.ts +4 -0
  1408. package/build/modules/proofs/models/index.js +21 -0
  1409. package/build/modules/proofs/models/index.js.map +1 -0
  1410. package/build/modules/proofs/protocol/BaseProofProtocol.d.ts +98 -0
  1411. package/build/modules/proofs/protocol/BaseProofProtocol.js +139 -0
  1412. package/build/modules/proofs/protocol/BaseProofProtocol.js.map +1 -0
  1413. package/build/modules/proofs/protocol/ProofProtocol.d.ts +52 -0
  1414. package/build/modules/proofs/protocol/ProofProtocol.js +3 -0
  1415. package/build/modules/proofs/protocol/ProofProtocol.js.map +1 -0
  1416. package/build/modules/proofs/protocol/ProofProtocolOptions.d.ts +128 -0
  1417. package/build/modules/proofs/protocol/ProofProtocolOptions.js +3 -0
  1418. package/build/modules/proofs/protocol/ProofProtocolOptions.js.map +1 -0
  1419. package/build/modules/proofs/protocol/index.d.ts +5 -0
  1420. package/build/modules/proofs/protocol/index.js +39 -0
  1421. package/build/modules/proofs/protocol/index.js.map +1 -0
  1422. package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.d.ts +93 -0
  1423. package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.js +307 -0
  1424. package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.js.map +1 -0
  1425. package/build/modules/proofs/protocol/v2/V2ProofProtocol.d.ts +114 -0
  1426. package/build/modules/proofs/protocol/v2/V2ProofProtocol.js +796 -0
  1427. package/build/modules/proofs/protocol/v2/V2ProofProtocol.js.map +1 -0
  1428. package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.d.ts +13 -0
  1429. package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.js +19 -0
  1430. package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.js.map +1 -0
  1431. package/build/modules/proofs/protocol/v2/errors/index.d.ts +1 -0
  1432. package/build/modules/proofs/protocol/v2/errors/index.js +18 -0
  1433. package/build/modules/proofs/protocol/v2/errors/index.js.map +1 -0
  1434. package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.d.ts +9 -0
  1435. package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.js +15 -0
  1436. package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.js.map +1 -0
  1437. package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.d.ts +10 -0
  1438. package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.js +43 -0
  1439. package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.js.map +1 -0
  1440. package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.d.ts +9 -0
  1441. package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.js +15 -0
  1442. package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.js.map +1 -0
  1443. package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.d.ts +11 -0
  1444. package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.js +36 -0
  1445. package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.js.map +1 -0
  1446. package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.d.ts +10 -0
  1447. package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.js +36 -0
  1448. package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.js.map +1 -0
  1449. package/build/modules/proofs/protocol/v2/index.d.ts +3 -0
  1450. package/build/modules/proofs/protocol/v2/index.js +20 -0
  1451. package/build/modules/proofs/protocol/v2/index.js.map +1 -0
  1452. package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.d.ts +5 -0
  1453. package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.js +27 -0
  1454. package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.js.map +1 -0
  1455. package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.d.ts +24 -0
  1456. package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.js +85 -0
  1457. package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.js.map +1 -0
  1458. package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.d.ts +8 -0
  1459. package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.js +30 -0
  1460. package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.js.map +1 -0
  1461. package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.d.ts +22 -0
  1462. package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.js +77 -0
  1463. package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.js.map +1 -0
  1464. package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.d.ts +26 -0
  1465. package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.js +92 -0
  1466. package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.js.map +1 -0
  1467. package/build/modules/proofs/protocol/v2/messages/index.d.ts +5 -0
  1468. package/build/modules/proofs/protocol/v2/messages/index.js +22 -0
  1469. package/build/modules/proofs/protocol/v2/messages/index.js.map +1 -0
  1470. package/build/modules/proofs/repository/ProofExchangeRecord.d.ts +50 -0
  1471. package/build/modules/proofs/repository/ProofExchangeRecord.js +54 -0
  1472. package/build/modules/proofs/repository/ProofExchangeRecord.js.map +1 -0
  1473. package/build/modules/proofs/repository/ProofRepository.d.ts +26 -0
  1474. package/build/modules/proofs/repository/ProofRepository.js +54 -0
  1475. package/build/modules/proofs/repository/ProofRepository.js.map +1 -0
  1476. package/build/modules/proofs/repository/index.d.ts +2 -0
  1477. package/build/modules/proofs/repository/index.js +19 -0
  1478. package/build/modules/proofs/repository/index.js.map +1 -0
  1479. package/build/modules/proofs/utils/composeAutoAccept.d.ts +8 -0
  1480. package/build/modules/proofs/utils/composeAutoAccept.js +16 -0
  1481. package/build/modules/proofs/utils/composeAutoAccept.js.map +1 -0
  1482. package/build/modules/proofs/utils/index.d.ts +1 -0
  1483. package/build/modules/proofs/utils/index.js +18 -0
  1484. package/build/modules/proofs/utils/index.js.map +1 -0
  1485. package/build/modules/routing/MediationRecipientApi.d.ts +80 -0
  1486. package/build/modules/routing/MediationRecipientApi.js +415 -0
  1487. package/build/modules/routing/MediationRecipientApi.js.map +1 -0
  1488. package/build/modules/routing/MediationRecipientModule.d.ts +14 -0
  1489. package/build/modules/routing/MediationRecipientModule.js +34 -0
  1490. package/build/modules/routing/MediationRecipientModule.js.map +1 -0
  1491. package/build/modules/routing/MediationRecipientModuleConfig.d.ts +79 -0
  1492. package/build/modules/routing/MediationRecipientModuleConfig.js +38 -0
  1493. package/build/modules/routing/MediationRecipientModuleConfig.js.map +1 -0
  1494. package/build/modules/routing/MediatorApi.d.ts +18 -0
  1495. package/build/modules/routing/MediatorApi.js +69 -0
  1496. package/build/modules/routing/MediatorApi.js.map +1 -0
  1497. package/build/modules/routing/MediatorModule.d.ts +14 -0
  1498. package/build/modules/routing/MediatorModule.js +34 -0
  1499. package/build/modules/routing/MediatorModule.js.map +1 -0
  1500. package/build/modules/routing/MediatorModuleConfig.d.ts +33 -0
  1501. package/build/modules/routing/MediatorModuleConfig.js +21 -0
  1502. package/build/modules/routing/MediatorModuleConfig.js.map +1 -0
  1503. package/build/modules/routing/MediatorPickupStrategy.d.ts +7 -0
  1504. package/build/modules/routing/MediatorPickupStrategy.js +19 -0
  1505. package/build/modules/routing/MediatorPickupStrategy.js.map +1 -0
  1506. package/build/modules/routing/MessageForwardingStrategy.d.ts +5 -0
  1507. package/build/modules/routing/MessageForwardingStrategy.js +16 -0
  1508. package/build/modules/routing/MessageForwardingStrategy.js.map +1 -0
  1509. package/build/modules/routing/RoutingEvents.d.ts +30 -0
  1510. package/build/modules/routing/RoutingEvents.js +10 -0
  1511. package/build/modules/routing/RoutingEvents.js.map +1 -0
  1512. package/build/modules/routing/error/RoutingProblemReportReason.d.ts +3 -0
  1513. package/build/modules/routing/error/RoutingProblemReportReason.js +8 -0
  1514. package/build/modules/routing/error/RoutingProblemReportReason.js.map +1 -0
  1515. package/build/modules/routing/error/index.d.ts +1 -0
  1516. package/build/modules/routing/error/index.js +18 -0
  1517. package/build/modules/routing/error/index.js.map +1 -0
  1518. package/build/modules/routing/handlers/ForwardHandler.d.ts +9 -0
  1519. package/build/modules/routing/handlers/ForwardHandler.js +15 -0
  1520. package/build/modules/routing/handlers/ForwardHandler.js.map +1 -0
  1521. package/build/modules/routing/handlers/KeylistUpdateHandler.d.ts +10 -0
  1522. package/build/modules/routing/handlers/KeylistUpdateHandler.js +21 -0
  1523. package/build/modules/routing/handlers/KeylistUpdateHandler.js.map +1 -0
  1524. package/build/modules/routing/handlers/KeylistUpdateResponseHandler.d.ts +9 -0
  1525. package/build/modules/routing/handlers/KeylistUpdateResponseHandler.js +16 -0
  1526. package/build/modules/routing/handlers/KeylistUpdateResponseHandler.js.map +1 -0
  1527. package/build/modules/routing/handlers/MediationDenyHandler.d.ts +9 -0
  1528. package/build/modules/routing/handlers/MediationDenyHandler.js +16 -0
  1529. package/build/modules/routing/handlers/MediationDenyHandler.js.map +1 -0
  1530. package/build/modules/routing/handlers/MediationGrantHandler.d.ts +9 -0
  1531. package/build/modules/routing/handlers/MediationGrantHandler.js +16 -0
  1532. package/build/modules/routing/handlers/MediationGrantHandler.js.map +1 -0
  1533. package/build/modules/routing/handlers/MediationRequestHandler.d.ts +12 -0
  1534. package/build/modules/routing/handlers/MediationRequestHandler.js +26 -0
  1535. package/build/modules/routing/handlers/MediationRequestHandler.js.map +1 -0
  1536. package/build/modules/routing/handlers/index.d.ts +6 -0
  1537. package/build/modules/routing/handlers/index.js +23 -0
  1538. package/build/modules/routing/handlers/index.js.map +1 -0
  1539. package/build/modules/routing/index.d.ts +10 -0
  1540. package/build/modules/routing/index.js +27 -0
  1541. package/build/modules/routing/index.js.map +1 -0
  1542. package/build/modules/routing/messages/ForwardMessage.d.ts +23 -0
  1543. package/build/modules/routing/messages/ForwardMessage.js +52 -0
  1544. package/build/modules/routing/messages/ForwardMessage.js.map +1 -0
  1545. package/build/modules/routing/messages/KeylistMessage.d.ts +20 -0
  1546. package/build/modules/routing/messages/KeylistMessage.js +49 -0
  1547. package/build/modules/routing/messages/KeylistMessage.js.map +1 -0
  1548. package/build/modules/routing/messages/KeylistUpdateMessage.d.ts +29 -0
  1549. package/build/modules/routing/messages/KeylistUpdateMessage.js +68 -0
  1550. package/build/modules/routing/messages/KeylistUpdateMessage.js.map +1 -0
  1551. package/build/modules/routing/messages/KeylistUpdateResponseMessage.d.ts +34 -0
  1552. package/build/modules/routing/messages/KeylistUpdateResponseMessage.js +79 -0
  1553. package/build/modules/routing/messages/KeylistUpdateResponseMessage.js.map +1 -0
  1554. package/build/modules/routing/messages/MediationDenyMessage.d.ts +14 -0
  1555. package/build/modules/routing/messages/MediationDenyMessage.js +35 -0
  1556. package/build/modules/routing/messages/MediationDenyMessage.js.map +1 -0
  1557. package/build/modules/routing/messages/MediationGrantMessage.d.ts +20 -0
  1558. package/build/modules/routing/messages/MediationGrantMessage.js +55 -0
  1559. package/build/modules/routing/messages/MediationGrantMessage.js.map +1 -0
  1560. package/build/modules/routing/messages/MediationRequestMessage.d.ts +22 -0
  1561. package/build/modules/routing/messages/MediationRequestMessage.js +42 -0
  1562. package/build/modules/routing/messages/MediationRequestMessage.js.map +1 -0
  1563. package/build/modules/routing/messages/index.d.ts +6 -0
  1564. package/build/modules/routing/messages/index.js +23 -0
  1565. package/build/modules/routing/messages/index.js.map +1 -0
  1566. package/build/modules/routing/models/MediationRole.d.ts +9 -0
  1567. package/build/modules/routing/models/MediationRole.js +14 -0
  1568. package/build/modules/routing/models/MediationRole.js.map +1 -0
  1569. package/build/modules/routing/models/MediationState.d.ts +10 -0
  1570. package/build/modules/routing/models/MediationState.js +15 -0
  1571. package/build/modules/routing/models/MediationState.js.map +1 -0
  1572. package/build/modules/routing/models/index.d.ts +2 -0
  1573. package/build/modules/routing/models/index.js +19 -0
  1574. package/build/modules/routing/models/index.js.map +1 -0
  1575. package/build/modules/routing/repository/MediationRecord.d.ts +53 -0
  1576. package/build/modules/routing/repository/MediationRecord.js +87 -0
  1577. package/build/modules/routing/repository/MediationRecord.js.map +1 -0
  1578. package/build/modules/routing/repository/MediationRepository.d.ts +10 -0
  1579. package/build/modules/routing/repository/MediationRepository.js +40 -0
  1580. package/build/modules/routing/repository/MediationRepository.js.map +1 -0
  1581. package/build/modules/routing/repository/MediatorRoutingRecord.d.ts +15 -0
  1582. package/build/modules/routing/repository/MediatorRoutingRecord.js +23 -0
  1583. package/build/modules/routing/repository/MediatorRoutingRecord.js.map +1 -0
  1584. package/build/modules/routing/repository/MediatorRoutingRepository.d.ts +8 -0
  1585. package/build/modules/routing/repository/MediatorRoutingRepository.js +33 -0
  1586. package/build/modules/routing/repository/MediatorRoutingRepository.js.map +1 -0
  1587. package/build/modules/routing/repository/index.d.ts +4 -0
  1588. package/build/modules/routing/repository/index.js +21 -0
  1589. package/build/modules/routing/repository/index.js.map +1 -0
  1590. package/build/modules/routing/services/MediationRecipientService.d.ts +57 -0
  1591. package/build/modules/routing/services/MediationRecipientService.js +276 -0
  1592. package/build/modules/routing/services/MediationRecipientService.js.map +1 -0
  1593. package/build/modules/routing/services/MediatorService.d.ts +39 -0
  1594. package/build/modules/routing/services/MediatorService.js +253 -0
  1595. package/build/modules/routing/services/MediatorService.js.map +1 -0
  1596. package/build/modules/routing/services/RoutingService.d.ts +33 -0
  1597. package/build/modules/routing/services/RoutingService.js +54 -0
  1598. package/build/modules/routing/services/RoutingService.js.map +1 -0
  1599. package/build/modules/routing/services/helpers.d.ts +3 -0
  1600. package/build/modules/routing/services/helpers.js +14 -0
  1601. package/build/modules/routing/services/helpers.js.map +1 -0
  1602. package/build/modules/routing/services/index.d.ts +3 -0
  1603. package/build/modules/routing/services/index.js +20 -0
  1604. package/build/modules/routing/services/index.js.map +1 -0
  1605. package/build/modules/sd-jwt-vc/SdJwtVcApi.d.ts +57 -0
  1606. package/build/modules/sd-jwt-vc/SdJwtVcApi.js +77 -0
  1607. package/build/modules/sd-jwt-vc/SdJwtVcApi.js.map +1 -0
  1608. package/build/modules/sd-jwt-vc/SdJwtVcError.d.ts +3 -0
  1609. package/build/modules/sd-jwt-vc/SdJwtVcError.js +8 -0
  1610. package/build/modules/sd-jwt-vc/SdJwtVcError.js.map +1 -0
  1611. package/build/modules/sd-jwt-vc/SdJwtVcModule.d.ts +12 -0
  1612. package/build/modules/sd-jwt-vc/SdJwtVcModule.js +30 -0
  1613. package/build/modules/sd-jwt-vc/SdJwtVcModule.js.map +1 -0
  1614. package/build/modules/sd-jwt-vc/SdJwtVcOptions.d.ts +65 -0
  1615. package/build/modules/sd-jwt-vc/SdJwtVcOptions.js +3 -0
  1616. package/build/modules/sd-jwt-vc/SdJwtVcOptions.js.map +1 -0
  1617. package/build/modules/sd-jwt-vc/SdJwtVcService.d.ts +60 -0
  1618. package/build/modules/sd-jwt-vc/SdJwtVcService.js +283 -0
  1619. package/build/modules/sd-jwt-vc/SdJwtVcService.js.map +1 -0
  1620. package/build/modules/sd-jwt-vc/index.d.ts +6 -0
  1621. package/build/modules/sd-jwt-vc/index.js +23 -0
  1622. package/build/modules/sd-jwt-vc/index.js.map +1 -0
  1623. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.d.ts +32 -0
  1624. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.js +33 -0
  1625. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.js.map +1 -0
  1626. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.d.ts +7 -0
  1627. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.js +32 -0
  1628. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.js.map +1 -0
  1629. package/build/modules/sd-jwt-vc/repository/index.d.ts +2 -0
  1630. package/build/modules/sd-jwt-vc/repository/index.js +19 -0
  1631. package/build/modules/sd-jwt-vc/repository/index.js.map +1 -0
  1632. package/build/modules/vc/W3cCredentialService.d.ts +60 -0
  1633. package/build/modules/vc/W3cCredentialService.js +163 -0
  1634. package/build/modules/vc/W3cCredentialService.js.map +1 -0
  1635. package/build/modules/vc/W3cCredentialServiceOptions.d.ts +148 -0
  1636. package/build/modules/vc/W3cCredentialServiceOptions.js +3 -0
  1637. package/build/modules/vc/W3cCredentialServiceOptions.js.map +1 -0
  1638. package/build/modules/vc/W3cCredentialsApi.d.ts +24 -0
  1639. package/build/modules/vc/W3cCredentialsApi.js +60 -0
  1640. package/build/modules/vc/W3cCredentialsApi.js.map +1 -0
  1641. package/build/modules/vc/W3cCredentialsModule.d.ts +13 -0
  1642. package/build/modules/vc/W3cCredentialsModule.js +43 -0
  1643. package/build/modules/vc/W3cCredentialsModule.js.map +1 -0
  1644. package/build/modules/vc/W3cCredentialsModuleConfig.d.ts +36 -0
  1645. package/build/modules/vc/W3cCredentialsModuleConfig.js +16 -0
  1646. package/build/modules/vc/W3cCredentialsModuleConfig.js.map +1 -0
  1647. package/build/modules/vc/__tests__/dids/did_example_489398593.d.ts +10 -0
  1648. package/build/modules/vc/__tests__/dids/did_example_489398593.js +16 -0
  1649. package/build/modules/vc/__tests__/dids/did_example_489398593.js.map +1 -0
  1650. package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.d.ts +20 -0
  1651. package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.js +28 -0
  1652. package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.js.map +1 -0
  1653. package/build/modules/vc/__tests__/dids/did_web_launchpad.d.ts +20 -0
  1654. package/build/modules/vc/__tests__/dids/did_web_launchpad.js +28 -0
  1655. package/build/modules/vc/__tests__/dids/did_web_launchpad.js.map +1 -0
  1656. package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.d.ts +23 -0
  1657. package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.js +49 -0
  1658. package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.js.map +1 -0
  1659. package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.d.ts +23 -0
  1660. package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.js +49 -0
  1661. package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.js.map +1 -0
  1662. package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.d.ts +18 -0
  1663. package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.js +32 -0
  1664. package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.js.map +1 -0
  1665. package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.d.ts +37 -0
  1666. package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.js +53 -0
  1667. package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.js.map +1 -0
  1668. package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.d.ts +18 -0
  1669. package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.js +32 -0
  1670. package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.js.map +1 -0
  1671. package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.d.ts +18 -0
  1672. package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.js +32 -0
  1673. package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.js.map +1 -0
  1674. package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.d.ts +18 -0
  1675. package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.js +32 -0
  1676. package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.js.map +1 -0
  1677. package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.d.ts +14 -0
  1678. package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.js +28 -0
  1679. package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.js.map +1 -0
  1680. package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.d.ts +18 -0
  1681. package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.js +32 -0
  1682. package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.js.map +1 -0
  1683. package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.d.ts +18 -0
  1684. package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.js +32 -0
  1685. package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.js.map +1 -0
  1686. package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.d.ts +18 -0
  1687. package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.js +32 -0
  1688. package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.js.map +1 -0
  1689. package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.d.ts +18 -0
  1690. package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.js +32 -0
  1691. package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.js.map +1 -0
  1692. package/build/modules/vc/constants.d.ts +16 -0
  1693. package/build/modules/vc/constants.js +20 -0
  1694. package/build/modules/vc/constants.js.map +1 -0
  1695. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.d.ts +22 -0
  1696. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.js +58 -0
  1697. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.js.map +1 -0
  1698. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.d.ts +48 -0
  1699. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.js +311 -0
  1700. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.js.map +1 -0
  1701. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.d.ts +57 -0
  1702. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.js +49 -0
  1703. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.js.map +1 -0
  1704. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.d.ts +57 -0
  1705. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.js +49 -0
  1706. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.js.map +1 -0
  1707. package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.d.ts +98 -0
  1708. package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.js +50 -0
  1709. package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.js.map +1 -0
  1710. package/build/modules/vc/data-integrity/__tests__/contexts/index.d.ts +5 -0
  1711. package/build/modules/vc/data-integrity/__tests__/contexts/index.js +22 -0
  1712. package/build/modules/vc/data-integrity/__tests__/contexts/index.js.map +1 -0
  1713. package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.d.ts +17 -0
  1714. package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.js +21 -0
  1715. package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.js.map +1 -0
  1716. package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.d.ts +701 -0
  1717. package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.js +684 -0
  1718. package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.js.map +1 -0
  1719. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.d.ts +88 -0
  1720. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.js +92 -0
  1721. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.js.map +1 -0
  1722. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.d.ts +88 -0
  1723. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.js +92 -0
  1724. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.js.map +1 -0
  1725. package/build/modules/vc/data-integrity/deriveProof.d.ts +17 -0
  1726. package/build/modules/vc/data-integrity/deriveProof.js +112 -0
  1727. package/build/modules/vc/data-integrity/deriveProof.js.map +1 -0
  1728. package/build/modules/vc/data-integrity/index.d.ts +7 -0
  1729. package/build/modules/vc/data-integrity/index.js +26 -0
  1730. package/build/modules/vc/data-integrity/index.js.map +1 -0
  1731. package/build/modules/vc/data-integrity/jsonldUtil.d.ts +46 -0
  1732. package/build/modules/vc/data-integrity/jsonldUtil.js +103 -0
  1733. package/build/modules/vc/data-integrity/jsonldUtil.js.map +1 -0
  1734. package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.d.ts +26 -0
  1735. package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.js +30 -0
  1736. package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.js.map +1 -0
  1737. package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.d.ts +128 -0
  1738. package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.js +132 -0
  1739. package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.js.map +1 -0
  1740. package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.d.ts +315 -0
  1741. package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.js +254 -0
  1742. package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.js.map +1 -0
  1743. package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.d.ts +81 -0
  1744. package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.js +85 -0
  1745. package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.js.map +1 -0
  1746. package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.d.ts +10323 -0
  1747. package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.js +37 -0
  1748. package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.js.map +1 -0
  1749. package/build/modules/vc/data-integrity/libraries/contexts/did_v1.d.ts +56 -0
  1750. package/build/modules/vc/data-integrity/libraries/contexts/did_v1.js +60 -0
  1751. package/build/modules/vc/data-integrity/libraries/contexts/did_v1.js.map +1 -0
  1752. package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.d.ts +91 -0
  1753. package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.js +95 -0
  1754. package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.js.map +1 -0
  1755. package/build/modules/vc/data-integrity/libraries/contexts/index.d.ts +1 -0
  1756. package/build/modules/vc/data-integrity/libraries/contexts/index.js +6 -0
  1757. package/build/modules/vc/data-integrity/libraries/contexts/index.js.map +1 -0
  1758. package/build/modules/vc/data-integrity/libraries/contexts/odrl.d.ts +301 -0
  1759. package/build/modules/vc/data-integrity/libraries/contexts/odrl.js +185 -0
  1760. package/build/modules/vc/data-integrity/libraries/contexts/odrl.js.map +1 -0
  1761. package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.d.ts +438 -0
  1762. package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.js +442 -0
  1763. package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.js.map +1 -0
  1764. package/build/modules/vc/data-integrity/libraries/contexts/schema_org.d.ts +8242 -0
  1765. package/build/modules/vc/data-integrity/libraries/contexts/schema_org.js +2842 -0
  1766. package/build/modules/vc/data-integrity/libraries/contexts/schema_org.js.map +1 -0
  1767. package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.d.ts +102 -0
  1768. package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.js +106 -0
  1769. package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.js.map +1 -0
  1770. package/build/modules/vc/data-integrity/libraries/contexts/security_v1.d.ts +74 -0
  1771. package/build/modules/vc/data-integrity/libraries/contexts/security_v1.js +51 -0
  1772. package/build/modules/vc/data-integrity/libraries/contexts/security_v1.js.map +1 -0
  1773. package/build/modules/vc/data-integrity/libraries/contexts/security_v2.d.ts +175 -0
  1774. package/build/modules/vc/data-integrity/libraries/contexts/security_v2.js +94 -0
  1775. package/build/modules/vc/data-integrity/libraries/contexts/security_v2.js.map +1 -0
  1776. package/build/modules/vc/data-integrity/libraries/contexts/submission.d.ts +15 -0
  1777. package/build/modules/vc/data-integrity/libraries/contexts/submission.js +19 -0
  1778. package/build/modules/vc/data-integrity/libraries/contexts/submission.js.map +1 -0
  1779. package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.d.ts +37 -0
  1780. package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.js +41 -0
  1781. package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.js.map +1 -0
  1782. package/build/modules/vc/data-integrity/libraries/documentLoader.d.ts +4 -0
  1783. package/build/modules/vc/data-integrity/libraries/documentLoader.js +59 -0
  1784. package/build/modules/vc/data-integrity/libraries/documentLoader.js.map +1 -0
  1785. package/build/modules/vc/data-integrity/libraries/index.d.ts +24 -0
  1786. package/build/modules/vc/data-integrity/libraries/index.js +40 -0
  1787. package/build/modules/vc/data-integrity/libraries/index.js.map +1 -0
  1788. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.d.ts +10 -0
  1789. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.js +9 -0
  1790. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.js.map +1 -0
  1791. package/build/modules/vc/data-integrity/libraries/jsonld.d.ts +17 -0
  1792. package/build/modules/vc/data-integrity/libraries/jsonld.js +12 -0
  1793. package/build/modules/vc/data-integrity/libraries/jsonld.js.map +1 -0
  1794. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.d.ts +2 -0
  1795. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.js +10 -0
  1796. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.js.map +1 -0
  1797. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.d.ts +2 -0
  1798. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.js +10 -0
  1799. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.js.map +1 -0
  1800. package/build/modules/vc/data-integrity/libraries/vc.d.ts +28 -0
  1801. package/build/modules/vc/data-integrity/libraries/vc.js +12 -0
  1802. package/build/modules/vc/data-integrity/libraries/vc.js.map +1 -0
  1803. package/build/modules/vc/data-integrity/models/DataIntegrityProof.d.ts +33 -0
  1804. package/build/modules/vc/data-integrity/models/DataIntegrityProof.js +91 -0
  1805. package/build/modules/vc/data-integrity/models/DataIntegrityProof.js.map +1 -0
  1806. package/build/modules/vc/data-integrity/models/GetProofsOptions.d.ts +23 -0
  1807. package/build/modules/vc/data-integrity/models/GetProofsOptions.js +15 -0
  1808. package/build/modules/vc/data-integrity/models/GetProofsOptions.js.map +1 -0
  1809. package/build/modules/vc/data-integrity/models/GetProofsResult.d.ts +14 -0
  1810. package/build/modules/vc/data-integrity/models/GetProofsResult.js +15 -0
  1811. package/build/modules/vc/data-integrity/models/GetProofsResult.js.map +1 -0
  1812. package/build/modules/vc/data-integrity/models/GetTypeOptions.d.ts +10 -0
  1813. package/build/modules/vc/data-integrity/models/GetTypeOptions.js +15 -0
  1814. package/build/modules/vc/data-integrity/models/GetTypeOptions.js.map +1 -0
  1815. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.d.ts +29 -0
  1816. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.js +6 -0
  1817. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.js.map +1 -0
  1818. package/build/modules/vc/data-integrity/models/LdKeyPair.d.ts +31 -0
  1819. package/build/modules/vc/data-integrity/models/LdKeyPair.js +29 -0
  1820. package/build/modules/vc/data-integrity/models/LdKeyPair.js.map +1 -0
  1821. package/build/modules/vc/data-integrity/models/LinkedDataProof.d.ts +30 -0
  1822. package/build/modules/vc/data-integrity/models/LinkedDataProof.js +78 -0
  1823. package/build/modules/vc/data-integrity/models/LinkedDataProof.js.map +1 -0
  1824. package/build/modules/vc/data-integrity/models/ProofTransformer.d.ts +1 -0
  1825. package/build/modules/vc/data-integrity/models/ProofTransformer.js +32 -0
  1826. package/build/modules/vc/data-integrity/models/ProofTransformer.js.map +1 -0
  1827. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.d.ts +30 -0
  1828. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.js +74 -0
  1829. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.js.map +1 -0
  1830. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.d.ts +27 -0
  1831. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.js +64 -0
  1832. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.js.map +1 -0
  1833. package/build/modules/vc/data-integrity/models/index.d.ts +5 -0
  1834. package/build/modules/vc/data-integrity/models/index.js +22 -0
  1835. package/build/modules/vc/data-integrity/models/index.js.map +1 -0
  1836. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.d.ts +56 -0
  1837. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.js +74 -0
  1838. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.js.map +1 -0
  1839. package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.d.ts +1 -0
  1840. package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.js +3 -0
  1841. package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.js.map +1 -0
  1842. package/build/modules/vc/data-integrity/proof-purposes/index.d.ts +2 -0
  1843. package/build/modules/vc/data-integrity/proof-purposes/index.js +19 -0
  1844. package/build/modules/vc/data-integrity/proof-purposes/index.js.map +1 -0
  1845. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.d.ts +98 -0
  1846. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.js +209 -0
  1847. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.js.map +1 -0
  1848. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.d.ts +80 -0
  1849. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.js +190 -0
  1850. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.js.map +1 -0
  1851. package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.d.ts +2 -0
  1852. package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.js +6 -0
  1853. package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.js.map +1 -0
  1854. package/build/modules/vc/data-integrity/signature-suites/ed25519/context.d.ts +93 -0
  1855. package/build/modules/vc/data-integrity/signature-suites/ed25519/context.js +99 -0
  1856. package/build/modules/vc/data-integrity/signature-suites/ed25519/context.js.map +1 -0
  1857. package/build/modules/vc/data-integrity/signature-suites/index.d.ts +2 -0
  1858. package/build/modules/vc/data-integrity/signature-suites/index.js +19 -0
  1859. package/build/modules/vc/data-integrity/signature-suites/index.js.map +1 -0
  1860. package/build/modules/vc/index.d.ts +11 -0
  1861. package/build/modules/vc/index.js +30 -0
  1862. package/build/modules/vc/index.js.map +1 -0
  1863. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.d.ts +63 -0
  1864. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.js +432 -0
  1865. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.js.map +1 -0
  1866. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.d.ts +46 -0
  1867. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.js +97 -0
  1868. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.js.map +1 -0
  1869. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.d.ts +37 -0
  1870. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.js +76 -0
  1871. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.js.map +1 -0
  1872. package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.d.ts +38 -0
  1873. package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.js +43 -0
  1874. package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.js.map +1 -0
  1875. package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.d.ts +1 -0
  1876. package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.js +5 -0
  1877. package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.js.map +1 -0
  1878. package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.d.ts +10 -0
  1879. package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.js +15 -0
  1880. package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.js.map +1 -0
  1881. package/build/modules/vc/jwt-vc/credentialTransformer.d.ts +4 -0
  1882. package/build/modules/vc/jwt-vc/credentialTransformer.js +132 -0
  1883. package/build/modules/vc/jwt-vc/credentialTransformer.js.map +1 -0
  1884. package/build/modules/vc/jwt-vc/index.d.ts +3 -0
  1885. package/build/modules/vc/jwt-vc/index.js +20 -0
  1886. package/build/modules/vc/jwt-vc/index.js.map +1 -0
  1887. package/build/modules/vc/jwt-vc/presentationTransformer.d.ts +4 -0
  1888. package/build/modules/vc/jwt-vc/presentationTransformer.js +55 -0
  1889. package/build/modules/vc/jwt-vc/presentationTransformer.js.map +1 -0
  1890. package/build/modules/vc/models/ClaimFormat.d.ts +16 -0
  1891. package/build/modules/vc/models/ClaimFormat.js +21 -0
  1892. package/build/modules/vc/models/ClaimFormat.js.map +1 -0
  1893. package/build/modules/vc/models/W3cVerifyResult.d.ts +109 -0
  1894. package/build/modules/vc/models/W3cVerifyResult.js +3 -0
  1895. package/build/modules/vc/models/W3cVerifyResult.js.map +1 -0
  1896. package/build/modules/vc/models/credential/W3cCredential.d.ts +37 -0
  1897. package/build/modules/vc/models/credential/W3cCredential.js +135 -0
  1898. package/build/modules/vc/models/credential/W3cCredential.js.map +1 -0
  1899. package/build/modules/vc/models/credential/W3cCredentialSchema.d.ts +9 -0
  1900. package/build/modules/vc/models/credential/W3cCredentialSchema.js +32 -0
  1901. package/build/modules/vc/models/credential/W3cCredentialSchema.js.map +1 -0
  1902. package/build/modules/vc/models/credential/W3cCredentialStatus.d.ts +9 -0
  1903. package/build/modules/vc/models/credential/W3cCredentialStatus.js +32 -0
  1904. package/build/modules/vc/models/credential/W3cCredentialStatus.js.map +1 -0
  1905. package/build/modules/vc/models/credential/W3cCredentialSubject.d.ts +15 -0
  1906. package/build/modules/vc/models/credential/W3cCredentialSubject.js +93 -0
  1907. package/build/modules/vc/models/credential/W3cCredentialSubject.js.map +1 -0
  1908. package/build/modules/vc/models/credential/W3cIssuer.d.ts +14 -0
  1909. package/build/modules/vc/models/credential/W3cIssuer.js +65 -0
  1910. package/build/modules/vc/models/credential/W3cIssuer.js.map +1 -0
  1911. package/build/modules/vc/models/credential/W3cJsonCredential.d.ts +14 -0
  1912. package/build/modules/vc/models/credential/W3cJsonCredential.js +3 -0
  1913. package/build/modules/vc/models/credential/W3cJsonCredential.js.map +1 -0
  1914. package/build/modules/vc/models/credential/W3cVerifiableCredential.d.ts +5 -0
  1915. package/build/modules/vc/models/credential/W3cVerifiableCredential.js +39 -0
  1916. package/build/modules/vc/models/credential/W3cVerifiableCredential.js.map +1 -0
  1917. package/build/modules/vc/models/credential/index.d.ts +5 -0
  1918. package/build/modules/vc/models/credential/index.js +22 -0
  1919. package/build/modules/vc/models/credential/index.js.map +1 -0
  1920. package/build/modules/vc/models/index.d.ts +4 -0
  1921. package/build/modules/vc/models/index.js +21 -0
  1922. package/build/modules/vc/models/index.js.map +1 -0
  1923. package/build/modules/vc/models/presentation/W3cHolder.d.ts +13 -0
  1924. package/build/modules/vc/models/presentation/W3cHolder.js +65 -0
  1925. package/build/modules/vc/models/presentation/W3cHolder.js.map +1 -0
  1926. package/build/modules/vc/models/presentation/W3cJsonPresentation.d.ts +14 -0
  1927. package/build/modules/vc/models/presentation/W3cJsonPresentation.js +3 -0
  1928. package/build/modules/vc/models/presentation/W3cJsonPresentation.js.map +1 -0
  1929. package/build/modules/vc/models/presentation/W3cPresentation.d.ts +25 -0
  1930. package/build/modules/vc/models/presentation/W3cPresentation.js +88 -0
  1931. package/build/modules/vc/models/presentation/W3cPresentation.js.map +1 -0
  1932. package/build/modules/vc/models/presentation/W3cVerifiablePresentation.d.ts +4 -0
  1933. package/build/modules/vc/models/presentation/W3cVerifiablePresentation.js +3 -0
  1934. package/build/modules/vc/models/presentation/W3cVerifiablePresentation.js.map +1 -0
  1935. package/build/modules/vc/models/presentation/index.d.ts +2 -0
  1936. package/build/modules/vc/models/presentation/index.js +19 -0
  1937. package/build/modules/vc/models/presentation/index.js.map +1 -0
  1938. package/build/modules/vc/repository/W3cCredentialRecord.d.ts +42 -0
  1939. package/build/modules/vc/repository/W3cCredentialRecord.js +62 -0
  1940. package/build/modules/vc/repository/W3cCredentialRecord.js.map +1 -0
  1941. package/build/modules/vc/repository/W3cCredentialRepository.d.ts +7 -0
  1942. package/build/modules/vc/repository/W3cCredentialRepository.js +32 -0
  1943. package/build/modules/vc/repository/W3cCredentialRepository.js.map +1 -0
  1944. package/build/modules/vc/repository/index.d.ts +2 -0
  1945. package/build/modules/vc/repository/index.js +19 -0
  1946. package/build/modules/vc/repository/index.js.map +1 -0
  1947. package/build/modules/vc/util.d.ts +7 -0
  1948. package/build/modules/vc/util.js +19 -0
  1949. package/build/modules/vc/util.js.map +1 -0
  1950. package/build/modules/vc/validators.d.ts +2 -0
  1951. package/build/modules/vc/validators.js +25 -0
  1952. package/build/modules/vc/validators.js.map +1 -0
  1953. package/build/plugins/DependencyManager.d.ts +27 -0
  1954. package/build/plugins/DependencyManager.js +65 -0
  1955. package/build/plugins/DependencyManager.js.map +1 -0
  1956. package/build/plugins/Module.d.ts +17 -0
  1957. package/build/plugins/Module.js +3 -0
  1958. package/build/plugins/Module.js.map +1 -0
  1959. package/build/plugins/index.d.ts +4 -0
  1960. package/build/plugins/index.js +25 -0
  1961. package/build/plugins/index.js.map +1 -0
  1962. package/build/plugins/utils.d.ts +7 -0
  1963. package/build/plugins/utils.js +21 -0
  1964. package/build/plugins/utils.js.map +1 -0
  1965. package/build/storage/BaseRecord.d.ts +54 -0
  1966. package/build/storage/BaseRecord.js +85 -0
  1967. package/build/storage/BaseRecord.js.map +1 -0
  1968. package/build/storage/FileSystem.d.ts +19 -0
  1969. package/build/storage/FileSystem.js +3 -0
  1970. package/build/storage/FileSystem.js.map +1 -0
  1971. package/build/storage/Metadata.d.ts +58 -0
  1972. package/build/storage/Metadata.js +70 -0
  1973. package/build/storage/Metadata.js.map +1 -0
  1974. package/build/storage/Repository.d.ts +49 -0
  1975. package/build/storage/Repository.js +123 -0
  1976. package/build/storage/Repository.js.map +1 -0
  1977. package/build/storage/RepositoryEvents.d.ts +28 -0
  1978. package/build/storage/RepositoryEvents.js +10 -0
  1979. package/build/storage/RepositoryEvents.js.map +1 -0
  1980. package/build/storage/StorageService.d.ts +66 -0
  1981. package/build/storage/StorageService.js +3 -0
  1982. package/build/storage/StorageService.js.map +1 -0
  1983. package/build/storage/didcomm/DidCommMessageRecord.d.ts +48 -0
  1984. package/build/storage/didcomm/DidCommMessageRecord.js +49 -0
  1985. package/build/storage/didcomm/DidCommMessageRecord.js.map +1 -0
  1986. package/build/storage/didcomm/DidCommMessageRepository.d.ts +24 -0
  1987. package/build/storage/didcomm/DidCommMessageRepository.js +78 -0
  1988. package/build/storage/didcomm/DidCommMessageRepository.js.map +1 -0
  1989. package/build/storage/didcomm/DidCommMessageRole.d.ts +4 -0
  1990. package/build/storage/didcomm/DidCommMessageRole.js +9 -0
  1991. package/build/storage/didcomm/DidCommMessageRole.js.map +1 -0
  1992. package/build/storage/didcomm/index.d.ts +3 -0
  1993. package/build/storage/didcomm/index.js +20 -0
  1994. package/build/storage/didcomm/index.js.map +1 -0
  1995. package/build/storage/index.d.ts +2 -0
  1996. package/build/storage/index.js +19 -0
  1997. package/build/storage/index.js.map +1 -0
  1998. package/build/storage/migration/StorageUpdateService.d.ts +22 -0
  1999. package/build/storage/migration/StorageUpdateService.js +77 -0
  2000. package/build/storage/migration/StorageUpdateService.js.map +1 -0
  2001. package/build/storage/migration/UpdateAssistant.d.ts +42 -0
  2002. package/build/storage/migration/UpdateAssistant.js +211 -0
  2003. package/build/storage/migration/UpdateAssistant.js.map +1 -0
  2004. package/build/storage/migration/error/StorageUpdateError.d.ts +6 -0
  2005. package/build/storage/migration/error/StorageUpdateError.js +11 -0
  2006. package/build/storage/migration/error/StorageUpdateError.js.map +1 -0
  2007. package/build/storage/migration/index.d.ts +6 -0
  2008. package/build/storage/migration/index.js +22 -0
  2009. package/build/storage/migration/index.js.map +1 -0
  2010. package/build/storage/migration/isUpToDate.d.ts +3 -0
  2011. package/build/storage/migration/isUpToDate.js +14 -0
  2012. package/build/storage/migration/isUpToDate.js.map +1 -0
  2013. package/build/storage/migration/repository/StorageVersionRecord.d.ts +14 -0
  2014. package/build/storage/migration/repository/StorageVersionRecord.js +23 -0
  2015. package/build/storage/migration/repository/StorageVersionRecord.js.map +1 -0
  2016. package/build/storage/migration/repository/StorageVersionRepository.d.ts +7 -0
  2017. package/build/storage/migration/repository/StorageVersionRepository.js +32 -0
  2018. package/build/storage/migration/repository/StorageVersionRepository.js.map +1 -0
  2019. package/build/storage/migration/updates/0.1-0.2/connection.d.ts +119 -0
  2020. package/build/storage/migration/updates/0.1-0.2/connection.js +382 -0
  2021. package/build/storage/migration/updates/0.1-0.2/connection.js.map +1 -0
  2022. package/build/storage/migration/updates/0.1-0.2/credential.d.ts +80 -0
  2023. package/build/storage/migration/updates/0.1-0.2/credential.js +215 -0
  2024. package/build/storage/migration/updates/0.1-0.2/credential.js.map +1 -0
  2025. package/build/storage/migration/updates/0.1-0.2/index.d.ts +6 -0
  2026. package/build/storage/migration/updates/0.1-0.2/index.js +13 -0
  2027. package/build/storage/migration/updates/0.1-0.2/index.js.map +1 -0
  2028. package/build/storage/migration/updates/0.1-0.2/mediation.d.ts +30 -0
  2029. package/build/storage/migration/updates/0.1-0.2/mediation.js +68 -0
  2030. package/build/storage/migration/updates/0.1-0.2/mediation.js.map +1 -0
  2031. package/build/storage/migration/updates/0.2-0.3/connection.d.ts +14 -0
  2032. package/build/storage/migration/updates/0.2-0.3/connection.js +48 -0
  2033. package/build/storage/migration/updates/0.2-0.3/connection.js.map +1 -0
  2034. package/build/storage/migration/updates/0.2-0.3/index.d.ts +2 -0
  2035. package/build/storage/migration/updates/0.2-0.3/index.js +11 -0
  2036. package/build/storage/migration/updates/0.2-0.3/index.js.map +1 -0
  2037. package/build/storage/migration/updates/0.2-0.3/proof.d.ts +42 -0
  2038. package/build/storage/migration/updates/0.2-0.3/proof.js +131 -0
  2039. package/build/storage/migration/updates/0.2-0.3/proof.js.map +1 -0
  2040. package/build/storage/migration/updates/0.3-0.3.1/did.d.ts +10 -0
  2041. package/build/storage/migration/updates/0.3-0.3.1/did.js +35 -0
  2042. package/build/storage/migration/updates/0.3-0.3.1/did.js.map +1 -0
  2043. package/build/storage/migration/updates/0.3-0.3.1/index.d.ts +2 -0
  2044. package/build/storage/migration/updates/0.3-0.3.1/index.js +9 -0
  2045. package/build/storage/migration/updates/0.3-0.3.1/index.js.map +1 -0
  2046. package/build/storage/migration/updates/0.3.1-0.4/cache.d.ts +5 -0
  2047. package/build/storage/migration/updates/0.3.1-0.4/cache.js +31 -0
  2048. package/build/storage/migration/updates/0.3.1-0.4/cache.js.map +1 -0
  2049. package/build/storage/migration/updates/0.3.1-0.4/did.d.ts +12 -0
  2050. package/build/storage/migration/updates/0.3.1-0.4/did.js +40 -0
  2051. package/build/storage/migration/updates/0.3.1-0.4/did.js.map +1 -0
  2052. package/build/storage/migration/updates/0.3.1-0.4/index.d.ts +2 -0
  2053. package/build/storage/migration/updates/0.3.1-0.4/index.js +13 -0
  2054. package/build/storage/migration/updates/0.3.1-0.4/index.js.map +1 -0
  2055. package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.d.ts +5 -0
  2056. package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.js +22 -0
  2057. package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.js.map +1 -0
  2058. package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.d.ts +17 -0
  2059. package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.js +107 -0
  2060. package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.js.map +1 -0
  2061. package/build/storage/migration/updates/0.4-0.5/index.d.ts +2 -0
  2062. package/build/storage/migration/updates/0.4-0.5/index.js +13 -0
  2063. package/build/storage/migration/updates/0.4-0.5/index.js.map +1 -0
  2064. package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.d.ts +17 -0
  2065. package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.js +88 -0
  2066. package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.js.map +1 -0
  2067. package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.d.ts +25 -0
  2068. package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.js +66 -0
  2069. package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.js.map +1 -0
  2070. package/build/storage/migration/updates.d.ts +41 -0
  2071. package/build/storage/migration/updates.js +44 -0
  2072. package/build/storage/migration/updates.js.map +1 -0
  2073. package/build/transport/HttpOutboundTransport.d.ts +15 -0
  2074. package/build/transport/HttpOutboundTransport.js +124 -0
  2075. package/build/transport/HttpOutboundTransport.js.map +1 -0
  2076. package/build/transport/InboundTransport.d.ts +5 -0
  2077. package/build/transport/InboundTransport.js +3 -0
  2078. package/build/transport/InboundTransport.js.map +1 -0
  2079. package/build/transport/OutboundTransport.d.ts +8 -0
  2080. package/build/transport/OutboundTransport.js +3 -0
  2081. package/build/transport/OutboundTransport.js.map +1 -0
  2082. package/build/transport/TransportEventTypes.d.ts +34 -0
  2083. package/build/transport/TransportEventTypes.js +11 -0
  2084. package/build/transport/TransportEventTypes.js.map +1 -0
  2085. package/build/transport/WsOutboundTransport.d.ts +19 -0
  2086. package/build/transport/WsOutboundTransport.js +139 -0
  2087. package/build/transport/WsOutboundTransport.js.map +1 -0
  2088. package/build/transport/index.d.ts +5 -0
  2089. package/build/transport/index.js +22 -0
  2090. package/build/transport/index.js.map +1 -0
  2091. package/build/types.d.ts +115 -0
  2092. package/build/types.js +18 -0
  2093. package/build/types.js.map +1 -0
  2094. package/build/utils/Hasher.d.ts +4 -0
  2095. package/build/utils/Hasher.js +20 -0
  2096. package/build/utils/Hasher.js.map +1 -0
  2097. package/build/utils/HashlinkEncoder.d.ts +45 -0
  2098. package/build/utils/HashlinkEncoder.js +111 -0
  2099. package/build/utils/HashlinkEncoder.js.map +1 -0
  2100. package/build/utils/JWE.d.ts +2 -0
  2101. package/build/utils/JWE.js +15 -0
  2102. package/build/utils/JWE.js.map +1 -0
  2103. package/build/utils/JsonEncoder.d.ts +45 -0
  2104. package/build/utils/JsonEncoder.js +65 -0
  2105. package/build/utils/JsonEncoder.js.map +1 -0
  2106. package/build/utils/JsonTransformer.d.ts +16 -0
  2107. package/build/utils/JsonTransformer.js +46 -0
  2108. package/build/utils/JsonTransformer.js.map +1 -0
  2109. package/build/utils/LinkedAttachment.d.ts +23 -0
  2110. package/build/utils/LinkedAttachment.js +51 -0
  2111. package/build/utils/LinkedAttachment.js.map +1 -0
  2112. package/build/utils/MessageValidator.d.ts +9 -0
  2113. package/build/utils/MessageValidator.js +33 -0
  2114. package/build/utils/MessageValidator.js.map +1 -0
  2115. package/build/utils/MultiBaseEncoder.d.ts +24 -0
  2116. package/build/utils/MultiBaseEncoder.js +53 -0
  2117. package/build/utils/MultiBaseEncoder.js.map +1 -0
  2118. package/build/utils/MultiHashEncoder.d.ts +35 -0
  2119. package/build/utils/MultiHashEncoder.js +69 -0
  2120. package/build/utils/MultiHashEncoder.js.map +1 -0
  2121. package/build/utils/TypedArrayEncoder.d.ts +60 -0
  2122. package/build/utils/TypedArrayEncoder.js +90 -0
  2123. package/build/utils/TypedArrayEncoder.js.map +1 -0
  2124. package/build/utils/VarintEncoder.d.ts +6 -0
  2125. package/build/utils/VarintEncoder.js +21 -0
  2126. package/build/utils/VarintEncoder.js.map +1 -0
  2127. package/build/utils/array.d.ts +5 -0
  2128. package/build/utils/array.js +18 -0
  2129. package/build/utils/array.js.map +1 -0
  2130. package/build/utils/attachment.d.ts +19 -0
  2131. package/build/utils/attachment.js +40 -0
  2132. package/build/utils/attachment.js.map +1 -0
  2133. package/build/utils/base58.d.ts +2 -0
  2134. package/build/utils/base58.js +18 -0
  2135. package/build/utils/base58.js.map +1 -0
  2136. package/build/utils/base64.d.ts +1 -0
  2137. package/build/utils/base64.js +8 -0
  2138. package/build/utils/base64.js.map +1 -0
  2139. package/build/utils/buffer.d.ts +2 -0
  2140. package/build/utils/buffer.js +6 -0
  2141. package/build/utils/buffer.js.map +1 -0
  2142. package/build/utils/deepEquality.d.ts +5 -0
  2143. package/build/utils/deepEquality.js +58 -0
  2144. package/build/utils/deepEquality.js.map +1 -0
  2145. package/build/utils/did.d.ts +9 -0
  2146. package/build/utils/did.js +22 -0
  2147. package/build/utils/did.js.map +1 -0
  2148. package/build/utils/error.d.ts +1 -0
  2149. package/build/utils/error.js +6 -0
  2150. package/build/utils/error.js.map +1 -0
  2151. package/build/utils/index.d.ts +17 -0
  2152. package/build/utils/index.js +36 -0
  2153. package/build/utils/index.js.map +1 -0
  2154. package/build/utils/messageType.d.ts +138 -0
  2155. package/build/utils/messageType.js +180 -0
  2156. package/build/utils/messageType.js.map +1 -0
  2157. package/build/utils/mixins.d.ts +17 -0
  2158. package/build/utils/mixins.js +21 -0
  2159. package/build/utils/mixins.js.map +1 -0
  2160. package/build/utils/objectEquality.d.ts +1 -0
  2161. package/build/utils/objectEquality.js +28 -0
  2162. package/build/utils/objectEquality.js.map +1 -0
  2163. package/build/utils/parseInvitation.d.ts +30 -0
  2164. package/build/utils/parseInvitation.js +174 -0
  2165. package/build/utils/parseInvitation.js.map +1 -0
  2166. package/build/utils/path.d.ts +14 -0
  2167. package/build/utils/path.js +39 -0
  2168. package/build/utils/path.js.map +1 -0
  2169. package/build/utils/promises.d.ts +11 -0
  2170. package/build/utils/promises.js +27 -0
  2171. package/build/utils/promises.js.map +1 -0
  2172. package/build/utils/sleep.d.ts +1 -0
  2173. package/build/utils/sleep.js +8 -0
  2174. package/build/utils/sleep.js.map +1 -0
  2175. package/build/utils/thread.d.ts +2 -0
  2176. package/build/utils/thread.js +9 -0
  2177. package/build/utils/thread.js.map +1 -0
  2178. package/build/utils/timestamp.d.ts +1 -0
  2179. package/build/utils/timestamp.js +16 -0
  2180. package/build/utils/timestamp.js.map +1 -0
  2181. package/build/utils/transformers.d.ts +15 -0
  2182. package/build/utils/transformers.js +86 -0
  2183. package/build/utils/transformers.js.map +1 -0
  2184. package/build/utils/type.d.ts +4 -0
  2185. package/build/utils/type.js +8 -0
  2186. package/build/utils/type.js.map +1 -0
  2187. package/build/utils/uri.d.ts +1 -0
  2188. package/build/utils/uri.js +9 -0
  2189. package/build/utils/uri.js.map +1 -0
  2190. package/build/utils/uuid.d.ts +2 -0
  2191. package/build/utils/uuid.js +13 -0
  2192. package/build/utils/uuid.js.map +1 -0
  2193. package/build/utils/validators.d.ts +20 -0
  2194. package/build/utils/validators.js +71 -0
  2195. package/build/utils/validators.js.map +1 -0
  2196. package/build/utils/version.d.ts +8 -0
  2197. package/build/utils/version.js +19 -0
  2198. package/build/utils/version.js.map +1 -0
  2199. package/build/wallet/Wallet.d.ts +63 -0
  2200. package/build/wallet/Wallet.js +3 -0
  2201. package/build/wallet/Wallet.js.map +1 -0
  2202. package/build/wallet/WalletApi.d.ts +40 -0
  2203. package/build/wallet/WalletApi.js +118 -0
  2204. package/build/wallet/WalletApi.js.map +1 -0
  2205. package/build/wallet/WalletModule.d.ts +9 -0
  2206. package/build/wallet/WalletModule.js +19 -0
  2207. package/build/wallet/WalletModule.js.map +1 -0
  2208. package/build/wallet/error/WalletDuplicateError.d.ts +7 -0
  2209. package/build/wallet/error/WalletDuplicateError.js +11 -0
  2210. package/build/wallet/error/WalletDuplicateError.js.map +1 -0
  2211. package/build/wallet/error/WalletError.d.ts +6 -0
  2212. package/build/wallet/error/WalletError.js +11 -0
  2213. package/build/wallet/error/WalletError.js.map +1 -0
  2214. package/build/wallet/error/WalletExportPathExistsError.d.ts +6 -0
  2215. package/build/wallet/error/WalletExportPathExistsError.js +11 -0
  2216. package/build/wallet/error/WalletExportPathExistsError.js.map +1 -0
  2217. package/build/wallet/error/WalletExportUnsupportedError.d.ts +6 -0
  2218. package/build/wallet/error/WalletExportUnsupportedError.js +11 -0
  2219. package/build/wallet/error/WalletExportUnsupportedError.js.map +1 -0
  2220. package/build/wallet/error/WalletImportPathExistsError.d.ts +6 -0
  2221. package/build/wallet/error/WalletImportPathExistsError.js +11 -0
  2222. package/build/wallet/error/WalletImportPathExistsError.js.map +1 -0
  2223. package/build/wallet/error/WalletInvalidKeyError.d.ts +7 -0
  2224. package/build/wallet/error/WalletInvalidKeyError.js +11 -0
  2225. package/build/wallet/error/WalletInvalidKeyError.js.map +1 -0
  2226. package/build/wallet/error/WalletKeyExistsError.d.ts +6 -0
  2227. package/build/wallet/error/WalletKeyExistsError.js +11 -0
  2228. package/build/wallet/error/WalletKeyExistsError.js.map +1 -0
  2229. package/build/wallet/error/WalletNotFoundError.d.ts +7 -0
  2230. package/build/wallet/error/WalletNotFoundError.js +11 -0
  2231. package/build/wallet/error/WalletNotFoundError.js.map +1 -0
  2232. package/build/wallet/error/index.d.ts +8 -0
  2233. package/build/wallet/error/index.js +20 -0
  2234. package/build/wallet/error/index.js.map +1 -0
  2235. package/build/wallet/index.d.ts +3 -0
  2236. package/build/wallet/index.js +20 -0
  2237. package/build/wallet/index.js.map +1 -0
  2238. package/package.json +71 -0
@@ -0,0 +1,14 @@
1
+ import { DidDocumentService } from './DidDocumentService';
2
+ export declare class IndyAgentService extends DidDocumentService {
3
+ constructor(options: {
4
+ id: string;
5
+ serviceEndpoint: string;
6
+ recipientKeys: string[];
7
+ routingKeys?: string[];
8
+ priority?: number;
9
+ });
10
+ static type: string;
11
+ recipientKeys: string[];
12
+ routingKeys?: string[];
13
+ priority: number;
14
+ }
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.IndyAgentService = void 0;
13
+ const class_validator_1 = require("class-validator");
14
+ const DidDocumentService_1 = require("./DidDocumentService");
15
+ class IndyAgentService extends DidDocumentService_1.DidDocumentService {
16
+ constructor(options) {
17
+ super(Object.assign(Object.assign({}, options), { type: IndyAgentService.type }));
18
+ this.priority = 0;
19
+ if (options) {
20
+ this.recipientKeys = options.recipientKeys;
21
+ this.routingKeys = options.routingKeys;
22
+ if (options.priority)
23
+ this.priority = options.priority;
24
+ }
25
+ }
26
+ }
27
+ IndyAgentService.type = 'IndyAgent';
28
+ __decorate([
29
+ (0, class_validator_1.ArrayNotEmpty)(),
30
+ (0, class_validator_1.IsString)({ each: true }),
31
+ __metadata("design:type", Array)
32
+ ], IndyAgentService.prototype, "recipientKeys", void 0);
33
+ __decorate([
34
+ (0, class_validator_1.IsString)({ each: true }),
35
+ (0, class_validator_1.IsOptional)(),
36
+ __metadata("design:type", Array)
37
+ ], IndyAgentService.prototype, "routingKeys", void 0);
38
+ exports.IndyAgentService = IndyAgentService;
39
+ //# sourceMappingURL=IndyAgentService.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"IndyAgentService.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/service/IndyAgentService.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAqE;AAErE,6DAAyD;AAEzD,MAAa,gBAAiB,SAAQ,uCAAkB;IACtD,YAAmB,OAMlB;QACC,KAAK,iCAAM,OAAO,KAAE,IAAI,EAAE,gBAAgB,CAAC,IAAI,IAAG,CAAA;QAmB7C,aAAQ,GAAG,CAAC,CAAA;QAjBjB,IAAI,OAAO,EAAE;YACX,IAAI,CAAC,aAAa,GAAG,OAAO,CAAC,aAAa,CAAA;YAC1C,IAAI,CAAC,WAAW,GAAG,OAAO,CAAC,WAAW,CAAA;YACtC,IAAI,OAAO,CAAC,QAAQ;gBAAE,IAAI,CAAC,QAAQ,GAAG,OAAO,CAAC,QAAQ,CAAA;SACvD;IACH,CAAC;;AAEa,qBAAI,GAAG,WAAW,CAAA;AAEhC;IAAC,IAAA,+BAAa,GAAE;IACf,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;uDACM;AAE/B;IAAC,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,IAAA,4BAAU,GAAE;;qDACgB;AAzB/B,4CA4BC"}
@@ -0,0 +1,13 @@
1
+ export declare const serviceTypes: {
2
+ [key: string]: unknown | undefined;
3
+ };
4
+ /**
5
+ * Decorator that transforms service json to corresponding class instances. See {@link serviceTypes}
6
+ *
7
+ * @example
8
+ * class Example {
9
+ * ServiceTransformer()
10
+ * private service: Service
11
+ * }
12
+ */
13
+ export declare function ServiceTransformer(): PropertyDecorator;
@@ -0,0 +1,36 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ServiceTransformer = exports.serviceTypes = void 0;
4
+ const class_transformer_1 = require("class-transformer");
5
+ const DidCommV1Service_1 = require("./DidCommV1Service");
6
+ const DidCommV2Service_1 = require("./DidCommV2Service");
7
+ const DidDocumentService_1 = require("./DidDocumentService");
8
+ const IndyAgentService_1 = require("./IndyAgentService");
9
+ exports.serviceTypes = {
10
+ [IndyAgentService_1.IndyAgentService.type]: IndyAgentService_1.IndyAgentService,
11
+ [DidCommV1Service_1.DidCommV1Service.type]: DidCommV1Service_1.DidCommV1Service,
12
+ [DidCommV2Service_1.DidCommV2Service.type]: DidCommV2Service_1.DidCommV2Service,
13
+ };
14
+ /**
15
+ * Decorator that transforms service json to corresponding class instances. See {@link serviceTypes}
16
+ *
17
+ * @example
18
+ * class Example {
19
+ * ServiceTransformer()
20
+ * private service: Service
21
+ * }
22
+ */
23
+ function ServiceTransformer() {
24
+ return (0, class_transformer_1.Transform)(({ value }) => {
25
+ return value === null || value === void 0 ? void 0 : value.map((serviceJson) => {
26
+ var _a;
27
+ const serviceClass = ((_a = exports.serviceTypes[serviceJson.type]) !== null && _a !== void 0 ? _a : DidDocumentService_1.DidDocumentService);
28
+ const service = (0, class_transformer_1.plainToInstance)(serviceClass, serviceJson);
29
+ return service;
30
+ });
31
+ }, {
32
+ toClassOnly: true,
33
+ });
34
+ }
35
+ exports.ServiceTransformer = ServiceTransformer;
36
+ //# sourceMappingURL=ServiceTransformer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ServiceTransformer.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/service/ServiceTransformer.ts"],"names":[],"mappings":";;;AAEA,yDAA8D;AAE9D,yDAAqD;AACrD,yDAAqD;AACrD,6DAAyD;AACzD,yDAAqD;AAExC,QAAA,YAAY,GAA2C;IAClE,CAAC,mCAAgB,CAAC,IAAI,CAAC,EAAE,mCAAgB;IACzC,CAAC,mCAAgB,CAAC,IAAI,CAAC,EAAE,mCAAgB;IACzC,CAAC,mCAAgB,CAAC,IAAI,CAAC,EAAE,mCAAgB;CAC1C,CAAA;AAED;;;;;;;;GAQG;AACH,SAAgB,kBAAkB;IAChC,OAAO,IAAA,6BAAS,EACd,CAAC,EAAE,KAAK,EAAuC,EAAE,EAAE;QACjD,OAAO,KAAK,aAAL,KAAK,uBAAL,KAAK,CAAE,GAAG,CAAC,CAAC,WAAW,EAAE,EAAE;;YAChC,MAAM,YAAY,GAAG,CAAC,MAAA,oBAAY,CAAC,WAAW,CAAC,IAAI,CAAC,mCAClD,uCAAkB,CAAyC,CAAA;YAC7D,MAAM,OAAO,GAAG,IAAA,mCAAe,EAA8B,YAAY,EAAE,WAAW,CAAC,CAAA;YAEvF,OAAO,OAAO,CAAA;QAChB,CAAC,CAAC,CAAA;IACJ,CAAC,EACD;QACE,WAAW,EAAE,IAAI;KAClB,CACF,CAAA;AACH,CAAC;AAfD,gDAeC"}
@@ -0,0 +1,6 @@
1
+ import { DidCommV1Service } from './DidCommV1Service';
2
+ import { DidCommV2Service } from './DidCommV2Service';
3
+ import { DidDocumentService } from './DidDocumentService';
4
+ import { IndyAgentService } from './IndyAgentService';
5
+ import { ServiceTransformer, serviceTypes } from './ServiceTransformer';
6
+ export { IndyAgentService, DidCommV1Service, DidDocumentService, DidCommV2Service, ServiceTransformer, serviceTypes };
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.serviceTypes = exports.ServiceTransformer = exports.DidCommV2Service = exports.DidDocumentService = exports.DidCommV1Service = exports.IndyAgentService = void 0;
4
+ const DidCommV1Service_1 = require("./DidCommV1Service");
5
+ Object.defineProperty(exports, "DidCommV1Service", { enumerable: true, get: function () { return DidCommV1Service_1.DidCommV1Service; } });
6
+ const DidCommV2Service_1 = require("./DidCommV2Service");
7
+ Object.defineProperty(exports, "DidCommV2Service", { enumerable: true, get: function () { return DidCommV2Service_1.DidCommV2Service; } });
8
+ const DidDocumentService_1 = require("./DidDocumentService");
9
+ Object.defineProperty(exports, "DidDocumentService", { enumerable: true, get: function () { return DidDocumentService_1.DidDocumentService; } });
10
+ const IndyAgentService_1 = require("./IndyAgentService");
11
+ Object.defineProperty(exports, "IndyAgentService", { enumerable: true, get: function () { return IndyAgentService_1.IndyAgentService; } });
12
+ const ServiceTransformer_1 = require("./ServiceTransformer");
13
+ Object.defineProperty(exports, "ServiceTransformer", { enumerable: true, get: function () { return ServiceTransformer_1.ServiceTransformer; } });
14
+ Object.defineProperty(exports, "serviceTypes", { enumerable: true, get: function () { return ServiceTransformer_1.serviceTypes; } });
15
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/service/index.ts"],"names":[],"mappings":";;;AAAA,yDAAqD;AAM1B,iGANlB,mCAAgB,OAMkB;AAL3C,yDAAqD;AAKY,iGALxD,mCAAgB,OAKwD;AAJjF,6DAAyD;AAIZ,mGAJpC,uCAAkB,OAIoC;AAH/D,yDAAqD;AAG5C,iGAHA,mCAAgB,OAGA;AAFzB,6DAAuE;AAEY,mGAF1E,uCAAkB,OAE0E;AAAE,6FAF1E,iCAAY,OAE0E"}
@@ -0,0 +1,23 @@
1
+ import { Key } from '../../../../crypto/Key';
2
+ import { VerificationMethod } from './VerificationMethod';
3
+ export declare const VERIFICATION_METHOD_TYPE_BLS12381G1_KEY_2020 = "Bls12381G1Key2020";
4
+ type Bls12381G1Key2020 = VerificationMethod & {
5
+ type: typeof VERIFICATION_METHOD_TYPE_BLS12381G1_KEY_2020;
6
+ };
7
+ /**
8
+ * Get a Bls12381G1Key2020 verification method.
9
+ */
10
+ export declare function getBls12381G1Key2020({ key, id, controller }: {
11
+ id: string;
12
+ key: Key;
13
+ controller: string;
14
+ }): VerificationMethod;
15
+ /**
16
+ * Check whether a verification method is a Bls12381G1Key2020 verification method.
17
+ */
18
+ export declare function isBls12381G1Key2020(verificationMethod: VerificationMethod): verificationMethod is Bls12381G1Key2020;
19
+ /**
20
+ * Get a key from a Bls12381G1Key2020 verification method.
21
+ */
22
+ export declare function getKeyFromBls12381G1Key2020(verificationMethod: Bls12381G1Key2020): Key;
23
+ export {};
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getKeyFromBls12381G1Key2020 = exports.isBls12381G1Key2020 = exports.getBls12381G1Key2020 = exports.VERIFICATION_METHOD_TYPE_BLS12381G1_KEY_2020 = void 0;
4
+ const crypto_1 = require("../../../../crypto");
5
+ const Key_1 = require("../../../../crypto/Key");
6
+ const error_1 = require("../../../../error");
7
+ const VerificationMethod_1 = require("./VerificationMethod");
8
+ exports.VERIFICATION_METHOD_TYPE_BLS12381G1_KEY_2020 = 'Bls12381G1Key2020';
9
+ /**
10
+ * Get a Bls12381G1Key2020 verification method.
11
+ */
12
+ function getBls12381G1Key2020({ key, id, controller }) {
13
+ return new VerificationMethod_1.VerificationMethod({
14
+ id,
15
+ type: exports.VERIFICATION_METHOD_TYPE_BLS12381G1_KEY_2020,
16
+ controller,
17
+ publicKeyBase58: key.publicKeyBase58,
18
+ });
19
+ }
20
+ exports.getBls12381G1Key2020 = getBls12381G1Key2020;
21
+ /**
22
+ * Check whether a verification method is a Bls12381G1Key2020 verification method.
23
+ */
24
+ function isBls12381G1Key2020(verificationMethod) {
25
+ return verificationMethod.type === exports.VERIFICATION_METHOD_TYPE_BLS12381G1_KEY_2020;
26
+ }
27
+ exports.isBls12381G1Key2020 = isBls12381G1Key2020;
28
+ /**
29
+ * Get a key from a Bls12381G1Key2020 verification method.
30
+ */
31
+ function getKeyFromBls12381G1Key2020(verificationMethod) {
32
+ if (!verificationMethod.publicKeyBase58) {
33
+ throw new error_1.CredoError('verification method is missing publicKeyBase58');
34
+ }
35
+ return Key_1.Key.fromPublicKeyBase58(verificationMethod.publicKeyBase58, crypto_1.KeyType.Bls12381g1);
36
+ }
37
+ exports.getKeyFromBls12381G1Key2020 = getKeyFromBls12381G1Key2020;
38
+ //# sourceMappingURL=Bls12381G1Key2020.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Bls12381G1Key2020.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/verificationMethod/Bls12381G1Key2020.ts"],"names":[],"mappings":";;;AAAA,+CAA4C;AAC5C,gDAA4C;AAC5C,6CAA8C;AAE9C,6DAAyD;AAE5C,QAAA,4CAA4C,GAAG,mBAAmB,CAAA;AAK/E;;GAEG;AACH,SAAgB,oBAAoB,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,UAAU,EAAgD;IACxG,OAAO,IAAI,uCAAkB,CAAC;QAC5B,EAAE;QACF,IAAI,EAAE,oDAA4C;QAClD,UAAU;QACV,eAAe,EAAE,GAAG,CAAC,eAAe;KACrC,CAAC,CAAA;AACJ,CAAC;AAPD,oDAOC;AAED;;GAEG;AACH,SAAgB,mBAAmB,CAAC,kBAAsC;IACxE,OAAO,kBAAkB,CAAC,IAAI,KAAK,oDAA4C,CAAA;AACjF,CAAC;AAFD,kDAEC;AAED;;GAEG;AACH,SAAgB,2BAA2B,CAAC,kBAAqC;IAC/E,IAAI,CAAC,kBAAkB,CAAC,eAAe,EAAE;QACvC,MAAM,IAAI,kBAAU,CAAC,gDAAgD,CAAC,CAAA;KACvE;IAED,OAAO,SAAG,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,eAAe,EAAE,gBAAO,CAAC,UAAU,CAAC,CAAA;AACxF,CAAC;AAND,kEAMC"}
@@ -0,0 +1,23 @@
1
+ import { Key } from '../../../../crypto/Key';
2
+ import { VerificationMethod } from './VerificationMethod';
3
+ export declare const VERIFICATION_METHOD_TYPE_BLS12381G2_KEY_2020 = "Bls12381G2Key2020";
4
+ type Bls12381G2Key2020 = VerificationMethod & {
5
+ type: typeof VERIFICATION_METHOD_TYPE_BLS12381G2_KEY_2020;
6
+ };
7
+ /**
8
+ * Get a Bls12381G2Key2020 verification method.
9
+ */
10
+ export declare function getBls12381G2Key2020({ key, id, controller }: {
11
+ id: string;
12
+ key: Key;
13
+ controller: string;
14
+ }): VerificationMethod;
15
+ /**
16
+ * Check whether a verification method is a Bls12381G2Key2020 verification method.
17
+ */
18
+ export declare function isBls12381G2Key2020(verificationMethod: VerificationMethod): verificationMethod is Bls12381G2Key2020;
19
+ /**
20
+ * Get a key from a Bls12381G2Key2020 verification method.
21
+ */
22
+ export declare function getKeyFromBls12381G2Key2020(verificationMethod: Bls12381G2Key2020): Key;
23
+ export {};
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getKeyFromBls12381G2Key2020 = exports.isBls12381G2Key2020 = exports.getBls12381G2Key2020 = exports.VERIFICATION_METHOD_TYPE_BLS12381G2_KEY_2020 = void 0;
4
+ const crypto_1 = require("../../../../crypto");
5
+ const Key_1 = require("../../../../crypto/Key");
6
+ const error_1 = require("../../../../error");
7
+ const VerificationMethod_1 = require("./VerificationMethod");
8
+ exports.VERIFICATION_METHOD_TYPE_BLS12381G2_KEY_2020 = 'Bls12381G2Key2020';
9
+ /**
10
+ * Get a Bls12381G2Key2020 verification method.
11
+ */
12
+ function getBls12381G2Key2020({ key, id, controller }) {
13
+ return new VerificationMethod_1.VerificationMethod({
14
+ id,
15
+ type: exports.VERIFICATION_METHOD_TYPE_BLS12381G2_KEY_2020,
16
+ controller,
17
+ publicKeyBase58: key.publicKeyBase58,
18
+ });
19
+ }
20
+ exports.getBls12381G2Key2020 = getBls12381G2Key2020;
21
+ /**
22
+ * Check whether a verification method is a Bls12381G2Key2020 verification method.
23
+ */
24
+ function isBls12381G2Key2020(verificationMethod) {
25
+ return verificationMethod.type === exports.VERIFICATION_METHOD_TYPE_BLS12381G2_KEY_2020;
26
+ }
27
+ exports.isBls12381G2Key2020 = isBls12381G2Key2020;
28
+ /**
29
+ * Get a key from a Bls12381G2Key2020 verification method.
30
+ */
31
+ function getKeyFromBls12381G2Key2020(verificationMethod) {
32
+ if (!verificationMethod.publicKeyBase58) {
33
+ throw new error_1.CredoError('verification method is missing publicKeyBase58');
34
+ }
35
+ return Key_1.Key.fromPublicKeyBase58(verificationMethod.publicKeyBase58, crypto_1.KeyType.Bls12381g2);
36
+ }
37
+ exports.getKeyFromBls12381G2Key2020 = getKeyFromBls12381G2Key2020;
38
+ //# sourceMappingURL=Bls12381G2Key2020.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Bls12381G2Key2020.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/verificationMethod/Bls12381G2Key2020.ts"],"names":[],"mappings":";;;AAAA,+CAA4C;AAC5C,gDAA4C;AAC5C,6CAA8C;AAE9C,6DAAyD;AAE5C,QAAA,4CAA4C,GAAG,mBAAmB,CAAA;AAK/E;;GAEG;AACH,SAAgB,oBAAoB,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,UAAU,EAAgD;IACxG,OAAO,IAAI,uCAAkB,CAAC;QAC5B,EAAE;QACF,IAAI,EAAE,oDAA4C;QAClD,UAAU;QACV,eAAe,EAAE,GAAG,CAAC,eAAe;KACrC,CAAC,CAAA;AACJ,CAAC;AAPD,oDAOC;AAED;;GAEG;AACH,SAAgB,mBAAmB,CAAC,kBAAsC;IACxE,OAAO,kBAAkB,CAAC,IAAI,KAAK,oDAA4C,CAAA;AACjF,CAAC;AAFD,kDAEC;AAED;;GAEG;AACH,SAAgB,2BAA2B,CAAC,kBAAqC;IAC/E,IAAI,CAAC,kBAAkB,CAAC,eAAe,EAAE;QACvC,MAAM,IAAI,kBAAU,CAAC,gDAAgD,CAAC,CAAA;KACvE;IAED,OAAO,SAAG,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,eAAe,EAAE,gBAAO,CAAC,UAAU,CAAC,CAAA;AACxF,CAAC;AAND,kEAMC"}
@@ -0,0 +1,23 @@
1
+ import { Key } from '../../../../crypto/Key';
2
+ import { VerificationMethod } from './VerificationMethod';
3
+ export declare const VERIFICATION_METHOD_TYPE_ECDSA_SECP256K1_VERIFICATION_KEY_2019 = "EcdsaSecp256k1VerificationKey2019";
4
+ type EcdsaSecp256k1VerificationKey2019 = VerificationMethod & {
5
+ type: typeof VERIFICATION_METHOD_TYPE_ECDSA_SECP256K1_VERIFICATION_KEY_2019;
6
+ };
7
+ /**
8
+ * Get a EcdsaSecp256k1VerificationKey2019 verification method.
9
+ */
10
+ export declare function getEcdsaSecp256k1VerificationKey2019({ key, id, controller, }: {
11
+ id: string;
12
+ key: Key;
13
+ controller: string;
14
+ }): VerificationMethod;
15
+ /**
16
+ * Check whether a verification method is a EcdsaSecp256k1VerificationKey2019 verification method.
17
+ */
18
+ export declare function isEcdsaSecp256k1VerificationKey2019(verificationMethod: VerificationMethod): verificationMethod is EcdsaSecp256k1VerificationKey2019;
19
+ /**
20
+ * Get a key from a EcdsaSecp256k1VerificationKey2019 verification method.
21
+ */
22
+ export declare function getKeyFromEcdsaSecp256k1VerificationKey2019(verificationMethod: EcdsaSecp256k1VerificationKey2019): Key;
23
+ export {};
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getKeyFromEcdsaSecp256k1VerificationKey2019 = exports.isEcdsaSecp256k1VerificationKey2019 = exports.getEcdsaSecp256k1VerificationKey2019 = exports.VERIFICATION_METHOD_TYPE_ECDSA_SECP256K1_VERIFICATION_KEY_2019 = void 0;
4
+ const crypto_1 = require("../../../../crypto");
5
+ const Key_1 = require("../../../../crypto/Key");
6
+ const error_1 = require("../../../../error");
7
+ const VerificationMethod_1 = require("./VerificationMethod");
8
+ exports.VERIFICATION_METHOD_TYPE_ECDSA_SECP256K1_VERIFICATION_KEY_2019 = 'EcdsaSecp256k1VerificationKey2019';
9
+ /**
10
+ * Get a EcdsaSecp256k1VerificationKey2019 verification method.
11
+ */
12
+ function getEcdsaSecp256k1VerificationKey2019({ key, id, controller, }) {
13
+ return new VerificationMethod_1.VerificationMethod({
14
+ id,
15
+ type: exports.VERIFICATION_METHOD_TYPE_ECDSA_SECP256K1_VERIFICATION_KEY_2019,
16
+ controller,
17
+ publicKeyBase58: key.publicKeyBase58,
18
+ });
19
+ }
20
+ exports.getEcdsaSecp256k1VerificationKey2019 = getEcdsaSecp256k1VerificationKey2019;
21
+ /**
22
+ * Check whether a verification method is a EcdsaSecp256k1VerificationKey2019 verification method.
23
+ */
24
+ function isEcdsaSecp256k1VerificationKey2019(verificationMethod) {
25
+ return verificationMethod.type === exports.VERIFICATION_METHOD_TYPE_ECDSA_SECP256K1_VERIFICATION_KEY_2019;
26
+ }
27
+ exports.isEcdsaSecp256k1VerificationKey2019 = isEcdsaSecp256k1VerificationKey2019;
28
+ /**
29
+ * Get a key from a EcdsaSecp256k1VerificationKey2019 verification method.
30
+ */
31
+ function getKeyFromEcdsaSecp256k1VerificationKey2019(verificationMethod) {
32
+ if (!verificationMethod.publicKeyBase58) {
33
+ throw new error_1.CredoError('verification method is missing publicKeyBase58');
34
+ }
35
+ return Key_1.Key.fromPublicKeyBase58(verificationMethod.publicKeyBase58, crypto_1.KeyType.K256);
36
+ }
37
+ exports.getKeyFromEcdsaSecp256k1VerificationKey2019 = getKeyFromEcdsaSecp256k1VerificationKey2019;
38
+ //# sourceMappingURL=EcdsaSecp256k1VerificationKey2019.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EcdsaSecp256k1VerificationKey2019.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.ts"],"names":[],"mappings":";;;AAAA,+CAA4C;AAC5C,gDAA4C;AAC5C,6CAA8C;AAE9C,6DAAyD;AAE5C,QAAA,8DAA8D,GAAG,mCAAmC,CAAA;AAMjH;;GAEG;AACH,SAAgB,oCAAoC,CAAC,EACnD,GAAG,EACH,EAAE,EACF,UAAU,GAKX;IACC,OAAO,IAAI,uCAAkB,CAAC;QAC5B,EAAE;QACF,IAAI,EAAE,sEAA8D;QACpE,UAAU;QACV,eAAe,EAAE,GAAG,CAAC,eAAe;KACrC,CAAC,CAAA;AACJ,CAAC;AAfD,oFAeC;AAED;;GAEG;AACH,SAAgB,mCAAmC,CACjD,kBAAsC;IAEtC,OAAO,kBAAkB,CAAC,IAAI,KAAK,sEAA8D,CAAA;AACnG,CAAC;AAJD,kFAIC;AAED;;GAEG;AACH,SAAgB,2CAA2C,CAAC,kBAAqD;IAC/G,IAAI,CAAC,kBAAkB,CAAC,eAAe,EAAE;QACvC,MAAM,IAAI,kBAAU,CAAC,gDAAgD,CAAC,CAAA;KACvE;IAED,OAAO,SAAG,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,eAAe,EAAE,gBAAO,CAAC,IAAI,CAAC,CAAA;AAClF,CAAC;AAND,kGAMC"}
@@ -0,0 +1,23 @@
1
+ import { Key } from '../../../../crypto/Key';
2
+ import { VerificationMethod } from './VerificationMethod';
3
+ export declare const VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2018 = "Ed25519VerificationKey2018";
4
+ type Ed25519VerificationKey2018 = VerificationMethod & {
5
+ type: typeof VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2018;
6
+ };
7
+ /**
8
+ * Get a Ed25519VerificationKey2018 verification method.
9
+ */
10
+ export declare function getEd25519VerificationKey2018({ key, id, controller }: {
11
+ id: string;
12
+ key: Key;
13
+ controller: string;
14
+ }): VerificationMethod;
15
+ /**
16
+ * Check whether a verification method is a Ed25519VerificationKey2018 verification method.
17
+ */
18
+ export declare function isEd25519VerificationKey2018(verificationMethod: VerificationMethod): verificationMethod is Ed25519VerificationKey2018;
19
+ /**
20
+ * Get a key from a Ed25519VerificationKey2018 verification method.
21
+ */
22
+ export declare function getKeyFromEd25519VerificationKey2018(verificationMethod: Ed25519VerificationKey2018): Key;
23
+ export {};
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getKeyFromEd25519VerificationKey2018 = exports.isEd25519VerificationKey2018 = exports.getEd25519VerificationKey2018 = exports.VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2018 = void 0;
4
+ const crypto_1 = require("../../../../crypto");
5
+ const Key_1 = require("../../../../crypto/Key");
6
+ const error_1 = require("../../../../error");
7
+ const VerificationMethod_1 = require("./VerificationMethod");
8
+ exports.VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2018 = 'Ed25519VerificationKey2018';
9
+ /**
10
+ * Get a Ed25519VerificationKey2018 verification method.
11
+ */
12
+ function getEd25519VerificationKey2018({ key, id, controller }) {
13
+ return new VerificationMethod_1.VerificationMethod({
14
+ id,
15
+ type: exports.VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2018,
16
+ controller,
17
+ publicKeyBase58: key.publicKeyBase58,
18
+ });
19
+ }
20
+ exports.getEd25519VerificationKey2018 = getEd25519VerificationKey2018;
21
+ /**
22
+ * Check whether a verification method is a Ed25519VerificationKey2018 verification method.
23
+ */
24
+ function isEd25519VerificationKey2018(verificationMethod) {
25
+ return verificationMethod.type === exports.VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2018;
26
+ }
27
+ exports.isEd25519VerificationKey2018 = isEd25519VerificationKey2018;
28
+ /**
29
+ * Get a key from a Ed25519VerificationKey2018 verification method.
30
+ */
31
+ function getKeyFromEd25519VerificationKey2018(verificationMethod) {
32
+ if (!verificationMethod.publicKeyBase58) {
33
+ throw new error_1.CredoError('verification method is missing publicKeyBase58');
34
+ }
35
+ return Key_1.Key.fromPublicKeyBase58(verificationMethod.publicKeyBase58, crypto_1.KeyType.Ed25519);
36
+ }
37
+ exports.getKeyFromEd25519VerificationKey2018 = getKeyFromEd25519VerificationKey2018;
38
+ //# sourceMappingURL=Ed25519VerificationKey2018.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Ed25519VerificationKey2018.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.ts"],"names":[],"mappings":";;;AAAA,+CAA4C;AAC5C,gDAA4C;AAC5C,6CAA8C;AAE9C,6DAAyD;AAE5C,QAAA,sDAAsD,GAAG,4BAA4B,CAAA;AAKlG;;GAEG;AACH,SAAgB,6BAA6B,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,UAAU,EAAgD;IACjH,OAAO,IAAI,uCAAkB,CAAC;QAC5B,EAAE;QACF,IAAI,EAAE,8DAAsD;QAC5D,UAAU;QACV,eAAe,EAAE,GAAG,CAAC,eAAe;KACrC,CAAC,CAAA;AACJ,CAAC;AAPD,sEAOC;AAED;;GAEG;AACH,SAAgB,4BAA4B,CAC1C,kBAAsC;IAEtC,OAAO,kBAAkB,CAAC,IAAI,KAAK,8DAAsD,CAAA;AAC3F,CAAC;AAJD,oEAIC;AAED;;GAEG;AACH,SAAgB,oCAAoC,CAAC,kBAA8C;IACjG,IAAI,CAAC,kBAAkB,CAAC,eAAe,EAAE;QACvC,MAAM,IAAI,kBAAU,CAAC,gDAAgD,CAAC,CAAA;KACvE;IAED,OAAO,SAAG,CAAC,mBAAmB,CAAC,kBAAkB,CAAC,eAAe,EAAE,gBAAO,CAAC,OAAO,CAAC,CAAA;AACrF,CAAC;AAND,oFAMC"}
@@ -0,0 +1,23 @@
1
+ import { Key } from '../../../../crypto/Key';
2
+ import { VerificationMethod } from './VerificationMethod';
3
+ export declare const VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2020 = "Ed25519VerificationKey2020";
4
+ type Ed25519VerificationKey2020 = VerificationMethod & {
5
+ type: typeof VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2020;
6
+ };
7
+ /**
8
+ * Get a Ed25519VerificationKey2020 verification method.
9
+ */
10
+ export declare function getEd25519VerificationKey2020({ key, id, controller }: {
11
+ id: string;
12
+ key: Key;
13
+ controller: string;
14
+ }): VerificationMethod;
15
+ /**
16
+ * Check whether a verification method is a Ed25519VerificationKey2020 verification method.
17
+ */
18
+ export declare function isEd25519VerificationKey2020(verificationMethod: VerificationMethod): verificationMethod is Ed25519VerificationKey2020;
19
+ /**
20
+ * Get a key from a Ed25519VerificationKey2020 verification method.
21
+ */
22
+ export declare function getKeyFromEd25519VerificationKey2020(verificationMethod: Ed25519VerificationKey2020): Key;
23
+ export {};
@@ -0,0 +1,42 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getKeyFromEd25519VerificationKey2020 = exports.isEd25519VerificationKey2020 = exports.getEd25519VerificationKey2020 = exports.VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2020 = void 0;
4
+ const crypto_1 = require("../../../../crypto");
5
+ const Key_1 = require("../../../../crypto/Key");
6
+ const error_1 = require("../../../../error");
7
+ const VerificationMethod_1 = require("./VerificationMethod");
8
+ exports.VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2020 = 'Ed25519VerificationKey2020';
9
+ /**
10
+ * Get a Ed25519VerificationKey2020 verification method.
11
+ */
12
+ function getEd25519VerificationKey2020({ key, id, controller }) {
13
+ return new VerificationMethod_1.VerificationMethod({
14
+ id,
15
+ type: exports.VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2020,
16
+ controller,
17
+ publicKeyMultibase: key.fingerprint,
18
+ });
19
+ }
20
+ exports.getEd25519VerificationKey2020 = getEd25519VerificationKey2020;
21
+ /**
22
+ * Check whether a verification method is a Ed25519VerificationKey2020 verification method.
23
+ */
24
+ function isEd25519VerificationKey2020(verificationMethod) {
25
+ return verificationMethod.type === exports.VERIFICATION_METHOD_TYPE_ED25519_VERIFICATION_KEY_2020;
26
+ }
27
+ exports.isEd25519VerificationKey2020 = isEd25519VerificationKey2020;
28
+ /**
29
+ * Get a key from a Ed25519VerificationKey2020 verification method.
30
+ */
31
+ function getKeyFromEd25519VerificationKey2020(verificationMethod) {
32
+ if (!verificationMethod.publicKeyMultibase) {
33
+ throw new error_1.CredoError('verification method is missing publicKeyMultibase');
34
+ }
35
+ const key = Key_1.Key.fromFingerprint(verificationMethod.publicKeyMultibase);
36
+ if (key.keyType !== crypto_1.KeyType.Ed25519) {
37
+ throw new error_1.CredoError(`Verification method publicKeyMultibase is for unexpected key type ${key.keyType}`);
38
+ }
39
+ return key;
40
+ }
41
+ exports.getKeyFromEd25519VerificationKey2020 = getKeyFromEd25519VerificationKey2020;
42
+ //# sourceMappingURL=Ed25519VerificationKey2020.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Ed25519VerificationKey2020.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.ts"],"names":[],"mappings":";;;AAAA,+CAA4C;AAC5C,gDAA4C;AAC5C,6CAA8C;AAE9C,6DAAyD;AAE5C,QAAA,sDAAsD,GAAG,4BAA4B,CAAA;AAKlG;;GAEG;AACH,SAAgB,6BAA6B,CAAC,EAAE,GAAG,EAAE,EAAE,EAAE,UAAU,EAAgD;IACjH,OAAO,IAAI,uCAAkB,CAAC;QAC5B,EAAE;QACF,IAAI,EAAE,8DAAsD;QAC5D,UAAU;QACV,kBAAkB,EAAE,GAAG,CAAC,WAAW;KACpC,CAAC,CAAA;AACJ,CAAC;AAPD,sEAOC;AAED;;GAEG;AACH,SAAgB,4BAA4B,CAC1C,kBAAsC;IAEtC,OAAO,kBAAkB,CAAC,IAAI,KAAK,8DAAsD,CAAA;AAC3F,CAAC;AAJD,oEAIC;AAED;;GAEG;AACH,SAAgB,oCAAoC,CAAC,kBAA8C;IACjG,IAAI,CAAC,kBAAkB,CAAC,kBAAkB,EAAE;QAC1C,MAAM,IAAI,kBAAU,CAAC,mDAAmD,CAAC,CAAA;KAC1E;IAED,MAAM,GAAG,GAAG,SAAG,CAAC,eAAe,CAAC,kBAAkB,CAAC,kBAAkB,CAAC,CAAA;IACtE,IAAI,GAAG,CAAC,OAAO,KAAK,gBAAO,CAAC,OAAO,EAAE;QACnC,MAAM,IAAI,kBAAU,CAAC,qEAAqE,GAAG,CAAC,OAAO,EAAE,CAAC,CAAA;KACzG;IAED,OAAO,GAAG,CAAA;AACZ,CAAC;AAXD,oFAWC"}
@@ -0,0 +1,37 @@
1
+ import type { VerificationMethod } from './VerificationMethod';
2
+ import type { Key } from '../../../../crypto/Key';
3
+ import type { JwkJson } from '../../../../crypto/jose/jwk/Jwk';
4
+ export declare const VERIFICATION_METHOD_TYPE_JSON_WEB_KEY_2020 = "JsonWebKey2020";
5
+ type JwkOrKey = {
6
+ jwk: JwkJson;
7
+ key?: never;
8
+ } | {
9
+ key: Key;
10
+ jwk?: never;
11
+ };
12
+ type GetJsonWebKey2020Options = {
13
+ did: string;
14
+ verificationMethodId?: string;
15
+ } & JwkOrKey;
16
+ /**
17
+ * Get a JsonWebKey2020 verification method.
18
+ */
19
+ export declare function getJsonWebKey2020({ did, key, jwk, verificationMethodId }: GetJsonWebKey2020Options): {
20
+ id: string;
21
+ type: string;
22
+ controller: string;
23
+ publicKeyJwk: JwkJson;
24
+ };
25
+ /**
26
+ * Check whether a verification method is a JsonWebKey2020 verification method.
27
+ */
28
+ export declare function isJsonWebKey2020(verificationMethod: VerificationMethod): verificationMethod is VerificationMethod & {
29
+ type: 'JsonWebKey2020';
30
+ };
31
+ /**
32
+ * Get a key from a JsonWebKey2020 verification method.
33
+ */
34
+ export declare function getKeyFromJsonWebKey2020(verificationMethod: VerificationMethod & {
35
+ type: 'JsonWebKey2020';
36
+ }): Key;
37
+ export {};
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.getKeyFromJsonWebKey2020 = exports.isJsonWebKey2020 = exports.getJsonWebKey2020 = exports.VERIFICATION_METHOD_TYPE_JSON_WEB_KEY_2020 = void 0;
4
+ const jwk_1 = require("../../../../crypto/jose/jwk");
5
+ const error_1 = require("../../../../error");
6
+ exports.VERIFICATION_METHOD_TYPE_JSON_WEB_KEY_2020 = 'JsonWebKey2020';
7
+ /**
8
+ * Get a JsonWebKey2020 verification method.
9
+ */
10
+ function getJsonWebKey2020({ did, key, jwk, verificationMethodId }) {
11
+ if (!verificationMethodId) {
12
+ const k = key !== null && key !== void 0 ? key : (0, jwk_1.getJwkFromJson)(jwk).key;
13
+ verificationMethodId = `${did}#${k.fingerprint}`;
14
+ }
15
+ return {
16
+ id: verificationMethodId,
17
+ type: exports.VERIFICATION_METHOD_TYPE_JSON_WEB_KEY_2020,
18
+ controller: did,
19
+ publicKeyJwk: jwk !== null && jwk !== void 0 ? jwk : (0, jwk_1.getJwkFromKey)(key).toJson(),
20
+ };
21
+ }
22
+ exports.getJsonWebKey2020 = getJsonWebKey2020;
23
+ /**
24
+ * Check whether a verification method is a JsonWebKey2020 verification method.
25
+ */
26
+ function isJsonWebKey2020(verificationMethod) {
27
+ return verificationMethod.type === exports.VERIFICATION_METHOD_TYPE_JSON_WEB_KEY_2020;
28
+ }
29
+ exports.isJsonWebKey2020 = isJsonWebKey2020;
30
+ /**
31
+ * Get a key from a JsonWebKey2020 verification method.
32
+ */
33
+ function getKeyFromJsonWebKey2020(verificationMethod) {
34
+ if (!verificationMethod.publicKeyJwk) {
35
+ throw new error_1.CredoError(`Missing publicKeyJwk on verification method with type ${exports.VERIFICATION_METHOD_TYPE_JSON_WEB_KEY_2020}`);
36
+ }
37
+ return (0, jwk_1.getJwkFromJson)(verificationMethod.publicKeyJwk).key;
38
+ }
39
+ exports.getKeyFromJsonWebKey2020 = getKeyFromJsonWebKey2020;
40
+ //# sourceMappingURL=JsonWebKey2020.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"JsonWebKey2020.js","sourceRoot":"","sources":["../../../../../src/modules/dids/domain/verificationMethod/JsonWebKey2020.ts"],"names":[],"mappings":";;;AAIA,qDAA2E;AAC3E,6CAA8C;AAEjC,QAAA,0CAA0C,GAAG,gBAAgB,CAAA;AAS1E;;GAEG;AACH,SAAgB,iBAAiB,CAAC,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,oBAAoB,EAA4B;IACjG,IAAI,CAAC,oBAAoB,EAAE;QACzB,MAAM,CAAC,GAAG,GAAG,aAAH,GAAG,cAAH,GAAG,GAAI,IAAA,oBAAc,EAAC,GAAG,CAAC,CAAC,GAAG,CAAA;QACxC,oBAAoB,GAAG,GAAG,GAAG,IAAI,CAAC,CAAC,WAAW,EAAE,CAAA;KACjD;IAED,OAAO;QACL,EAAE,EAAE,oBAAoB;QACxB,IAAI,EAAE,kDAA0C;QAChD,UAAU,EAAE,GAAG;QACf,YAAY,EAAE,GAAG,aAAH,GAAG,cAAH,GAAG,GAAI,IAAA,mBAAa,EAAC,GAAG,CAAC,CAAC,MAAM,EAAE;KACjD,CAAA;AACH,CAAC;AAZD,8CAYC;AAED;;GAEG;AACH,SAAgB,gBAAgB,CAC9B,kBAAsC;IAEtC,OAAO,kBAAkB,CAAC,IAAI,KAAK,kDAA0C,CAAA;AAC/E,CAAC;AAJD,4CAIC;AAED;;GAEG;AACH,SAAgB,wBAAwB,CAAC,kBAAmE;IAC1G,IAAI,CAAC,kBAAkB,CAAC,YAAY,EAAE;QACpC,MAAM,IAAI,kBAAU,CAClB,yDAAyD,kDAA0C,EAAE,CACtG,CAAA;KACF;IAED,OAAO,IAAA,oBAAc,EAAC,kBAAkB,CAAC,YAAY,CAAC,CAAC,GAAG,CAAA;AAC5D,CAAC;AARD,4DAQC"}
@@ -0,0 +1,30 @@
1
+ import type { VerificationMethod } from './VerificationMethod';
2
+ import { Key } from '../../../../crypto/Key';
3
+ export declare const VERIFICATION_METHOD_TYPE_MULTIKEY = "Multikey";
4
+ type GetMultikeyOptions = {
5
+ did: string;
6
+ key: Key;
7
+ verificationMethodId?: string;
8
+ };
9
+ /**
10
+ * Get a Multikey verification method.
11
+ */
12
+ export declare function getMultikey({ did, key, verificationMethodId }: GetMultikeyOptions): {
13
+ id: string;
14
+ type: string;
15
+ controller: string;
16
+ publicKeyMultibase: string;
17
+ };
18
+ /**
19
+ * Check whether a verification method is a Multikey verification method.
20
+ */
21
+ export declare function isMultikey(verificationMethod: VerificationMethod): verificationMethod is VerificationMethod & {
22
+ type: 'Multikey';
23
+ };
24
+ /**
25
+ * Get a key from a Multikey verification method.
26
+ */
27
+ export declare function getKeyFromMultikey(verificationMethod: VerificationMethod & {
28
+ type: 'Multikey';
29
+ }): Key;
30
+ export {};