@credo-ts/core 0.6.1-pr-2091-20241119140918 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3799) hide show
  1. package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/assertClassBrand.mjs +10 -0
  2. package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/checkPrivateRedeclaration.mjs +9 -0
  3. package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/classPrivateFieldGet2.mjs +11 -0
  4. package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/classPrivateFieldInitSpec.mjs +11 -0
  5. package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/classPrivateFieldSet2.mjs +11 -0
  6. package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/decorate.mjs +12 -0
  7. package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/decorateMetadata.mjs +9 -0
  8. package/build/_virtual/_@oxc-project_runtime@0.99.0/helpers/decorateParam.mjs +11 -0
  9. package/build/_virtual/rolldown_runtime.mjs +20 -0
  10. package/build/agent/Agent.d.mts +23 -0
  11. package/build/agent/Agent.d.mts.map +1 -0
  12. package/build/agent/Agent.mjs +77 -0
  13. package/build/agent/Agent.mjs.map +1 -0
  14. package/build/agent/AgentConfig.d.mts +23 -0
  15. package/build/agent/AgentConfig.d.mts.map +1 -0
  16. package/build/agent/AgentConfig.mjs +37 -0
  17. package/build/agent/AgentConfig.mjs.map +1 -0
  18. package/build/agent/AgentDependencies.d.mts +16 -0
  19. package/build/agent/AgentDependencies.d.mts.map +1 -0
  20. package/build/agent/AgentModules.d.mts +102 -0
  21. package/build/agent/AgentModules.d.mts.map +1 -0
  22. package/build/agent/AgentModules.mjs +104 -0
  23. package/build/agent/AgentModules.mjs.map +1 -0
  24. package/build/agent/BaseAgent.d.mts +55 -0
  25. package/build/agent/BaseAgent.d.mts.map +1 -0
  26. package/build/agent/BaseAgent.mjs +68 -0
  27. package/build/agent/BaseAgent.mjs.map +1 -0
  28. package/build/agent/EventEmitter.d.mts +21 -0
  29. package/build/agent/EventEmitter.d.mts.map +1 -0
  30. package/build/agent/EventEmitter.mjs +43 -0
  31. package/build/agent/EventEmitter.mjs.map +1 -0
  32. package/build/agent/Events.d.mts +15 -0
  33. package/build/agent/Events.d.mts.map +1 -0
  34. package/build/agent/Events.mjs +14 -0
  35. package/build/agent/Events.mjs.map +1 -0
  36. package/build/agent/context/AgentContext.d.mts +50 -0
  37. package/build/agent/context/AgentContext.d.mts.map +1 -0
  38. package/build/agent/context/AgentContext.mjs +38 -0
  39. package/build/agent/context/AgentContext.mjs.map +1 -0
  40. package/build/agent/context/AgentContextProvider.d.mts +32 -0
  41. package/build/agent/context/AgentContextProvider.d.mts.map +1 -0
  42. package/build/agent/context/DefaultAgentContextProvider.d.mts +24 -0
  43. package/build/agent/context/DefaultAgentContextProvider.d.mts.map +1 -0
  44. package/build/agent/context/DefaultAgentContextProvider.mjs +36 -0
  45. package/build/agent/context/DefaultAgentContextProvider.mjs.map +1 -0
  46. package/build/agent/context/index.d.mts +3 -0
  47. package/build/agent/context/index.mjs +4 -0
  48. package/build/agent/index.d.mts +4 -0
  49. package/build/agent/index.mjs +5 -0
  50. package/build/constants.d.mts +13 -0
  51. package/build/constants.d.mts.map +1 -0
  52. package/build/constants.mjs +16 -0
  53. package/build/constants.mjs.map +1 -0
  54. package/build/crypto/JwsService.d.mts +82 -0
  55. package/build/crypto/JwsService.d.mts.map +1 -0
  56. package/build/crypto/JwsService.mjs +221 -0
  57. package/build/crypto/JwsService.mjs.map +1 -0
  58. package/build/crypto/JwsSigner.d.mts +29 -0
  59. package/build/crypto/JwsSigner.d.mts.map +1 -0
  60. package/build/crypto/JwsTypes.d.mts +58 -0
  61. package/build/crypto/JwsTypes.d.mts.map +1 -0
  62. package/build/crypto/JwsTypes.mjs +10 -0
  63. package/build/crypto/JwsTypes.mjs.map +1 -0
  64. package/build/crypto/KmsKeyPair.mjs +83 -0
  65. package/build/crypto/KmsKeyPair.mjs.map +1 -0
  66. package/build/crypto/hashes/Hasher.d.mts +10 -0
  67. package/build/crypto/hashes/Hasher.d.mts.map +1 -0
  68. package/build/crypto/hashes/Hasher.mjs +28 -0
  69. package/build/crypto/hashes/Hasher.mjs.map +1 -0
  70. package/build/crypto/hashes/IHash.d.mts +9 -0
  71. package/build/crypto/hashes/IHash.d.mts.map +1 -0
  72. package/build/crypto/hashes/Sha1.d.mts +10 -0
  73. package/build/crypto/hashes/Sha1.d.mts.map +1 -0
  74. package/build/crypto/hashes/Sha1.mjs +14 -0
  75. package/build/crypto/hashes/Sha1.mjs.map +1 -0
  76. package/build/crypto/hashes/Sha256.d.mts +10 -0
  77. package/build/crypto/hashes/Sha256.d.mts.map +1 -0
  78. package/build/crypto/hashes/Sha256.mjs +14 -0
  79. package/build/crypto/hashes/Sha256.mjs.map +1 -0
  80. package/build/crypto/hashes/Sha384.d.mts +10 -0
  81. package/build/crypto/hashes/Sha384.d.mts.map +1 -0
  82. package/build/crypto/hashes/Sha384.mjs +14 -0
  83. package/build/crypto/hashes/Sha384.mjs.map +1 -0
  84. package/build/crypto/hashes/Sha512.d.mts +10 -0
  85. package/build/crypto/hashes/Sha512.d.mts.map +1 -0
  86. package/build/crypto/hashes/Sha512.mjs +14 -0
  87. package/build/crypto/hashes/Sha512.mjs.map +1 -0
  88. package/build/crypto/hashes/index.d.mts +5 -0
  89. package/build/crypto/hashes/index.mjs +7 -0
  90. package/build/crypto/index.d.mts +17 -0
  91. package/build/crypto/index.mjs +16 -0
  92. package/build/crypto/jose/index.d.mts +3 -0
  93. package/build/crypto/jose/index.mjs +5 -0
  94. package/build/crypto/jose/jwt/Jwt.d.mts +29 -0
  95. package/build/crypto/jose/jwt/Jwt.d.mts.map +1 -0
  96. package/build/crypto/jose/jwt/Jwt.mjs +38 -0
  97. package/build/crypto/jose/jwt/Jwt.mjs.map +1 -0
  98. package/build/crypto/jose/jwt/JwtPayload.d.mts +105 -0
  99. package/build/crypto/jose/jwt/JwtPayload.d.mts.map +1 -0
  100. package/build/crypto/jose/jwt/JwtPayload.mjs +87 -0
  101. package/build/crypto/jose/jwt/JwtPayload.mjs.map +1 -0
  102. package/build/crypto/jose/jwt/index.d.mts +2 -0
  103. package/build/crypto/jose/jwt/index.mjs +4 -0
  104. package/build/crypto/webcrypto/CredoSubtle.d.mts +10 -0
  105. package/build/crypto/webcrypto/CredoSubtle.d.mts.map +1 -0
  106. package/build/crypto/webcrypto/CredoSubtle.mjs +23 -0
  107. package/build/crypto/webcrypto/CredoSubtle.mjs.map +1 -0
  108. package/build/crypto/webcrypto/CredoWalletWebCrypto.d.mts +42 -0
  109. package/build/crypto/webcrypto/CredoWalletWebCrypto.d.mts.map +1 -0
  110. package/build/crypto/webcrypto/CredoWalletWebCrypto.mjs +85 -0
  111. package/build/crypto/webcrypto/CredoWalletWebCrypto.mjs.map +1 -0
  112. package/build/crypto/webcrypto/CredoWebCrypto.d.mts +16 -0
  113. package/build/crypto/webcrypto/CredoWebCrypto.d.mts.map +1 -0
  114. package/build/crypto/webcrypto/CredoWebCrypto.mjs +26 -0
  115. package/build/crypto/webcrypto/CredoWebCrypto.mjs.map +1 -0
  116. package/build/crypto/webcrypto/CredoWebCryptoError.mjs +11 -0
  117. package/build/crypto/webcrypto/CredoWebCryptoError.mjs.map +1 -0
  118. package/build/crypto/webcrypto/CredoWebCryptoKey.d.mts +17 -0
  119. package/build/crypto/webcrypto/CredoWebCryptoKey.d.mts.map +1 -0
  120. package/build/crypto/webcrypto/CredoWebCryptoKey.mjs +20 -0
  121. package/build/crypto/webcrypto/CredoWebCryptoKey.mjs.map +1 -0
  122. package/build/crypto/webcrypto/algorithmIdentifiers.mjs +62 -0
  123. package/build/crypto/webcrypto/algorithmIdentifiers.mjs.map +1 -0
  124. package/build/crypto/webcrypto/index.d.mts +5 -0
  125. package/build/crypto/webcrypto/index.mjs +6 -0
  126. package/build/crypto/webcrypto/providers/CredoEcdsaProvider.mjs +40 -0
  127. package/build/crypto/webcrypto/providers/CredoEcdsaProvider.mjs.map +1 -0
  128. package/build/crypto/webcrypto/providers/CredoEd25519Provider.mjs +40 -0
  129. package/build/crypto/webcrypto/providers/CredoEd25519Provider.mjs.map +1 -0
  130. package/build/crypto/webcrypto/providers/CredoSha1Provider.mjs +24 -0
  131. package/build/crypto/webcrypto/providers/CredoSha1Provider.mjs.map +1 -0
  132. package/build/crypto/webcrypto/providers/CredoSha256Provider.mjs +24 -0
  133. package/build/crypto/webcrypto/providers/CredoSha256Provider.mjs.map +1 -0
  134. package/build/crypto/webcrypto/providers/index.mjs +5 -0
  135. package/build/crypto/webcrypto/types.d.mts +62 -0
  136. package/build/crypto/webcrypto/types.d.mts.map +1 -0
  137. package/build/crypto/webcrypto/types.mjs +68 -0
  138. package/build/crypto/webcrypto/types.mjs.map +1 -0
  139. package/build/crypto/webcrypto/utils/index.d.mts +1 -0
  140. package/build/crypto/webcrypto/utils/index.mjs +3 -0
  141. package/build/crypto/webcrypto/utils/keyAlgorithmConversion.d.mts +10 -0
  142. package/build/crypto/webcrypto/utils/keyAlgorithmConversion.d.mts.map +1 -0
  143. package/build/crypto/webcrypto/utils/keyAlgorithmConversion.mjs +139 -0
  144. package/build/crypto/webcrypto/utils/keyAlgorithmConversion.mjs.map +1 -0
  145. package/build/error/BaseError.d.mts +15 -0
  146. package/build/error/BaseError.d.mts.map +1 -0
  147. package/build/error/BaseError.mjs +69 -0
  148. package/build/error/BaseError.mjs.map +1 -0
  149. package/build/error/ClassValidationError.d.mts +20 -0
  150. package/build/error/ClassValidationError.d.mts.map +1 -0
  151. package/build/error/ClassValidationError.mjs +20 -0
  152. package/build/error/ClassValidationError.mjs.map +1 -0
  153. package/build/error/CredoError.d.mts +18 -0
  154. package/build/error/CredoError.d.mts.map +1 -0
  155. package/build/error/CredoError.mjs +19 -0
  156. package/build/error/CredoError.mjs.map +1 -0
  157. package/build/error/RecordDuplicateError.d.mts +15 -0
  158. package/build/error/RecordDuplicateError.d.mts.map +1 -0
  159. package/build/error/RecordDuplicateError.mjs +14 -0
  160. package/build/error/RecordDuplicateError.mjs.map +1 -0
  161. package/build/error/RecordNotFoundError.d.mts +15 -0
  162. package/build/error/RecordNotFoundError.d.mts.map +1 -0
  163. package/build/error/RecordNotFoundError.mjs +14 -0
  164. package/build/error/RecordNotFoundError.mjs.map +1 -0
  165. package/build/error/ValidationErrorUtils.mjs +13 -0
  166. package/build/error/ValidationErrorUtils.mjs.map +1 -0
  167. package/build/error/ZodValidationError.d.mts +11 -0
  168. package/build/error/ZodValidationError.d.mts.map +1 -0
  169. package/build/error/ZodValidationError.mjs +18 -0
  170. package/build/error/ZodValidationError.mjs.map +1 -0
  171. package/build/error/index.d.mts +5 -0
  172. package/build/error/index.mjs +7 -0
  173. package/build/index.d.mts +274 -0
  174. package/build/index.d.mts.map +1 -0
  175. package/build/index.mjs +242 -0
  176. package/build/index.mjs.map +1 -0
  177. package/build/logger/BaseLogger.d.mts +18 -0
  178. package/build/logger/BaseLogger.d.mts.map +1 -0
  179. package/build/logger/BaseLogger.mjs +17 -0
  180. package/build/logger/BaseLogger.mjs.map +1 -0
  181. package/build/logger/ConsoleLogger.d.mts +18 -0
  182. package/build/logger/ConsoleLogger.d.mts.map +1 -0
  183. package/build/logger/ConsoleLogger.mjs +53 -0
  184. package/build/logger/ConsoleLogger.mjs.map +1 -0
  185. package/build/logger/Logger.d.mts +24 -0
  186. package/build/logger/Logger.d.mts.map +1 -0
  187. package/build/logger/Logger.mjs +18 -0
  188. package/build/logger/Logger.mjs.map +1 -0
  189. package/build/logger/replaceError.d.mts +5 -0
  190. package/build/logger/replaceError.d.mts.map +1 -0
  191. package/build/logger/replaceError.mjs +21 -0
  192. package/build/logger/replaceError.mjs.map +1 -0
  193. package/build/modules/cache/Cache.d.mts +12 -0
  194. package/build/modules/cache/Cache.d.mts.map +1 -0
  195. package/build/modules/cache/CacheModule.d.mts +15 -0
  196. package/build/modules/cache/CacheModule.d.mts.map +1 -0
  197. package/build/modules/cache/CacheModule.mjs +22 -0
  198. package/build/modules/cache/CacheModule.mjs.map +1 -0
  199. package/build/modules/cache/CacheModuleConfig.d.mts +41 -0
  200. package/build/modules/cache/CacheModuleConfig.d.mts.map +1 -0
  201. package/build/modules/cache/CacheModuleConfig.mjs +24 -0
  202. package/build/modules/cache/CacheModuleConfig.mjs.map +1 -0
  203. package/build/modules/cache/CachedStorageService.d.mts +22 -0
  204. package/build/modules/cache/CachedStorageService.d.mts.map +1 -0
  205. package/build/modules/cache/CachedStorageService.mjs +74 -0
  206. package/build/modules/cache/CachedStorageService.mjs.map +1 -0
  207. package/build/modules/cache/InMemoryLruCache.d.mts +29 -0
  208. package/build/modules/cache/InMemoryLruCache.d.mts.map +1 -0
  209. package/build/modules/cache/InMemoryLruCache.mjs +50 -0
  210. package/build/modules/cache/InMemoryLruCache.mjs.map +1 -0
  211. package/build/modules/cache/index.d.mts +8 -0
  212. package/build/modules/cache/index.mjs +9 -0
  213. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.d.mts +27 -0
  214. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.d.mts.map +1 -0
  215. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.mjs +31 -0
  216. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.mjs.map +1 -0
  217. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.mjs +27 -0
  218. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.mjs.map +1 -0
  219. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.d.mts +42 -0
  220. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.d.mts.map +1 -0
  221. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.mjs +112 -0
  222. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.mjs.map +1 -0
  223. package/build/modules/cache/singleContextLruCache/index.d.mts +2 -0
  224. package/build/modules/cache/singleContextLruCache/index.mjs +4 -0
  225. package/build/modules/dcql/DcqlError.d.mts +17 -0
  226. package/build/modules/dcql/DcqlError.d.mts.map +1 -0
  227. package/build/modules/dcql/DcqlError.mjs +18 -0
  228. package/build/modules/dcql/DcqlError.mjs.map +1 -0
  229. package/build/modules/dcql/DcqlModule.d.mts +17 -0
  230. package/build/modules/dcql/DcqlModule.d.mts.map +1 -0
  231. package/build/modules/dcql/DcqlModule.mjs +20 -0
  232. package/build/modules/dcql/DcqlModule.mjs.map +1 -0
  233. package/build/modules/dcql/DcqlService.d.mts +1998 -0
  234. package/build/modules/dcql/DcqlService.d.mts.map +1 -0
  235. package/build/modules/dcql/DcqlService.mjs +522 -0
  236. package/build/modules/dcql/DcqlService.mjs.map +1 -0
  237. package/build/modules/dcql/index.d.mts +7 -0
  238. package/build/modules/dcql/index.mjs +8 -0
  239. package/build/modules/dcql/models/DcqlCredentialsForRequest.d.mts +58 -0
  240. package/build/modules/dcql/models/DcqlCredentialsForRequest.d.mts.map +1 -0
  241. package/build/modules/dcql/models/DcqlCredentialsForRequest.mjs +3 -0
  242. package/build/modules/dcql/models/index.d.mts +42 -0
  243. package/build/modules/dcql/models/index.d.mts.map +1 -0
  244. package/build/modules/dcql/models/index.mjs +3 -0
  245. package/build/modules/dcql/utils/DcqlPresentationsToCreate.d.mts +60 -0
  246. package/build/modules/dcql/utils/DcqlPresentationsToCreate.d.mts.map +1 -0
  247. package/build/modules/dcql/utils/DcqlPresentationsToCreate.mjs +63 -0
  248. package/build/modules/dcql/utils/DcqlPresentationsToCreate.mjs.map +1 -0
  249. package/build/modules/dcql/utils/index.d.mts +1 -0
  250. package/build/modules/dcql/utils/index.mjs +3 -0
  251. package/build/modules/dids/DidsApi.d.mts +103 -0
  252. package/build/modules/dids/DidsApi.d.mts.map +1 -0
  253. package/build/modules/dids/DidsApi.mjs +164 -0
  254. package/build/modules/dids/DidsApi.mjs.map +1 -0
  255. package/build/modules/dids/DidsApiOptions.d.mts +41 -0
  256. package/build/modules/dids/DidsApiOptions.d.mts.map +1 -0
  257. package/build/modules/dids/DidsModule.d.mts +19 -0
  258. package/build/modules/dids/DidsModule.d.mts.map +1 -0
  259. package/build/modules/dids/DidsModule.mjs +30 -0
  260. package/build/modules/dids/DidsModule.mjs.map +1 -0
  261. package/build/modules/dids/DidsModuleConfig.d.mts +48 -0
  262. package/build/modules/dids/DidsModuleConfig.d.mts.map +1 -0
  263. package/build/modules/dids/DidsModuleConfig.mjs +54 -0
  264. package/build/modules/dids/DidsModuleConfig.mjs.map +1 -0
  265. package/build/modules/dids/domain/DidDocument.d.mts +87 -0
  266. package/build/modules/dids/domain/DidDocument.d.mts.map +1 -0
  267. package/build/modules/dids/domain/DidDocument.mjs +253 -0
  268. package/build/modules/dids/domain/DidDocument.mjs.map +1 -0
  269. package/build/modules/dids/domain/DidDocumentBuilder.d.mts +24 -0
  270. package/build/modules/dids/domain/DidDocumentBuilder.d.mts.map +1 -0
  271. package/build/modules/dids/domain/DidDocumentBuilder.mjs +73 -0
  272. package/build/modules/dids/domain/DidDocumentBuilder.mjs.map +1 -0
  273. package/build/modules/dids/domain/DidDocumentRole.d.mts +8 -0
  274. package/build/modules/dids/domain/DidDocumentRole.d.mts.map +1 -0
  275. package/build/modules/dids/domain/DidDocumentRole.mjs +12 -0
  276. package/build/modules/dids/domain/DidDocumentRole.mjs.map +1 -0
  277. package/build/modules/dids/domain/DidRegistrar.d.mts +14 -0
  278. package/build/modules/dids/domain/DidRegistrar.d.mts.map +1 -0
  279. package/build/modules/dids/domain/DidResolver.d.mts +21 -0
  280. package/build/modules/dids/domain/DidResolver.d.mts.map +1 -0
  281. package/build/modules/dids/domain/didDocumentKey.d.mts +9 -0
  282. package/build/modules/dids/domain/didDocumentKey.d.mts.map +1 -0
  283. package/build/modules/dids/domain/didDocumentKey.mjs +12 -0
  284. package/build/modules/dids/domain/didDocumentKey.mjs.map +1 -0
  285. package/build/modules/dids/domain/index.d.mts +27 -0
  286. package/build/modules/dids/domain/index.mjs +27 -0
  287. package/build/modules/dids/domain/key-type/ed25519.d.mts +10 -0
  288. package/build/modules/dids/domain/key-type/ed25519.d.mts.map +1 -0
  289. package/build/modules/dids/domain/key-type/ed25519.mjs +37 -0
  290. package/build/modules/dids/domain/key-type/ed25519.mjs.map +1 -0
  291. package/build/modules/dids/domain/key-type/index.d.mts +3 -0
  292. package/build/modules/dids/domain/key-type/index.mjs +5 -0
  293. package/build/modules/dids/domain/key-type/keyDidJsonWebKey.mjs +31 -0
  294. package/build/modules/dids/domain/key-type/keyDidJsonWebKey.mjs.map +1 -0
  295. package/build/modules/dids/domain/key-type/keyDidMapping.d.mts +17 -0
  296. package/build/modules/dids/domain/key-type/keyDidMapping.d.mts.map +1 -0
  297. package/build/modules/dids/domain/key-type/keyDidMapping.mjs +46 -0
  298. package/build/modules/dids/domain/key-type/keyDidMapping.mjs.map +1 -0
  299. package/build/modules/dids/domain/key-type/secp256k1.mjs +32 -0
  300. package/build/modules/dids/domain/key-type/secp256k1.mjs.map +1 -0
  301. package/build/modules/dids/domain/key-type/x25519.d.mts +9 -0
  302. package/build/modules/dids/domain/key-type/x25519.d.mts.map +1 -0
  303. package/build/modules/dids/domain/key-type/x25519.mjs +33 -0
  304. package/build/modules/dids/domain/key-type/x25519.mjs.map +1 -0
  305. package/build/modules/dids/domain/keyDidDocument.mjs +82 -0
  306. package/build/modules/dids/domain/keyDidDocument.mjs.map +1 -0
  307. package/build/modules/dids/domain/parse.d.mts +8 -0
  308. package/build/modules/dids/domain/parse.d.mts.map +1 -0
  309. package/build/modules/dids/domain/parse.mjs +19 -0
  310. package/build/modules/dids/domain/parse.mjs.map +1 -0
  311. package/build/modules/dids/domain/service/DidCommV1Service.d.mts +23 -0
  312. package/build/modules/dids/domain/service/DidCommV1Service.d.mts.map +1 -0
  313. package/build/modules/dids/domain/service/DidCommV1Service.mjs +54 -0
  314. package/build/modules/dids/domain/service/DidCommV1Service.mjs.map +1 -0
  315. package/build/modules/dids/domain/service/DidCommV2Service.d.mts +29 -0
  316. package/build/modules/dids/domain/service/DidCommV2Service.d.mts.map +1 -0
  317. package/build/modules/dids/domain/service/DidCommV2Service.mjs +64 -0
  318. package/build/modules/dids/domain/service/DidCommV2Service.mjs.map +1 -0
  319. package/build/modules/dids/domain/service/DidDocumentService.d.mts +17 -0
  320. package/build/modules/dids/domain/service/DidDocumentService.d.mts.map +1 -0
  321. package/build/modules/dids/domain/service/DidDocumentService.mjs +36 -0
  322. package/build/modules/dids/domain/service/DidDocumentService.mjs.map +1 -0
  323. package/build/modules/dids/domain/service/IndyAgentService.d.mts +21 -0
  324. package/build/modules/dids/domain/service/IndyAgentService.d.mts.map +1 -0
  325. package/build/modules/dids/domain/service/IndyAgentService.mjs +48 -0
  326. package/build/modules/dids/domain/service/IndyAgentService.mjs.map +1 -0
  327. package/build/modules/dids/domain/service/LegacyDidCommV2Service.d.mts +21 -0
  328. package/build/modules/dids/domain/service/LegacyDidCommV2Service.d.mts.map +1 -0
  329. package/build/modules/dids/domain/service/LegacyDidCommV2Service.mjs +54 -0
  330. package/build/modules/dids/domain/service/LegacyDidCommV2Service.mjs.map +1 -0
  331. package/build/modules/dids/domain/service/ServiceTransformer.d.mts +17 -0
  332. package/build/modules/dids/domain/service/ServiceTransformer.d.mts.map +1 -0
  333. package/build/modules/dids/domain/service/ServiceTransformer.mjs +40 -0
  334. package/build/modules/dids/domain/service/ServiceTransformer.mjs.map +1 -0
  335. package/build/modules/dids/domain/service/index.d.mts +6 -0
  336. package/build/modules/dids/domain/service/index.mjs +8 -0
  337. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.d.mts +33 -0
  338. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.d.mts.map +1 -0
  339. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.mjs +44 -0
  340. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.mjs.map +1 -0
  341. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.d.mts +36 -0
  342. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.d.mts.map +1 -0
  343. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.mjs +47 -0
  344. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.mjs.map +1 -0
  345. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.d.mts +39 -0
  346. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.d.mts.map +1 -0
  347. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.mjs +42 -0
  348. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.mjs.map +1 -0
  349. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.d.mts +155 -0
  350. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.d.mts.map +1 -0
  351. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.mjs +37 -0
  352. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.mjs.map +1 -0
  353. package/build/modules/dids/domain/verificationMethod/Multikey.d.mts +46 -0
  354. package/build/modules/dids/domain/verificationMethod/Multikey.d.mts.map +1 -0
  355. package/build/modules/dids/domain/verificationMethod/Multikey.mjs +38 -0
  356. package/build/modules/dids/domain/verificationMethod/Multikey.mjs.map +1 -0
  357. package/build/modules/dids/domain/verificationMethod/VerificationMethod.d.mts +34 -0
  358. package/build/modules/dids/domain/verificationMethod/VerificationMethod.d.mts.map +1 -0
  359. package/build/modules/dids/domain/verificationMethod/VerificationMethod.mjs +66 -0
  360. package/build/modules/dids/domain/verificationMethod/VerificationMethod.mjs.map +1 -0
  361. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.d.mts +20 -0
  362. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.d.mts.map +1 -0
  363. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.mjs +43 -0
  364. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.mjs.map +1 -0
  365. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.d.mts +33 -0
  366. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.d.mts.map +1 -0
  367. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.mjs +44 -0
  368. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.mjs.map +1 -0
  369. package/build/modules/dids/domain/verificationMethod/index.d.mts +8 -0
  370. package/build/modules/dids/domain/verificationMethod/index.mjs +10 -0
  371. package/build/modules/dids/findMatchingEd25519Key.d.mts +22 -0
  372. package/build/modules/dids/findMatchingEd25519Key.d.mts.map +1 -0
  373. package/build/modules/dids/findMatchingEd25519Key.mjs +40 -0
  374. package/build/modules/dids/findMatchingEd25519Key.mjs.map +1 -0
  375. package/build/modules/dids/helpers.d.mts +13 -0
  376. package/build/modules/dids/helpers.d.mts.map +1 -0
  377. package/build/modules/dids/helpers.mjs +44 -0
  378. package/build/modules/dids/helpers.mjs.map +1 -0
  379. package/build/modules/dids/index.d.mts +49 -0
  380. package/build/modules/dids/index.mjs +47 -0
  381. package/build/modules/dids/methods/index.d.mts +15 -0
  382. package/build/modules/dids/methods/index.mjs +17 -0
  383. package/build/modules/dids/methods/jwk/DidJwk.d.mts +145 -0
  384. package/build/modules/dids/methods/jwk/DidJwk.d.mts.map +1 -0
  385. package/build/modules/dids/methods/jwk/DidJwk.mjs +47 -0
  386. package/build/modules/dids/methods/jwk/DidJwk.mjs.map +1 -0
  387. package/build/modules/dids/methods/jwk/JwkDidRegistrar.d.mts +35 -0
  388. package/build/modules/dids/methods/jwk/JwkDidRegistrar.d.mts.map +1 -0
  389. package/build/modules/dids/methods/jwk/JwkDidRegistrar.mjs +109 -0
  390. package/build/modules/dids/methods/jwk/JwkDidRegistrar.mjs.map +1 -0
  391. package/build/modules/dids/methods/jwk/JwkDidResolver.d.mts +22 -0
  392. package/build/modules/dids/methods/jwk/JwkDidResolver.d.mts.map +1 -0
  393. package/build/modules/dids/methods/jwk/JwkDidResolver.mjs +35 -0
  394. package/build/modules/dids/methods/jwk/JwkDidResolver.mjs.map +1 -0
  395. package/build/modules/dids/methods/jwk/didJwkDidDocument.mjs +26 -0
  396. package/build/modules/dids/methods/jwk/didJwkDidDocument.mjs.map +1 -0
  397. package/build/modules/dids/methods/jwk/index.d.mts +3 -0
  398. package/build/modules/dids/methods/jwk/index.mjs +5 -0
  399. package/build/modules/dids/methods/key/DidKey.d.mts +16 -0
  400. package/build/modules/dids/methods/key/DidKey.d.mts.map +1 -0
  401. package/build/modules/dids/methods/key/DidKey.mjs +27 -0
  402. package/build/modules/dids/methods/key/DidKey.mjs.map +1 -0
  403. package/build/modules/dids/methods/key/KeyDidRegistrar.d.mts +35 -0
  404. package/build/modules/dids/methods/key/KeyDidRegistrar.d.mts.map +1 -0
  405. package/build/modules/dids/methods/key/KeyDidRegistrar.mjs +103 -0
  406. package/build/modules/dids/methods/key/KeyDidRegistrar.mjs.map +1 -0
  407. package/build/modules/dids/methods/key/KeyDidResolver.d.mts +22 -0
  408. package/build/modules/dids/methods/key/KeyDidResolver.d.mts.map +1 -0
  409. package/build/modules/dids/methods/key/KeyDidResolver.mjs +35 -0
  410. package/build/modules/dids/methods/key/KeyDidResolver.mjs.map +1 -0
  411. package/build/modules/dids/methods/key/index.d.mts +3 -0
  412. package/build/modules/dids/methods/key/index.mjs +5 -0
  413. package/build/modules/dids/methods/peer/PeerDidRegistrar.d.mts +86 -0
  414. package/build/modules/dids/methods/peer/PeerDidRegistrar.d.mts.map +1 -0
  415. package/build/modules/dids/methods/peer/PeerDidRegistrar.mjs +176 -0
  416. package/build/modules/dids/methods/peer/PeerDidRegistrar.mjs.map +1 -0
  417. package/build/modules/dids/methods/peer/PeerDidResolver.d.mts +22 -0
  418. package/build/modules/dids/methods/peer/PeerDidResolver.d.mts.map +1 -0
  419. package/build/modules/dids/methods/peer/PeerDidResolver.mjs +59 -0
  420. package/build/modules/dids/methods/peer/PeerDidResolver.mjs.map +1 -0
  421. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.d.mts +13 -0
  422. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.d.mts.map +1 -0
  423. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.mjs +73 -0
  424. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.mjs.map +1 -0
  425. package/build/modules/dids/methods/peer/didPeer.d.mts +19 -0
  426. package/build/modules/dids/methods/peer/didPeer.d.mts.map +1 -0
  427. package/build/modules/dids/methods/peer/didPeer.mjs +36 -0
  428. package/build/modules/dids/methods/peer/didPeer.mjs.map +1 -0
  429. package/build/modules/dids/methods/peer/index.d.mts +4 -0
  430. package/build/modules/dids/methods/peer/index.mjs +6 -0
  431. package/build/modules/dids/methods/peer/peerDidNumAlgo0.mjs +25 -0
  432. package/build/modules/dids/methods/peer/peerDidNumAlgo0.mjs.map +1 -0
  433. package/build/modules/dids/methods/peer/peerDidNumAlgo1.d.mts +5 -0
  434. package/build/modules/dids/methods/peer/peerDidNumAlgo1.d.mts.map +1 -0
  435. package/build/modules/dids/methods/peer/peerDidNumAlgo1.mjs +19 -0
  436. package/build/modules/dids/methods/peer/peerDidNumAlgo1.mjs.map +1 -0
  437. package/build/modules/dids/methods/peer/peerDidNumAlgo2.d.mts +8 -0
  438. package/build/modules/dids/methods/peer/peerDidNumAlgo2.d.mts.map +1 -0
  439. package/build/modules/dids/methods/peer/peerDidNumAlgo2.mjs +152 -0
  440. package/build/modules/dids/methods/peer/peerDidNumAlgo2.mjs.map +1 -0
  441. package/build/modules/dids/methods/peer/peerDidNumAlgo4.d.mts +11 -0
  442. package/build/modules/dids/methods/peer/peerDidNumAlgo4.d.mts.map +1 -0
  443. package/build/modules/dids/methods/peer/peerDidNumAlgo4.mjs +79 -0
  444. package/build/modules/dids/methods/peer/peerDidNumAlgo4.mjs.map +1 -0
  445. package/build/modules/dids/methods/web/WebDidResolver.d.mts +18 -0
  446. package/build/modules/dids/methods/web/WebDidResolver.d.mts.map +1 -0
  447. package/build/modules/dids/methods/web/WebDidResolver.mjs +32 -0
  448. package/build/modules/dids/methods/web/WebDidResolver.mjs.map +1 -0
  449. package/build/modules/dids/methods/web/index.d.mts +1 -0
  450. package/build/modules/dids/methods/web/index.mjs +3 -0
  451. package/build/modules/dids/repository/DidRecord.d.mts +58 -0
  452. package/build/modules/dids/repository/DidRecord.d.mts.map +1 -0
  453. package/build/modules/dids/repository/DidRecord.mjs +55 -0
  454. package/build/modules/dids/repository/DidRecord.mjs.map +1 -0
  455. package/build/modules/dids/repository/DidRepository.d.mts +59 -0
  456. package/build/modules/dids/repository/DidRepository.d.mts.map +1 -0
  457. package/build/modules/dids/repository/DidRepository.mjs +95 -0
  458. package/build/modules/dids/repository/DidRepository.mjs.map +1 -0
  459. package/build/modules/dids/repository/didRecordMetadataTypes.d.mts +13 -0
  460. package/build/modules/dids/repository/didRecordMetadataTypes.d.mts.map +1 -0
  461. package/build/modules/dids/repository/didRecordMetadataTypes.mjs +11 -0
  462. package/build/modules/dids/repository/didRecordMetadataTypes.mjs.map +1 -0
  463. package/build/modules/dids/repository/index.d.mts +2 -0
  464. package/build/modules/dids/repository/index.mjs +4 -0
  465. package/build/modules/dids/services/DidRegistrarService.d.mts +25 -0
  466. package/build/modules/dids/services/DidRegistrarService.d.mts.map +1 -0
  467. package/build/modules/dids/services/DidRegistrarService.mjs +135 -0
  468. package/build/modules/dids/services/DidRegistrarService.mjs.map +1 -0
  469. package/build/modules/dids/services/DidResolverService.d.mts +33 -0
  470. package/build/modules/dids/services/DidResolverService.d.mts.map +1 -0
  471. package/build/modules/dids/services/DidResolverService.mjs +129 -0
  472. package/build/modules/dids/services/DidResolverService.mjs.map +1 -0
  473. package/build/modules/dids/services/index.d.mts +2 -0
  474. package/build/modules/dids/services/index.mjs +4 -0
  475. package/build/modules/dids/types.d.mts +124 -0
  476. package/build/modules/dids/types.d.mts.map +1 -0
  477. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.d.mts +17 -0
  478. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.d.mts.map +1 -0
  479. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.mjs +16 -0
  480. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.mjs.map +1 -0
  481. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.d.mts +17 -0
  482. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.d.mts.map +1 -0
  483. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.mjs +20 -0
  484. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.mjs.map +1 -0
  485. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.d.mts +83 -0
  486. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.d.mts.map +1 -0
  487. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.mjs +351 -0
  488. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.mjs.map +1 -0
  489. package/build/modules/dif-presentation-exchange/index.d.mts +7 -0
  490. package/build/modules/dif-presentation-exchange/index.mjs +8 -0
  491. package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.d.mts +134 -0
  492. package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.d.mts.map +1 -0
  493. package/build/modules/dif-presentation-exchange/models/index.d.mts +24 -0
  494. package/build/modules/dif-presentation-exchange/models/index.d.mts.map +1 -0
  495. package/build/modules/dif-presentation-exchange/models/index.mjs +5 -0
  496. package/build/modules/dif-presentation-exchange/utils/credentialSelection.d.mts +5 -0
  497. package/build/modules/dif-presentation-exchange/utils/credentialSelection.mjs +195 -0
  498. package/build/modules/dif-presentation-exchange/utils/credentialSelection.mjs.map +1 -0
  499. package/build/modules/dif-presentation-exchange/utils/index.d.mts +4 -0
  500. package/build/modules/dif-presentation-exchange/utils/index.mjs +6 -0
  501. package/build/modules/dif-presentation-exchange/utils/presentationSelection.d.mts +40 -0
  502. package/build/modules/dif-presentation-exchange/utils/presentationSelection.d.mts.map +1 -0
  503. package/build/modules/dif-presentation-exchange/utils/presentationSelection.mjs +59 -0
  504. package/build/modules/dif-presentation-exchange/utils/presentationSelection.mjs.map +1 -0
  505. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.d.mts +5 -0
  506. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.mjs +51 -0
  507. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.mjs.map +1 -0
  508. package/build/modules/dif-presentation-exchange/utils/transform.d.mts +7 -0
  509. package/build/modules/dif-presentation-exchange/utils/transform.mjs +31 -0
  510. package/build/modules/dif-presentation-exchange/utils/transform.mjs.map +1 -0
  511. package/build/modules/generic-records/GenericRecordsApi.d.mts +31 -0
  512. package/build/modules/generic-records/GenericRecordsApi.d.mts.map +1 -0
  513. package/build/modules/generic-records/GenericRecordsApi.mjs +85 -0
  514. package/build/modules/generic-records/GenericRecordsApi.mjs.map +1 -0
  515. package/build/modules/generic-records/GenericRecordsModule.d.mts +16 -0
  516. package/build/modules/generic-records/GenericRecordsModule.d.mts.map +1 -0
  517. package/build/modules/generic-records/GenericRecordsModule.mjs +23 -0
  518. package/build/modules/generic-records/GenericRecordsModule.mjs.map +1 -0
  519. package/build/modules/generic-records/index.d.mts +3 -0
  520. package/build/modules/generic-records/index.mjs +5 -0
  521. package/build/modules/generic-records/repository/GenericRecord.d.mts +29 -0
  522. package/build/modules/generic-records/repository/GenericRecord.d.mts.map +1 -0
  523. package/build/modules/generic-records/repository/GenericRecord.mjs +26 -0
  524. package/build/modules/generic-records/repository/GenericRecord.mjs.map +1 -0
  525. package/build/modules/generic-records/repository/GenericRecordsRepository.d.mts +12 -0
  526. package/build/modules/generic-records/repository/GenericRecordsRepository.d.mts.map +1 -0
  527. package/build/modules/generic-records/repository/GenericRecordsRepository.mjs +27 -0
  528. package/build/modules/generic-records/repository/GenericRecordsRepository.mjs.map +1 -0
  529. package/build/modules/generic-records/services/GenericRecordService.d.mts +25 -0
  530. package/build/modules/generic-records/services/GenericRecordService.d.mts.map +1 -0
  531. package/build/modules/generic-records/services/GenericRecordService.mjs +61 -0
  532. package/build/modules/generic-records/services/GenericRecordService.mjs.map +1 -0
  533. package/build/modules/kms/KeyManagementApi.d.mts +155 -0
  534. package/build/modules/kms/KeyManagementApi.d.mts.map +1 -0
  535. package/build/modules/kms/KeyManagementApi.mjs +205 -0
  536. package/build/modules/kms/KeyManagementApi.mjs.map +1 -0
  537. package/build/modules/kms/KeyManagementModule.d.mts +19 -0
  538. package/build/modules/kms/KeyManagementModule.d.mts.map +1 -0
  539. package/build/modules/kms/KeyManagementModule.mjs +22 -0
  540. package/build/modules/kms/KeyManagementModule.mjs.map +1 -0
  541. package/build/modules/kms/KeyManagementModuleConfig.d.mts +29 -0
  542. package/build/modules/kms/KeyManagementModuleConfig.d.mts.map +1 -0
  543. package/build/modules/kms/KeyManagementModuleConfig.mjs +36 -0
  544. package/build/modules/kms/KeyManagementModuleConfig.mjs.map +1 -0
  545. package/build/modules/kms/KeyManagementService.d.mts +73 -0
  546. package/build/modules/kms/KeyManagementService.d.mts.map +1 -0
  547. package/build/modules/kms/cose/algorithm.d.mts +37 -0
  548. package/build/modules/kms/cose/algorithm.d.mts.map +1 -0
  549. package/build/modules/kms/cose/algorithm.mjs +25 -0
  550. package/build/modules/kms/cose/algorithm.mjs.map +1 -0
  551. package/build/modules/kms/cose/index.d.mts +1 -0
  552. package/build/modules/kms/cose/index.mjs +3 -0
  553. package/build/modules/kms/error/KeyManagementAlgorithmNotSupportedError.d.mts +10 -0
  554. package/build/modules/kms/error/KeyManagementAlgorithmNotSupportedError.d.mts.map +1 -0
  555. package/build/modules/kms/error/KeyManagementAlgorithmNotSupportedError.mjs +15 -0
  556. package/build/modules/kms/error/KeyManagementAlgorithmNotSupportedError.mjs.map +1 -0
  557. package/build/modules/kms/error/KeyManagementError.d.mts +8 -0
  558. package/build/modules/kms/error/KeyManagementError.d.mts.map +1 -0
  559. package/build/modules/kms/error/KeyManagementError.mjs +11 -0
  560. package/build/modules/kms/error/KeyManagementError.mjs.map +1 -0
  561. package/build/modules/kms/error/KeyManagementKeyExistsError.d.mts +9 -0
  562. package/build/modules/kms/error/KeyManagementKeyExistsError.d.mts.map +1 -0
  563. package/build/modules/kms/error/KeyManagementKeyExistsError.mjs +14 -0
  564. package/build/modules/kms/error/KeyManagementKeyExistsError.mjs.map +1 -0
  565. package/build/modules/kms/error/KeyManagementKeyNotFoundError.d.mts +9 -0
  566. package/build/modules/kms/error/KeyManagementKeyNotFoundError.d.mts.map +1 -0
  567. package/build/modules/kms/error/KeyManagementKeyNotFoundError.mjs +17 -0
  568. package/build/modules/kms/error/KeyManagementKeyNotFoundError.mjs.map +1 -0
  569. package/build/modules/kms/index.d.mts +56 -0
  570. package/build/modules/kms/index.d.mts.map +1 -0
  571. package/build/modules/kms/index.mjs +93 -0
  572. package/build/modules/kms/index.mjs.map +1 -0
  573. package/build/modules/kms/jwk/PublicJwk.d.mts +100 -0
  574. package/build/modules/kms/jwk/PublicJwk.d.mts.map +1 -0
  575. package/build/modules/kms/jwk/PublicJwk.mjs +220 -0
  576. package/build/modules/kms/jwk/PublicJwk.mjs.map +1 -0
  577. package/build/modules/kms/jwk/alg/encryption.d.mts +17 -0
  578. package/build/modules/kms/jwk/alg/encryption.d.mts.map +1 -0
  579. package/build/modules/kms/jwk/alg/encryption.mjs +43 -0
  580. package/build/modules/kms/jwk/alg/encryption.mjs.map +1 -0
  581. package/build/modules/kms/jwk/alg/index.d.mts +3 -0
  582. package/build/modules/kms/jwk/alg/index.mjs +5 -0
  583. package/build/modules/kms/jwk/alg/keyDerivation.d.mts +17 -0
  584. package/build/modules/kms/jwk/alg/keyDerivation.d.mts.map +1 -0
  585. package/build/modules/kms/jwk/alg/keyDerivation.mjs +43 -0
  586. package/build/modules/kms/jwk/alg/keyDerivation.mjs.map +1 -0
  587. package/build/modules/kms/jwk/alg/signing.d.mts +19 -0
  588. package/build/modules/kms/jwk/alg/signing.d.mts.map +1 -0
  589. package/build/modules/kms/jwk/alg/signing.mjs +113 -0
  590. package/build/modules/kms/jwk/alg/signing.mjs.map +1 -0
  591. package/build/modules/kms/jwk/assertSupported.d.mts +17 -0
  592. package/build/modules/kms/jwk/assertSupported.d.mts.map +1 -0
  593. package/build/modules/kms/jwk/assertSupported.mjs +15 -0
  594. package/build/modules/kms/jwk/assertSupported.mjs.map +1 -0
  595. package/build/modules/kms/jwk/equals.d.mts +21 -0
  596. package/build/modules/kms/jwk/equals.d.mts.map +1 -0
  597. package/build/modules/kms/jwk/equals.mjs +39 -0
  598. package/build/modules/kms/jwk/equals.mjs.map +1 -0
  599. package/build/modules/kms/jwk/humanDescription.d.mts +16 -0
  600. package/build/modules/kms/jwk/humanDescription.d.mts.map +1 -0
  601. package/build/modules/kms/jwk/humanDescription.mjs +24 -0
  602. package/build/modules/kms/jwk/humanDescription.mjs.map +1 -0
  603. package/build/modules/kms/jwk/index.d.mts +25 -0
  604. package/build/modules/kms/jwk/index.mjs +22 -0
  605. package/build/modules/kms/jwk/jwa.d.mts +97 -0
  606. package/build/modules/kms/jwk/jwa.d.mts.map +1 -0
  607. package/build/modules/kms/jwk/jwa.mjs +61 -0
  608. package/build/modules/kms/jwk/jwa.mjs.map +1 -0
  609. package/build/modules/kms/jwk/jwk.d.mts +49 -0
  610. package/build/modules/kms/jwk/jwk.d.mts.map +1 -0
  611. package/build/modules/kms/jwk/jwk.mjs +42 -0
  612. package/build/modules/kms/jwk/jwk.mjs.map +1 -0
  613. package/build/modules/kms/jwk/jwkThumbprint.mjs +40 -0
  614. package/build/modules/kms/jwk/jwkThumbprint.mjs.map +1 -0
  615. package/build/modules/kms/jwk/keyOps.d.mts +17 -0
  616. package/build/modules/kms/jwk/keyOps.d.mts.map +1 -0
  617. package/build/modules/kms/jwk/keyOps.mjs +65 -0
  618. package/build/modules/kms/jwk/keyOps.mjs.map +1 -0
  619. package/build/modules/kms/jwk/knownJwk.d.mts +298 -0
  620. package/build/modules/kms/jwk/knownJwk.d.mts.map +1 -0
  621. package/build/modules/kms/jwk/knownJwk.mjs +57 -0
  622. package/build/modules/kms/jwk/knownJwk.mjs.map +1 -0
  623. package/build/modules/kms/jwk/kty/PublicJwk.d.mts +14 -0
  624. package/build/modules/kms/jwk/kty/PublicJwk.d.mts.map +1 -0
  625. package/build/modules/kms/jwk/kty/ec/P256PublicJwk.d.mts +35 -0
  626. package/build/modules/kms/jwk/kty/ec/P256PublicJwk.d.mts.map +1 -0
  627. package/build/modules/kms/jwk/kty/ec/P256PublicJwk.mjs +44 -0
  628. package/build/modules/kms/jwk/kty/ec/P256PublicJwk.mjs.map +1 -0
  629. package/build/modules/kms/jwk/kty/ec/P384PublicJwk.d.mts +35 -0
  630. package/build/modules/kms/jwk/kty/ec/P384PublicJwk.d.mts.map +1 -0
  631. package/build/modules/kms/jwk/kty/ec/P384PublicJwk.mjs +44 -0
  632. package/build/modules/kms/jwk/kty/ec/P384PublicJwk.mjs.map +1 -0
  633. package/build/modules/kms/jwk/kty/ec/P521PublicJwk.d.mts +35 -0
  634. package/build/modules/kms/jwk/kty/ec/P521PublicJwk.d.mts.map +1 -0
  635. package/build/modules/kms/jwk/kty/ec/P521PublicJwk.mjs +44 -0
  636. package/build/modules/kms/jwk/kty/ec/P521PublicJwk.mjs.map +1 -0
  637. package/build/modules/kms/jwk/kty/ec/Secp256k1PublicJwk.d.mts +35 -0
  638. package/build/modules/kms/jwk/kty/ec/Secp256k1PublicJwk.d.mts.map +1 -0
  639. package/build/modules/kms/jwk/kty/ec/Secp256k1PublicJwk.mjs +44 -0
  640. package/build/modules/kms/jwk/kty/ec/Secp256k1PublicJwk.mjs.map +1 -0
  641. package/build/modules/kms/jwk/kty/ec/ecJwk.d.mts +50 -0
  642. package/build/modules/kms/jwk/kty/ec/ecJwk.d.mts.map +1 -0
  643. package/build/modules/kms/jwk/kty/ec/ecJwk.mjs +32 -0
  644. package/build/modules/kms/jwk/kty/ec/ecJwk.mjs.map +1 -0
  645. package/build/modules/kms/jwk/kty/ec/ecPublicKey.d.mts +3 -0
  646. package/build/modules/kms/jwk/kty/ec/ecPublicKey.mjs +36 -0
  647. package/build/modules/kms/jwk/kty/ec/ecPublicKey.mjs.map +1 -0
  648. package/build/modules/kms/jwk/kty/ec/ecSignature.d.mts +24 -0
  649. package/build/modules/kms/jwk/kty/ec/ecSignature.d.mts.map +1 -0
  650. package/build/modules/kms/jwk/kty/ec/ecSignature.mjs +94 -0
  651. package/build/modules/kms/jwk/kty/ec/ecSignature.mjs.map +1 -0
  652. package/build/modules/kms/jwk/kty/index.d.mts +15 -0
  653. package/build/modules/kms/jwk/kty/index.mjs +17 -0
  654. package/build/modules/kms/jwk/kty/oct/octJwk.d.mts +34 -0
  655. package/build/modules/kms/jwk/kty/oct/octJwk.d.mts.map +1 -0
  656. package/build/modules/kms/jwk/kty/oct/octJwk.mjs +24 -0
  657. package/build/modules/kms/jwk/kty/oct/octJwk.mjs.map +1 -0
  658. package/build/modules/kms/jwk/kty/okp/Ed25519PublicJwk.d.mts +51 -0
  659. package/build/modules/kms/jwk/kty/okp/Ed25519PublicJwk.d.mts.map +1 -0
  660. package/build/modules/kms/jwk/kty/okp/Ed25519PublicJwk.mjs +48 -0
  661. package/build/modules/kms/jwk/kty/okp/Ed25519PublicJwk.mjs.map +1 -0
  662. package/build/modules/kms/jwk/kty/okp/X25519PublicJwk.d.mts +34 -0
  663. package/build/modules/kms/jwk/kty/okp/X25519PublicJwk.d.mts.map +1 -0
  664. package/build/modules/kms/jwk/kty/okp/X25519PublicJwk.mjs +43 -0
  665. package/build/modules/kms/jwk/kty/okp/X25519PublicJwk.mjs.map +1 -0
  666. package/build/modules/kms/jwk/kty/okp/okpJwk.d.mts +44 -0
  667. package/build/modules/kms/jwk/kty/okp/okpJwk.d.mts.map +1 -0
  668. package/build/modules/kms/jwk/kty/okp/okpJwk.mjs +26 -0
  669. package/build/modules/kms/jwk/kty/okp/okpJwk.mjs.map +1 -0
  670. package/build/modules/kms/jwk/kty/okp/okpPublicKey.d.mts +2 -0
  671. package/build/modules/kms/jwk/kty/okp/okpPublicKey.mjs +20 -0
  672. package/build/modules/kms/jwk/kty/okp/okpPublicKey.mjs.map +1 -0
  673. package/build/modules/kms/jwk/kty/rsa/RsaPublicJwk.d.mts +34 -0
  674. package/build/modules/kms/jwk/kty/rsa/RsaPublicJwk.d.mts.map +1 -0
  675. package/build/modules/kms/jwk/kty/rsa/RsaPublicJwk.mjs +65 -0
  676. package/build/modules/kms/jwk/kty/rsa/RsaPublicJwk.mjs.map +1 -0
  677. package/build/modules/kms/jwk/kty/rsa/rsaJwk.d.mts +54 -0
  678. package/build/modules/kms/jwk/kty/rsa/rsaJwk.d.mts.map +1 -0
  679. package/build/modules/kms/jwk/kty/rsa/rsaJwk.mjs +49 -0
  680. package/build/modules/kms/jwk/kty/rsa/rsaJwk.mjs.map +1 -0
  681. package/build/modules/kms/jwk/kty/rsa/rsaPublicKey.d.mts +2 -0
  682. package/build/modules/kms/jwk/kty/rsa/rsaPublicKey.mjs +23 -0
  683. package/build/modules/kms/jwk/kty/rsa/rsaPublicKey.mjs.map +1 -0
  684. package/build/modules/kms/legacy.d.mts +13 -0
  685. package/build/modules/kms/legacy.d.mts.map +1 -0
  686. package/build/modules/kms/legacy.mjs +24 -0
  687. package/build/modules/kms/legacy.mjs.map +1 -0
  688. package/build/modules/kms/options/KmsCreateKeyOptions.d.mts +136 -0
  689. package/build/modules/kms/options/KmsCreateKeyOptions.d.mts.map +1 -0
  690. package/build/modules/kms/options/KmsCreateKeyOptions.mjs +81 -0
  691. package/build/modules/kms/options/KmsCreateKeyOptions.mjs.map +1 -0
  692. package/build/modules/kms/options/KmsDecryptOptions.d.mts +262 -0
  693. package/build/modules/kms/options/KmsDecryptOptions.d.mts.map +1 -0
  694. package/build/modules/kms/options/KmsDecryptOptions.mjs +76 -0
  695. package/build/modules/kms/options/KmsDecryptOptions.mjs.map +1 -0
  696. package/build/modules/kms/options/KmsDeleteKeyOptions.d.mts +10 -0
  697. package/build/modules/kms/options/KmsDeleteKeyOptions.d.mts.map +1 -0
  698. package/build/modules/kms/options/KmsDeleteKeyOptions.mjs +11 -0
  699. package/build/modules/kms/options/KmsDeleteKeyOptions.mjs.map +1 -0
  700. package/build/modules/kms/options/KmsEncryptOptions.d.mts +270 -0
  701. package/build/modules/kms/options/KmsEncryptOptions.d.mts.map +1 -0
  702. package/build/modules/kms/options/KmsEncryptOptions.mjs +78 -0
  703. package/build/modules/kms/options/KmsEncryptOptions.mjs.map +1 -0
  704. package/build/modules/kms/options/KmsGetPublicKeyOptions.d.mts +10 -0
  705. package/build/modules/kms/options/KmsGetPublicKeyOptions.d.mts.map +1 -0
  706. package/build/modules/kms/options/KmsGetPublicKeyOptions.mjs +11 -0
  707. package/build/modules/kms/options/KmsGetPublicKeyOptions.mjs.map +1 -0
  708. package/build/modules/kms/options/KmsImportKeyOptions.d.mts +28 -0
  709. package/build/modules/kms/options/KmsImportKeyOptions.d.mts.map +1 -0
  710. package/build/modules/kms/options/KmsImportKeyOptions.mjs +11 -0
  711. package/build/modules/kms/options/KmsImportKeyOptions.mjs.map +1 -0
  712. package/build/modules/kms/options/KmsKeyAgreementDecryptOptions.d.mts +198 -0
  713. package/build/modules/kms/options/KmsKeyAgreementDecryptOptions.d.mts.map +1 -0
  714. package/build/modules/kms/options/KmsKeyAgreementDecryptOptions.mjs +36 -0
  715. package/build/modules/kms/options/KmsKeyAgreementDecryptOptions.mjs.map +1 -0
  716. package/build/modules/kms/options/KmsKeyAgreementEncryptOptions.d.mts +270 -0
  717. package/build/modules/kms/options/KmsKeyAgreementEncryptOptions.d.mts.map +1 -0
  718. package/build/modules/kms/options/KmsKeyAgreementEncryptOptions.mjs +47 -0
  719. package/build/modules/kms/options/KmsKeyAgreementEncryptOptions.mjs.map +1 -0
  720. package/build/modules/kms/options/KmsOperation.d.mts +47 -0
  721. package/build/modules/kms/options/KmsOperation.d.mts.map +1 -0
  722. package/build/modules/kms/options/KmsOperation.mjs +38 -0
  723. package/build/modules/kms/options/KmsOperation.mjs.map +1 -0
  724. package/build/modules/kms/options/KmsRandomBytesOptions.d.mts +14 -0
  725. package/build/modules/kms/options/KmsRandomBytesOptions.d.mts.map +1 -0
  726. package/build/modules/kms/options/KmsRandomBytesOptions.mjs +10 -0
  727. package/build/modules/kms/options/KmsRandomBytesOptions.mjs.map +1 -0
  728. package/build/modules/kms/options/KmsSignOptions.d.mts +33 -0
  729. package/build/modules/kms/options/KmsSignOptions.d.mts.map +1 -0
  730. package/build/modules/kms/options/KmsSignOptions.mjs +17 -0
  731. package/build/modules/kms/options/KmsSignOptions.mjs.map +1 -0
  732. package/build/modules/kms/options/KmsVerifyOptions.d.mts +101 -0
  733. package/build/modules/kms/options/KmsVerifyOptions.d.mts.map +1 -0
  734. package/build/modules/kms/options/KmsVerifyOptions.mjs +25 -0
  735. package/build/modules/kms/options/KmsVerifyOptions.mjs.map +1 -0
  736. package/build/modules/kms/options/backend.d.mts +14 -0
  737. package/build/modules/kms/options/backend.d.mts.map +1 -0
  738. package/build/modules/kms/options/backend.mjs +10 -0
  739. package/build/modules/kms/options/backend.mjs.map +1 -0
  740. package/build/modules/kms/options/common.mjs +10 -0
  741. package/build/modules/kms/options/common.mjs.map +1 -0
  742. package/build/modules/kms/options/index.d.mts +12 -0
  743. package/build/modules/kms/options/index.mjs +3 -0
  744. package/build/modules/mdoc/Mdoc.d.mts +56 -0
  745. package/build/modules/mdoc/Mdoc.d.mts.map +1 -0
  746. package/build/modules/mdoc/Mdoc.mjs +145 -0
  747. package/build/modules/mdoc/Mdoc.mjs.map +1 -0
  748. package/build/modules/mdoc/MdocApi.d.mts +51 -0
  749. package/build/modules/mdoc/MdocApi.d.mts.map +1 -0
  750. package/build/modules/mdoc/MdocApi.mjs +66 -0
  751. package/build/modules/mdoc/MdocApi.mjs.map +1 -0
  752. package/build/modules/mdoc/MdocContext.mjs +129 -0
  753. package/build/modules/mdoc/MdocContext.mjs.map +1 -0
  754. package/build/modules/mdoc/MdocDeviceResponse.d.mts +135 -0
  755. package/build/modules/mdoc/MdocDeviceResponse.d.mts.map +1 -0
  756. package/build/modules/mdoc/MdocDeviceResponse.mjs +250 -0
  757. package/build/modules/mdoc/MdocDeviceResponse.mjs.map +1 -0
  758. package/build/modules/mdoc/MdocError.d.mts +8 -0
  759. package/build/modules/mdoc/MdocError.d.mts.map +1 -0
  760. package/build/modules/mdoc/MdocError.mjs +11 -0
  761. package/build/modules/mdoc/MdocError.mjs.map +1 -0
  762. package/build/modules/mdoc/MdocModule.d.mts +19 -0
  763. package/build/modules/mdoc/MdocModule.d.mts.map +1 -0
  764. package/build/modules/mdoc/MdocModule.mjs +27 -0
  765. package/build/modules/mdoc/MdocModule.mjs.map +1 -0
  766. package/build/modules/mdoc/MdocOptions.d.mts +93 -0
  767. package/build/modules/mdoc/MdocOptions.d.mts.map +1 -0
  768. package/build/modules/mdoc/MdocOptions.mjs +6 -0
  769. package/build/modules/mdoc/MdocService.d.mts +48 -0
  770. package/build/modules/mdoc/MdocService.d.mts.map +1 -0
  771. package/build/modules/mdoc/MdocService.mjs +60 -0
  772. package/build/modules/mdoc/MdocService.mjs.map +1 -0
  773. package/build/modules/mdoc/index.d.mts +13 -0
  774. package/build/modules/mdoc/index.mjs +16 -0
  775. package/build/modules/mdoc/mdocSupportedAlgs.d.mts +10 -0
  776. package/build/modules/mdoc/mdocSupportedAlgs.d.mts.map +1 -0
  777. package/build/modules/mdoc/mdocSupportedAlgs.mjs +19 -0
  778. package/build/modules/mdoc/mdocSupportedAlgs.mjs.map +1 -0
  779. package/build/modules/mdoc/mdocUtil.mjs +10 -0
  780. package/build/modules/mdoc/mdocUtil.mjs.map +1 -0
  781. package/build/modules/mdoc/repository/MdocRecord.d.mts +73 -0
  782. package/build/modules/mdoc/repository/MdocRecord.d.mts.map +1 -0
  783. package/build/modules/mdoc/repository/MdocRecord.mjs +67 -0
  784. package/build/modules/mdoc/repository/MdocRecord.mjs.map +1 -0
  785. package/build/modules/mdoc/repository/MdocRepository.d.mts +12 -0
  786. package/build/modules/mdoc/repository/MdocRepository.d.mts.map +1 -0
  787. package/build/modules/mdoc/repository/MdocRepository.mjs +27 -0
  788. package/build/modules/mdoc/repository/MdocRepository.mjs.map +1 -0
  789. package/build/modules/mdoc/repository/index.d.mts +2 -0
  790. package/build/modules/mdoc/repository/index.mjs +4 -0
  791. package/build/modules/sd-jwt-vc/SdJwtVcApi.d.mts +54 -0
  792. package/build/modules/sd-jwt-vc/SdJwtVcApi.d.mts.map +1 -0
  793. package/build/modules/sd-jwt-vc/SdJwtVcApi.mjs +69 -0
  794. package/build/modules/sd-jwt-vc/SdJwtVcApi.mjs.map +1 -0
  795. package/build/modules/sd-jwt-vc/SdJwtVcError.d.mts +8 -0
  796. package/build/modules/sd-jwt-vc/SdJwtVcError.d.mts.map +1 -0
  797. package/build/modules/sd-jwt-vc/SdJwtVcError.mjs +11 -0
  798. package/build/modules/sd-jwt-vc/SdJwtVcError.mjs.map +1 -0
  799. package/build/modules/sd-jwt-vc/SdJwtVcModule.d.mts +19 -0
  800. package/build/modules/sd-jwt-vc/SdJwtVcModule.d.mts.map +1 -0
  801. package/build/modules/sd-jwt-vc/SdJwtVcModule.mjs +27 -0
  802. package/build/modules/sd-jwt-vc/SdJwtVcModule.mjs.map +1 -0
  803. package/build/modules/sd-jwt-vc/SdJwtVcOptions.d.mts +147 -0
  804. package/build/modules/sd-jwt-vc/SdJwtVcOptions.d.mts.map +1 -0
  805. package/build/modules/sd-jwt-vc/SdJwtVcOptions.mjs +4 -0
  806. package/build/modules/sd-jwt-vc/SdJwtVcService.d.mts +95 -0
  807. package/build/modules/sd-jwt-vc/SdJwtVcService.d.mts.map +1 -0
  808. package/build/modules/sd-jwt-vc/SdJwtVcService.mjs +347 -0
  809. package/build/modules/sd-jwt-vc/SdJwtVcService.mjs.map +1 -0
  810. package/build/modules/sd-jwt-vc/decodeSdJwtVc.mjs +33 -0
  811. package/build/modules/sd-jwt-vc/decodeSdJwtVc.mjs.map +1 -0
  812. package/build/modules/sd-jwt-vc/disclosureFrame.mjs +19 -0
  813. package/build/modules/sd-jwt-vc/disclosureFrame.mjs.map +1 -0
  814. package/build/modules/sd-jwt-vc/index.d.mts +9 -0
  815. package/build/modules/sd-jwt-vc/index.mjs +10 -0
  816. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.d.mts +85 -0
  817. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.d.mts.map +1 -0
  818. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.mjs +77 -0
  819. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.mjs.map +1 -0
  820. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.d.mts +12 -0
  821. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.d.mts.map +1 -0
  822. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.mjs +27 -0
  823. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.mjs.map +1 -0
  824. package/build/modules/sd-jwt-vc/repository/index.d.mts +2 -0
  825. package/build/modules/sd-jwt-vc/repository/index.mjs +4 -0
  826. package/build/modules/sd-jwt-vc/typeMetadata.d.mts +71 -0
  827. package/build/modules/sd-jwt-vc/typeMetadata.d.mts.map +1 -0
  828. package/build/modules/sd-jwt-vc/utils.mjs +106 -0
  829. package/build/modules/sd-jwt-vc/utils.mjs.map +1 -0
  830. package/build/modules/vc/W3cCredentialService.d.mts +71 -0
  831. package/build/modules/vc/W3cCredentialService.d.mts.map +1 -0
  832. package/build/modules/vc/W3cCredentialService.mjs +124 -0
  833. package/build/modules/vc/W3cCredentialService.mjs.map +1 -0
  834. package/build/modules/vc/W3cCredentialServiceOptions.d.mts +159 -0
  835. package/build/modules/vc/W3cCredentialServiceOptions.d.mts.map +1 -0
  836. package/build/modules/vc/W3cCredentialServiceOptions.mjs +3 -0
  837. package/build/modules/vc/W3cCredentialsApi.d.mts +36 -0
  838. package/build/modules/vc/W3cCredentialsApi.d.mts.map +1 -0
  839. package/build/modules/vc/W3cCredentialsApi.mjs +52 -0
  840. package/build/modules/vc/W3cCredentialsApi.mjs.map +1 -0
  841. package/build/modules/vc/W3cCredentialsModule.d.mts +19 -0
  842. package/build/modules/vc/W3cCredentialsModule.d.mts.map +1 -0
  843. package/build/modules/vc/W3cCredentialsModule.mjs +53 -0
  844. package/build/modules/vc/W3cCredentialsModule.mjs.map +1 -0
  845. package/build/modules/vc/W3cCredentialsModuleConfig.d.mts +41 -0
  846. package/build/modules/vc/W3cCredentialsModuleConfig.d.mts.map +1 -0
  847. package/build/modules/vc/W3cCredentialsModuleConfig.mjs +18 -0
  848. package/build/modules/vc/W3cCredentialsModuleConfig.mjs.map +1 -0
  849. package/build/modules/vc/W3cV2CredentialService.d.mts +63 -0
  850. package/build/modules/vc/W3cV2CredentialService.d.mts.map +1 -0
  851. package/build/modules/vc/W3cV2CredentialService.mjs +104 -0
  852. package/build/modules/vc/W3cV2CredentialService.mjs.map +1 -0
  853. package/build/modules/vc/W3cV2CredentialServiceOptions.d.mts +156 -0
  854. package/build/modules/vc/W3cV2CredentialServiceOptions.d.mts.map +1 -0
  855. package/build/modules/vc/W3cV2CredentialServiceOptions.mjs +4 -0
  856. package/build/modules/vc/W3cV2CredentialsApi.d.mts +34 -0
  857. package/build/modules/vc/W3cV2CredentialsApi.d.mts.map +1 -0
  858. package/build/modules/vc/W3cV2CredentialsApi.mjs +49 -0
  859. package/build/modules/vc/W3cV2CredentialsApi.mjs.map +1 -0
  860. package/build/modules/vc/W3cV2CredentialsModule.d.mts +16 -0
  861. package/build/modules/vc/W3cV2CredentialsModule.d.mts.map +1 -0
  862. package/build/modules/vc/W3cV2CredentialsModule.mjs +31 -0
  863. package/build/modules/vc/W3cV2CredentialsModule.mjs.map +1 -0
  864. package/build/modules/vc/constants.d.mts +22 -0
  865. package/build/modules/vc/constants.d.mts.map +1 -0
  866. package/build/modules/vc/constants.mjs +25 -0
  867. package/build/modules/vc/constants.mjs.map +1 -0
  868. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.d.mts +26 -0
  869. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.d.mts.map +1 -0
  870. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.mjs +52 -0
  871. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.mjs.map +1 -0
  872. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.d.mts +53 -0
  873. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.d.mts.map +1 -0
  874. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.mjs +232 -0
  875. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.mjs.map +1 -0
  876. package/build/modules/vc/data-integrity/deriveProof.d.mts +27 -0
  877. package/build/modules/vc/data-integrity/deriveProof.d.mts.map +1 -0
  878. package/build/modules/vc/data-integrity/deriveProof.mjs +80 -0
  879. package/build/modules/vc/data-integrity/deriveProof.mjs.map +1 -0
  880. package/build/modules/vc/data-integrity/index.d.mts +18 -0
  881. package/build/modules/vc/data-integrity/index.mjs +18 -0
  882. package/build/modules/vc/data-integrity/jsonldUtil.d.mts +25 -0
  883. package/build/modules/vc/data-integrity/jsonldUtil.d.mts.map +1 -0
  884. package/build/modules/vc/data-integrity/jsonldUtil.mjs +77 -0
  885. package/build/modules/vc/data-integrity/jsonldUtil.mjs.map +1 -0
  886. package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.mjs +29 -0
  887. package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.mjs.map +1 -0
  888. package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.mjs +320 -0
  889. package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.mjs.map +1 -0
  890. package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.mjs +86 -0
  891. package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.mjs.map +1 -0
  892. package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.mjs +40 -0
  893. package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.mjs.map +1 -0
  894. package/build/modules/vc/data-integrity/libraries/contexts/did_v1.mjs +59 -0
  895. package/build/modules/vc/data-integrity/libraries/contexts/did_v1.mjs.map +1 -0
  896. package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.mjs +92 -0
  897. package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.mjs.map +1 -0
  898. package/build/modules/vc/data-integrity/libraries/contexts/linkedvp_v1.mjs +12 -0
  899. package/build/modules/vc/data-integrity/libraries/contexts/linkedvp_v1.mjs.map +1 -0
  900. package/build/modules/vc/data-integrity/libraries/contexts/odrl.mjs +306 -0
  901. package/build/modules/vc/data-integrity/libraries/contexts/odrl.mjs.map +1 -0
  902. package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.mjs +421 -0
  903. package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.mjs.map +1 -0
  904. package/build/modules/vc/data-integrity/libraries/contexts/schema_org.mjs +3065 -0
  905. package/build/modules/vc/data-integrity/libraries/contexts/schema_org.mjs.map +1 -0
  906. package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.mjs +101 -0
  907. package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.mjs.map +1 -0
  908. package/build/modules/vc/data-integrity/libraries/contexts/security_v1.mjs +79 -0
  909. package/build/modules/vc/data-integrity/libraries/contexts/security_v1.mjs.map +1 -0
  910. package/build/modules/vc/data-integrity/libraries/contexts/security_v2.mjs +127 -0
  911. package/build/modules/vc/data-integrity/libraries/contexts/security_v2.mjs.map +1 -0
  912. package/build/modules/vc/data-integrity/libraries/contexts/submission.mjs +20 -0
  913. package/build/modules/vc/data-integrity/libraries/contexts/submission.mjs.map +1 -0
  914. package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.mjs +42 -0
  915. package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.mjs.map +1 -0
  916. package/build/modules/vc/data-integrity/libraries/documentLoader.d.mts +8 -0
  917. package/build/modules/vc/data-integrity/libraries/documentLoader.d.mts.map +1 -0
  918. package/build/modules/vc/data-integrity/libraries/documentLoader.mjs +46 -0
  919. package/build/modules/vc/data-integrity/libraries/documentLoader.mjs.map +1 -0
  920. package/build/modules/vc/data-integrity/libraries/index.d.mts +29 -0
  921. package/build/modules/vc/data-integrity/libraries/index.d.mts.map +1 -0
  922. package/build/modules/vc/data-integrity/libraries/index.mjs +22 -0
  923. package/build/modules/vc/data-integrity/libraries/index.mjs.map +1 -0
  924. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.d.mts +18 -0
  925. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.d.mts.map +1 -0
  926. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.mjs +19 -0
  927. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.mjs.map +1 -0
  928. package/build/modules/vc/data-integrity/libraries/jsonld.d.mts +19 -0
  929. package/build/modules/vc/data-integrity/libraries/jsonld.d.mts.map +1 -0
  930. package/build/modules/vc/data-integrity/libraries/jsonld.mjs +12 -0
  931. package/build/modules/vc/data-integrity/libraries/jsonld.mjs.map +1 -0
  932. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.mjs +14 -0
  933. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.mjs.map +1 -0
  934. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.d.mts +7 -0
  935. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.d.mts.map +1 -0
  936. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.mjs +14 -0
  937. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.mjs.map +1 -0
  938. package/build/modules/vc/data-integrity/libraries/vc.d.mts +31 -0
  939. package/build/modules/vc/data-integrity/libraries/vc.d.mts.map +1 -0
  940. package/build/modules/vc/data-integrity/libraries/vc.mjs +12 -0
  941. package/build/modules/vc/data-integrity/libraries/vc.mjs.map +1 -0
  942. package/build/modules/vc/data-integrity/models/DataIntegrityProof.d.mts +37 -0
  943. package/build/modules/vc/data-integrity/models/DataIntegrityProof.d.mts.map +1 -0
  944. package/build/modules/vc/data-integrity/models/DataIntegrityProof.mjs +79 -0
  945. package/build/modules/vc/data-integrity/models/DataIntegrityProof.mjs.map +1 -0
  946. package/build/modules/vc/data-integrity/models/GetProofsOptions.d.mts +2 -0
  947. package/build/modules/vc/data-integrity/models/GetProofsResult.d.mts +1 -0
  948. package/build/modules/vc/data-integrity/models/GetTypeOptions.d.mts +1 -0
  949. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.d.mts +38 -0
  950. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.d.mts.map +1 -0
  951. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.mjs +9 -0
  952. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.mjs.map +1 -0
  953. package/build/modules/vc/data-integrity/models/LdKeyPair.d.mts +38 -0
  954. package/build/modules/vc/data-integrity/models/LdKeyPair.d.mts.map +1 -0
  955. package/build/modules/vc/data-integrity/models/LdKeyPair.mjs +27 -0
  956. package/build/modules/vc/data-integrity/models/LdKeyPair.mjs.map +1 -0
  957. package/build/modules/vc/data-integrity/models/LinkedDataProof.d.mts +34 -0
  958. package/build/modules/vc/data-integrity/models/LinkedDataProof.d.mts.map +1 -0
  959. package/build/modules/vc/data-integrity/models/LinkedDataProof.mjs +63 -0
  960. package/build/modules/vc/data-integrity/models/LinkedDataProof.mjs.map +1 -0
  961. package/build/modules/vc/data-integrity/models/ProofTransformer.mjs +28 -0
  962. package/build/modules/vc/data-integrity/models/ProofTransformer.mjs.map +1 -0
  963. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.d.mts +32 -0
  964. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.d.mts.map +1 -0
  965. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.mjs +63 -0
  966. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.mjs.map +1 -0
  967. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.d.mts +30 -0
  968. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.d.mts.map +1 -0
  969. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.mjs +54 -0
  970. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.mjs.map +1 -0
  971. package/build/modules/vc/data-integrity/models/index.d.mts +5 -0
  972. package/build/modules/vc/data-integrity/models/index.mjs +7 -0
  973. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.d.mts +60 -0
  974. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.d.mts.map +1 -0
  975. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.mjs +68 -0
  976. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.mjs.map +1 -0
  977. package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.d.mts +5 -0
  978. package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.d.mts.map +1 -0
  979. package/build/modules/vc/data-integrity/proof-purposes/index.d.mts +2 -0
  980. package/build/modules/vc/data-integrity/proof-purposes/index.mjs +3 -0
  981. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.d.mts +100 -0
  982. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.d.mts.map +1 -0
  983. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.mjs +171 -0
  984. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.mjs.map +1 -0
  985. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.d.mts +83 -0
  986. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.d.mts.map +1 -0
  987. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.mjs +173 -0
  988. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.mjs.map +1 -0
  989. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.d.mts +110 -0
  990. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.d.mts.map +1 -0
  991. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.mjs +192 -0
  992. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.mjs.map +1 -0
  993. package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.mjs +9 -0
  994. package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.mjs.map +1 -0
  995. package/build/modules/vc/data-integrity/signature-suites/ed25519/context.mjs +96 -0
  996. package/build/modules/vc/data-integrity/signature-suites/ed25519/context.mjs.map +1 -0
  997. package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.mjs +102 -0
  998. package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.mjs.map +1 -0
  999. package/build/modules/vc/data-integrity/signature-suites/index.d.mts +3 -0
  1000. package/build/modules/vc/data-integrity/signature-suites/index.mjs +5 -0
  1001. package/build/modules/vc/index.d.mts +73 -0
  1002. package/build/modules/vc/index.mjs +66 -0
  1003. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.d.mts +70 -0
  1004. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.d.mts.map +1 -0
  1005. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.mjs +307 -0
  1006. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.mjs.map +1 -0
  1007. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.d.mts +58 -0
  1008. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.d.mts.map +1 -0
  1009. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.mjs +91 -0
  1010. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.mjs.map +1 -0
  1011. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.d.mts +49 -0
  1012. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.d.mts.map +1 -0
  1013. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.mjs +70 -0
  1014. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.mjs.map +1 -0
  1015. package/build/modules/vc/jwt-vc/W3cV2JwtCredentialService.d.mts +50 -0
  1016. package/build/modules/vc/jwt-vc/W3cV2JwtCredentialService.d.mts.map +1 -0
  1017. package/build/modules/vc/jwt-vc/W3cV2JwtCredentialService.mjs +231 -0
  1018. package/build/modules/vc/jwt-vc/W3cV2JwtCredentialService.mjs.map +1 -0
  1019. package/build/modules/vc/jwt-vc/W3cV2JwtVerifiableCredential.d.mts +42 -0
  1020. package/build/modules/vc/jwt-vc/W3cV2JwtVerifiableCredential.d.mts.map +1 -0
  1021. package/build/modules/vc/jwt-vc/W3cV2JwtVerifiableCredential.mjs +66 -0
  1022. package/build/modules/vc/jwt-vc/W3cV2JwtVerifiableCredential.mjs.map +1 -0
  1023. package/build/modules/vc/jwt-vc/W3cV2JwtVerifiablePresentation.d.mts +43 -0
  1024. package/build/modules/vc/jwt-vc/W3cV2JwtVerifiablePresentation.d.mts.map +1 -0
  1025. package/build/modules/vc/jwt-vc/W3cV2JwtVerifiablePresentation.mjs +61 -0
  1026. package/build/modules/vc/jwt-vc/W3cV2JwtVerifiablePresentation.mjs.map +1 -0
  1027. package/build/modules/vc/jwt-vc/credentialTransformer.mjs +88 -0
  1028. package/build/modules/vc/jwt-vc/credentialTransformer.mjs.map +1 -0
  1029. package/build/modules/vc/jwt-vc/index.d.mts +6 -0
  1030. package/build/modules/vc/jwt-vc/index.mjs +8 -0
  1031. package/build/modules/vc/jwt-vc/presentationTransformer.mjs +45 -0
  1032. package/build/modules/vc/jwt-vc/presentationTransformer.mjs.map +1 -0
  1033. package/build/modules/vc/models/ClaimFormat.d.mts +25 -0
  1034. package/build/modules/vc/models/ClaimFormat.d.mts.map +1 -0
  1035. package/build/modules/vc/models/ClaimFormat.mjs +29 -0
  1036. package/build/modules/vc/models/ClaimFormat.mjs.map +1 -0
  1037. package/build/modules/vc/models/W3cV2VerifyResult.d.mts +85 -0
  1038. package/build/modules/vc/models/W3cV2VerifyResult.d.mts.map +1 -0
  1039. package/build/modules/vc/models/W3cVerifyResult.d.mts +112 -0
  1040. package/build/modules/vc/models/W3cVerifyResult.d.mts.map +1 -0
  1041. package/build/modules/vc/models/credential/W3cCredential.d.mts +38 -0
  1042. package/build/modules/vc/models/credential/W3cCredential.d.mts.map +1 -0
  1043. package/build/modules/vc/models/credential/W3cCredential.mjs +100 -0
  1044. package/build/modules/vc/models/credential/W3cCredential.mjs.map +1 -0
  1045. package/build/modules/vc/models/credential/W3cCredentialSchema.d.mts +13 -0
  1046. package/build/modules/vc/models/credential/W3cCredentialSchema.d.mts.map +1 -0
  1047. package/build/modules/vc/models/credential/W3cCredentialSchema.mjs +22 -0
  1048. package/build/modules/vc/models/credential/W3cCredentialSchema.mjs.map +1 -0
  1049. package/build/modules/vc/models/credential/W3cCredentialStatus.d.mts +13 -0
  1050. package/build/modules/vc/models/credential/W3cCredentialStatus.d.mts.map +1 -0
  1051. package/build/modules/vc/models/credential/W3cCredentialStatus.mjs +22 -0
  1052. package/build/modules/vc/models/credential/W3cCredentialStatus.mjs.map +1 -0
  1053. package/build/modules/vc/models/credential/W3cCredentialSubject.d.mts +20 -0
  1054. package/build/modules/vc/models/credential/W3cCredentialSubject.d.mts.map +1 -0
  1055. package/build/modules/vc/models/credential/W3cCredentialSubject.mjs +66 -0
  1056. package/build/modules/vc/models/credential/W3cCredentialSubject.mjs.map +1 -0
  1057. package/build/modules/vc/models/credential/W3cIssuer.d.mts +19 -0
  1058. package/build/modules/vc/models/credential/W3cIssuer.d.mts.map +1 -0
  1059. package/build/modules/vc/models/credential/W3cIssuer.mjs +45 -0
  1060. package/build/modules/vc/models/credential/W3cIssuer.mjs.map +1 -0
  1061. package/build/modules/vc/models/credential/W3cJsonCredential.d.mts +24 -0
  1062. package/build/modules/vc/models/credential/W3cJsonCredential.d.mts.map +1 -0
  1063. package/build/modules/vc/models/credential/W3cV2Credential.d.mts +57 -0
  1064. package/build/modules/vc/models/credential/W3cV2Credential.d.mts.map +1 -0
  1065. package/build/modules/vc/models/credential/W3cV2Credential.mjs +169 -0
  1066. package/build/modules/vc/models/credential/W3cV2Credential.mjs.map +1 -0
  1067. package/build/modules/vc/models/credential/W3cV2CredentialSchema.d.mts +20 -0
  1068. package/build/modules/vc/models/credential/W3cV2CredentialSchema.d.mts.map +1 -0
  1069. package/build/modules/vc/models/credential/W3cV2CredentialSchema.mjs +31 -0
  1070. package/build/modules/vc/models/credential/W3cV2CredentialSchema.mjs.map +1 -0
  1071. package/build/modules/vc/models/credential/W3cV2CredentialStatus.d.mts +20 -0
  1072. package/build/modules/vc/models/credential/W3cV2CredentialStatus.d.mts.map +1 -0
  1073. package/build/modules/vc/models/credential/W3cV2CredentialStatus.mjs +35 -0
  1074. package/build/modules/vc/models/credential/W3cV2CredentialStatus.mjs.map +1 -0
  1075. package/build/modules/vc/models/credential/W3cV2CredentialSubject.d.mts +18 -0
  1076. package/build/modules/vc/models/credential/W3cV2CredentialSubject.d.mts.map +1 -0
  1077. package/build/modules/vc/models/credential/W3cV2CredentialSubject.mjs +33 -0
  1078. package/build/modules/vc/models/credential/W3cV2CredentialSubject.mjs.map +1 -0
  1079. package/build/modules/vc/models/credential/W3cV2EnvelopedVerifiableCredential.d.mts +38 -0
  1080. package/build/modules/vc/models/credential/W3cV2EnvelopedVerifiableCredential.d.mts.map +1 -0
  1081. package/build/modules/vc/models/credential/W3cV2EnvelopedVerifiableCredential.mjs +113 -0
  1082. package/build/modules/vc/models/credential/W3cV2EnvelopedVerifiableCredential.mjs.map +1 -0
  1083. package/build/modules/vc/models/credential/W3cV2Evidence.d.mts +21 -0
  1084. package/build/modules/vc/models/credential/W3cV2Evidence.d.mts.map +1 -0
  1085. package/build/modules/vc/models/credential/W3cV2Evidence.mjs +36 -0
  1086. package/build/modules/vc/models/credential/W3cV2Evidence.mjs.map +1 -0
  1087. package/build/modules/vc/models/credential/W3cV2Issuer.d.mts +22 -0
  1088. package/build/modules/vc/models/credential/W3cV2Issuer.d.mts.map +1 -0
  1089. package/build/modules/vc/models/credential/W3cV2Issuer.mjs +53 -0
  1090. package/build/modules/vc/models/credential/W3cV2Issuer.mjs.map +1 -0
  1091. package/build/modules/vc/models/credential/W3cV2JsonCredential.d.mts +60 -0
  1092. package/build/modules/vc/models/credential/W3cV2JsonCredential.d.mts.map +1 -0
  1093. package/build/modules/vc/models/credential/W3cV2LocalizedValue.d.mts +23 -0
  1094. package/build/modules/vc/models/credential/W3cV2LocalizedValue.d.mts.map +1 -0
  1095. package/build/modules/vc/models/credential/W3cV2LocalizedValue.mjs +64 -0
  1096. package/build/modules/vc/models/credential/W3cV2LocalizedValue.mjs.map +1 -0
  1097. package/build/modules/vc/models/credential/W3cV2RefreshService.d.mts +18 -0
  1098. package/build/modules/vc/models/credential/W3cV2RefreshService.d.mts.map +1 -0
  1099. package/build/modules/vc/models/credential/W3cV2RefreshService.mjs +27 -0
  1100. package/build/modules/vc/models/credential/W3cV2RefreshService.mjs.map +1 -0
  1101. package/build/modules/vc/models/credential/W3cV2TermsOfUse.d.mts +18 -0
  1102. package/build/modules/vc/models/credential/W3cV2TermsOfUse.d.mts.map +1 -0
  1103. package/build/modules/vc/models/credential/W3cV2TermsOfUse.mjs +27 -0
  1104. package/build/modules/vc/models/credential/W3cV2TermsOfUse.mjs.map +1 -0
  1105. package/build/modules/vc/models/credential/W3cV2VerifiableCredential.d.mts +26 -0
  1106. package/build/modules/vc/models/credential/W3cV2VerifiableCredential.d.mts.map +1 -0
  1107. package/build/modules/vc/models/credential/W3cV2VerifiableCredential.mjs +42 -0
  1108. package/build/modules/vc/models/credential/W3cV2VerifiableCredential.mjs.map +1 -0
  1109. package/build/modules/vc/models/credential/W3cVerifiableCredential.d.mts +10 -0
  1110. package/build/modules/vc/models/credential/W3cVerifiableCredential.d.mts.map +1 -0
  1111. package/build/modules/vc/models/credential/W3cVerifiableCredential.mjs +36 -0
  1112. package/build/modules/vc/models/credential/W3cVerifiableCredential.mjs.map +1 -0
  1113. package/build/modules/vc/models/credential/index.d.mts +19 -0
  1114. package/build/modules/vc/models/credential/index.mjs +19 -0
  1115. package/build/modules/vc/models/index.d.mts +30 -0
  1116. package/build/modules/vc/models/index.mjs +25 -0
  1117. package/build/modules/vc/models/presentation/W3cHolder.d.mts +16 -0
  1118. package/build/modules/vc/models/presentation/W3cHolder.d.mts.map +1 -0
  1119. package/build/modules/vc/models/presentation/W3cHolder.mjs +45 -0
  1120. package/build/modules/vc/models/presentation/W3cHolder.mjs.map +1 -0
  1121. package/build/modules/vc/models/presentation/W3cJsonPresentation.d.mts +20 -0
  1122. package/build/modules/vc/models/presentation/W3cJsonPresentation.d.mts.map +1 -0
  1123. package/build/modules/vc/models/presentation/W3cPresentation.d.mts +26 -0
  1124. package/build/modules/vc/models/presentation/W3cPresentation.d.mts.map +1 -0
  1125. package/build/modules/vc/models/presentation/W3cPresentation.mjs +63 -0
  1126. package/build/modules/vc/models/presentation/W3cPresentation.mjs.map +1 -0
  1127. package/build/modules/vc/models/presentation/W3cV2EnvelopedVerifiablePresentation.d.mts +39 -0
  1128. package/build/modules/vc/models/presentation/W3cV2EnvelopedVerifiablePresentation.d.mts.map +1 -0
  1129. package/build/modules/vc/models/presentation/W3cV2EnvelopedVerifiablePresentation.mjs +97 -0
  1130. package/build/modules/vc/models/presentation/W3cV2EnvelopedVerifiablePresentation.mjs.map +1 -0
  1131. package/build/modules/vc/models/presentation/W3cV2Holder.d.mts +20 -0
  1132. package/build/modules/vc/models/presentation/W3cV2Holder.d.mts.map +1 -0
  1133. package/build/modules/vc/models/presentation/W3cV2Holder.mjs +53 -0
  1134. package/build/modules/vc/models/presentation/W3cV2Holder.mjs.map +1 -0
  1135. package/build/modules/vc/models/presentation/W3cV2JsonPresentation.d.mts +18 -0
  1136. package/build/modules/vc/models/presentation/W3cV2JsonPresentation.d.mts.map +1 -0
  1137. package/build/modules/vc/models/presentation/W3cV2Presentation.d.mts +28 -0
  1138. package/build/modules/vc/models/presentation/W3cV2Presentation.d.mts.map +1 -0
  1139. package/build/modules/vc/models/presentation/W3cV2Presentation.mjs +64 -0
  1140. package/build/modules/vc/models/presentation/W3cV2Presentation.mjs.map +1 -0
  1141. package/build/modules/vc/models/presentation/W3cV2VerifiablePresentation.d.mts +27 -0
  1142. package/build/modules/vc/models/presentation/W3cV2VerifiablePresentation.d.mts.map +1 -0
  1143. package/build/modules/vc/models/presentation/W3cVerifiablePresentation.d.mts +11 -0
  1144. package/build/modules/vc/models/presentation/W3cVerifiablePresentation.d.mts.map +1 -0
  1145. package/build/modules/vc/models/presentation/index.d.mts +6 -0
  1146. package/build/modules/vc/models/presentation/index.mjs +5 -0
  1147. package/build/modules/vc/repository/W3cCredentialRecord.d.mts +81 -0
  1148. package/build/modules/vc/repository/W3cCredentialRecord.d.mts.map +1 -0
  1149. package/build/modules/vc/repository/W3cCredentialRecord.mjs +87 -0
  1150. package/build/modules/vc/repository/W3cCredentialRecord.mjs.map +1 -0
  1151. package/build/modules/vc/repository/W3cCredentialRepository.d.mts +12 -0
  1152. package/build/modules/vc/repository/W3cCredentialRepository.d.mts.map +1 -0
  1153. package/build/modules/vc/repository/W3cCredentialRepository.mjs +27 -0
  1154. package/build/modules/vc/repository/W3cCredentialRepository.mjs.map +1 -0
  1155. package/build/modules/vc/repository/W3cV2CredentialRecord.d.mts +67 -0
  1156. package/build/modules/vc/repository/W3cV2CredentialRecord.d.mts.map +1 -0
  1157. package/build/modules/vc/repository/W3cV2CredentialRecord.mjs +82 -0
  1158. package/build/modules/vc/repository/W3cV2CredentialRecord.mjs.map +1 -0
  1159. package/build/modules/vc/repository/W3cV2CredentialRepository.d.mts +12 -0
  1160. package/build/modules/vc/repository/W3cV2CredentialRepository.d.mts.map +1 -0
  1161. package/build/modules/vc/repository/W3cV2CredentialRepository.mjs +27 -0
  1162. package/build/modules/vc/repository/W3cV2CredentialRepository.mjs.map +1 -0
  1163. package/build/modules/vc/repository/index.d.mts +4 -0
  1164. package/build/modules/vc/repository/index.mjs +6 -0
  1165. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwt.d.mts +32 -0
  1166. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwt.d.mts.map +1 -0
  1167. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwt.mjs +33 -0
  1168. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwt.mjs.map +1 -0
  1169. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtCredentialService.d.mts +50 -0
  1170. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtCredentialService.d.mts.map +1 -0
  1171. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtCredentialService.mjs +250 -0
  1172. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtCredentialService.mjs.map +1 -0
  1173. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiableCredential.d.mts +42 -0
  1174. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiableCredential.d.mts.map +1 -0
  1175. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiableCredential.mjs +66 -0
  1176. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiableCredential.mjs.map +1 -0
  1177. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiablePresentation.d.mts +43 -0
  1178. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiablePresentation.d.mts.map +1 -0
  1179. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiablePresentation.mjs +61 -0
  1180. package/build/modules/vc/sd-jwt-vc/W3cV2SdJwtVerifiablePresentation.mjs.map +1 -0
  1181. package/build/modules/vc/sd-jwt-vc/index.d.mts +4 -0
  1182. package/build/modules/vc/sd-jwt-vc/index.mjs +6 -0
  1183. package/build/modules/vc/util.d.mts +11 -0
  1184. package/build/modules/vc/util.d.mts.map +1 -0
  1185. package/build/modules/vc/util.mjs +19 -0
  1186. package/build/modules/vc/util.mjs.map +1 -0
  1187. package/build/modules/vc/v2-jwt-utils.mjs +96 -0
  1188. package/build/modules/vc/v2-jwt-utils.mjs.map +1 -0
  1189. package/build/modules/vc/validators.mjs +48 -0
  1190. package/build/modules/vc/validators.mjs.map +1 -0
  1191. package/build/modules/x509/X509Api.d.mts +30 -0
  1192. package/build/modules/x509/X509Api.d.mts.map +1 -0
  1193. package/build/modules/x509/X509Api.mjs +39 -0
  1194. package/build/modules/x509/X509Api.mjs.map +1 -0
  1195. package/build/modules/x509/X509Certificate.d.mts +115 -0
  1196. package/build/modules/x509/X509Certificate.d.mts.map +1 -0
  1197. package/build/modules/x509/X509Certificate.mjs +236 -0
  1198. package/build/modules/x509/X509Certificate.mjs.map +1 -0
  1199. package/build/modules/x509/X509Error.d.mts +8 -0
  1200. package/build/modules/x509/X509Error.d.mts.map +1 -0
  1201. package/build/modules/x509/X509Error.mjs +11 -0
  1202. package/build/modules/x509/X509Error.mjs.map +1 -0
  1203. package/build/modules/x509/X509Module.d.mts +22 -0
  1204. package/build/modules/x509/X509Module.d.mts.map +1 -0
  1205. package/build/modules/x509/X509Module.mjs +27 -0
  1206. package/build/modules/x509/X509Module.mjs.map +1 -0
  1207. package/build/modules/x509/X509ModuleConfig.d.mts +104 -0
  1208. package/build/modules/x509/X509ModuleConfig.d.mts.map +1 -0
  1209. package/build/modules/x509/X509ModuleConfig.mjs +40 -0
  1210. package/build/modules/x509/X509ModuleConfig.mjs.map +1 -0
  1211. package/build/modules/x509/X509Service.d.mts +47 -0
  1212. package/build/modules/x509/X509Service.d.mts.map +1 -0
  1213. package/build/modules/x509/X509Service.mjs +89 -0
  1214. package/build/modules/x509/X509Service.mjs.map +1 -0
  1215. package/build/modules/x509/X509ServiceOptions.d.mts +142 -0
  1216. package/build/modules/x509/X509ServiceOptions.d.mts.map +1 -0
  1217. package/build/modules/x509/X509ServiceOptions.mjs +3 -0
  1218. package/build/modules/x509/extraction.d.mts +9 -0
  1219. package/build/modules/x509/extraction.d.mts.map +1 -0
  1220. package/build/modules/x509/extraction.mjs +12 -0
  1221. package/build/modules/x509/extraction.mjs.map +1 -0
  1222. package/build/modules/x509/index.d.mts +11 -0
  1223. package/build/modules/x509/index.mjs +13 -0
  1224. package/build/modules/x509/utils/extensions.d.mts +21 -0
  1225. package/build/modules/x509/utils/extensions.d.mts.map +1 -0
  1226. package/build/modules/x509/utils/extensions.mjs +51 -0
  1227. package/build/modules/x509/utils/extensions.mjs.map +1 -0
  1228. package/build/modules/x509/utils/index.d.mts +2 -0
  1229. package/build/modules/x509/utils/index.mjs +4 -0
  1230. package/build/modules/x509/utils/nameConversion.d.mts +7 -0
  1231. package/build/modules/x509/utils/nameConversion.d.mts.map +1 -0
  1232. package/build/modules/x509/utils/nameConversion.mjs +19 -0
  1233. package/build/modules/x509/utils/nameConversion.mjs.map +1 -0
  1234. package/build/plugins/DependencyManager.d.mts +57 -0
  1235. package/build/plugins/DependencyManager.d.mts.map +1 -0
  1236. package/build/plugins/DependencyManager.mjs +132 -0
  1237. package/build/plugins/DependencyManager.mjs.map +1 -0
  1238. package/build/plugins/Module.d.mts +62 -0
  1239. package/build/plugins/Module.d.mts.map +1 -0
  1240. package/build/plugins/index.d.mts +5 -0
  1241. package/build/plugins/index.mjs +7 -0
  1242. package/build/plugins/utils.d.mts +13 -0
  1243. package/build/plugins/utils.d.mts.map +1 -0
  1244. package/build/plugins/utils.mjs +18 -0
  1245. package/build/plugins/utils.mjs.map +1 -0
  1246. package/build/storage/BaseRecord.d.mts +61 -0
  1247. package/build/storage/BaseRecord.d.mts.map +1 -0
  1248. package/build/storage/BaseRecord.mjs +75 -0
  1249. package/build/storage/BaseRecord.mjs.map +1 -0
  1250. package/build/storage/FileSystem.d.mts +24 -0
  1251. package/build/storage/FileSystem.d.mts.map +1 -0
  1252. package/build/storage/Metadata.d.mts +61 -0
  1253. package/build/storage/Metadata.d.mts.map +1 -0
  1254. package/build/storage/Metadata.mjs +74 -0
  1255. package/build/storage/Metadata.mjs.map +1 -0
  1256. package/build/storage/Repository.d.mts +65 -0
  1257. package/build/storage/Repository.d.mts.map +1 -0
  1258. package/build/storage/Repository.mjs +153 -0
  1259. package/build/storage/Repository.mjs.map +1 -0
  1260. package/build/storage/RepositoryEvents.d.mts +33 -0
  1261. package/build/storage/RepositoryEvents.d.mts.map +1 -0
  1262. package/build/storage/RepositoryEvents.mjs +13 -0
  1263. package/build/storage/RepositoryEvents.mjs.map +1 -0
  1264. package/build/storage/StorageService.d.mts +99 -0
  1265. package/build/storage/StorageService.d.mts.map +1 -0
  1266. package/build/storage/index.mjs +8 -0
  1267. package/build/storage/migration/StorageUpdateService.d.mts +29 -0
  1268. package/build/storage/migration/StorageUpdateService.d.mts.map +1 -0
  1269. package/build/storage/migration/StorageUpdateService.mjs +67 -0
  1270. package/build/storage/migration/StorageUpdateService.mjs.map +1 -0
  1271. package/build/storage/migration/UpdateAssistant.d.mts +47 -0
  1272. package/build/storage/migration/UpdateAssistant.d.mts.map +1 -0
  1273. package/build/storage/migration/UpdateAssistant.mjs +95 -0
  1274. package/build/storage/migration/UpdateAssistant.mjs.map +1 -0
  1275. package/build/storage/migration/error/StorageUpdateError.mjs +14 -0
  1276. package/build/storage/migration/error/StorageUpdateError.mjs.map +1 -0
  1277. package/build/storage/migration/index.d.mts +6 -0
  1278. package/build/storage/migration/index.mjs +7 -0
  1279. package/build/storage/migration/isUpToDate.d.mts +8 -0
  1280. package/build/storage/migration/isUpToDate.d.mts.map +1 -0
  1281. package/build/storage/migration/isUpToDate.mjs +15 -0
  1282. package/build/storage/migration/isUpToDate.mjs.map +1 -0
  1283. package/build/storage/migration/repository/StorageVersionRecord.d.mts +20 -0
  1284. package/build/storage/migration/repository/StorageVersionRecord.d.mts.map +1 -0
  1285. package/build/storage/migration/repository/StorageVersionRecord.mjs +31 -0
  1286. package/build/storage/migration/repository/StorageVersionRecord.mjs.map +1 -0
  1287. package/build/storage/migration/repository/StorageVersionRepository.d.mts +12 -0
  1288. package/build/storage/migration/repository/StorageVersionRepository.d.mts.map +1 -0
  1289. package/build/storage/migration/repository/StorageVersionRepository.mjs +27 -0
  1290. package/build/storage/migration/repository/StorageVersionRepository.mjs.map +1 -0
  1291. package/build/storage/migration/updates/0.3-0.3.1/did.mjs +36 -0
  1292. package/build/storage/migration/updates/0.3-0.3.1/did.mjs.map +1 -0
  1293. package/build/storage/migration/updates/0.3-0.3.1/index.d.mts +7 -0
  1294. package/build/storage/migration/updates/0.3-0.3.1/index.d.mts.map +1 -0
  1295. package/build/storage/migration/updates/0.3-0.3.1/index.mjs +12 -0
  1296. package/build/storage/migration/updates/0.3-0.3.1/index.mjs.map +1 -0
  1297. package/build/storage/migration/updates/0.3.1-0.4/cache.mjs +34 -0
  1298. package/build/storage/migration/updates/0.3.1-0.4/cache.mjs.map +1 -0
  1299. package/build/storage/migration/updates/0.3.1-0.4/did.mjs +41 -0
  1300. package/build/storage/migration/updates/0.3.1-0.4/did.mjs.map +1 -0
  1301. package/build/storage/migration/updates/0.3.1-0.4/index.d.mts +7 -0
  1302. package/build/storage/migration/updates/0.3.1-0.4/index.d.mts.map +1 -0
  1303. package/build/storage/migration/updates/0.3.1-0.4/index.mjs +16 -0
  1304. package/build/storage/migration/updates/0.3.1-0.4/index.mjs.map +1 -0
  1305. package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.mjs +25 -0
  1306. package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.mjs.map +1 -0
  1307. package/build/storage/migration/updates/0.4-0.5/index.d.mts +7 -0
  1308. package/build/storage/migration/updates/0.4-0.5/index.d.mts.map +1 -0
  1309. package/build/storage/migration/updates/0.4-0.5/index.mjs +12 -0
  1310. package/build/storage/migration/updates/0.4-0.5/index.mjs.map +1 -0
  1311. package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.mjs +61 -0
  1312. package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.mjs.map +1 -0
  1313. package/build/storage/migration/updates.d.mts +43 -0
  1314. package/build/storage/migration/updates.d.mts.map +1 -0
  1315. package/build/storage/migration/updates.mjs +42 -0
  1316. package/build/storage/migration/updates.mjs.map +1 -0
  1317. package/build/types.d.mts +68 -0
  1318. package/build/types.d.mts.map +1 -0
  1319. package/build/types.mjs +18 -0
  1320. package/build/types.mjs.map +1 -0
  1321. package/build/utils/JsonEncoder.d.mts +51 -0
  1322. package/build/utils/JsonEncoder.d.mts.map +1 -0
  1323. package/build/utils/JsonEncoder.mjs +69 -0
  1324. package/build/utils/JsonEncoder.mjs.map +1 -0
  1325. package/build/utils/JsonTransformer.d.mts +22 -0
  1326. package/build/utils/JsonTransformer.d.mts.map +1 -0
  1327. package/build/utils/JsonTransformer.mjs +37 -0
  1328. package/build/utils/JsonTransformer.mjs.map +1 -0
  1329. package/build/utils/MessageValidator.d.mts +13 -0
  1330. package/build/utils/MessageValidator.d.mts.map +1 -0
  1331. package/build/utils/MessageValidator.mjs +28 -0
  1332. package/build/utils/MessageValidator.mjs.map +1 -0
  1333. package/build/utils/MultiBaseEncoder.d.mts +30 -0
  1334. package/build/utils/MultiBaseEncoder.d.mts.map +1 -0
  1335. package/build/utils/MultiBaseEncoder.mjs +50 -0
  1336. package/build/utils/MultiBaseEncoder.mjs.map +1 -0
  1337. package/build/utils/MultiHashEncoder.d.mts +41 -0
  1338. package/build/utils/MultiHashEncoder.d.mts.map +1 -0
  1339. package/build/utils/MultiHashEncoder.mjs +79 -0
  1340. package/build/utils/MultiHashEncoder.mjs.map +1 -0
  1341. package/build/utils/TypedArrayEncoder.d.mts +68 -0
  1342. package/build/utils/TypedArrayEncoder.d.mts.map +1 -0
  1343. package/build/utils/TypedArrayEncoder.mjs +96 -0
  1344. package/build/utils/TypedArrayEncoder.mjs.map +1 -0
  1345. package/build/utils/VarintEncoder.d.mts +1 -0
  1346. package/build/utils/VarintEncoder.mjs +22 -0
  1347. package/build/utils/VarintEncoder.mjs.map +1 -0
  1348. package/build/utils/array.d.mts +7 -0
  1349. package/build/utils/array.d.mts.map +1 -0
  1350. package/build/utils/array.mjs +16 -0
  1351. package/build/utils/array.mjs.map +1 -0
  1352. package/build/utils/base58.mjs +16 -0
  1353. package/build/utils/base58.mjs.map +1 -0
  1354. package/build/utils/base64.d.mts +5 -0
  1355. package/build/utils/base64.d.mts.map +1 -0
  1356. package/build/utils/base64.mjs +10 -0
  1357. package/build/utils/base64.mjs.map +1 -0
  1358. package/build/utils/buffer.d.mts +2 -0
  1359. package/build/utils/buffer.mjs +5 -0
  1360. package/build/utils/credentialUse.d.mts +84 -0
  1361. package/build/utils/credentialUse.d.mts.map +1 -0
  1362. package/build/utils/credentialUse.mjs +117 -0
  1363. package/build/utils/credentialUse.mjs.map +1 -0
  1364. package/build/utils/credentialUseTypes.d.mts +77 -0
  1365. package/build/utils/credentialUseTypes.d.mts.map +1 -0
  1366. package/build/utils/credentialUseTypes.mjs +83 -0
  1367. package/build/utils/credentialUseTypes.mjs.map +1 -0
  1368. package/build/utils/deepEquality.d.mts +13 -0
  1369. package/build/utils/deepEquality.d.mts.map +1 -0
  1370. package/build/utils/deepEquality.mjs +41 -0
  1371. package/build/utils/deepEquality.mjs.map +1 -0
  1372. package/build/utils/did.d.mts +13 -0
  1373. package/build/utils/did.d.mts.map +1 -0
  1374. package/build/utils/did.mjs +23 -0
  1375. package/build/utils/did.mjs.map +1 -0
  1376. package/build/utils/domain.d.mts +5 -0
  1377. package/build/utils/domain.d.mts.map +1 -0
  1378. package/build/utils/domain.mjs +11 -0
  1379. package/build/utils/domain.mjs.map +1 -0
  1380. package/build/utils/fetch.mjs +20 -0
  1381. package/build/utils/fetch.mjs.map +1 -0
  1382. package/build/utils/index.d.mts +15 -0
  1383. package/build/utils/index.mjs +17 -0
  1384. package/build/utils/mixins.d.mts +7 -0
  1385. package/build/utils/mixins.d.mts.map +1 -0
  1386. package/build/utils/objectEquality.d.mts +5 -0
  1387. package/build/utils/objectEquality.d.mts.map +1 -0
  1388. package/build/utils/objectEquality.mjs +18 -0
  1389. package/build/utils/objectEquality.mjs.map +1 -0
  1390. package/build/utils/path.d.mts +18 -0
  1391. package/build/utils/path.d.mts.map +1 -0
  1392. package/build/utils/path.mjs +35 -0
  1393. package/build/utils/path.mjs.map +1 -0
  1394. package/build/utils/timestamp.d.mts +13 -0
  1395. package/build/utils/timestamp.d.mts.map +1 -0
  1396. package/build/utils/timestamp.mjs +29 -0
  1397. package/build/utils/timestamp.mjs.map +1 -0
  1398. package/build/utils/transformers.d.mts +14 -0
  1399. package/build/utils/transformers.d.mts.map +1 -0
  1400. package/build/utils/transformers.mjs +41 -0
  1401. package/build/utils/transformers.mjs.map +1 -0
  1402. package/build/utils/uri.d.mts +5 -0
  1403. package/build/utils/uri.d.mts.map +1 -0
  1404. package/build/utils/uri.mjs +11 -0
  1405. package/build/utils/uri.mjs.map +1 -0
  1406. package/build/utils/uuid.d.mts +6 -0
  1407. package/build/utils/uuid.d.mts.map +1 -0
  1408. package/build/utils/uuid.mjs +15 -0
  1409. package/build/utils/uuid.mjs.map +1 -0
  1410. package/build/utils/validators.d.mts +22 -0
  1411. package/build/utils/validators.d.mts.map +1 -0
  1412. package/build/utils/validators.mjs +79 -0
  1413. package/build/utils/validators.mjs.map +1 -0
  1414. package/build/utils/version.d.mts +5 -0
  1415. package/build/utils/version.d.mts.map +1 -0
  1416. package/build/utils/version.mjs +21 -0
  1417. package/build/utils/version.mjs.map +1 -0
  1418. package/build/utils/zod-error.mjs +13 -0
  1419. package/build/utils/zod-error.mjs.map +1 -0
  1420. package/build/utils/zod.d.mts +2 -0
  1421. package/build/utils/zod.mjs +20 -0
  1422. package/build/utils/zod.mjs.map +1 -0
  1423. package/package.json +58 -51
  1424. package/build/agent/Agent.d.ts +0 -33
  1425. package/build/agent/Agent.js +0 -187
  1426. package/build/agent/Agent.js.map +0 -1
  1427. package/build/agent/AgentConfig.d.ts +0 -60
  1428. package/build/agent/AgentConfig.js +0 -82
  1429. package/build/agent/AgentConfig.js.map +0 -1
  1430. package/build/agent/AgentDependencies.d.ts +0 -11
  1431. package/build/agent/AgentDependencies.js +0 -3
  1432. package/build/agent/AgentDependencies.js.map +0 -1
  1433. package/build/agent/AgentMessage.d.ts +0 -92
  1434. package/build/agent/AgentMessage.js +0 -66
  1435. package/build/agent/AgentMessage.js.map +0 -1
  1436. package/build/agent/AgentModules.d.ts +0 -160
  1437. package/build/agent/AgentModules.js +0 -115
  1438. package/build/agent/AgentModules.js.map +0 -1
  1439. package/build/agent/BaseAgent.d.ts +0 -69
  1440. package/build/agent/BaseAgent.js +0 -147
  1441. package/build/agent/BaseAgent.js.map +0 -1
  1442. package/build/agent/BaseMessage.d.ts +0 -11
  1443. package/build/agent/BaseMessage.js +0 -34
  1444. package/build/agent/BaseMessage.js.map +0 -1
  1445. package/build/agent/Dispatcher.d.ts +0 -15
  1446. package/build/agent/Dispatcher.js +0 -132
  1447. package/build/agent/Dispatcher.js.map +0 -1
  1448. package/build/agent/EnvelopeService.d.ts +0 -21
  1449. package/build/agent/EnvelopeService.js +0 -66
  1450. package/build/agent/EnvelopeService.js.map +0 -1
  1451. package/build/agent/EventEmitter.d.ts +0 -15
  1452. package/build/agent/EventEmitter.js +0 -48
  1453. package/build/agent/EventEmitter.js.map +0 -1
  1454. package/build/agent/Events.d.ts +0 -46
  1455. package/build/agent/Events.js +0 -17
  1456. package/build/agent/Events.js.map +0 -1
  1457. package/build/agent/FeatureRegistry.d.ts +0 -21
  1458. package/build/agent/FeatureRegistry.js +0 -66
  1459. package/build/agent/FeatureRegistry.js.map +0 -1
  1460. package/build/agent/MessageHandler.d.ts +0 -14
  1461. package/build/agent/MessageHandler.js +0 -3
  1462. package/build/agent/MessageHandler.js.map +0 -1
  1463. package/build/agent/MessageHandlerMiddleware.d.ts +0 -7
  1464. package/build/agent/MessageHandlerMiddleware.js +0 -26
  1465. package/build/agent/MessageHandlerMiddleware.js.map +0 -1
  1466. package/build/agent/MessageHandlerRegistry.d.ts +0 -30
  1467. package/build/agent/MessageHandlerRegistry.js +0 -98
  1468. package/build/agent/MessageHandlerRegistry.js.map +0 -1
  1469. package/build/agent/MessageReceiver.d.ts +0 -63
  1470. package/build/agent/MessageReceiver.js +0 -245
  1471. package/build/agent/MessageReceiver.js.map +0 -1
  1472. package/build/agent/MessageSender.d.ts +0 -56
  1473. package/build/agent/MessageSender.js +0 -472
  1474. package/build/agent/MessageSender.js.map +0 -1
  1475. package/build/agent/TransportService.d.ts +0 -32
  1476. package/build/agent/TransportService.js +0 -78
  1477. package/build/agent/TransportService.js.map +0 -1
  1478. package/build/agent/context/AgentContext.d.ts +0 -39
  1479. package/build/agent/context/AgentContext.js +0 -40
  1480. package/build/agent/context/AgentContext.js.map +0 -1
  1481. package/build/agent/context/AgentContextProvider.d.ts +0 -26
  1482. package/build/agent/context/AgentContextProvider.js +0 -3
  1483. package/build/agent/context/AgentContextProvider.js.map +0 -1
  1484. package/build/agent/context/DefaultAgentContextProvider.d.ts +0 -17
  1485. package/build/agent/context/DefaultAgentContextProvider.js +0 -54
  1486. package/build/agent/context/DefaultAgentContextProvider.js.map +0 -1
  1487. package/build/agent/context/index.d.ts +0 -3
  1488. package/build/agent/context/index.js +0 -20
  1489. package/build/agent/context/index.js.map +0 -1
  1490. package/build/agent/getOutboundMessageContext.d.ts +0 -27
  1491. package/build/agent/getOutboundMessageContext.js +0 -198
  1492. package/build/agent/getOutboundMessageContext.js.map +0 -1
  1493. package/build/agent/index.d.ts +0 -1
  1494. package/build/agent/index.js +0 -18
  1495. package/build/agent/index.js.map +0 -1
  1496. package/build/agent/models/InboundMessageContext.d.ts +0 -46
  1497. package/build/agent/models/InboundMessageContext.js +0 -48
  1498. package/build/agent/models/InboundMessageContext.js.map +0 -1
  1499. package/build/agent/models/OutboundMessageContext.d.ts +0 -51
  1500. package/build/agent/models/OutboundMessageContext.js +0 -46
  1501. package/build/agent/models/OutboundMessageContext.js.map +0 -1
  1502. package/build/agent/models/OutboundMessageSendStatus.d.ts +0 -6
  1503. package/build/agent/models/OutboundMessageSendStatus.js +0 -11
  1504. package/build/agent/models/OutboundMessageSendStatus.js.map +0 -1
  1505. package/build/agent/models/features/Feature.d.ts +0 -18
  1506. package/build/agent/models/features/Feature.js +0 -62
  1507. package/build/agent/models/features/Feature.js.map +0 -1
  1508. package/build/agent/models/features/FeatureQuery.d.ts +0 -9
  1509. package/build/agent/models/features/FeatureQuery.js +0 -33
  1510. package/build/agent/models/features/FeatureQuery.js.map +0 -1
  1511. package/build/agent/models/features/GoalCode.d.ts +0 -7
  1512. package/build/agent/models/features/GoalCode.js +0 -12
  1513. package/build/agent/models/features/GoalCode.js.map +0 -1
  1514. package/build/agent/models/features/GovernanceFramework.d.ts +0 -7
  1515. package/build/agent/models/features/GovernanceFramework.js +0 -12
  1516. package/build/agent/models/features/GovernanceFramework.js.map +0 -1
  1517. package/build/agent/models/features/Protocol.d.ts +0 -10
  1518. package/build/agent/models/features/Protocol.js +0 -30
  1519. package/build/agent/models/features/Protocol.js.map +0 -1
  1520. package/build/agent/models/features/index.d.ts +0 -5
  1521. package/build/agent/models/features/index.js +0 -22
  1522. package/build/agent/models/features/index.js.map +0 -1
  1523. package/build/agent/models/index.d.ts +0 -4
  1524. package/build/agent/models/index.js +0 -21
  1525. package/build/agent/models/index.js.map +0 -1
  1526. package/build/constants.d.ts +0 -12
  1527. package/build/constants.js +0 -16
  1528. package/build/constants.js.map +0 -1
  1529. package/build/crypto/JwsService.d.ts +0 -48
  1530. package/build/crypto/JwsService.js +0 -213
  1531. package/build/crypto/JwsService.js.map +0 -1
  1532. package/build/crypto/JwsTypes.d.ts +0 -52
  1533. package/build/crypto/JwsTypes.js +0 -5
  1534. package/build/crypto/JwsTypes.js.map +0 -1
  1535. package/build/crypto/Key.d.ts +0 -16
  1536. package/build/crypto/Key.js +0 -55
  1537. package/build/crypto/Key.js.map +0 -1
  1538. package/build/crypto/KeyBackend.d.ts +0 -19
  1539. package/build/crypto/KeyBackend.js +0 -24
  1540. package/build/crypto/KeyBackend.js.map +0 -1
  1541. package/build/crypto/KeyType.d.ts +0 -11
  1542. package/build/crypto/KeyType.js +0 -16
  1543. package/build/crypto/KeyType.js.map +0 -1
  1544. package/build/crypto/WalletKeyPair.d.ts +0 -107
  1545. package/build/crypto/WalletKeyPair.js +0 -94
  1546. package/build/crypto/WalletKeyPair.js.map +0 -1
  1547. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.d.ts +0 -24
  1548. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.js +0 -29
  1549. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkf.js.map +0 -1
  1550. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.d.ts +0 -24
  1551. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.js +0 -29
  1552. package/build/crypto/__tests__/__fixtures__/didJwsz6Mkv.js.map +0 -1
  1553. package/build/crypto/__tests__/__fixtures__/didJwszDnaey.d.ts +0 -24
  1554. package/build/crypto/__tests__/__fixtures__/didJwszDnaey.js +0 -29
  1555. package/build/crypto/__tests__/__fixtures__/didJwszDnaey.js.map +0 -1
  1556. package/build/crypto/hashes/Hasher.d.ts +0 -4
  1557. package/build/crypto/hashes/Hasher.js +0 -20
  1558. package/build/crypto/hashes/Hasher.js.map +0 -1
  1559. package/build/crypto/hashes/IHash.d.ts +0 -3
  1560. package/build/crypto/hashes/IHash.js +0 -3
  1561. package/build/crypto/hashes/IHash.js.map +0 -1
  1562. package/build/crypto/hashes/Sha1.d.ts +0 -4
  1563. package/build/crypto/hashes/Sha1.js +0 -11
  1564. package/build/crypto/hashes/Sha1.js.map +0 -1
  1565. package/build/crypto/hashes/Sha256.d.ts +0 -4
  1566. package/build/crypto/hashes/Sha256.js +0 -11
  1567. package/build/crypto/hashes/Sha256.js.map +0 -1
  1568. package/build/crypto/hashes/index.d.ts +0 -3
  1569. package/build/crypto/hashes/index.js +0 -20
  1570. package/build/crypto/hashes/index.js.map +0 -1
  1571. package/build/crypto/index.d.ts +0 -10
  1572. package/build/crypto/index.js +0 -31
  1573. package/build/crypto/index.js.map +0 -1
  1574. package/build/crypto/jose/index.d.ts +0 -3
  1575. package/build/crypto/jose/index.js +0 -20
  1576. package/build/crypto/jose/index.js.map +0 -1
  1577. package/build/crypto/jose/jwa/alg.d.ts +0 -37
  1578. package/build/crypto/jose/jwa/alg.js +0 -42
  1579. package/build/crypto/jose/jwa/alg.js.map +0 -1
  1580. package/build/crypto/jose/jwa/crv.d.ts +0 -8
  1581. package/build/crypto/jose/jwa/crv.js +0 -13
  1582. package/build/crypto/jose/jwa/crv.js.map +0 -1
  1583. package/build/crypto/jose/jwa/index.d.ts +0 -3
  1584. package/build/crypto/jose/jwa/index.js +0 -11
  1585. package/build/crypto/jose/jwa/index.js.map +0 -1
  1586. package/build/crypto/jose/jwa/kty.d.ts +0 -6
  1587. package/build/crypto/jose/jwa/kty.js +0 -11
  1588. package/build/crypto/jose/jwa/kty.js.map +0 -1
  1589. package/build/crypto/jose/jwk/Ed25519Jwk.d.ts +0 -31
  1590. package/build/crypto/jose/jwk/Ed25519Jwk.js +0 -63
  1591. package/build/crypto/jose/jwk/Ed25519Jwk.js.map +0 -1
  1592. package/build/crypto/jose/jwk/Jwk.d.ts +0 -28
  1593. package/build/crypto/jose/jwk/Jwk.js +0 -20
  1594. package/build/crypto/jose/jwk/Jwk.js.map +0 -1
  1595. package/build/crypto/jose/jwk/K256Jwk.d.ts +0 -41
  1596. package/build/crypto/jose/jwk/K256Jwk.js +0 -80
  1597. package/build/crypto/jose/jwk/K256Jwk.js.map +0 -1
  1598. package/build/crypto/jose/jwk/P256Jwk.d.ts +0 -41
  1599. package/build/crypto/jose/jwk/P256Jwk.js +0 -80
  1600. package/build/crypto/jose/jwk/P256Jwk.js.map +0 -1
  1601. package/build/crypto/jose/jwk/P384Jwk.d.ts +0 -41
  1602. package/build/crypto/jose/jwk/P384Jwk.js +0 -80
  1603. package/build/crypto/jose/jwk/P384Jwk.js.map +0 -1
  1604. package/build/crypto/jose/jwk/P521Jwk.d.ts +0 -41
  1605. package/build/crypto/jose/jwk/P521Jwk.js +0 -80
  1606. package/build/crypto/jose/jwk/P521Jwk.js.map +0 -1
  1607. package/build/crypto/jose/jwk/X25519Jwk.d.ts +0 -30
  1608. package/build/crypto/jose/jwk/X25519Jwk.js +0 -67
  1609. package/build/crypto/jose/jwk/X25519Jwk.js.map +0 -1
  1610. package/build/crypto/jose/jwk/ecCompression.d.ts +0 -5
  1611. package/build/crypto/jose/jwk/ecCompression.js +0 -108
  1612. package/build/crypto/jose/jwk/ecCompression.js.map +0 -1
  1613. package/build/crypto/jose/jwk/index.d.ts +0 -7
  1614. package/build/crypto/jose/jwk/index.js +0 -31
  1615. package/build/crypto/jose/jwk/index.js.map +0 -1
  1616. package/build/crypto/jose/jwk/transform.d.ts +0 -14
  1617. package/build/crypto/jose/jwk/transform.js +0 -58
  1618. package/build/crypto/jose/jwk/transform.js.map +0 -1
  1619. package/build/crypto/jose/jwk/validate.d.ts +0 -16
  1620. package/build/crypto/jose/jwk/validate.js +0 -23
  1621. package/build/crypto/jose/jwk/validate.js.map +0 -1
  1622. package/build/crypto/jose/jwt/Jwt.d.ts +0 -22
  1623. package/build/crypto/jose/jwt/Jwt.js +0 -34
  1624. package/build/crypto/jose/jwt/Jwt.js.map +0 -1
  1625. package/build/crypto/jose/jwt/JwtPayload.d.ts +0 -101
  1626. package/build/crypto/jose/jwt/JwtPayload.js +0 -127
  1627. package/build/crypto/jose/jwt/JwtPayload.js.map +0 -1
  1628. package/build/crypto/jose/jwt/index.d.ts +0 -2
  1629. package/build/crypto/jose/jwt/index.js +0 -8
  1630. package/build/crypto/jose/jwt/index.js.map +0 -1
  1631. package/build/crypto/keyUtils.d.ts +0 -6
  1632. package/build/crypto/keyUtils.js +0 -65
  1633. package/build/crypto/keyUtils.js.map +0 -1
  1634. package/build/crypto/multiCodecKey.d.ts +0 -3
  1635. package/build/crypto/multiCodecKey.js +0 -33
  1636. package/build/crypto/multiCodecKey.js.map +0 -1
  1637. package/build/crypto/signing-provider/SigningProvider.d.ts +0 -27
  1638. package/build/crypto/signing-provider/SigningProvider.js +0 -3
  1639. package/build/crypto/signing-provider/SigningProvider.js.map +0 -1
  1640. package/build/crypto/signing-provider/SigningProviderError.d.ts +0 -3
  1641. package/build/crypto/signing-provider/SigningProviderError.js +0 -8
  1642. package/build/crypto/signing-provider/SigningProviderError.js.map +0 -1
  1643. package/build/crypto/signing-provider/SigningProviderRegistry.d.ts +0 -10
  1644. package/build/crypto/signing-provider/SigningProviderRegistry.js +0 -49
  1645. package/build/crypto/signing-provider/SigningProviderRegistry.js.map +0 -1
  1646. package/build/crypto/signing-provider/index.d.ts +0 -3
  1647. package/build/crypto/signing-provider/index.js +0 -20
  1648. package/build/crypto/signing-provider/index.js.map +0 -1
  1649. package/build/crypto/webcrypto/CredoSubtle.d.ts +0 -5
  1650. package/build/crypto/webcrypto/CredoSubtle.js +0 -40
  1651. package/build/crypto/webcrypto/CredoSubtle.js.map +0 -1
  1652. package/build/crypto/webcrypto/CredoWalletWebCrypto.d.ts +0 -14
  1653. package/build/crypto/webcrypto/CredoWalletWebCrypto.js +0 -87
  1654. package/build/crypto/webcrypto/CredoWalletWebCrypto.js.map +0 -1
  1655. package/build/crypto/webcrypto/CredoWebCrypto.d.ts +0 -10
  1656. package/build/crypto/webcrypto/CredoWebCrypto.js +0 -45
  1657. package/build/crypto/webcrypto/CredoWebCrypto.js.map +0 -1
  1658. package/build/crypto/webcrypto/CredoWebCryptoError.d.ts +0 -3
  1659. package/build/crypto/webcrypto/CredoWebCryptoError.js +0 -8
  1660. package/build/crypto/webcrypto/CredoWebCryptoError.js.map +0 -1
  1661. package/build/crypto/webcrypto/CredoWebCryptoKey.d.ts +0 -11
  1662. package/build/crypto/webcrypto/CredoWebCryptoKey.js +0 -39
  1663. package/build/crypto/webcrypto/CredoWebCryptoKey.js.map +0 -1
  1664. package/build/crypto/webcrypto/algorithmIdentifiers.d.ts +0 -31
  1665. package/build/crypto/webcrypto/algorithmIdentifiers.js +0 -41
  1666. package/build/crypto/webcrypto/algorithmIdentifiers.js.map +0 -1
  1667. package/build/crypto/webcrypto/index.d.ts +0 -2
  1668. package/build/crypto/webcrypto/index.js +0 -19
  1669. package/build/crypto/webcrypto/index.js.map +0 -1
  1670. package/build/crypto/webcrypto/providers/CredoEcdsaProvider.d.ts +0 -13
  1671. package/build/crypto/webcrypto/providers/CredoEcdsaProvider.js +0 -55
  1672. package/build/crypto/webcrypto/providers/CredoEcdsaProvider.js.map +0 -1
  1673. package/build/crypto/webcrypto/providers/CredoEd25519Provider.d.ts +0 -13
  1674. package/build/crypto/webcrypto/providers/CredoEd25519Provider.js +0 -55
  1675. package/build/crypto/webcrypto/providers/CredoEd25519Provider.js.map +0 -1
  1676. package/build/crypto/webcrypto/providers/CredoSha1Provider.d.ts +0 -7
  1677. package/build/crypto/webcrypto/providers/CredoSha1Provider.js +0 -47
  1678. package/build/crypto/webcrypto/providers/CredoSha1Provider.js.map +0 -1
  1679. package/build/crypto/webcrypto/providers/CredoSha256Provider.d.ts +0 -7
  1680. package/build/crypto/webcrypto/providers/CredoSha256Provider.js +0 -47
  1681. package/build/crypto/webcrypto/providers/CredoSha256Provider.js.map +0 -1
  1682. package/build/crypto/webcrypto/providers/index.d.ts +0 -3
  1683. package/build/crypto/webcrypto/providers/index.js +0 -20
  1684. package/build/crypto/webcrypto/providers/index.js.map +0 -1
  1685. package/build/crypto/webcrypto/types.d.ts +0 -42
  1686. package/build/crypto/webcrypto/types.js +0 -7
  1687. package/build/crypto/webcrypto/types.js.map +0 -1
  1688. package/build/crypto/webcrypto/utils/index.d.ts +0 -1
  1689. package/build/crypto/webcrypto/utils/index.js +0 -18
  1690. package/build/crypto/webcrypto/utils/index.js.map +0 -1
  1691. package/build/crypto/webcrypto/utils/keyAlgorithmConversion.d.ts +0 -7
  1692. package/build/crypto/webcrypto/utils/keyAlgorithmConversion.js +0 -80
  1693. package/build/crypto/webcrypto/utils/keyAlgorithmConversion.js.map +0 -1
  1694. package/build/decorators/ack/AckDecorator.d.ts +0 -13
  1695. package/build/decorators/ack/AckDecorator.js +0 -38
  1696. package/build/decorators/ack/AckDecorator.js.map +0 -1
  1697. package/build/decorators/ack/AckDecoratorExtension.d.ts +0 -13
  1698. package/build/decorators/ack/AckDecoratorExtension.js +0 -38
  1699. package/build/decorators/ack/AckDecoratorExtension.js.map +0 -1
  1700. package/build/decorators/attachment/Attachment.d.ts +0 -75
  1701. package/build/decorators/attachment/Attachment.js +0 -168
  1702. package/build/decorators/attachment/Attachment.js.map +0 -1
  1703. package/build/decorators/attachment/AttachmentExtension.d.ts +0 -15
  1704. package/build/decorators/attachment/AttachmentExtension.js +0 -41
  1705. package/build/decorators/attachment/AttachmentExtension.js.map +0 -1
  1706. package/build/decorators/l10n/L10nDecorator.d.ts +0 -7
  1707. package/build/decorators/l10n/L10nDecorator.js +0 -13
  1708. package/build/decorators/l10n/L10nDecorator.js.map +0 -1
  1709. package/build/decorators/l10n/L10nDecoratorExtension.d.ts +0 -12
  1710. package/build/decorators/l10n/L10nDecoratorExtension.js +0 -40
  1711. package/build/decorators/l10n/L10nDecoratorExtension.js.map +0 -1
  1712. package/build/decorators/service/ServiceDecorator.d.ts +0 -20
  1713. package/build/decorators/service/ServiceDecorator.js +0 -63
  1714. package/build/decorators/service/ServiceDecorator.js.map +0 -1
  1715. package/build/decorators/service/ServiceDecoratorExtension.d.ts +0 -12
  1716. package/build/decorators/service/ServiceDecoratorExtension.js +0 -31
  1717. package/build/decorators/service/ServiceDecoratorExtension.js.map +0 -1
  1718. package/build/decorators/signature/SignatureDecorator.d.ts +0 -11
  1719. package/build/decorators/signature/SignatureDecorator.js +0 -55
  1720. package/build/decorators/signature/SignatureDecorator.js.map +0 -1
  1721. package/build/decorators/signature/SignatureDecoratorUtils.d.ts +0 -21
  1722. package/build/decorators/signature/SignatureDecoratorUtils.js +0 -58
  1723. package/build/decorators/signature/SignatureDecoratorUtils.js.map +0 -1
  1724. package/build/decorators/thread/ThreadDecorator.d.ts +0 -26
  1725. package/build/decorators/thread/ThreadDecorator.js +0 -52
  1726. package/build/decorators/thread/ThreadDecorator.js.map +0 -1
  1727. package/build/decorators/thread/ThreadDecoratorExtension.d.ts +0 -15
  1728. package/build/decorators/thread/ThreadDecoratorExtension.js +0 -36
  1729. package/build/decorators/thread/ThreadDecoratorExtension.js.map +0 -1
  1730. package/build/decorators/timing/TimingDecorator.d.ts +0 -38
  1731. package/build/decorators/timing/TimingDecorator.js +0 -93
  1732. package/build/decorators/timing/TimingDecorator.js.map +0 -1
  1733. package/build/decorators/timing/TimingDecoratorExtension.d.ts +0 -14
  1734. package/build/decorators/timing/TimingDecoratorExtension.js +0 -32
  1735. package/build/decorators/timing/TimingDecoratorExtension.js.map +0 -1
  1736. package/build/decorators/transport/TransportDecorator.d.ts +0 -20
  1737. package/build/decorators/transport/TransportDecorator.js +0 -51
  1738. package/build/decorators/transport/TransportDecorator.js.map +0 -1
  1739. package/build/decorators/transport/TransportDecoratorExtension.d.ts +0 -13
  1740. package/build/decorators/transport/TransportDecoratorExtension.js +0 -54
  1741. package/build/decorators/transport/TransportDecoratorExtension.js.map +0 -1
  1742. package/build/error/BaseError.d.ts +0 -42
  1743. package/build/error/BaseError.js +0 -70
  1744. package/build/error/BaseError.js.map +0 -1
  1745. package/build/error/ClassValidationError.d.ts +0 -11
  1746. package/build/error/ClassValidationError.js +0 -18
  1747. package/build/error/ClassValidationError.js.map +0 -1
  1748. package/build/error/CredoError.d.ts +0 -11
  1749. package/build/error/CredoError.js +0 -16
  1750. package/build/error/CredoError.js.map +0 -1
  1751. package/build/error/MessageSendingError.d.ts +0 -9
  1752. package/build/error/MessageSendingError.js +0 -12
  1753. package/build/error/MessageSendingError.js.map +0 -1
  1754. package/build/error/RecordDuplicateError.d.ts +0 -7
  1755. package/build/error/RecordDuplicateError.js +0 -11
  1756. package/build/error/RecordDuplicateError.js.map +0 -1
  1757. package/build/error/RecordNotFoundError.d.ts +0 -7
  1758. package/build/error/RecordNotFoundError.js +0 -11
  1759. package/build/error/RecordNotFoundError.js.map +0 -1
  1760. package/build/error/ValidationErrorUtils.d.ts +0 -2
  1761. package/build/error/ValidationErrorUtils.js +0 -12
  1762. package/build/error/ValidationErrorUtils.js.map +0 -1
  1763. package/build/error/index.d.ts +0 -5
  1764. package/build/error/index.js +0 -22
  1765. package/build/error/index.js.map +0 -1
  1766. package/build/index.d.ts +0 -74
  1767. package/build/index.js +0 -129
  1768. package/build/index.js.map +0 -1
  1769. package/build/logger/BaseLogger.d.ts +0 -14
  1770. package/build/logger/BaseLogger.js +0 -14
  1771. package/build/logger/BaseLogger.js.map +0 -1
  1772. package/build/logger/ConsoleLogger.d.ts +0 -12
  1773. package/build/logger/ConsoleLogger.js +0 -61
  1774. package/build/logger/ConsoleLogger.js.map +0 -1
  1775. package/build/logger/Logger.d.ts +0 -20
  1776. package/build/logger/Logger.js +0 -16
  1777. package/build/logger/Logger.js.map +0 -1
  1778. package/build/logger/index.d.ts +0 -3
  1779. package/build/logger/index.js +0 -20
  1780. package/build/logger/index.js.map +0 -1
  1781. package/build/logger/replaceError.d.ts +0 -1
  1782. package/build/logger/replaceError.js +0 -17
  1783. package/build/logger/replaceError.js.map +0 -1
  1784. package/build/modules/basic-messages/BasicMessageEvents.d.ts +0 -13
  1785. package/build/modules/basic-messages/BasicMessageEvents.js +0 -8
  1786. package/build/modules/basic-messages/BasicMessageEvents.js.map +0 -1
  1787. package/build/modules/basic-messages/BasicMessageRole.d.ts +0 -4
  1788. package/build/modules/basic-messages/BasicMessageRole.js +0 -9
  1789. package/build/modules/basic-messages/BasicMessageRole.js.map +0 -1
  1790. package/build/modules/basic-messages/BasicMessagesApi.d.ts +0 -58
  1791. package/build/modules/basic-messages/BasicMessagesApi.js +0 -103
  1792. package/build/modules/basic-messages/BasicMessagesApi.js.map +0 -1
  1793. package/build/modules/basic-messages/BasicMessagesModule.d.ts +0 -10
  1794. package/build/modules/basic-messages/BasicMessagesModule.js +0 -29
  1795. package/build/modules/basic-messages/BasicMessagesModule.js.map +0 -1
  1796. package/build/modules/basic-messages/handlers/BasicMessageHandler.d.ts +0 -9
  1797. package/build/modules/basic-messages/handlers/BasicMessageHandler.js +0 -16
  1798. package/build/modules/basic-messages/handlers/BasicMessageHandler.js.map +0 -1
  1799. package/build/modules/basic-messages/handlers/index.d.ts +0 -1
  1800. package/build/modules/basic-messages/handlers/index.js +0 -18
  1801. package/build/modules/basic-messages/handlers/index.js.map +0 -1
  1802. package/build/modules/basic-messages/index.d.ts +0 -7
  1803. package/build/modules/basic-messages/index.js +0 -24
  1804. package/build/modules/basic-messages/index.js.map +0 -1
  1805. package/build/modules/basic-messages/messages/BasicMessage.d.ts +0 -19
  1806. package/build/modules/basic-messages/messages/BasicMessage.js +0 -53
  1807. package/build/modules/basic-messages/messages/BasicMessage.js.map +0 -1
  1808. package/build/modules/basic-messages/messages/index.d.ts +0 -1
  1809. package/build/modules/basic-messages/messages/index.js +0 -18
  1810. package/build/modules/basic-messages/messages/index.js.map +0 -1
  1811. package/build/modules/basic-messages/repository/BasicMessageRecord.d.ts +0 -39
  1812. package/build/modules/basic-messages/repository/BasicMessageRecord.js +0 -29
  1813. package/build/modules/basic-messages/repository/BasicMessageRecord.js.map +0 -1
  1814. package/build/modules/basic-messages/repository/BasicMessageRepository.d.ts +0 -7
  1815. package/build/modules/basic-messages/repository/BasicMessageRepository.js +0 -32
  1816. package/build/modules/basic-messages/repository/BasicMessageRepository.js.map +0 -1
  1817. package/build/modules/basic-messages/repository/index.d.ts +0 -2
  1818. package/build/modules/basic-messages/repository/index.js +0 -19
  1819. package/build/modules/basic-messages/repository/index.js.map +0 -1
  1820. package/build/modules/basic-messages/services/BasicMessageService.d.ts +0 -26
  1821. package/build/modules/basic-messages/services/BasicMessageService.js +0 -86
  1822. package/build/modules/basic-messages/services/BasicMessageService.js.map +0 -1
  1823. package/build/modules/basic-messages/services/index.d.ts +0 -1
  1824. package/build/modules/basic-messages/services/index.js +0 -18
  1825. package/build/modules/basic-messages/services/index.js.map +0 -1
  1826. package/build/modules/cache/Cache.d.ts +0 -6
  1827. package/build/modules/cache/Cache.js +0 -3
  1828. package/build/modules/cache/Cache.js.map +0 -1
  1829. package/build/modules/cache/CacheModule.d.ts +0 -10
  1830. package/build/modules/cache/CacheModule.js +0 -23
  1831. package/build/modules/cache/CacheModule.js.map +0 -1
  1832. package/build/modules/cache/CacheModuleConfig.d.ts +0 -21
  1833. package/build/modules/cache/CacheModuleConfig.js +0 -14
  1834. package/build/modules/cache/CacheModuleConfig.js.map +0 -1
  1835. package/build/modules/cache/InMemoryLruCache.d.ts +0 -21
  1836. package/build/modules/cache/InMemoryLruCache.js +0 -51
  1837. package/build/modules/cache/InMemoryLruCache.js.map +0 -1
  1838. package/build/modules/cache/index.d.ts +0 -5
  1839. package/build/modules/cache/index.js +0 -14
  1840. package/build/modules/cache/index.js.map +0 -1
  1841. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.d.ts +0 -22
  1842. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.js +0 -38
  1843. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRecord.js.map +0 -1
  1844. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.d.ts +0 -7
  1845. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.js +0 -32
  1846. package/build/modules/cache/singleContextLruCache/SingleContextLruCacheRepository.js.map +0 -1
  1847. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.d.ts +0 -34
  1848. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.js +0 -126
  1849. package/build/modules/cache/singleContextLruCache/SingleContextStorageLruCache.js.map +0 -1
  1850. package/build/modules/cache/singleContextLruCache/index.d.ts +0 -1
  1851. package/build/modules/cache/singleContextLruCache/index.js +0 -6
  1852. package/build/modules/cache/singleContextLruCache/index.js.map +0 -1
  1853. package/build/modules/common/index.d.ts +0 -1
  1854. package/build/modules/common/index.js +0 -18
  1855. package/build/modules/common/index.js.map +0 -1
  1856. package/build/modules/common/messages/AckMessage.d.ts +0 -26
  1857. package/build/modules/common/messages/AckMessage.js +0 -54
  1858. package/build/modules/common/messages/AckMessage.js.map +0 -1
  1859. package/build/modules/connections/ConnectionEvents.d.ts +0 -28
  1860. package/build/modules/connections/ConnectionEvents.js +0 -9
  1861. package/build/modules/connections/ConnectionEvents.js.map +0 -1
  1862. package/build/modules/connections/ConnectionsApi.d.ts +0 -195
  1863. package/build/modules/connections/ConnectionsApi.js +0 -450
  1864. package/build/modules/connections/ConnectionsApi.js.map +0 -1
  1865. package/build/modules/connections/ConnectionsModule.d.ts +0 -14
  1866. package/build/modules/connections/ConnectionsModule.js +0 -43
  1867. package/build/modules/connections/ConnectionsModule.js.map +0 -1
  1868. package/build/modules/connections/ConnectionsModuleConfig.d.ts +0 -47
  1869. package/build/modules/connections/ConnectionsModuleConfig.js +0 -57
  1870. package/build/modules/connections/ConnectionsModuleConfig.js.map +0 -1
  1871. package/build/modules/connections/DidExchangeProtocol.d.ts +0 -60
  1872. package/build/modules/connections/DidExchangeProtocol.js +0 -484
  1873. package/build/modules/connections/DidExchangeProtocol.js.map +0 -1
  1874. package/build/modules/connections/DidExchangeStateMachine.d.ts +0 -10
  1875. package/build/modules/connections/DidExchangeStateMachine.js +0 -78
  1876. package/build/modules/connections/DidExchangeStateMachine.js.map +0 -1
  1877. package/build/modules/connections/TrustPingEvents.d.ts +0 -21
  1878. package/build/modules/connections/TrustPingEvents.js +0 -9
  1879. package/build/modules/connections/TrustPingEvents.js.map +0 -1
  1880. package/build/modules/connections/errors/ConnectionProblemReportError.d.ts +0 -13
  1881. package/build/modules/connections/errors/ConnectionProblemReportError.js +0 -19
  1882. package/build/modules/connections/errors/ConnectionProblemReportError.js.map +0 -1
  1883. package/build/modules/connections/errors/ConnectionProblemReportReason.d.ts +0 -11
  1884. package/build/modules/connections/errors/ConnectionProblemReportReason.js +0 -16
  1885. package/build/modules/connections/errors/ConnectionProblemReportReason.js.map +0 -1
  1886. package/build/modules/connections/errors/DidExchangeProblemReportError.d.ts +0 -13
  1887. package/build/modules/connections/errors/DidExchangeProblemReportError.js +0 -19
  1888. package/build/modules/connections/errors/DidExchangeProblemReportError.js.map +0 -1
  1889. package/build/modules/connections/errors/DidExchangeProblemReportReason.d.ts +0 -12
  1890. package/build/modules/connections/errors/DidExchangeProblemReportReason.js +0 -17
  1891. package/build/modules/connections/errors/DidExchangeProblemReportReason.js.map +0 -1
  1892. package/build/modules/connections/errors/index.d.ts +0 -4
  1893. package/build/modules/connections/errors/index.js +0 -21
  1894. package/build/modules/connections/errors/index.js.map +0 -1
  1895. package/build/modules/connections/handlers/AckMessageHandler.d.ts +0 -9
  1896. package/build/modules/connections/handlers/AckMessageHandler.js +0 -15
  1897. package/build/modules/connections/handlers/AckMessageHandler.js.map +0 -1
  1898. package/build/modules/connections/handlers/ConnectionProblemReportHandler.d.ts +0 -9
  1899. package/build/modules/connections/handlers/ConnectionProblemReportHandler.js +0 -15
  1900. package/build/modules/connections/handlers/ConnectionProblemReportHandler.js.map +0 -1
  1901. package/build/modules/connections/handlers/ConnectionRequestHandler.d.ts +0 -18
  1902. package/build/modules/connections/handlers/ConnectionRequestHandler.js +0 -69
  1903. package/build/modules/connections/handlers/ConnectionRequestHandler.js.map +0 -1
  1904. package/build/modules/connections/handlers/ConnectionResponseHandler.d.ts +0 -16
  1905. package/build/modules/connections/handlers/ConnectionResponseHandler.js +0 -62
  1906. package/build/modules/connections/handlers/ConnectionResponseHandler.js.map +0 -1
  1907. package/build/modules/connections/handlers/DidExchangeCompleteHandler.d.ts +0 -11
  1908. package/build/modules/connections/handlers/DidExchangeCompleteHandler.js +0 -41
  1909. package/build/modules/connections/handlers/DidExchangeCompleteHandler.js.map +0 -1
  1910. package/build/modules/connections/handlers/DidExchangeRequestHandler.d.ts +0 -18
  1911. package/build/modules/connections/handlers/DidExchangeRequestHandler.js +0 -77
  1912. package/build/modules/connections/handlers/DidExchangeRequestHandler.js.map +0 -1
  1913. package/build/modules/connections/handlers/DidExchangeResponseHandler.d.ts +0 -18
  1914. package/build/modules/connections/handlers/DidExchangeResponseHandler.js +0 -78
  1915. package/build/modules/connections/handlers/DidExchangeResponseHandler.js.map +0 -1
  1916. package/build/modules/connections/handlers/DidRotateAckHandler.d.ts +0 -9
  1917. package/build/modules/connections/handlers/DidRotateAckHandler.js +0 -15
  1918. package/build/modules/connections/handlers/DidRotateAckHandler.js.map +0 -1
  1919. package/build/modules/connections/handlers/DidRotateHandler.d.ts +0 -11
  1920. package/build/modules/connections/handlers/DidRotateHandler.js +0 -21
  1921. package/build/modules/connections/handlers/DidRotateHandler.js.map +0 -1
  1922. package/build/modules/connections/handlers/DidRotateProblemReportHandler.d.ts +0 -9
  1923. package/build/modules/connections/handlers/DidRotateProblemReportHandler.js +0 -15
  1924. package/build/modules/connections/handlers/DidRotateProblemReportHandler.js.map +0 -1
  1925. package/build/modules/connections/handlers/HangupHandler.d.ts +0 -9
  1926. package/build/modules/connections/handlers/HangupHandler.js +0 -15
  1927. package/build/modules/connections/handlers/HangupHandler.js.map +0 -1
  1928. package/build/modules/connections/handlers/TrustPingMessageHandler.d.ts +0 -11
  1929. package/build/modules/connections/handlers/TrustPingMessageHandler.js +0 -27
  1930. package/build/modules/connections/handlers/TrustPingMessageHandler.js.map +0 -1
  1931. package/build/modules/connections/handlers/TrustPingResponseMessageHandler.d.ts +0 -9
  1932. package/build/modules/connections/handlers/TrustPingResponseMessageHandler.js +0 -15
  1933. package/build/modules/connections/handlers/TrustPingResponseMessageHandler.js.map +0 -1
  1934. package/build/modules/connections/handlers/index.d.ts +0 -13
  1935. package/build/modules/connections/handlers/index.js +0 -30
  1936. package/build/modules/connections/handlers/index.js.map +0 -1
  1937. package/build/modules/connections/index.d.ts +0 -10
  1938. package/build/modules/connections/index.js +0 -27
  1939. package/build/modules/connections/index.js.map +0 -1
  1940. package/build/modules/connections/messages/ConnectionInvitationMessage.d.ts +0 -55
  1941. package/build/modules/connections/messages/ConnectionInvitationMessage.js +0 -141
  1942. package/build/modules/connections/messages/ConnectionInvitationMessage.js.map +0 -1
  1943. package/build/modules/connections/messages/ConnectionProblemReportMessage.d.ts +0 -16
  1944. package/build/modules/connections/messages/ConnectionProblemReportMessage.js +0 -35
  1945. package/build/modules/connections/messages/ConnectionProblemReportMessage.js.map +0 -1
  1946. package/build/modules/connections/messages/ConnectionRequestMessage.d.ts +0 -28
  1947. package/build/modules/connections/messages/ConnectionRequestMessage.js +0 -64
  1948. package/build/modules/connections/messages/ConnectionRequestMessage.js.map +0 -1
  1949. package/build/modules/connections/messages/ConnectionResponseMessage.d.ts +0 -23
  1950. package/build/modules/connections/messages/ConnectionResponseMessage.js +0 -52
  1951. package/build/modules/connections/messages/ConnectionResponseMessage.js.map +0 -1
  1952. package/build/modules/connections/messages/DidExchangeCompleteMessage.d.ts +0 -14
  1953. package/build/modules/connections/messages/DidExchangeCompleteMessage.js +0 -38
  1954. package/build/modules/connections/messages/DidExchangeCompleteMessage.js.map +0 -1
  1955. package/build/modules/connections/messages/DidExchangeProblemReportMessage.d.ts +0 -11
  1956. package/build/modules/connections/messages/DidExchangeProblemReportMessage.js +0 -30
  1957. package/build/modules/connections/messages/DidExchangeProblemReportMessage.js.map +0 -1
  1958. package/build/modules/connections/messages/DidExchangeRequestMessage.d.ts +0 -29
  1959. package/build/modules/connections/messages/DidExchangeRequestMessage.js +0 -73
  1960. package/build/modules/connections/messages/DidExchangeRequestMessage.js.map +0 -1
  1961. package/build/modules/connections/messages/DidExchangeResponseMessage.d.ts +0 -24
  1962. package/build/modules/connections/messages/DidExchangeResponseMessage.js +0 -64
  1963. package/build/modules/connections/messages/DidExchangeResponseMessage.js.map +0 -1
  1964. package/build/modules/connections/messages/DidRotateAckMessage.d.ts +0 -12
  1965. package/build/modules/connections/messages/DidRotateAckMessage.js +0 -31
  1966. package/build/modules/connections/messages/DidRotateAckMessage.js.map +0 -1
  1967. package/build/modules/connections/messages/DidRotateMessage.d.ts +0 -20
  1968. package/build/modules/connections/messages/DidRotateMessage.js +0 -47
  1969. package/build/modules/connections/messages/DidRotateMessage.js.map +0 -1
  1970. package/build/modules/connections/messages/DidRotateProblemReportMessage.d.ts +0 -11
  1971. package/build/modules/connections/messages/DidRotateProblemReportMessage.js +0 -30
  1972. package/build/modules/connections/messages/DidRotateProblemReportMessage.js.map +0 -1
  1973. package/build/modules/connections/messages/HangupMessage.d.ts +0 -19
  1974. package/build/modules/connections/messages/HangupMessage.js +0 -40
  1975. package/build/modules/connections/messages/HangupMessage.js.map +0 -1
  1976. package/build/modules/connections/messages/TrustPingMessage.d.ts +0 -26
  1977. package/build/modules/connections/messages/TrustPingMessage.js +0 -63
  1978. package/build/modules/connections/messages/TrustPingMessage.js.map +0 -1
  1979. package/build/modules/connections/messages/TrustPingResponseMessage.d.ts +0 -25
  1980. package/build/modules/connections/messages/TrustPingResponseMessage.js +0 -57
  1981. package/build/modules/connections/messages/TrustPingResponseMessage.js.map +0 -1
  1982. package/build/modules/connections/messages/index.d.ts +0 -14
  1983. package/build/modules/connections/messages/index.js +0 -31
  1984. package/build/modules/connections/messages/index.js.map +0 -1
  1985. package/build/modules/connections/models/Connection.d.ts +0 -10
  1986. package/build/modules/connections/models/Connection.js +0 -38
  1987. package/build/modules/connections/models/Connection.js.map +0 -1
  1988. package/build/modules/connections/models/ConnectionRole.d.ts +0 -4
  1989. package/build/modules/connections/models/ConnectionRole.js +0 -9
  1990. package/build/modules/connections/models/ConnectionRole.js.map +0 -1
  1991. package/build/modules/connections/models/ConnectionState.d.ts +0 -14
  1992. package/build/modules/connections/models/ConnectionState.js +0 -33
  1993. package/build/modules/connections/models/ConnectionState.js.map +0 -1
  1994. package/build/modules/connections/models/ConnectionType.d.ts +0 -3
  1995. package/build/modules/connections/models/ConnectionType.js +0 -8
  1996. package/build/modules/connections/models/ConnectionType.js.map +0 -1
  1997. package/build/modules/connections/models/DidExchangeRole.d.ts +0 -4
  1998. package/build/modules/connections/models/DidExchangeRole.js +0 -9
  1999. package/build/modules/connections/models/DidExchangeRole.js.map +0 -1
  2000. package/build/modules/connections/models/DidExchangeState.d.ts +0 -16
  2001. package/build/modules/connections/models/DidExchangeState.js +0 -21
  2002. package/build/modules/connections/models/DidExchangeState.js.map +0 -1
  2003. package/build/modules/connections/models/DidRotateRole.d.ts +0 -4
  2004. package/build/modules/connections/models/DidRotateRole.js +0 -9
  2005. package/build/modules/connections/models/DidRotateRole.js.map +0 -1
  2006. package/build/modules/connections/models/HandshakeProtocol.d.ts +0 -8
  2007. package/build/modules/connections/models/HandshakeProtocol.js +0 -13
  2008. package/build/modules/connections/models/HandshakeProtocol.js.map +0 -1
  2009. package/build/modules/connections/models/InvitationDetails.d.ts +0 -6
  2010. package/build/modules/connections/models/InvitationDetails.js +0 -3
  2011. package/build/modules/connections/models/InvitationDetails.js.map +0 -1
  2012. package/build/modules/connections/models/did/DidDoc.d.ts +0 -37
  2013. package/build/modules/connections/models/did/DidDoc.js +0 -94
  2014. package/build/modules/connections/models/did/DidDoc.js.map +0 -1
  2015. package/build/modules/connections/models/did/authentication/Authentication.d.ts +0 -4
  2016. package/build/modules/connections/models/did/authentication/Authentication.js +0 -7
  2017. package/build/modules/connections/models/did/authentication/Authentication.js.map +0 -1
  2018. package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.d.ts +0 -6
  2019. package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.js +0 -29
  2020. package/build/modules/connections/models/did/authentication/EmbeddedAuthentication.js.map +0 -1
  2021. package/build/modules/connections/models/did/authentication/ReferencedAuthentication.d.ts +0 -7
  2022. package/build/modules/connections/models/did/authentication/ReferencedAuthentication.js +0 -35
  2023. package/build/modules/connections/models/did/authentication/ReferencedAuthentication.js.map +0 -1
  2024. package/build/modules/connections/models/did/authentication/index.d.ts +0 -19
  2025. package/build/modules/connections/models/did/authentication/index.js +0 -59
  2026. package/build/modules/connections/models/did/authentication/index.js.map +0 -1
  2027. package/build/modules/connections/models/did/index.d.ts +0 -3
  2028. package/build/modules/connections/models/did/index.js +0 -20
  2029. package/build/modules/connections/models/did/index.js.map +0 -1
  2030. package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.d.ts +0 -10
  2031. package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.js +0 -35
  2032. package/build/modules/connections/models/did/publicKey/Ed25119Sig2018.js.map +0 -1
  2033. package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.d.ts +0 -10
  2034. package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.js +0 -35
  2035. package/build/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.js.map +0 -1
  2036. package/build/modules/connections/models/did/publicKey/PublicKey.d.ts +0 -12
  2037. package/build/modules/connections/models/did/publicKey/PublicKey.js +0 -42
  2038. package/build/modules/connections/models/did/publicKey/PublicKey.js.map +0 -1
  2039. package/build/modules/connections/models/did/publicKey/RsaSig2018.d.ts +0 -10
  2040. package/build/modules/connections/models/did/publicKey/RsaSig2018.js +0 -35
  2041. package/build/modules/connections/models/did/publicKey/RsaSig2018.js.map +0 -1
  2042. package/build/modules/connections/models/did/publicKey/index.d.ts +0 -18
  2043. package/build/modules/connections/models/did/publicKey/index.js +0 -40
  2044. package/build/modules/connections/models/did/publicKey/index.js.map +0 -1
  2045. package/build/modules/connections/models/index.d.ts +0 -9
  2046. package/build/modules/connections/models/index.js +0 -26
  2047. package/build/modules/connections/models/index.js.map +0 -1
  2048. package/build/modules/connections/repository/ConnectionMetadataTypes.d.ts +0 -14
  2049. package/build/modules/connections/repository/ConnectionMetadataTypes.js +0 -9
  2050. package/build/modules/connections/repository/ConnectionMetadataTypes.js.map +0 -1
  2051. package/build/modules/connections/repository/ConnectionRecord.d.ts +0 -70
  2052. package/build/modules/connections/repository/ConnectionRecord.js +0 -90
  2053. package/build/modules/connections/repository/ConnectionRecord.js.map +0 -1
  2054. package/build/modules/connections/repository/ConnectionRepository.d.ts +0 -15
  2055. package/build/modules/connections/repository/ConnectionRepository.js +0 -50
  2056. package/build/modules/connections/repository/ConnectionRepository.js.map +0 -1
  2057. package/build/modules/connections/repository/index.d.ts +0 -2
  2058. package/build/modules/connections/repository/index.js +0 -19
  2059. package/build/modules/connections/repository/index.js.map +0 -1
  2060. package/build/modules/connections/services/ConnectionService.d.ts +0 -181
  2061. package/build/modules/connections/services/ConnectionService.js +0 -692
  2062. package/build/modules/connections/services/ConnectionService.js.map +0 -1
  2063. package/build/modules/connections/services/DidRotateService.d.ts +0 -54
  2064. package/build/modules/connections/services/DidRotateService.js +0 -242
  2065. package/build/modules/connections/services/DidRotateService.js.map +0 -1
  2066. package/build/modules/connections/services/TrustPingService.d.ts +0 -12
  2067. package/build/modules/connections/services/TrustPingService.js +0 -54
  2068. package/build/modules/connections/services/TrustPingService.js.map +0 -1
  2069. package/build/modules/connections/services/helpers.d.ts +0 -16
  2070. package/build/modules/connections/services/helpers.js +0 -155
  2071. package/build/modules/connections/services/helpers.js.map +0 -1
  2072. package/build/modules/connections/services/index.d.ts +0 -3
  2073. package/build/modules/connections/services/index.js +0 -20
  2074. package/build/modules/connections/services/index.js.map +0 -1
  2075. package/build/modules/credentials/CredentialEvents.d.ts +0 -20
  2076. package/build/modules/credentials/CredentialEvents.js +0 -9
  2077. package/build/modules/credentials/CredentialEvents.js.map +0 -1
  2078. package/build/modules/credentials/CredentialsApi.d.ts +0 -60
  2079. package/build/modules/credentials/CredentialsApi.js +0 -511
  2080. package/build/modules/credentials/CredentialsApi.js.map +0 -1
  2081. package/build/modules/credentials/CredentialsApiOptions.d.ts +0 -128
  2082. package/build/modules/credentials/CredentialsApiOptions.js +0 -3
  2083. package/build/modules/credentials/CredentialsApiOptions.js.map +0 -1
  2084. package/build/modules/credentials/CredentialsModule.d.ts +0 -22
  2085. package/build/modules/credentials/CredentialsModule.js +0 -45
  2086. package/build/modules/credentials/CredentialsModule.js.map +0 -1
  2087. package/build/modules/credentials/CredentialsModuleConfig.d.ts +0 -34
  2088. package/build/modules/credentials/CredentialsModuleConfig.js +0 -20
  2089. package/build/modules/credentials/CredentialsModuleConfig.js.map +0 -1
  2090. package/build/modules/credentials/formats/CredentialFormat.d.ts +0 -40
  2091. package/build/modules/credentials/formats/CredentialFormat.js +0 -3
  2092. package/build/modules/credentials/formats/CredentialFormat.js.map +0 -1
  2093. package/build/modules/credentials/formats/CredentialFormatService.d.ts +0 -23
  2094. package/build/modules/credentials/formats/CredentialFormatService.js +0 -3
  2095. package/build/modules/credentials/formats/CredentialFormatService.js.map +0 -1
  2096. package/build/modules/credentials/formats/CredentialFormatServiceOptions.d.ts +0 -117
  2097. package/build/modules/credentials/formats/CredentialFormatServiceOptions.js +0 -3
  2098. package/build/modules/credentials/formats/CredentialFormatServiceOptions.js.map +0 -1
  2099. package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.d.ts +0 -51
  2100. package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.js +0 -3
  2101. package/build/modules/credentials/formats/dataIntegrity/DataIntegrityCredentialFormat.js.map +0 -1
  2102. package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.d.ts +0 -77
  2103. package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.js +0 -129
  2104. package/build/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.js.map +0 -1
  2105. package/build/modules/credentials/formats/dataIntegrity/index.d.ts +0 -2
  2106. package/build/modules/credentials/formats/dataIntegrity/index.js +0 -19
  2107. package/build/modules/credentials/formats/dataIntegrity/index.js.map +0 -1
  2108. package/build/modules/credentials/formats/index.d.ts +0 -5
  2109. package/build/modules/credentials/formats/index.js +0 -22
  2110. package/build/modules/credentials/formats/index.js.map +0 -1
  2111. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.d.ts +0 -15
  2112. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.js +0 -38
  2113. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetail.js.map +0 -1
  2114. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.d.ts +0 -24
  2115. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.js +0 -67
  2116. package/build/modules/credentials/formats/jsonld/JsonLdCredentialDetailOptions.js.map +0 -1
  2117. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.d.ts +0 -92
  2118. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.js +0 -3
  2119. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormat.js.map +0 -1
  2120. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.d.ts +0 -71
  2121. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.js +0 -300
  2122. package/build/modules/credentials/formats/jsonld/JsonLdCredentialFormatService.js.map +0 -1
  2123. package/build/modules/credentials/formats/jsonld/index.d.ts +0 -4
  2124. package/build/modules/credentials/formats/jsonld/index.js +0 -21
  2125. package/build/modules/credentials/formats/jsonld/index.js.map +0 -1
  2126. package/build/modules/credentials/index.d.ts +0 -9
  2127. package/build/modules/credentials/index.js +0 -26
  2128. package/build/modules/credentials/index.js.map +0 -1
  2129. package/build/modules/credentials/models/CredentialAutoAcceptType.d.ts +0 -11
  2130. package/build/modules/credentials/models/CredentialAutoAcceptType.js +0 -16
  2131. package/build/modules/credentials/models/CredentialAutoAcceptType.js.map +0 -1
  2132. package/build/modules/credentials/models/CredentialFormatSpec.d.ts +0 -9
  2133. package/build/modules/credentials/models/CredentialFormatSpec.js +0 -35
  2134. package/build/modules/credentials/models/CredentialFormatSpec.js.map +0 -1
  2135. package/build/modules/credentials/models/CredentialPreviewAttribute.d.ts +0 -15
  2136. package/build/modules/credentials/models/CredentialPreviewAttribute.js +0 -44
  2137. package/build/modules/credentials/models/CredentialPreviewAttribute.js.map +0 -1
  2138. package/build/modules/credentials/models/CredentialProblemReportReason.d.ts +0 -8
  2139. package/build/modules/credentials/models/CredentialProblemReportReason.js +0 -13
  2140. package/build/modules/credentials/models/CredentialProblemReportReason.js.map +0 -1
  2141. package/build/modules/credentials/models/CredentialRole.d.ts +0 -4
  2142. package/build/modules/credentials/models/CredentialRole.js +0 -9
  2143. package/build/modules/credentials/models/CredentialRole.js.map +0 -1
  2144. package/build/modules/credentials/models/CredentialState.d.ts +0 -18
  2145. package/build/modules/credentials/models/CredentialState.js +0 -23
  2146. package/build/modules/credentials/models/CredentialState.js.map +0 -1
  2147. package/build/modules/credentials/models/RevocationNotification.d.ts +0 -5
  2148. package/build/modules/credentials/models/RevocationNotification.js +0 -11
  2149. package/build/modules/credentials/models/RevocationNotification.js.map +0 -1
  2150. package/build/modules/credentials/models/index.d.ts +0 -7
  2151. package/build/modules/credentials/models/index.js +0 -24
  2152. package/build/modules/credentials/models/index.js.map +0 -1
  2153. package/build/modules/credentials/protocol/BaseCredentialProtocol.d.ts +0 -112
  2154. package/build/modules/credentials/protocol/BaseCredentialProtocol.js +0 -169
  2155. package/build/modules/credentials/protocol/BaseCredentialProtocol.js.map +0 -1
  2156. package/build/modules/credentials/protocol/CredentialProtocol.d.ts +0 -54
  2157. package/build/modules/credentials/protocol/CredentialProtocol.js +0 -3
  2158. package/build/modules/credentials/protocol/CredentialProtocol.js.map +0 -1
  2159. package/build/modules/credentials/protocol/CredentialProtocolOptions.d.ts +0 -143
  2160. package/build/modules/credentials/protocol/CredentialProtocolOptions.js +0 -3
  2161. package/build/modules/credentials/protocol/CredentialProtocolOptions.js.map +0 -1
  2162. package/build/modules/credentials/protocol/index.d.ts +0 -6
  2163. package/build/modules/credentials/protocol/index.js +0 -40
  2164. package/build/modules/credentials/protocol/index.js.map +0 -1
  2165. package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.d.ts +0 -9
  2166. package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.js +0 -15
  2167. package/build/modules/credentials/protocol/revocation-notification/handlers/V1RevocationNotificationHandler.js.map +0 -1
  2168. package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.d.ts +0 -9
  2169. package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.js +0 -15
  2170. package/build/modules/credentials/protocol/revocation-notification/handlers/V2RevocationNotificationHandler.js.map +0 -1
  2171. package/build/modules/credentials/protocol/revocation-notification/handlers/index.d.ts +0 -2
  2172. package/build/modules/credentials/protocol/revocation-notification/handlers/index.js +0 -19
  2173. package/build/modules/credentials/protocol/revocation-notification/handlers/index.js.map +0 -1
  2174. package/build/modules/credentials/protocol/revocation-notification/index.d.ts +0 -1
  2175. package/build/modules/credentials/protocol/revocation-notification/index.js +0 -18
  2176. package/build/modules/credentials/protocol/revocation-notification/index.js.map +0 -1
  2177. package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.d.ts +0 -15
  2178. package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.js +0 -46
  2179. package/build/modules/credentials/protocol/revocation-notification/messages/V1RevocationNotificationMessage.js.map +0 -1
  2180. package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.d.ts +0 -17
  2181. package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.js +0 -52
  2182. package/build/modules/credentials/protocol/revocation-notification/messages/V2RevocationNotificationMessage.js.map +0 -1
  2183. package/build/modules/credentials/protocol/revocation-notification/messages/index.d.ts +0 -2
  2184. package/build/modules/credentials/protocol/revocation-notification/messages/index.js +0 -19
  2185. package/build/modules/credentials/protocol/revocation-notification/messages/index.js.map +0 -1
  2186. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.d.ts +0 -36
  2187. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.js +0 -143
  2188. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationService.js.map +0 -1
  2189. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.d.ts +0 -6
  2190. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.js +0 -3
  2191. package/build/modules/credentials/protocol/revocation-notification/services/RevocationNotificationServiceOptions.js.map +0 -1
  2192. package/build/modules/credentials/protocol/revocation-notification/services/index.d.ts +0 -2
  2193. package/build/modules/credentials/protocol/revocation-notification/services/index.js +0 -19
  2194. package/build/modules/credentials/protocol/revocation-notification/services/index.js.map +0 -1
  2195. package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.d.ts +0 -5
  2196. package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.js +0 -13
  2197. package/build/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.js.map +0 -1
  2198. package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.d.ts +0 -100
  2199. package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.js +0 -365
  2200. package/build/modules/credentials/protocol/v2/CredentialFormatCoordinator.js.map +0 -1
  2201. package/build/modules/credentials/protocol/v2/V2CredentialProtocol.d.ts +0 -178
  2202. package/build/modules/credentials/protocol/v2/V2CredentialProtocol.js +0 -946
  2203. package/build/modules/credentials/protocol/v2/V2CredentialProtocol.js.map +0 -1
  2204. package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.d.ts +0 -11
  2205. package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.js +0 -18
  2206. package/build/modules/credentials/protocol/v2/errors/V2CredentialProblemReportError.js.map +0 -1
  2207. package/build/modules/credentials/protocol/v2/errors/index.d.ts +0 -1
  2208. package/build/modules/credentials/protocol/v2/errors/index.js +0 -6
  2209. package/build/modules/credentials/protocol/v2/errors/index.js.map +0 -1
  2210. package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.d.ts +0 -9
  2211. package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.js +0 -15
  2212. package/build/modules/credentials/protocol/v2/handlers/V2CredentialAckHandler.js.map +0 -1
  2213. package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.d.ts +0 -9
  2214. package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.js +0 -15
  2215. package/build/modules/credentials/protocol/v2/handlers/V2CredentialProblemReportHandler.js.map +0 -1
  2216. package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.d.ts +0 -11
  2217. package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.js +0 -41
  2218. package/build/modules/credentials/protocol/v2/handlers/V2IssueCredentialHandler.js.map +0 -1
  2219. package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.d.ts +0 -11
  2220. package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.js +0 -33
  2221. package/build/modules/credentials/protocol/v2/handlers/V2OfferCredentialHandler.js.map +0 -1
  2222. package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.d.ts +0 -12
  2223. package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.js +0 -36
  2224. package/build/modules/credentials/protocol/v2/handlers/V2ProposeCredentialHandler.js.map +0 -1
  2225. package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.d.ts +0 -11
  2226. package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.js +0 -41
  2227. package/build/modules/credentials/protocol/v2/handlers/V2RequestCredentialHandler.js.map +0 -1
  2228. package/build/modules/credentials/protocol/v2/handlers/index.d.ts +0 -6
  2229. package/build/modules/credentials/protocol/v2/handlers/index.js +0 -23
  2230. package/build/modules/credentials/protocol/v2/handlers/index.js.map +0 -1
  2231. package/build/modules/credentials/protocol/v2/index.d.ts +0 -3
  2232. package/build/modules/credentials/protocol/v2/index.js +0 -20
  2233. package/build/modules/credentials/protocol/v2/index.js.map +0 -1
  2234. package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.d.ts +0 -15
  2235. package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.js +0 -34
  2236. package/build/modules/credentials/protocol/v2/messages/V2CredentialAckMessage.js.map +0 -1
  2237. package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.d.ts +0 -26
  2238. package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.js +0 -71
  2239. package/build/modules/credentials/protocol/v2/messages/V2CredentialPreview.js.map +0 -1
  2240. package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.d.ts +0 -15
  2241. package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.js +0 -34
  2242. package/build/modules/credentials/protocol/v2/messages/V2CredentialProblemReportMessage.js.map +0 -1
  2243. package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.d.ts +0 -22
  2244. package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.js +0 -76
  2245. package/build/modules/credentials/protocol/v2/messages/V2IssueCredentialMessage.js.map +0 -1
  2246. package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.d.ts +0 -27
  2247. package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.js +0 -92
  2248. package/build/modules/credentials/protocol/v2/messages/V2OfferCredentialMessage.js.map +0 -1
  2249. package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.d.ts +0 -30
  2250. package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.js +0 -87
  2251. package/build/modules/credentials/protocol/v2/messages/V2ProposeCredentialMessage.js.map +0 -1
  2252. package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.d.ts +0 -27
  2253. package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.js +0 -77
  2254. package/build/modules/credentials/protocol/v2/messages/V2RequestCredentialMessage.js.map +0 -1
  2255. package/build/modules/credentials/protocol/v2/messages/index.d.ts +0 -7
  2256. package/build/modules/credentials/protocol/v2/messages/index.js +0 -24
  2257. package/build/modules/credentials/protocol/v2/messages/index.js.map +0 -1
  2258. package/build/modules/credentials/repository/CredentialExchangeRecord.d.ts +0 -66
  2259. package/build/modules/credentials/repository/CredentialExchangeRecord.js +0 -80
  2260. package/build/modules/credentials/repository/CredentialExchangeRecord.js.map +0 -1
  2261. package/build/modules/credentials/repository/CredentialRepository.d.ts +0 -7
  2262. package/build/modules/credentials/repository/CredentialRepository.js +0 -32
  2263. package/build/modules/credentials/repository/CredentialRepository.js.map +0 -1
  2264. package/build/modules/credentials/repository/index.d.ts +0 -2
  2265. package/build/modules/credentials/repository/index.js +0 -19
  2266. package/build/modules/credentials/repository/index.js.map +0 -1
  2267. package/build/modules/credentials/util/composeAutoAccept.d.ts +0 -8
  2268. package/build/modules/credentials/util/composeAutoAccept.js +0 -15
  2269. package/build/modules/credentials/util/composeAutoAccept.js.map +0 -1
  2270. package/build/modules/credentials/util/previewAttributes.d.ts +0 -2
  2271. package/build/modules/credentials/util/previewAttributes.js +0 -24
  2272. package/build/modules/credentials/util/previewAttributes.js.map +0 -1
  2273. package/build/modules/didcomm/index.d.ts +0 -2
  2274. package/build/modules/didcomm/index.js +0 -19
  2275. package/build/modules/didcomm/index.js.map +0 -1
  2276. package/build/modules/didcomm/services/DidCommDocumentService.d.ts +0 -8
  2277. package/build/modules/didcomm/services/DidCommDocumentService.js +0 -83
  2278. package/build/modules/didcomm/services/DidCommDocumentService.js.map +0 -1
  2279. package/build/modules/didcomm/services/index.d.ts +0 -1
  2280. package/build/modules/didcomm/services/index.js +0 -18
  2281. package/build/modules/didcomm/services/index.js.map +0 -1
  2282. package/build/modules/didcomm/types.d.ts +0 -7
  2283. package/build/modules/didcomm/types.js +0 -3
  2284. package/build/modules/didcomm/types.js.map +0 -1
  2285. package/build/modules/didcomm/util/matchingEd25519Key.d.ts +0 -9
  2286. package/build/modules/didcomm/util/matchingEd25519Key.js +0 -33
  2287. package/build/modules/didcomm/util/matchingEd25519Key.js.map +0 -1
  2288. package/build/modules/dids/DidsApi.d.ts +0 -71
  2289. package/build/modules/dids/DidsApi.js +0 -158
  2290. package/build/modules/dids/DidsApi.js.map +0 -1
  2291. package/build/modules/dids/DidsApiOptions.d.ts +0 -29
  2292. package/build/modules/dids/DidsApiOptions.js +0 -3
  2293. package/build/modules/dids/DidsApiOptions.js.map +0 -1
  2294. package/build/modules/dids/DidsModule.d.ts +0 -13
  2295. package/build/modules/dids/DidsModule.js +0 -26
  2296. package/build/modules/dids/DidsModule.js.map +0 -1
  2297. package/build/modules/dids/DidsModuleConfig.d.ts +0 -41
  2298. package/build/modules/dids/DidsModuleConfig.js +0 -62
  2299. package/build/modules/dids/DidsModuleConfig.js.map +0 -1
  2300. package/build/modules/dids/domain/DidDocument.d.ts +0 -62
  2301. package/build/modules/dids/domain/DidDocument.js +0 -258
  2302. package/build/modules/dids/domain/DidDocument.js.map +0 -1
  2303. package/build/modules/dids/domain/DidDocumentBuilder.d.ts +0 -16
  2304. package/build/modules/dids/domain/DidDocumentBuilder.js +0 -89
  2305. package/build/modules/dids/domain/DidDocumentBuilder.js.map +0 -1
  2306. package/build/modules/dids/domain/DidDocumentRole.d.ts +0 -4
  2307. package/build/modules/dids/domain/DidDocumentRole.js +0 -9
  2308. package/build/modules/dids/domain/DidDocumentRole.js.map +0 -1
  2309. package/build/modules/dids/domain/DidRegistrar.d.ts +0 -8
  2310. package/build/modules/dids/domain/DidRegistrar.js +0 -3
  2311. package/build/modules/dids/domain/DidRegistrar.js.map +0 -1
  2312. package/build/modules/dids/domain/DidResolver.d.ts +0 -15
  2313. package/build/modules/dids/domain/DidResolver.js +0 -3
  2314. package/build/modules/dids/domain/DidResolver.js.map +0 -1
  2315. package/build/modules/dids/domain/index.d.ts +0 -9
  2316. package/build/modules/dids/domain/index.js +0 -28
  2317. package/build/modules/dids/domain/index.js.map +0 -1
  2318. package/build/modules/dids/domain/key-type/bls12381g1.d.ts +0 -2
  2319. package/build/modules/dids/domain/key-type/bls12381g1.js +0 -19
  2320. package/build/modules/dids/domain/key-type/bls12381g1.js.map +0 -1
  2321. package/build/modules/dids/domain/key-type/bls12381g1g2.d.ts +0 -4
  2322. package/build/modules/dids/domain/key-type/bls12381g1g2.js +0 -34
  2323. package/build/modules/dids/domain/key-type/bls12381g1g2.js.map +0 -1
  2324. package/build/modules/dids/domain/key-type/bls12381g2.d.ts +0 -2
  2325. package/build/modules/dids/domain/key-type/bls12381g2.js +0 -19
  2326. package/build/modules/dids/domain/key-type/bls12381g2.js.map +0 -1
  2327. package/build/modules/dids/domain/key-type/ed25519.d.ts +0 -3
  2328. package/build/modules/dids/domain/key-type/ed25519.js +0 -35
  2329. package/build/modules/dids/domain/key-type/ed25519.js.map +0 -1
  2330. package/build/modules/dids/domain/key-type/index.d.ts +0 -6
  2331. package/build/modules/dids/domain/key-type/index.js +0 -27
  2332. package/build/modules/dids/domain/key-type/index.js.map +0 -1
  2333. package/build/modules/dids/domain/key-type/keyDidJsonWebKey.d.ts +0 -2
  2334. package/build/modules/dids/domain/key-type/keyDidJsonWebKey.js +0 -18
  2335. package/build/modules/dids/domain/key-type/keyDidJsonWebKey.js.map +0 -1
  2336. package/build/modules/dids/domain/key-type/keyDidMapping.d.ts +0 -11
  2337. package/build/modules/dids/domain/key-type/keyDidMapping.js +0 -77
  2338. package/build/modules/dids/domain/key-type/keyDidMapping.js.map +0 -1
  2339. package/build/modules/dids/domain/key-type/secp256k1.d.ts +0 -2
  2340. package/build/modules/dids/domain/key-type/secp256k1.js +0 -23
  2341. package/build/modules/dids/domain/key-type/secp256k1.js.map +0 -1
  2342. package/build/modules/dids/domain/key-type/x25519.d.ts +0 -2
  2343. package/build/modules/dids/domain/key-type/x25519.js +0 -29
  2344. package/build/modules/dids/domain/key-type/x25519.js.map +0 -1
  2345. package/build/modules/dids/domain/keyDidDocument.d.ts +0 -4
  2346. package/build/modules/dids/domain/keyDidDocument.js +0 -114
  2347. package/build/modules/dids/domain/keyDidDocument.js.map +0 -1
  2348. package/build/modules/dids/domain/parse.d.ts +0 -3
  2349. package/build/modules/dids/domain/parse.js +0 -17
  2350. package/build/modules/dids/domain/parse.js.map +0 -1
  2351. package/build/modules/dids/domain/service/DidCommV1Service.d.ts +0 -18
  2352. package/build/modules/dids/domain/service/DidCommV1Service.js +0 -55
  2353. package/build/modules/dids/domain/service/DidCommV1Service.js.map +0 -1
  2354. package/build/modules/dids/domain/service/DidCommV2Service.d.ts +0 -19
  2355. package/build/modules/dids/domain/service/DidCommV2Service.js +0 -57
  2356. package/build/modules/dids/domain/service/DidCommV2Service.js.map +0 -1
  2357. package/build/modules/dids/domain/service/DidDocumentService.d.ts +0 -18
  2358. package/build/modules/dids/domain/service/DidDocumentService.js +0 -63
  2359. package/build/modules/dids/domain/service/DidDocumentService.js.map +0 -1
  2360. package/build/modules/dids/domain/service/IndyAgentService.d.ts +0 -16
  2361. package/build/modules/dids/domain/service/IndyAgentService.js +0 -49
  2362. package/build/modules/dids/domain/service/IndyAgentService.js.map +0 -1
  2363. package/build/modules/dids/domain/service/NewDidCommV2Service.d.ts +0 -27
  2364. package/build/modules/dids/domain/service/NewDidCommV2Service.js +0 -71
  2365. package/build/modules/dids/domain/service/NewDidCommV2Service.js.map +0 -1
  2366. package/build/modules/dids/domain/service/ServiceTransformer.d.ts +0 -13
  2367. package/build/modules/dids/domain/service/ServiceTransformer.js +0 -46
  2368. package/build/modules/dids/domain/service/ServiceTransformer.js.map +0 -1
  2369. package/build/modules/dids/domain/service/index.d.ts +0 -7
  2370. package/build/modules/dids/domain/service/index.js +0 -18
  2371. package/build/modules/dids/domain/service/index.js.map +0 -1
  2372. package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.d.ts +0 -23
  2373. package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.js +0 -38
  2374. package/build/modules/dids/domain/verificationMethod/Bls12381G1Key2020.js.map +0 -1
  2375. package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.d.ts +0 -23
  2376. package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.js +0 -38
  2377. package/build/modules/dids/domain/verificationMethod/Bls12381G2Key2020.js.map +0 -1
  2378. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.d.ts +0 -23
  2379. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.js +0 -38
  2380. package/build/modules/dids/domain/verificationMethod/EcdsaSecp256k1VerificationKey2019.js.map +0 -1
  2381. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.d.ts +0 -23
  2382. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.js +0 -38
  2383. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2018.js.map +0 -1
  2384. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.d.ts +0 -23
  2385. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.js +0 -42
  2386. package/build/modules/dids/domain/verificationMethod/Ed25519VerificationKey2020.js.map +0 -1
  2387. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.d.ts +0 -37
  2388. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.js +0 -39
  2389. package/build/modules/dids/domain/verificationMethod/JsonWebKey2020.js.map +0 -1
  2390. package/build/modules/dids/domain/verificationMethod/Multikey.d.ts +0 -30
  2391. package/build/modules/dids/domain/verificationMethod/Multikey.js +0 -39
  2392. package/build/modules/dids/domain/verificationMethod/Multikey.js.map +0 -1
  2393. package/build/modules/dids/domain/verificationMethod/VerificationMethod.d.ts +0 -28
  2394. package/build/modules/dids/domain/verificationMethod/VerificationMethod.js +0 -79
  2395. package/build/modules/dids/domain/verificationMethod/VerificationMethod.js.map +0 -1
  2396. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.d.ts +0 -16
  2397. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.js +0 -49
  2398. package/build/modules/dids/domain/verificationMethod/VerificationMethodTransformer.js.map +0 -1
  2399. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.d.ts +0 -23
  2400. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.js +0 -38
  2401. package/build/modules/dids/domain/verificationMethod/X25519KeyAgreementKey2019.js.map +0 -1
  2402. package/build/modules/dids/domain/verificationMethod/index.d.ts +0 -10
  2403. package/build/modules/dids/domain/verificationMethod/index.js +0 -31
  2404. package/build/modules/dids/domain/verificationMethod/index.js.map +0 -1
  2405. package/build/modules/dids/helpers.d.ts +0 -6
  2406. package/build/modules/dids/helpers.js +0 -37
  2407. package/build/modules/dids/helpers.js.map +0 -1
  2408. package/build/modules/dids/index.d.ts +0 -9
  2409. package/build/modules/dids/index.js +0 -26
  2410. package/build/modules/dids/index.js.map +0 -1
  2411. package/build/modules/dids/methods/index.d.ts +0 -4
  2412. package/build/modules/dids/methods/index.js +0 -21
  2413. package/build/modules/dids/methods/index.js.map +0 -1
  2414. package/build/modules/dids/methods/jwk/DidJwk.d.ts +0 -18
  2415. package/build/modules/dids/methods/jwk/DidJwk.js +0 -53
  2416. package/build/modules/dids/methods/jwk/DidJwk.js.map +0 -1
  2417. package/build/modules/dids/methods/jwk/JwkDidRegistrar.d.ts +0 -26
  2418. package/build/modules/dids/methods/jwk/JwkDidRegistrar.js +0 -107
  2419. package/build/modules/dids/methods/jwk/JwkDidRegistrar.js.map +0 -1
  2420. package/build/modules/dids/methods/jwk/JwkDidResolver.d.ts +0 -16
  2421. package/build/modules/dids/methods/jwk/JwkDidResolver.js +0 -41
  2422. package/build/modules/dids/methods/jwk/JwkDidResolver.js.map +0 -1
  2423. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.d.ts +0 -20
  2424. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.js +0 -36
  2425. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/p256DidJwkEyJjcnYi0i.js.map +0 -1
  2426. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.d.ts +0 -16
  2427. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.js +0 -24
  2428. package/build/modules/dids/methods/jwk/__tests__/__fixtures__/x25519DidJwkEyJrdHkiOiJ.js.map +0 -1
  2429. package/build/modules/dids/methods/jwk/didJwkDidDocument.d.ts +0 -2
  2430. package/build/modules/dids/methods/jwk/didJwkDidDocument.js +0 -35
  2431. package/build/modules/dids/methods/jwk/didJwkDidDocument.js.map +0 -1
  2432. package/build/modules/dids/methods/jwk/index.d.ts +0 -3
  2433. package/build/modules/dids/methods/jwk/index.js +0 -22
  2434. package/build/modules/dids/methods/jwk/index.js.map +0 -1
  2435. package/build/modules/dids/methods/key/DidKey.d.ts +0 -8
  2436. package/build/modules/dids/methods/key/DidKey.js +0 -24
  2437. package/build/modules/dids/methods/key/DidKey.js.map +0 -1
  2438. package/build/modules/dids/methods/key/KeyDidRegistrar.d.ts +0 -26
  2439. package/build/modules/dids/methods/key/KeyDidRegistrar.js +0 -105
  2440. package/build/modules/dids/methods/key/KeyDidRegistrar.js.map +0 -1
  2441. package/build/modules/dids/methods/key/KeyDidResolver.d.ts +0 -16
  2442. package/build/modules/dids/methods/key/KeyDidResolver.js +0 -41
  2443. package/build/modules/dids/methods/key/KeyDidResolver.js.map +0 -1
  2444. package/build/modules/dids/methods/key/index.d.ts +0 -3
  2445. package/build/modules/dids/methods/key/index.js +0 -22
  2446. package/build/modules/dids/methods/key/index.js.map +0 -1
  2447. package/build/modules/dids/methods/peer/PeerDidRegistrar.d.ts +0 -57
  2448. package/build/modules/dids/methods/peer/PeerDidRegistrar.js +0 -162
  2449. package/build/modules/dids/methods/peer/PeerDidRegistrar.js.map +0 -1
  2450. package/build/modules/dids/methods/peer/PeerDidResolver.d.ts +0 -16
  2451. package/build/modules/dids/methods/peer/PeerDidResolver.js +0 -85
  2452. package/build/modules/dids/methods/peer/PeerDidResolver.js.map +0 -1
  2453. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.d.ts +0 -2
  2454. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.js +0 -59
  2455. package/build/modules/dids/methods/peer/createPeerDidDocumentFromServices.js.map +0 -1
  2456. package/build/modules/dids/methods/peer/didPeer.d.ts +0 -15
  2457. package/build/modules/dids/methods/peer/didPeer.js +0 -42
  2458. package/build/modules/dids/methods/peer/didPeer.js.map +0 -1
  2459. package/build/modules/dids/methods/peer/index.d.ts +0 -4
  2460. package/build/modules/dids/methods/peer/index.js +0 -21
  2461. package/build/modules/dids/methods/peer/index.js.map +0 -1
  2462. package/build/modules/dids/methods/peer/peerDidNumAlgo0.d.ts +0 -3
  2463. package/build/modules/dids/methods/peer/peerDidNumAlgo0.js +0 -26
  2464. package/build/modules/dids/methods/peer/peerDidNumAlgo0.js.map +0 -1
  2465. package/build/modules/dids/methods/peer/peerDidNumAlgo1.d.ts +0 -1
  2466. package/build/modules/dids/methods/peer/peerDidNumAlgo1.js +0 -12
  2467. package/build/modules/dids/methods/peer/peerDidNumAlgo1.js.map +0 -1
  2468. package/build/modules/dids/methods/peer/peerDidNumAlgo2.d.ts +0 -6
  2469. package/build/modules/dids/methods/peer/peerDidNumAlgo2.js +0 -224
  2470. package/build/modules/dids/methods/peer/peerDidNumAlgo2.js.map +0 -1
  2471. package/build/modules/dids/methods/peer/peerDidNumAlgo4.d.ts +0 -14
  2472. package/build/modules/dids/methods/peer/peerDidNumAlgo4.js +0 -118
  2473. package/build/modules/dids/methods/peer/peerDidNumAlgo4.js.map +0 -1
  2474. package/build/modules/dids/methods/web/WebDidResolver.d.ts +0 -12
  2475. package/build/modules/dids/methods/web/WebDidResolver.js +0 -56
  2476. package/build/modules/dids/methods/web/WebDidResolver.js.map +0 -1
  2477. package/build/modules/dids/methods/web/index.d.ts +0 -1
  2478. package/build/modules/dids/methods/web/index.js +0 -18
  2479. package/build/modules/dids/methods/web/index.js.map +0 -1
  2480. package/build/modules/dids/repository/DidRecord.d.ts +0 -43
  2481. package/build/modules/dids/repository/DidRecord.js +0 -56
  2482. package/build/modules/dids/repository/DidRecord.js.map +0 -1
  2483. package/build/modules/dids/repository/DidRepository.d.ts +0 -37
  2484. package/build/modules/dids/repository/DidRepository.js +0 -98
  2485. package/build/modules/dids/repository/DidRepository.js.map +0 -1
  2486. package/build/modules/dids/repository/didRecordMetadataTypes.d.ts +0 -9
  2487. package/build/modules/dids/repository/didRecordMetadataTypes.js +0 -8
  2488. package/build/modules/dids/repository/didRecordMetadataTypes.js.map +0 -1
  2489. package/build/modules/dids/repository/index.d.ts +0 -2
  2490. package/build/modules/dids/repository/index.js +0 -19
  2491. package/build/modules/dids/repository/index.js.map +0 -1
  2492. package/build/modules/dids/services/DidRegistrarService.d.ts +0 -19
  2493. package/build/modules/dids/services/DidRegistrarService.js +0 -115
  2494. package/build/modules/dids/services/DidRegistrarService.js.map +0 -1
  2495. package/build/modules/dids/services/DidResolverService.d.ts +0 -25
  2496. package/build/modules/dids/services/DidResolverService.js +0 -135
  2497. package/build/modules/dids/services/DidResolverService.js.map +0 -1
  2498. package/build/modules/dids/services/index.d.ts +0 -2
  2499. package/build/modules/dids/services/index.js +0 -19
  2500. package/build/modules/dids/services/index.js.map +0 -1
  2501. package/build/modules/dids/types.d.ts +0 -118
  2502. package/build/modules/dids/types.js +0 -3
  2503. package/build/modules/dids/types.js.map +0 -1
  2504. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.d.ts +0 -8
  2505. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.js +0 -12
  2506. package/build/modules/dif-presentation-exchange/DifPresentationExchangeError.js.map +0 -1
  2507. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.d.ts +0 -10
  2508. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.js +0 -23
  2509. package/build/modules/dif-presentation-exchange/DifPresentationExchangeModule.js.map +0 -1
  2510. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.d.ts +0 -59
  2511. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.js +0 -444
  2512. package/build/modules/dif-presentation-exchange/DifPresentationExchangeService.js.map +0 -1
  2513. package/build/modules/dif-presentation-exchange/index.d.ts +0 -6
  2514. package/build/modules/dif-presentation-exchange/index.js +0 -24
  2515. package/build/modules/dif-presentation-exchange/index.js.map +0 -1
  2516. package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.d.ts +0 -123
  2517. package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.js +0 -3
  2518. package/build/modules/dif-presentation-exchange/models/DifPexCredentialsForRequest.js.map +0 -1
  2519. package/build/modules/dif-presentation-exchange/models/index.d.ts +0 -13
  2520. package/build/modules/dif-presentation-exchange/models/index.js +0 -21
  2521. package/build/modules/dif-presentation-exchange/models/index.js.map +0 -1
  2522. package/build/modules/dif-presentation-exchange/utils/credentialSelection.d.ts +0 -6
  2523. package/build/modules/dif-presentation-exchange/utils/credentialSelection.js +0 -277
  2524. package/build/modules/dif-presentation-exchange/utils/credentialSelection.js.map +0 -1
  2525. package/build/modules/dif-presentation-exchange/utils/index.d.ts +0 -4
  2526. package/build/modules/dif-presentation-exchange/utils/index.js +0 -21
  2527. package/build/modules/dif-presentation-exchange/utils/index.js.map +0 -1
  2528. package/build/modules/dif-presentation-exchange/utils/presentationSelection.d.ts +0 -25
  2529. package/build/modules/dif-presentation-exchange/utils/presentationSelection.js +0 -64
  2530. package/build/modules/dif-presentation-exchange/utils/presentationSelection.js.map +0 -1
  2531. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.d.ts +0 -42
  2532. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.js +0 -53
  2533. package/build/modules/dif-presentation-exchange/utils/presentationsToCreate.js.map +0 -1
  2534. package/build/modules/dif-presentation-exchange/utils/transform.d.ts +0 -10
  2535. package/build/modules/dif-presentation-exchange/utils/transform.js +0 -47
  2536. package/build/modules/dif-presentation-exchange/utils/transform.js.map +0 -1
  2537. package/build/modules/discover-features/DiscoverFeaturesApi.d.ts +0 -31
  2538. package/build/modules/discover-features/DiscoverFeaturesApi.js +0 -133
  2539. package/build/modules/discover-features/DiscoverFeaturesApi.js.map +0 -1
  2540. package/build/modules/discover-features/DiscoverFeaturesApiOptions.d.ts +0 -39
  2541. package/build/modules/discover-features/DiscoverFeaturesApiOptions.js +0 -3
  2542. package/build/modules/discover-features/DiscoverFeaturesApiOptions.js.map +0 -1
  2543. package/build/modules/discover-features/DiscoverFeaturesEvents.d.ts +0 -28
  2544. package/build/modules/discover-features/DiscoverFeaturesEvents.js +0 -9
  2545. package/build/modules/discover-features/DiscoverFeaturesEvents.js.map +0 -1
  2546. package/build/modules/discover-features/DiscoverFeaturesModule.d.ts +0 -14
  2547. package/build/modules/discover-features/DiscoverFeaturesModule.js +0 -34
  2548. package/build/modules/discover-features/DiscoverFeaturesModule.js.map +0 -1
  2549. package/build/modules/discover-features/DiscoverFeaturesModuleConfig.d.ts +0 -18
  2550. package/build/modules/discover-features/DiscoverFeaturesModuleConfig.js +0 -15
  2551. package/build/modules/discover-features/DiscoverFeaturesModuleConfig.js.map +0 -1
  2552. package/build/modules/discover-features/DiscoverFeaturesServiceOptions.d.ts +0 -13
  2553. package/build/modules/discover-features/DiscoverFeaturesServiceOptions.js +0 -3
  2554. package/build/modules/discover-features/DiscoverFeaturesServiceOptions.js.map +0 -1
  2555. package/build/modules/discover-features/index.d.ts +0 -4
  2556. package/build/modules/discover-features/index.js +0 -21
  2557. package/build/modules/discover-features/index.js.map +0 -1
  2558. package/build/modules/discover-features/protocol/index.d.ts +0 -2
  2559. package/build/modules/discover-features/protocol/index.js +0 -19
  2560. package/build/modules/discover-features/protocol/index.js.map +0 -1
  2561. package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.d.ts +0 -22
  2562. package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.js +0 -116
  2563. package/build/modules/discover-features/protocol/v1/V1DiscoverFeaturesService.js.map +0 -1
  2564. package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.d.ts +0 -9
  2565. package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.js +0 -15
  2566. package/build/modules/discover-features/protocol/v1/handlers/V1DiscloseMessageHandler.js.map +0 -1
  2567. package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.d.ts +0 -10
  2568. package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.js +0 -23
  2569. package/build/modules/discover-features/protocol/v1/handlers/V1QueryMessageHandler.js.map +0 -1
  2570. package/build/modules/discover-features/protocol/v1/handlers/index.d.ts +0 -2
  2571. package/build/modules/discover-features/protocol/v1/handlers/index.js +0 -19
  2572. package/build/modules/discover-features/protocol/v1/handlers/index.js.map +0 -1
  2573. package/build/modules/discover-features/protocol/v1/index.d.ts +0 -2
  2574. package/build/modules/discover-features/protocol/v1/index.js +0 -19
  2575. package/build/modules/discover-features/protocol/v1/index.js.map +0 -1
  2576. package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.d.ts +0 -21
  2577. package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.js +0 -61
  2578. package/build/modules/discover-features/protocol/v1/messages/DiscloseMessage.js.map +0 -1
  2579. package/build/modules/discover-features/protocol/v1/messages/QueryMessage.d.ts +0 -13
  2580. package/build/modules/discover-features/protocol/v1/messages/QueryMessage.js +0 -43
  2581. package/build/modules/discover-features/protocol/v1/messages/QueryMessage.js.map +0 -1
  2582. package/build/modules/discover-features/protocol/v1/messages/index.d.ts +0 -2
  2583. package/build/modules/discover-features/protocol/v1/messages/index.js +0 -19
  2584. package/build/modules/discover-features/protocol/v1/messages/index.js.map +0 -1
  2585. package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.d.ts +0 -21
  2586. package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.js +0 -96
  2587. package/build/modules/discover-features/protocol/v2/V2DiscoverFeaturesService.js.map +0 -1
  2588. package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.d.ts +0 -9
  2589. package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.js +0 -15
  2590. package/build/modules/discover-features/protocol/v2/handlers/V2DisclosuresMessageHandler.js.map +0 -1
  2591. package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.d.ts +0 -10
  2592. package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.js +0 -23
  2593. package/build/modules/discover-features/protocol/v2/handlers/V2QueriesMessageHandler.js.map +0 -1
  2594. package/build/modules/discover-features/protocol/v2/handlers/index.d.ts +0 -2
  2595. package/build/modules/discover-features/protocol/v2/handlers/index.js +0 -19
  2596. package/build/modules/discover-features/protocol/v2/handlers/index.js.map +0 -1
  2597. package/build/modules/discover-features/protocol/v2/index.d.ts +0 -2
  2598. package/build/modules/discover-features/protocol/v2/index.js +0 -19
  2599. package/build/modules/discover-features/protocol/v2/index.js.map +0 -1
  2600. package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.d.ts +0 -13
  2601. package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.js +0 -45
  2602. package/build/modules/discover-features/protocol/v2/messages/V2DisclosuresMessage.js.map +0 -1
  2603. package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.d.ts +0 -14
  2604. package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.js +0 -41
  2605. package/build/modules/discover-features/protocol/v2/messages/V2QueriesMessage.js.map +0 -1
  2606. package/build/modules/discover-features/protocol/v2/messages/index.d.ts +0 -2
  2607. package/build/modules/discover-features/protocol/v2/messages/index.js +0 -19
  2608. package/build/modules/discover-features/protocol/v2/messages/index.js.map +0 -1
  2609. package/build/modules/discover-features/services/DiscoverFeaturesService.d.ts +0 -19
  2610. package/build/modules/discover-features/services/DiscoverFeaturesService.js +0 -13
  2611. package/build/modules/discover-features/services/DiscoverFeaturesService.js.map +0 -1
  2612. package/build/modules/discover-features/services/index.d.ts +0 -1
  2613. package/build/modules/discover-features/services/index.js +0 -18
  2614. package/build/modules/discover-features/services/index.js.map +0 -1
  2615. package/build/modules/generic-records/GenericRecordsApi.d.ts +0 -21
  2616. package/build/modules/generic-records/GenericRecordsApi.js +0 -89
  2617. package/build/modules/generic-records/GenericRecordsApi.js.map +0 -1
  2618. package/build/modules/generic-records/GenericRecordsModule.d.ts +0 -9
  2619. package/build/modules/generic-records/GenericRecordsModule.js +0 -22
  2620. package/build/modules/generic-records/GenericRecordsModule.js.map +0 -1
  2621. package/build/modules/generic-records/index.d.ts +0 -2
  2622. package/build/modules/generic-records/index.js +0 -19
  2623. package/build/modules/generic-records/index.js.map +0 -1
  2624. package/build/modules/generic-records/repository/GenericRecord.d.ts +0 -24
  2625. package/build/modules/generic-records/repository/GenericRecord.js +0 -24
  2626. package/build/modules/generic-records/repository/GenericRecord.js.map +0 -1
  2627. package/build/modules/generic-records/repository/GenericRecordsRepository.d.ts +0 -7
  2628. package/build/modules/generic-records/repository/GenericRecordsRepository.js +0 -32
  2629. package/build/modules/generic-records/repository/GenericRecordsRepository.js.map +0 -1
  2630. package/build/modules/generic-records/services/GenericRecordService.d.ts +0 -16
  2631. package/build/modules/generic-records/services/GenericRecordService.js +0 -69
  2632. package/build/modules/generic-records/services/GenericRecordService.js.map +0 -1
  2633. package/build/modules/mdoc/Mdoc.d.ts +0 -27
  2634. package/build/modules/mdoc/Mdoc.js +0 -121
  2635. package/build/modules/mdoc/Mdoc.js.map +0 -1
  2636. package/build/modules/mdoc/MdocApi.d.ts +0 -44
  2637. package/build/modules/mdoc/MdocApi.js +0 -74
  2638. package/build/modules/mdoc/MdocApi.js.map +0 -1
  2639. package/build/modules/mdoc/MdocContext.d.ts +0 -3
  2640. package/build/modules/mdoc/MdocContext.js +0 -105
  2641. package/build/modules/mdoc/MdocContext.js.map +0 -1
  2642. package/build/modules/mdoc/MdocDeviceResponse.d.ts +0 -109
  2643. package/build/modules/mdoc/MdocDeviceResponse.js +0 -150
  2644. package/build/modules/mdoc/MdocDeviceResponse.js.map +0 -1
  2645. package/build/modules/mdoc/MdocError.d.ts +0 -3
  2646. package/build/modules/mdoc/MdocError.js +0 -8
  2647. package/build/modules/mdoc/MdocError.js.map +0 -1
  2648. package/build/modules/mdoc/MdocModule.d.ts +0 -12
  2649. package/build/modules/mdoc/MdocModule.js +0 -30
  2650. package/build/modules/mdoc/MdocModule.js.map +0 -1
  2651. package/build/modules/mdoc/MdocOptions.d.ts +0 -51
  2652. package/build/modules/mdoc/MdocOptions.js +0 -3
  2653. package/build/modules/mdoc/MdocOptions.js.map +0 -1
  2654. package/build/modules/mdoc/MdocService.d.ts +0 -39
  2655. package/build/modules/mdoc/MdocService.js +0 -66
  2656. package/build/modules/mdoc/MdocService.js.map +0 -1
  2657. package/build/modules/mdoc/index.d.ts +0 -8
  2658. package/build/modules/mdoc/index.js +0 -25
  2659. package/build/modules/mdoc/index.js.map +0 -1
  2660. package/build/modules/mdoc/repository/MdocRecord.d.ts +0 -29
  2661. package/build/modules/mdoc/repository/MdocRecord.js +0 -33
  2662. package/build/modules/mdoc/repository/MdocRecord.js.map +0 -1
  2663. package/build/modules/mdoc/repository/MdocRepository.d.ts +0 -7
  2664. package/build/modules/mdoc/repository/MdocRepository.js +0 -32
  2665. package/build/modules/mdoc/repository/MdocRepository.js.map +0 -1
  2666. package/build/modules/mdoc/repository/index.d.ts +0 -2
  2667. package/build/modules/mdoc/repository/index.js +0 -19
  2668. package/build/modules/mdoc/repository/index.js.map +0 -1
  2669. package/build/modules/message-pickup/MessagePickupApi.d.ts +0 -36
  2670. package/build/modules/message-pickup/MessagePickupApi.js +0 -208
  2671. package/build/modules/message-pickup/MessagePickupApi.js.map +0 -1
  2672. package/build/modules/message-pickup/MessagePickupApiOptions.d.ts +0 -39
  2673. package/build/modules/message-pickup/MessagePickupApiOptions.js +0 -3
  2674. package/build/modules/message-pickup/MessagePickupApiOptions.js.map +0 -1
  2675. package/build/modules/message-pickup/MessagePickupEvents.d.ts +0 -27
  2676. package/build/modules/message-pickup/MessagePickupEvents.js +0 -10
  2677. package/build/modules/message-pickup/MessagePickupEvents.js.map +0 -1
  2678. package/build/modules/message-pickup/MessagePickupModule.d.ts +0 -23
  2679. package/build/modules/message-pickup/MessagePickupModule.js +0 -41
  2680. package/build/modules/message-pickup/MessagePickupModule.js.map +0 -1
  2681. package/build/modules/message-pickup/MessagePickupModuleConfig.d.ts +0 -41
  2682. package/build/modules/message-pickup/MessagePickupModuleConfig.js +0 -23
  2683. package/build/modules/message-pickup/MessagePickupModuleConfig.js.map +0 -1
  2684. package/build/modules/message-pickup/MessagePickupSession.d.ts +0 -12
  2685. package/build/modules/message-pickup/MessagePickupSession.js +0 -9
  2686. package/build/modules/message-pickup/MessagePickupSession.js.map +0 -1
  2687. package/build/modules/message-pickup/index.d.ts +0 -8
  2688. package/build/modules/message-pickup/index.js +0 -27
  2689. package/build/modules/message-pickup/index.js.map +0 -1
  2690. package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.d.ts +0 -17
  2691. package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.js +0 -11
  2692. package/build/modules/message-pickup/protocol/BaseMessagePickupProtocol.js.map +0 -1
  2693. package/build/modules/message-pickup/protocol/MessagePickupProtocol.d.ts +0 -12
  2694. package/build/modules/message-pickup/protocol/MessagePickupProtocol.js +0 -3
  2695. package/build/modules/message-pickup/protocol/MessagePickupProtocol.js.map +0 -1
  2696. package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.d.ts +0 -27
  2697. package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.js +0 -3
  2698. package/build/modules/message-pickup/protocol/MessagePickupProtocolOptions.js.map +0 -1
  2699. package/build/modules/message-pickup/protocol/index.d.ts +0 -2
  2700. package/build/modules/message-pickup/protocol/index.js +0 -19
  2701. package/build/modules/message-pickup/protocol/index.js.map +0 -1
  2702. package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.d.ts +0 -24
  2703. package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.js +0 -126
  2704. package/build/modules/message-pickup/protocol/v1/V1MessagePickupProtocol.js.map +0 -1
  2705. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.d.ts +0 -10
  2706. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.js +0 -23
  2707. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchHandler.js.map +0 -1
  2708. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.d.ts +0 -9
  2709. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.js +0 -16
  2710. package/build/modules/message-pickup/protocol/v1/handlers/V1BatchPickupHandler.js.map +0 -1
  2711. package/build/modules/message-pickup/protocol/v1/handlers/index.d.ts +0 -2
  2712. package/build/modules/message-pickup/protocol/v1/handlers/index.js +0 -19
  2713. package/build/modules/message-pickup/protocol/v1/handlers/index.js.map +0 -1
  2714. package/build/modules/message-pickup/protocol/v1/index.d.ts +0 -2
  2715. package/build/modules/message-pickup/protocol/v1/index.js +0 -19
  2716. package/build/modules/message-pickup/protocol/v1/index.js.map +0 -1
  2717. package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.d.ts +0 -27
  2718. package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.js +0 -71
  2719. package/build/modules/message-pickup/protocol/v1/messages/V1BatchMessage.js.map +0 -1
  2720. package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.d.ts +0 -22
  2721. package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.js +0 -49
  2722. package/build/modules/message-pickup/protocol/v1/messages/V1BatchPickupMessage.js.map +0 -1
  2723. package/build/modules/message-pickup/protocol/v1/messages/index.d.ts +0 -2
  2724. package/build/modules/message-pickup/protocol/v1/messages/index.js +0 -19
  2725. package/build/modules/message-pickup/protocol/v1/messages/index.js.map +0 -1
  2726. package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.d.ts +0 -28
  2727. package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.js +0 -240
  2728. package/build/modules/message-pickup/protocol/v2/V2MessagePickupProtocol.js.map +0 -1
  2729. package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.d.ts +0 -10
  2730. package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.js +0 -16
  2731. package/build/modules/message-pickup/protocol/v2/handlers/V2DeliveryRequestHandler.js.map +0 -1
  2732. package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.d.ts +0 -10
  2733. package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.js +0 -16
  2734. package/build/modules/message-pickup/protocol/v2/handlers/V2LiveDeliveryChangeHandler.js.map +0 -1
  2735. package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.d.ts +0 -11
  2736. package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.js +0 -23
  2737. package/build/modules/message-pickup/protocol/v2/handlers/V2MessageDeliveryHandler.js.map +0 -1
  2738. package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.d.ts +0 -10
  2739. package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.js +0 -16
  2740. package/build/modules/message-pickup/protocol/v2/handlers/V2MessagesReceivedHandler.js.map +0 -1
  2741. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.d.ts +0 -11
  2742. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.js +0 -23
  2743. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusHandler.js.map +0 -1
  2744. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.d.ts +0 -10
  2745. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.js +0 -16
  2746. package/build/modules/message-pickup/protocol/v2/handlers/V2StatusRequestHandler.js.map +0 -1
  2747. package/build/modules/message-pickup/protocol/v2/handlers/index.d.ts +0 -6
  2748. package/build/modules/message-pickup/protocol/v2/handlers/index.js +0 -23
  2749. package/build/modules/message-pickup/protocol/v2/handlers/index.js.map +0 -1
  2750. package/build/modules/message-pickup/protocol/v2/index.d.ts +0 -2
  2751. package/build/modules/message-pickup/protocol/v2/index.js +0 -19
  2752. package/build/modules/message-pickup/protocol/v2/index.js.map +0 -1
  2753. package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.d.ts +0 -14
  2754. package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.js +0 -47
  2755. package/build/modules/message-pickup/protocol/v2/messages/V2DeliveryRequestMessage.js.map +0 -1
  2756. package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.d.ts +0 -12
  2757. package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.js +0 -41
  2758. package/build/modules/message-pickup/protocol/v2/messages/V2LiveDeliveryChangeMessage.js.map +0 -1
  2759. package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.d.ts +0 -15
  2760. package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.js +0 -48
  2761. package/build/modules/message-pickup/protocol/v2/messages/V2MessageDeliveryMessage.js.map +0 -1
  2762. package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.d.ts +0 -12
  2763. package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.js +0 -41
  2764. package/build/modules/message-pickup/protocol/v2/messages/V2MessagesReceivedMessage.js.map +0 -1
  2765. package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.d.ts +0 -25
  2766. package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.js +0 -89
  2767. package/build/modules/message-pickup/protocol/v2/messages/V2StatusMessage.js.map +0 -1
  2768. package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.d.ts +0 -12
  2769. package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.js +0 -40
  2770. package/build/modules/message-pickup/protocol/v2/messages/V2StatusRequestMessage.js.map +0 -1
  2771. package/build/modules/message-pickup/protocol/v2/messages/index.d.ts +0 -6
  2772. package/build/modules/message-pickup/protocol/v2/messages/index.js +0 -23
  2773. package/build/modules/message-pickup/protocol/v2/messages/index.js.map +0 -1
  2774. package/build/modules/message-pickup/services/MessagePickupSessionService.d.ts +0 -27
  2775. package/build/modules/message-pickup/services/MessagePickupSessionService.js +0 -91
  2776. package/build/modules/message-pickup/services/MessagePickupSessionService.js.map +0 -1
  2777. package/build/modules/message-pickup/services/index.d.ts +0 -1
  2778. package/build/modules/message-pickup/services/index.js +0 -18
  2779. package/build/modules/message-pickup/services/index.js.map +0 -1
  2780. package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.d.ts +0 -13
  2781. package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.js +0 -77
  2782. package/build/modules/message-pickup/storage/InMemoryMessagePickupRepository.js.map +0 -1
  2783. package/build/modules/message-pickup/storage/MessagePickupRepository.d.ts +0 -8
  2784. package/build/modules/message-pickup/storage/MessagePickupRepository.js +0 -3
  2785. package/build/modules/message-pickup/storage/MessagePickupRepository.js.map +0 -1
  2786. package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.d.ts +0 -20
  2787. package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.js +0 -3
  2788. package/build/modules/message-pickup/storage/MessagePickupRepositoryOptions.js.map +0 -1
  2789. package/build/modules/message-pickup/storage/QueuedMessage.d.ts +0 -12
  2790. package/build/modules/message-pickup/storage/QueuedMessage.js +0 -3
  2791. package/build/modules/message-pickup/storage/QueuedMessage.js.map +0 -1
  2792. package/build/modules/message-pickup/storage/index.d.ts +0 -4
  2793. package/build/modules/message-pickup/storage/index.js +0 -21
  2794. package/build/modules/message-pickup/storage/index.js.map +0 -1
  2795. package/build/modules/oob/OutOfBandApi.d.ts +0 -276
  2796. package/build/modules/oob/OutOfBandApi.js +0 -722
  2797. package/build/modules/oob/OutOfBandApi.js.map +0 -1
  2798. package/build/modules/oob/OutOfBandModule.d.ts +0 -10
  2799. package/build/modules/oob/OutOfBandModule.js +0 -28
  2800. package/build/modules/oob/OutOfBandModule.js.map +0 -1
  2801. package/build/modules/oob/OutOfBandService.d.ts +0 -51
  2802. package/build/modules/oob/OutOfBandService.js +0 -224
  2803. package/build/modules/oob/OutOfBandService.js.map +0 -1
  2804. package/build/modules/oob/domain/OutOfBandDidCommService.d.ts +0 -18
  2805. package/build/modules/oob/domain/OutOfBandDidCommService.js +0 -77
  2806. package/build/modules/oob/domain/OutOfBandDidCommService.js.map +0 -1
  2807. package/build/modules/oob/domain/OutOfBandEvents.d.ts +0 -23
  2808. package/build/modules/oob/domain/OutOfBandEvents.js +0 -9
  2809. package/build/modules/oob/domain/OutOfBandEvents.js.map +0 -1
  2810. package/build/modules/oob/domain/OutOfBandRole.d.ts +0 -4
  2811. package/build/modules/oob/domain/OutOfBandRole.js +0 -9
  2812. package/build/modules/oob/domain/OutOfBandRole.js.map +0 -1
  2813. package/build/modules/oob/domain/OutOfBandState.d.ts +0 -6
  2814. package/build/modules/oob/domain/OutOfBandState.js +0 -11
  2815. package/build/modules/oob/domain/OutOfBandState.js.map +0 -1
  2816. package/build/modules/oob/domain/index.d.ts +0 -4
  2817. package/build/modules/oob/domain/index.js +0 -21
  2818. package/build/modules/oob/domain/index.js.map +0 -1
  2819. package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.d.ts +0 -10
  2820. package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.js +0 -16
  2821. package/build/modules/oob/handlers/HandshakeReuseAcceptedHandler.js.map +0 -1
  2822. package/build/modules/oob/handlers/HandshakeReuseHandler.d.ts +0 -11
  2823. package/build/modules/oob/handlers/HandshakeReuseHandler.js +0 -21
  2824. package/build/modules/oob/handlers/HandshakeReuseHandler.js.map +0 -1
  2825. package/build/modules/oob/handlers/index.d.ts +0 -1
  2826. package/build/modules/oob/handlers/index.js +0 -18
  2827. package/build/modules/oob/handlers/index.js.map +0 -1
  2828. package/build/modules/oob/helpers.d.ts +0 -4
  2829. package/build/modules/oob/helpers.js +0 -71
  2830. package/build/modules/oob/helpers.js.map +0 -1
  2831. package/build/modules/oob/index.d.ts +0 -6
  2832. package/build/modules/oob/index.js +0 -23
  2833. package/build/modules/oob/index.js.map +0 -1
  2834. package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.d.ts +0 -11
  2835. package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.js +0 -35
  2836. package/build/modules/oob/messages/HandshakeReuseAcceptedMessage.js.map +0 -1
  2837. package/build/modules/oob/messages/HandshakeReuseMessage.d.ts +0 -10
  2838. package/build/modules/oob/messages/HandshakeReuseMessage.js +0 -34
  2839. package/build/modules/oob/messages/HandshakeReuseMessage.js.map +0 -1
  2840. package/build/modules/oob/messages/OutOfBandInvitation.d.ts +0 -55
  2841. package/build/modules/oob/messages/OutOfBandInvitation.js +0 -181
  2842. package/build/modules/oob/messages/OutOfBandInvitation.js.map +0 -1
  2843. package/build/modules/oob/messages/index.d.ts +0 -2
  2844. package/build/modules/oob/messages/index.js +0 -19
  2845. package/build/modules/oob/messages/index.js.map +0 -1
  2846. package/build/modules/oob/repository/OutOfBandRecord.d.ts +0 -59
  2847. package/build/modules/oob/repository/OutOfBandRecord.js +0 -63
  2848. package/build/modules/oob/repository/OutOfBandRecord.js.map +0 -1
  2849. package/build/modules/oob/repository/OutOfBandRepository.d.ts +0 -7
  2850. package/build/modules/oob/repository/OutOfBandRepository.js +0 -32
  2851. package/build/modules/oob/repository/OutOfBandRepository.js.map +0 -1
  2852. package/build/modules/oob/repository/index.d.ts +0 -2
  2853. package/build/modules/oob/repository/index.js +0 -19
  2854. package/build/modules/oob/repository/index.js.map +0 -1
  2855. package/build/modules/oob/repository/outOfBandRecordMetadataTypes.d.ts +0 -19
  2856. package/build/modules/oob/repository/outOfBandRecordMetadataTypes.js +0 -9
  2857. package/build/modules/oob/repository/outOfBandRecordMetadataTypes.js.map +0 -1
  2858. package/build/modules/problem-reports/errors/ProblemReportError.d.ts +0 -9
  2859. package/build/modules/problem-reports/errors/ProblemReportError.js +0 -18
  2860. package/build/modules/problem-reports/errors/ProblemReportError.js.map +0 -1
  2861. package/build/modules/problem-reports/errors/index.d.ts +0 -1
  2862. package/build/modules/problem-reports/errors/index.js +0 -18
  2863. package/build/modules/problem-reports/errors/index.js.map +0 -1
  2864. package/build/modules/problem-reports/index.d.ts +0 -3
  2865. package/build/modules/problem-reports/index.js +0 -20
  2866. package/build/modules/problem-reports/index.js.map +0 -1
  2867. package/build/modules/problem-reports/messages/ProblemReportMessage.d.ts +0 -63
  2868. package/build/modules/problem-reports/messages/ProblemReportMessage.js +0 -119
  2869. package/build/modules/problem-reports/messages/ProblemReportMessage.js.map +0 -1
  2870. package/build/modules/problem-reports/messages/index.d.ts +0 -1
  2871. package/build/modules/problem-reports/messages/index.js +0 -18
  2872. package/build/modules/problem-reports/messages/index.js.map +0 -1
  2873. package/build/modules/problem-reports/models/ProblemReportReason.d.ts +0 -3
  2874. package/build/modules/problem-reports/models/ProblemReportReason.js +0 -8
  2875. package/build/modules/problem-reports/models/ProblemReportReason.js.map +0 -1
  2876. package/build/modules/problem-reports/models/index.d.ts +0 -1
  2877. package/build/modules/problem-reports/models/index.js +0 -18
  2878. package/build/modules/problem-reports/models/index.js.map +0 -1
  2879. package/build/modules/proofs/ProofEvents.d.ts +0 -13
  2880. package/build/modules/proofs/ProofEvents.js +0 -8
  2881. package/build/modules/proofs/ProofEvents.js.map +0 -1
  2882. package/build/modules/proofs/ProofsApi.d.ts +0 -68
  2883. package/build/modules/proofs/ProofsApi.js +0 -478
  2884. package/build/modules/proofs/ProofsApi.js.map +0 -1
  2885. package/build/modules/proofs/ProofsApiOptions.d.ts +0 -141
  2886. package/build/modules/proofs/ProofsApiOptions.js +0 -3
  2887. package/build/modules/proofs/ProofsApiOptions.js.map +0 -1
  2888. package/build/modules/proofs/ProofsModule.d.ts +0 -23
  2889. package/build/modules/proofs/ProofsModule.js +0 -31
  2890. package/build/modules/proofs/ProofsModule.js.map +0 -1
  2891. package/build/modules/proofs/ProofsModuleConfig.d.ts +0 -34
  2892. package/build/modules/proofs/ProofsModuleConfig.js +0 -20
  2893. package/build/modules/proofs/ProofsModuleConfig.js.map +0 -1
  2894. package/build/modules/proofs/errors/PresentationProblemReportReason.d.ts +0 -8
  2895. package/build/modules/proofs/errors/PresentationProblemReportReason.js +0 -13
  2896. package/build/modules/proofs/errors/PresentationProblemReportReason.js.map +0 -1
  2897. package/build/modules/proofs/errors/index.d.ts +0 -1
  2898. package/build/modules/proofs/errors/index.js +0 -18
  2899. package/build/modules/proofs/errors/index.js.map +0 -1
  2900. package/build/modules/proofs/formats/ProofFormat.d.ts +0 -66
  2901. package/build/modules/proofs/formats/ProofFormat.js +0 -3
  2902. package/build/modules/proofs/formats/ProofFormat.js.map +0 -1
  2903. package/build/modules/proofs/formats/ProofFormatService.d.ts +0 -19
  2904. package/build/modules/proofs/formats/ProofFormatService.js +0 -3
  2905. package/build/modules/proofs/formats/ProofFormatService.js.map +0 -1
  2906. package/build/modules/proofs/formats/ProofFormatServiceOptions.d.ts +0 -103
  2907. package/build/modules/proofs/formats/ProofFormatServiceOptions.js +0 -3
  2908. package/build/modules/proofs/formats/ProofFormatServiceOptions.js.map +0 -1
  2909. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.d.ts +0 -53
  2910. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.js +0 -3
  2911. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormat.js.map +0 -1
  2912. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.d.ts +0 -32
  2913. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.js +0 -285
  2914. package/build/modules/proofs/formats/dif-presentation-exchange/DifPresentationExchangeProofFormatService.js.map +0 -1
  2915. package/build/modules/proofs/formats/dif-presentation-exchange/index.d.ts +0 -2
  2916. package/build/modules/proofs/formats/dif-presentation-exchange/index.js +0 -19
  2917. package/build/modules/proofs/formats/dif-presentation-exchange/index.js.map +0 -1
  2918. package/build/modules/proofs/formats/index.d.ts +0 -6
  2919. package/build/modules/proofs/formats/index.js +0 -36
  2920. package/build/modules/proofs/formats/index.js.map +0 -1
  2921. package/build/modules/proofs/index.d.ts +0 -10
  2922. package/build/modules/proofs/index.js +0 -29
  2923. package/build/modules/proofs/index.js.map +0 -1
  2924. package/build/modules/proofs/models/ProofAutoAcceptType.d.ts +0 -8
  2925. package/build/modules/proofs/models/ProofAutoAcceptType.js +0 -16
  2926. package/build/modules/proofs/models/ProofAutoAcceptType.js.map +0 -1
  2927. package/build/modules/proofs/models/ProofFormatSpec.d.ts +0 -9
  2928. package/build/modules/proofs/models/ProofFormatSpec.js +0 -35
  2929. package/build/modules/proofs/models/ProofFormatSpec.js.map +0 -1
  2930. package/build/modules/proofs/models/ProofRole.d.ts +0 -4
  2931. package/build/modules/proofs/models/ProofRole.js +0 -9
  2932. package/build/modules/proofs/models/ProofRole.js.map +0 -1
  2933. package/build/modules/proofs/models/ProofState.d.ts +0 -16
  2934. package/build/modules/proofs/models/ProofState.js +0 -21
  2935. package/build/modules/proofs/models/ProofState.js.map +0 -1
  2936. package/build/modules/proofs/models/index.d.ts +0 -4
  2937. package/build/modules/proofs/models/index.js +0 -21
  2938. package/build/modules/proofs/models/index.js.map +0 -1
  2939. package/build/modules/proofs/protocol/BaseProofProtocol.d.ts +0 -98
  2940. package/build/modules/proofs/protocol/BaseProofProtocol.js +0 -151
  2941. package/build/modules/proofs/protocol/BaseProofProtocol.js.map +0 -1
  2942. package/build/modules/proofs/protocol/ProofProtocol.d.ts +0 -52
  2943. package/build/modules/proofs/protocol/ProofProtocol.js +0 -3
  2944. package/build/modules/proofs/protocol/ProofProtocol.js.map +0 -1
  2945. package/build/modules/proofs/protocol/ProofProtocolOptions.d.ts +0 -128
  2946. package/build/modules/proofs/protocol/ProofProtocolOptions.js +0 -3
  2947. package/build/modules/proofs/protocol/ProofProtocolOptions.js.map +0 -1
  2948. package/build/modules/proofs/protocol/index.d.ts +0 -5
  2949. package/build/modules/proofs/protocol/index.js +0 -39
  2950. package/build/modules/proofs/protocol/index.js.map +0 -1
  2951. package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.d.ts +0 -93
  2952. package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.js +0 -307
  2953. package/build/modules/proofs/protocol/v2/ProofFormatCoordinator.js.map +0 -1
  2954. package/build/modules/proofs/protocol/v2/V2ProofProtocol.d.ts +0 -114
  2955. package/build/modules/proofs/protocol/v2/V2ProofProtocol.js +0 -800
  2956. package/build/modules/proofs/protocol/v2/V2ProofProtocol.js.map +0 -1
  2957. package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.d.ts +0 -13
  2958. package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.js +0 -19
  2959. package/build/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.js.map +0 -1
  2960. package/build/modules/proofs/protocol/v2/errors/index.d.ts +0 -1
  2961. package/build/modules/proofs/protocol/v2/errors/index.js +0 -18
  2962. package/build/modules/proofs/protocol/v2/errors/index.js.map +0 -1
  2963. package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.d.ts +0 -9
  2964. package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.js +0 -15
  2965. package/build/modules/proofs/protocol/v2/handlers/V2PresentationAckHandler.js.map +0 -1
  2966. package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.d.ts +0 -10
  2967. package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.js +0 -43
  2968. package/build/modules/proofs/protocol/v2/handlers/V2PresentationHandler.js.map +0 -1
  2969. package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.d.ts +0 -9
  2970. package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.js +0 -15
  2971. package/build/modules/proofs/protocol/v2/handlers/V2PresentationProblemReportHandler.js.map +0 -1
  2972. package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.d.ts +0 -11
  2973. package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.js +0 -36
  2974. package/build/modules/proofs/protocol/v2/handlers/V2ProposePresentationHandler.js.map +0 -1
  2975. package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.d.ts +0 -10
  2976. package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.js +0 -36
  2977. package/build/modules/proofs/protocol/v2/handlers/V2RequestPresentationHandler.js.map +0 -1
  2978. package/build/modules/proofs/protocol/v2/index.d.ts +0 -3
  2979. package/build/modules/proofs/protocol/v2/index.js +0 -20
  2980. package/build/modules/proofs/protocol/v2/index.js.map +0 -1
  2981. package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.d.ts +0 -5
  2982. package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.js +0 -27
  2983. package/build/modules/proofs/protocol/v2/messages/V2PresentationAckMessage.js.map +0 -1
  2984. package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.d.ts +0 -24
  2985. package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.js +0 -85
  2986. package/build/modules/proofs/protocol/v2/messages/V2PresentationMessage.js.map +0 -1
  2987. package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.d.ts +0 -8
  2988. package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.js +0 -30
  2989. package/build/modules/proofs/protocol/v2/messages/V2PresentationProblemReportMessage.js.map +0 -1
  2990. package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.d.ts +0 -22
  2991. package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.js +0 -77
  2992. package/build/modules/proofs/protocol/v2/messages/V2ProposePresentationMessage.js.map +0 -1
  2993. package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.d.ts +0 -26
  2994. package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.js +0 -92
  2995. package/build/modules/proofs/protocol/v2/messages/V2RequestPresentationMessage.js.map +0 -1
  2996. package/build/modules/proofs/protocol/v2/messages/index.d.ts +0 -5
  2997. package/build/modules/proofs/protocol/v2/messages/index.js +0 -22
  2998. package/build/modules/proofs/protocol/v2/messages/index.js.map +0 -1
  2999. package/build/modules/proofs/repository/ProofExchangeRecord.d.ts +0 -50
  3000. package/build/modules/proofs/repository/ProofExchangeRecord.js +0 -54
  3001. package/build/modules/proofs/repository/ProofExchangeRecord.js.map +0 -1
  3002. package/build/modules/proofs/repository/ProofRepository.d.ts +0 -26
  3003. package/build/modules/proofs/repository/ProofRepository.js +0 -54
  3004. package/build/modules/proofs/repository/ProofRepository.js.map +0 -1
  3005. package/build/modules/proofs/repository/index.d.ts +0 -2
  3006. package/build/modules/proofs/repository/index.js +0 -19
  3007. package/build/modules/proofs/repository/index.js.map +0 -1
  3008. package/build/modules/proofs/utils/composeAutoAccept.d.ts +0 -8
  3009. package/build/modules/proofs/utils/composeAutoAccept.js +0 -15
  3010. package/build/modules/proofs/utils/composeAutoAccept.js.map +0 -1
  3011. package/build/modules/proofs/utils/index.d.ts +0 -1
  3012. package/build/modules/proofs/utils/index.js +0 -18
  3013. package/build/modules/proofs/utils/index.js.map +0 -1
  3014. package/build/modules/routing/MediationRecipientApi.d.ts +0 -89
  3015. package/build/modules/routing/MediationRecipientApi.js +0 -425
  3016. package/build/modules/routing/MediationRecipientApi.js.map +0 -1
  3017. package/build/modules/routing/MediationRecipientModule.d.ts +0 -14
  3018. package/build/modules/routing/MediationRecipientModule.js +0 -34
  3019. package/build/modules/routing/MediationRecipientModule.js.map +0 -1
  3020. package/build/modules/routing/MediationRecipientModuleConfig.d.ts +0 -79
  3021. package/build/modules/routing/MediationRecipientModuleConfig.js +0 -38
  3022. package/build/modules/routing/MediationRecipientModuleConfig.js.map +0 -1
  3023. package/build/modules/routing/MediatorApi.d.ts +0 -18
  3024. package/build/modules/routing/MediatorApi.js +0 -69
  3025. package/build/modules/routing/MediatorApi.js.map +0 -1
  3026. package/build/modules/routing/MediatorModule.d.ts +0 -14
  3027. package/build/modules/routing/MediatorModule.js +0 -34
  3028. package/build/modules/routing/MediatorModule.js.map +0 -1
  3029. package/build/modules/routing/MediatorModuleConfig.d.ts +0 -33
  3030. package/build/modules/routing/MediatorModuleConfig.js +0 -21
  3031. package/build/modules/routing/MediatorModuleConfig.js.map +0 -1
  3032. package/build/modules/routing/MediatorPickupStrategy.d.ts +0 -7
  3033. package/build/modules/routing/MediatorPickupStrategy.js +0 -19
  3034. package/build/modules/routing/MediatorPickupStrategy.js.map +0 -1
  3035. package/build/modules/routing/MessageForwardingStrategy.d.ts +0 -5
  3036. package/build/modules/routing/MessageForwardingStrategy.js +0 -16
  3037. package/build/modules/routing/MessageForwardingStrategy.js.map +0 -1
  3038. package/build/modules/routing/RoutingEvents.d.ts +0 -30
  3039. package/build/modules/routing/RoutingEvents.js +0 -10
  3040. package/build/modules/routing/RoutingEvents.js.map +0 -1
  3041. package/build/modules/routing/error/RoutingProblemReportReason.d.ts +0 -3
  3042. package/build/modules/routing/error/RoutingProblemReportReason.js +0 -8
  3043. package/build/modules/routing/error/RoutingProblemReportReason.js.map +0 -1
  3044. package/build/modules/routing/error/index.d.ts +0 -1
  3045. package/build/modules/routing/error/index.js +0 -18
  3046. package/build/modules/routing/error/index.js.map +0 -1
  3047. package/build/modules/routing/handlers/ForwardHandler.d.ts +0 -9
  3048. package/build/modules/routing/handlers/ForwardHandler.js +0 -15
  3049. package/build/modules/routing/handlers/ForwardHandler.js.map +0 -1
  3050. package/build/modules/routing/handlers/KeylistUpdateHandler.d.ts +0 -10
  3051. package/build/modules/routing/handlers/KeylistUpdateHandler.js +0 -21
  3052. package/build/modules/routing/handlers/KeylistUpdateHandler.js.map +0 -1
  3053. package/build/modules/routing/handlers/KeylistUpdateResponseHandler.d.ts +0 -9
  3054. package/build/modules/routing/handlers/KeylistUpdateResponseHandler.js +0 -16
  3055. package/build/modules/routing/handlers/KeylistUpdateResponseHandler.js.map +0 -1
  3056. package/build/modules/routing/handlers/MediationDenyHandler.d.ts +0 -9
  3057. package/build/modules/routing/handlers/MediationDenyHandler.js +0 -16
  3058. package/build/modules/routing/handlers/MediationDenyHandler.js.map +0 -1
  3059. package/build/modules/routing/handlers/MediationGrantHandler.d.ts +0 -9
  3060. package/build/modules/routing/handlers/MediationGrantHandler.js +0 -16
  3061. package/build/modules/routing/handlers/MediationGrantHandler.js.map +0 -1
  3062. package/build/modules/routing/handlers/MediationRequestHandler.d.ts +0 -12
  3063. package/build/modules/routing/handlers/MediationRequestHandler.js +0 -26
  3064. package/build/modules/routing/handlers/MediationRequestHandler.js.map +0 -1
  3065. package/build/modules/routing/handlers/index.d.ts +0 -6
  3066. package/build/modules/routing/handlers/index.js +0 -23
  3067. package/build/modules/routing/handlers/index.js.map +0 -1
  3068. package/build/modules/routing/index.d.ts +0 -10
  3069. package/build/modules/routing/index.js +0 -27
  3070. package/build/modules/routing/index.js.map +0 -1
  3071. package/build/modules/routing/messages/ForwardMessage.d.ts +0 -23
  3072. package/build/modules/routing/messages/ForwardMessage.js +0 -52
  3073. package/build/modules/routing/messages/ForwardMessage.js.map +0 -1
  3074. package/build/modules/routing/messages/KeylistMessage.d.ts +0 -20
  3075. package/build/modules/routing/messages/KeylistMessage.js +0 -49
  3076. package/build/modules/routing/messages/KeylistMessage.js.map +0 -1
  3077. package/build/modules/routing/messages/KeylistUpdateMessage.d.ts +0 -29
  3078. package/build/modules/routing/messages/KeylistUpdateMessage.js +0 -68
  3079. package/build/modules/routing/messages/KeylistUpdateMessage.js.map +0 -1
  3080. package/build/modules/routing/messages/KeylistUpdateResponseMessage.d.ts +0 -34
  3081. package/build/modules/routing/messages/KeylistUpdateResponseMessage.js +0 -79
  3082. package/build/modules/routing/messages/KeylistUpdateResponseMessage.js.map +0 -1
  3083. package/build/modules/routing/messages/MediationDenyMessage.d.ts +0 -14
  3084. package/build/modules/routing/messages/MediationDenyMessage.js +0 -35
  3085. package/build/modules/routing/messages/MediationDenyMessage.js.map +0 -1
  3086. package/build/modules/routing/messages/MediationGrantMessage.d.ts +0 -20
  3087. package/build/modules/routing/messages/MediationGrantMessage.js +0 -55
  3088. package/build/modules/routing/messages/MediationGrantMessage.js.map +0 -1
  3089. package/build/modules/routing/messages/MediationRequestMessage.d.ts +0 -22
  3090. package/build/modules/routing/messages/MediationRequestMessage.js +0 -42
  3091. package/build/modules/routing/messages/MediationRequestMessage.js.map +0 -1
  3092. package/build/modules/routing/messages/index.d.ts +0 -6
  3093. package/build/modules/routing/messages/index.js +0 -23
  3094. package/build/modules/routing/messages/index.js.map +0 -1
  3095. package/build/modules/routing/models/MediationRole.d.ts +0 -9
  3096. package/build/modules/routing/models/MediationRole.js +0 -14
  3097. package/build/modules/routing/models/MediationRole.js.map +0 -1
  3098. package/build/modules/routing/models/MediationState.d.ts +0 -10
  3099. package/build/modules/routing/models/MediationState.js +0 -15
  3100. package/build/modules/routing/models/MediationState.js.map +0 -1
  3101. package/build/modules/routing/models/index.d.ts +0 -2
  3102. package/build/modules/routing/models/index.js +0 -19
  3103. package/build/modules/routing/models/index.js.map +0 -1
  3104. package/build/modules/routing/repository/MediationRecord.d.ts +0 -53
  3105. package/build/modules/routing/repository/MediationRecord.js +0 -87
  3106. package/build/modules/routing/repository/MediationRecord.js.map +0 -1
  3107. package/build/modules/routing/repository/MediationRepository.d.ts +0 -10
  3108. package/build/modules/routing/repository/MediationRepository.js +0 -40
  3109. package/build/modules/routing/repository/MediationRepository.js.map +0 -1
  3110. package/build/modules/routing/repository/MediatorRoutingRecord.d.ts +0 -15
  3111. package/build/modules/routing/repository/MediatorRoutingRecord.js +0 -23
  3112. package/build/modules/routing/repository/MediatorRoutingRecord.js.map +0 -1
  3113. package/build/modules/routing/repository/MediatorRoutingRepository.d.ts +0 -8
  3114. package/build/modules/routing/repository/MediatorRoutingRepository.js +0 -33
  3115. package/build/modules/routing/repository/MediatorRoutingRepository.js.map +0 -1
  3116. package/build/modules/routing/repository/index.d.ts +0 -4
  3117. package/build/modules/routing/repository/index.js +0 -21
  3118. package/build/modules/routing/repository/index.js.map +0 -1
  3119. package/build/modules/routing/services/MediationRecipientService.d.ts +0 -57
  3120. package/build/modules/routing/services/MediationRecipientService.js +0 -276
  3121. package/build/modules/routing/services/MediationRecipientService.js.map +0 -1
  3122. package/build/modules/routing/services/MediatorService.d.ts +0 -39
  3123. package/build/modules/routing/services/MediatorService.js +0 -253
  3124. package/build/modules/routing/services/MediatorService.js.map +0 -1
  3125. package/build/modules/routing/services/RoutingService.d.ts +0 -33
  3126. package/build/modules/routing/services/RoutingService.js +0 -54
  3127. package/build/modules/routing/services/RoutingService.js.map +0 -1
  3128. package/build/modules/routing/services/helpers.d.ts +0 -3
  3129. package/build/modules/routing/services/helpers.js +0 -13
  3130. package/build/modules/routing/services/helpers.js.map +0 -1
  3131. package/build/modules/routing/services/index.d.ts +0 -3
  3132. package/build/modules/routing/services/index.js +0 -20
  3133. package/build/modules/routing/services/index.js.map +0 -1
  3134. package/build/modules/sd-jwt-vc/SdJwtVcApi.d.ts +0 -59
  3135. package/build/modules/sd-jwt-vc/SdJwtVcApi.js +0 -77
  3136. package/build/modules/sd-jwt-vc/SdJwtVcApi.js.map +0 -1
  3137. package/build/modules/sd-jwt-vc/SdJwtVcError.d.ts +0 -3
  3138. package/build/modules/sd-jwt-vc/SdJwtVcError.js +0 -8
  3139. package/build/modules/sd-jwt-vc/SdJwtVcError.js.map +0 -1
  3140. package/build/modules/sd-jwt-vc/SdJwtVcModule.d.ts +0 -12
  3141. package/build/modules/sd-jwt-vc/SdJwtVcModule.js +0 -30
  3142. package/build/modules/sd-jwt-vc/SdJwtVcModule.js.map +0 -1
  3143. package/build/modules/sd-jwt-vc/SdJwtVcOptions.d.ts +0 -93
  3144. package/build/modules/sd-jwt-vc/SdJwtVcOptions.js +0 -3
  3145. package/build/modules/sd-jwt-vc/SdJwtVcOptions.js.map +0 -1
  3146. package/build/modules/sd-jwt-vc/SdJwtVcService.d.ts +0 -80
  3147. package/build/modules/sd-jwt-vc/SdJwtVcService.js +0 -466
  3148. package/build/modules/sd-jwt-vc/SdJwtVcService.js.map +0 -1
  3149. package/build/modules/sd-jwt-vc/index.d.ts +0 -6
  3150. package/build/modules/sd-jwt-vc/index.js +0 -23
  3151. package/build/modules/sd-jwt-vc/index.js.map +0 -1
  3152. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.d.ts +0 -32
  3153. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.js +0 -36
  3154. package/build/modules/sd-jwt-vc/repository/SdJwtVcRecord.js.map +0 -1
  3155. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.d.ts +0 -7
  3156. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.js +0 -32
  3157. package/build/modules/sd-jwt-vc/repository/SdJwtVcRepository.js.map +0 -1
  3158. package/build/modules/sd-jwt-vc/repository/index.d.ts +0 -2
  3159. package/build/modules/sd-jwt-vc/repository/index.js +0 -19
  3160. package/build/modules/sd-jwt-vc/repository/index.js.map +0 -1
  3161. package/build/modules/vc/W3cCredentialService.d.ts +0 -60
  3162. package/build/modules/vc/W3cCredentialService.js +0 -163
  3163. package/build/modules/vc/W3cCredentialService.js.map +0 -1
  3164. package/build/modules/vc/W3cCredentialServiceOptions.d.ts +0 -160
  3165. package/build/modules/vc/W3cCredentialServiceOptions.js +0 -3
  3166. package/build/modules/vc/W3cCredentialServiceOptions.js.map +0 -1
  3167. package/build/modules/vc/W3cCredentialsApi.d.ts +0 -24
  3168. package/build/modules/vc/W3cCredentialsApi.js +0 -60
  3169. package/build/modules/vc/W3cCredentialsApi.js.map +0 -1
  3170. package/build/modules/vc/W3cCredentialsModule.d.ts +0 -13
  3171. package/build/modules/vc/W3cCredentialsModule.js +0 -49
  3172. package/build/modules/vc/W3cCredentialsModule.js.map +0 -1
  3173. package/build/modules/vc/W3cCredentialsModuleConfig.d.ts +0 -36
  3174. package/build/modules/vc/W3cCredentialsModuleConfig.js +0 -16
  3175. package/build/modules/vc/W3cCredentialsModuleConfig.js.map +0 -1
  3176. package/build/modules/vc/__tests__/dids/did_example_489398593.d.ts +0 -10
  3177. package/build/modules/vc/__tests__/dids/did_example_489398593.js +0 -16
  3178. package/build/modules/vc/__tests__/dids/did_example_489398593.js.map +0 -1
  3179. package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.d.ts +0 -20
  3180. package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.js +0 -28
  3181. package/build/modules/vc/__tests__/dids/did_sov_QqEfJxe752NCmWqR5TssZ5.js.map +0 -1
  3182. package/build/modules/vc/__tests__/dids/did_web_launchpad.d.ts +0 -20
  3183. package/build/modules/vc/__tests__/dids/did_web_launchpad.js +0 -28
  3184. package/build/modules/vc/__tests__/dids/did_web_launchpad.js.map +0 -1
  3185. package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.d.ts +0 -23
  3186. package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.js +0 -49
  3187. package/build/modules/vc/__tests__/dids/did_z6Mkgg342Ycpuk263R9d8Aq6MUaxPn1DDeHyGo38EefXmgDL.js.map +0 -1
  3188. package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.d.ts +0 -23
  3189. package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.js +0 -49
  3190. package/build/modules/vc/__tests__/dids/did_z6MkvePyWAApUVeDboZhNbckaWHnqtD6pCETd6xoqGbcpEBV.js.map +0 -1
  3191. package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.d.ts +0 -18
  3192. package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.js +0 -32
  3193. package/build/modules/vc/__tests__/dids/did_zUC729nNiUKQ4pHHNYovae25gkkuvtsZmtpjnLYUj1r8Yd4ZRn3FaswicUWs2NYNuWXxQ7MgzAX7dqXxAFZXFvn2jhqGKpjm5xLwESYfhcDGdSrc9mgfu51w939BjmKmng5HvYK.js.map +0 -1
  3194. package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.d.ts +0 -37
  3195. package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.js +0 -53
  3196. package/build/modules/vc/__tests__/dids/did_zUC72Q7XD4PE4CrMiDVXuvZng3sBvMmaGgNeTUJuzavH2BS7ThbHL9FhsZM9QYY5fqAQ4MB8M9oudz3tfuaX36Ajr97QRW7LBt6WWmrtESe6Bs5NYzFtLWEmeVtvRYVAgjFcJSa.js.map +0 -1
  3197. package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.d.ts +0 -18
  3198. package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.js +0 -32
  3199. package/build/modules/vc/__tests__/dids/did_zUC72to2eJiFMrt8a89LoaEPHC76QcfAxQdFys3nFGCmDKAmLbdE4ByyQ54kh42XgECCyZfVKe3m41Kk35nzrBKYbk6s9K7EjyLJcGGPkA7N15tDNBQJaY7cHD4RRaTwF6qXpmD.js.map +0 -1
  3200. package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.d.ts +0 -18
  3201. package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.js +0 -32
  3202. package/build/modules/vc/__tests__/dids/did_zUC73JKGpX1WG4CWbFM15ni3faANPet6m8WJ6vaF5xyFsM3MeoBVNgQ6jjVPCcUnTAnJy6RVKqsUXa4AvdRKwV5hhQhwhMWFT9so9jrPekKmqpikTjYBXa3RYWqRpCWHY4u4hxh.js.map +0 -1
  3203. package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.d.ts +0 -18
  3204. package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.js +0 -32
  3205. package/build/modules/vc/__tests__/dids/did_zUC73YqdRJ3t8bZsFUoxYFPNVruHzn4o7u78GSrMXVSkcb3xAYtUxRD2kSt2bDcmQpRjKfygwLJ1HEGfkosSN7gr4acjGkXLbLRXREueknFN4AU19m8BxEgWnLM84CAvsw6bhYn.js.map +0 -1
  3206. package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.d.ts +0 -14
  3207. package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.js +0 -28
  3208. package/build/modules/vc/__tests__/dids/did_zUC74VEqqhEHQcgv4zagSPkqFJxuNWuoBPKjJuHETEUeHLoSqWt92viSsmaWjy82y2cgguc8e9hsGBifnVK67pQ4gve3m6iSboDkmJjxVEb1d6mRAx5fpMAejooNzNqqbTMVeUN.js.map +0 -1
  3209. package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.d.ts +0 -18
  3210. package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.js +0 -32
  3211. package/build/modules/vc/__tests__/dids/did_zUC76qMTDAaupy19pEk8JKH5LJwPwmscNQn24SYpqrgqEoYWPFgCSm4CnTfupADRfbB6CxdwYhVaTFjT4fmPvMh7gWY87LauhaLmNpPamCv4LAepcRfBDndSdtCpZKSTELMjzGJ.js.map +0 -1
  3212. package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.d.ts +0 -18
  3213. package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.js +0 -32
  3214. package/build/modules/vc/__tests__/dids/did_zUC7DMETzdZM6woUjvs2fieEyFTbHABXwBvLYPBs4NDWKut4H41h8V3KTqGNRUziXLYqa1sFYYw9Zjpt6pFUf7hra4Q1zXMA9JjXcXxDpxuDNpUKEpiDPSYYUztVchUJHQJJhox.js.map +0 -1
  3215. package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.d.ts +0 -18
  3216. package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.js +0 -32
  3217. package/build/modules/vc/__tests__/dids/did_zUC7F9Jt6YzVW9fGhwYjVrjdS8Xzg7oQc2CeDcVNgEcEAaJXAtPz3eXu2sewq4xtwRK3DAhQRYwwoYiT3nNzLCPsrKoP72UGZKhh4cNuZD7RkmwzAa1Bye4C5a9DcyYBGKZrE5F.js.map +0 -1
  3218. package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.d.ts +0 -18
  3219. package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.js +0 -32
  3220. package/build/modules/vc/__tests__/dids/did_zUC7H7TxvhWmvfptpu2zSwo5EZ1kr3MPNsjovaD2ipbuzj6zi1vk4FHTiunCJrFvUYV77Mk3QcWUUAHojPZdU8oG476cvMK2ozP1gVq63x5ovj6e4oQ9qg9eF4YjPhWJs6FPuT4.js.map +0 -1
  3221. package/build/modules/vc/constants.d.ts +0 -16
  3222. package/build/modules/vc/constants.js +0 -20
  3223. package/build/modules/vc/constants.js.map +0 -1
  3224. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.d.ts +0 -22
  3225. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.js +0 -58
  3226. package/build/modules/vc/data-integrity/SignatureSuiteRegistry.js.map +0 -1
  3227. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.d.ts +0 -48
  3228. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.js +0 -311
  3229. package/build/modules/vc/data-integrity/W3cJsonLdCredentialService.js.map +0 -1
  3230. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.d.ts +0 -57
  3231. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.js +0 -49
  3232. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v1.js.map +0 -1
  3233. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.d.ts +0 -57
  3234. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.js +0 -49
  3235. package/build/modules/vc/data-integrity/__tests__/contexts/citizenship_v2.js.map +0 -1
  3236. package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.d.ts +0 -98
  3237. package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.js +0 -50
  3238. package/build/modules/vc/data-integrity/__tests__/contexts/examples_v1.js.map +0 -1
  3239. package/build/modules/vc/data-integrity/__tests__/contexts/index.d.ts +0 -5
  3240. package/build/modules/vc/data-integrity/__tests__/contexts/index.js +0 -22
  3241. package/build/modules/vc/data-integrity/__tests__/contexts/index.js.map +0 -1
  3242. package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.d.ts +0 -17
  3243. package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.js +0 -21
  3244. package/build/modules/vc/data-integrity/__tests__/contexts/mattr_vc_extension_v1.js.map +0 -1
  3245. package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.d.ts +0 -701
  3246. package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.js +0 -684
  3247. package/build/modules/vc/data-integrity/__tests__/contexts/security_v3_unstable.js.map +0 -1
  3248. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.d.ts +0 -88
  3249. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.js +0 -92
  3250. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v1.js.map +0 -1
  3251. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.d.ts +0 -88
  3252. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.js +0 -92
  3253. package/build/modules/vc/data-integrity/__tests__/contexts/vaccination_v2.js.map +0 -1
  3254. package/build/modules/vc/data-integrity/deriveProof.d.ts +0 -17
  3255. package/build/modules/vc/data-integrity/deriveProof.js +0 -112
  3256. package/build/modules/vc/data-integrity/deriveProof.js.map +0 -1
  3257. package/build/modules/vc/data-integrity/index.d.ts +0 -7
  3258. package/build/modules/vc/data-integrity/index.js +0 -26
  3259. package/build/modules/vc/data-integrity/index.js.map +0 -1
  3260. package/build/modules/vc/data-integrity/jsonldUtil.d.ts +0 -46
  3261. package/build/modules/vc/data-integrity/jsonldUtil.js +0 -103
  3262. package/build/modules/vc/data-integrity/jsonldUtil.js.map +0 -1
  3263. package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.d.ts +0 -26
  3264. package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.js +0 -30
  3265. package/build/modules/vc/data-integrity/libraries/contexts/X25519_v1.js.map +0 -1
  3266. package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.d.ts +0 -128
  3267. package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.js +0 -132
  3268. package/build/modules/vc/data-integrity/libraries/contexts/bbs_v1.js.map +0 -1
  3269. package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.d.ts +0 -315
  3270. package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.js +0 -254
  3271. package/build/modules/vc/data-integrity/libraries/contexts/credentials_v1.js.map +0 -1
  3272. package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.d.ts +0 -81
  3273. package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.js +0 -85
  3274. package/build/modules/vc/data-integrity/libraries/contexts/dataIntegrity_v2.js.map +0 -1
  3275. package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.d.ts +0 -10323
  3276. package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.js +0 -37
  3277. package/build/modules/vc/data-integrity/libraries/contexts/defaultContexts.js.map +0 -1
  3278. package/build/modules/vc/data-integrity/libraries/contexts/did_v1.d.ts +0 -56
  3279. package/build/modules/vc/data-integrity/libraries/contexts/did_v1.js +0 -60
  3280. package/build/modules/vc/data-integrity/libraries/contexts/did_v1.js.map +0 -1
  3281. package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.d.ts +0 -91
  3282. package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.js +0 -95
  3283. package/build/modules/vc/data-integrity/libraries/contexts/ed25519_v1.js.map +0 -1
  3284. package/build/modules/vc/data-integrity/libraries/contexts/index.d.ts +0 -1
  3285. package/build/modules/vc/data-integrity/libraries/contexts/index.js +0 -6
  3286. package/build/modules/vc/data-integrity/libraries/contexts/index.js.map +0 -1
  3287. package/build/modules/vc/data-integrity/libraries/contexts/odrl.d.ts +0 -301
  3288. package/build/modules/vc/data-integrity/libraries/contexts/odrl.js +0 -185
  3289. package/build/modules/vc/data-integrity/libraries/contexts/odrl.js.map +0 -1
  3290. package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.d.ts +0 -438
  3291. package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.js +0 -442
  3292. package/build/modules/vc/data-integrity/libraries/contexts/purl_ob_v3po.js.map +0 -1
  3293. package/build/modules/vc/data-integrity/libraries/contexts/schema_org.d.ts +0 -8242
  3294. package/build/modules/vc/data-integrity/libraries/contexts/schema_org.js +0 -2842
  3295. package/build/modules/vc/data-integrity/libraries/contexts/schema_org.js.map +0 -1
  3296. package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.d.ts +0 -102
  3297. package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.js +0 -106
  3298. package/build/modules/vc/data-integrity/libraries/contexts/secp256k1_v1.js.map +0 -1
  3299. package/build/modules/vc/data-integrity/libraries/contexts/security_v1.d.ts +0 -74
  3300. package/build/modules/vc/data-integrity/libraries/contexts/security_v1.js +0 -51
  3301. package/build/modules/vc/data-integrity/libraries/contexts/security_v1.js.map +0 -1
  3302. package/build/modules/vc/data-integrity/libraries/contexts/security_v2.d.ts +0 -175
  3303. package/build/modules/vc/data-integrity/libraries/contexts/security_v2.js +0 -94
  3304. package/build/modules/vc/data-integrity/libraries/contexts/security_v2.js.map +0 -1
  3305. package/build/modules/vc/data-integrity/libraries/contexts/submission.d.ts +0 -15
  3306. package/build/modules/vc/data-integrity/libraries/contexts/submission.js +0 -19
  3307. package/build/modules/vc/data-integrity/libraries/contexts/submission.js.map +0 -1
  3308. package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.d.ts +0 -37
  3309. package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.js +0 -41
  3310. package/build/modules/vc/data-integrity/libraries/contexts/vc_revocation_list_2020.js.map +0 -1
  3311. package/build/modules/vc/data-integrity/libraries/documentLoader.d.ts +0 -4
  3312. package/build/modules/vc/data-integrity/libraries/documentLoader.js +0 -58
  3313. package/build/modules/vc/data-integrity/libraries/documentLoader.js.map +0 -1
  3314. package/build/modules/vc/data-integrity/libraries/index.d.ts +0 -24
  3315. package/build/modules/vc/data-integrity/libraries/index.js +0 -40
  3316. package/build/modules/vc/data-integrity/libraries/index.js.map +0 -1
  3317. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.d.ts +0 -12
  3318. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.js +0 -9
  3319. package/build/modules/vc/data-integrity/libraries/jsonld-signatures.js.map +0 -1
  3320. package/build/modules/vc/data-integrity/libraries/jsonld.d.ts +0 -17
  3321. package/build/modules/vc/data-integrity/libraries/jsonld.js +0 -12
  3322. package/build/modules/vc/data-integrity/libraries/jsonld.js.map +0 -1
  3323. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.d.ts +0 -2
  3324. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.js +0 -9
  3325. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.js.map +0 -1
  3326. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.d.ts +0 -2
  3327. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.js +0 -9
  3328. package/build/modules/vc/data-integrity/libraries/nativeDocumentLoader.native.js.map +0 -1
  3329. package/build/modules/vc/data-integrity/libraries/vc.d.ts +0 -28
  3330. package/build/modules/vc/data-integrity/libraries/vc.js +0 -12
  3331. package/build/modules/vc/data-integrity/libraries/vc.js.map +0 -1
  3332. package/build/modules/vc/data-integrity/models/DataIntegrityProof.d.ts +0 -33
  3333. package/build/modules/vc/data-integrity/models/DataIntegrityProof.js +0 -91
  3334. package/build/modules/vc/data-integrity/models/DataIntegrityProof.js.map +0 -1
  3335. package/build/modules/vc/data-integrity/models/GetProofsOptions.d.ts +0 -23
  3336. package/build/modules/vc/data-integrity/models/GetProofsOptions.js +0 -15
  3337. package/build/modules/vc/data-integrity/models/GetProofsOptions.js.map +0 -1
  3338. package/build/modules/vc/data-integrity/models/GetProofsResult.d.ts +0 -14
  3339. package/build/modules/vc/data-integrity/models/GetProofsResult.js +0 -15
  3340. package/build/modules/vc/data-integrity/models/GetProofsResult.js.map +0 -1
  3341. package/build/modules/vc/data-integrity/models/GetTypeOptions.d.ts +0 -10
  3342. package/build/modules/vc/data-integrity/models/GetTypeOptions.js +0 -15
  3343. package/build/modules/vc/data-integrity/models/GetTypeOptions.js.map +0 -1
  3344. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.d.ts +0 -29
  3345. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.js +0 -6
  3346. package/build/modules/vc/data-integrity/models/IAnonCredsDataIntegrityService.js.map +0 -1
  3347. package/build/modules/vc/data-integrity/models/LdKeyPair.d.ts +0 -31
  3348. package/build/modules/vc/data-integrity/models/LdKeyPair.js +0 -29
  3349. package/build/modules/vc/data-integrity/models/LdKeyPair.js.map +0 -1
  3350. package/build/modules/vc/data-integrity/models/LinkedDataProof.d.ts +0 -30
  3351. package/build/modules/vc/data-integrity/models/LinkedDataProof.js +0 -78
  3352. package/build/modules/vc/data-integrity/models/LinkedDataProof.js.map +0 -1
  3353. package/build/modules/vc/data-integrity/models/ProofTransformer.d.ts +0 -1
  3354. package/build/modules/vc/data-integrity/models/ProofTransformer.js +0 -31
  3355. package/build/modules/vc/data-integrity/models/ProofTransformer.js.map +0 -1
  3356. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.d.ts +0 -30
  3357. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.js +0 -74
  3358. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiableCredential.js.map +0 -1
  3359. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.d.ts +0 -27
  3360. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.js +0 -64
  3361. package/build/modules/vc/data-integrity/models/W3cJsonLdVerifiablePresentation.js.map +0 -1
  3362. package/build/modules/vc/data-integrity/models/index.d.ts +0 -5
  3363. package/build/modules/vc/data-integrity/models/index.js +0 -22
  3364. package/build/modules/vc/data-integrity/models/index.js.map +0 -1
  3365. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.d.ts +0 -56
  3366. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.js +0 -74
  3367. package/build/modules/vc/data-integrity/proof-purposes/CredentialIssuancePurpose.js.map +0 -1
  3368. package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.d.ts +0 -1
  3369. package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.js +0 -3
  3370. package/build/modules/vc/data-integrity/proof-purposes/ProofPurpose.js.map +0 -1
  3371. package/build/modules/vc/data-integrity/proof-purposes/index.d.ts +0 -2
  3372. package/build/modules/vc/data-integrity/proof-purposes/index.js +0 -19
  3373. package/build/modules/vc/data-integrity/proof-purposes/index.js.map +0 -1
  3374. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.d.ts +0 -98
  3375. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.js +0 -209
  3376. package/build/modules/vc/data-integrity/signature-suites/JwsLinkedDataSignature.js.map +0 -1
  3377. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.d.ts +0 -80
  3378. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.js +0 -190
  3379. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2018.js.map +0 -1
  3380. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.d.ts +0 -106
  3381. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.js +0 -196
  3382. package/build/modules/vc/data-integrity/signature-suites/ed25519/Ed25519Signature2020.js.map +0 -1
  3383. package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.d.ts +0 -2
  3384. package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.js +0 -6
  3385. package/build/modules/vc/data-integrity/signature-suites/ed25519/constants.js.map +0 -1
  3386. package/build/modules/vc/data-integrity/signature-suites/ed25519/context.d.ts +0 -93
  3387. package/build/modules/vc/data-integrity/signature-suites/ed25519/context.js +0 -99
  3388. package/build/modules/vc/data-integrity/signature-suites/ed25519/context.js.map +0 -1
  3389. package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.d.ts +0 -95
  3390. package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.js +0 -101
  3391. package/build/modules/vc/data-integrity/signature-suites/ed25519/context2020.js.map +0 -1
  3392. package/build/modules/vc/data-integrity/signature-suites/index.d.ts +0 -3
  3393. package/build/modules/vc/data-integrity/signature-suites/index.js +0 -20
  3394. package/build/modules/vc/data-integrity/signature-suites/index.js.map +0 -1
  3395. package/build/modules/vc/index.d.ts +0 -11
  3396. package/build/modules/vc/index.js +0 -30
  3397. package/build/modules/vc/index.js.map +0 -1
  3398. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.d.ts +0 -63
  3399. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.js +0 -438
  3400. package/build/modules/vc/jwt-vc/W3cJwtCredentialService.js.map +0 -1
  3401. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.d.ts +0 -46
  3402. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.js +0 -97
  3403. package/build/modules/vc/jwt-vc/W3cJwtVerifiableCredential.js.map +0 -1
  3404. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.d.ts +0 -37
  3405. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.js +0 -76
  3406. package/build/modules/vc/jwt-vc/W3cJwtVerifiablePresentation.js.map +0 -1
  3407. package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.d.ts +0 -38
  3408. package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.js +0 -43
  3409. package/build/modules/vc/jwt-vc/__tests__/fixtures/credo-jwt-vc.js.map +0 -1
  3410. package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.d.ts +0 -1
  3411. package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.js +0 -5
  3412. package/build/modules/vc/jwt-vc/__tests__/fixtures/jwt-vc-presentation-profile.js.map +0 -1
  3413. package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.d.ts +0 -10
  3414. package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.js +0 -15
  3415. package/build/modules/vc/jwt-vc/__tests__/fixtures/transmute-verifiable-data.js.map +0 -1
  3416. package/build/modules/vc/jwt-vc/credentialTransformer.d.ts +0 -4
  3417. package/build/modules/vc/jwt-vc/credentialTransformer.js +0 -131
  3418. package/build/modules/vc/jwt-vc/credentialTransformer.js.map +0 -1
  3419. package/build/modules/vc/jwt-vc/index.d.ts +0 -3
  3420. package/build/modules/vc/jwt-vc/index.js +0 -20
  3421. package/build/modules/vc/jwt-vc/index.js.map +0 -1
  3422. package/build/modules/vc/jwt-vc/presentationTransformer.d.ts +0 -4
  3423. package/build/modules/vc/jwt-vc/presentationTransformer.js +0 -54
  3424. package/build/modules/vc/jwt-vc/presentationTransformer.js.map +0 -1
  3425. package/build/modules/vc/models/ClaimFormat.d.ts +0 -17
  3426. package/build/modules/vc/models/ClaimFormat.js +0 -22
  3427. package/build/modules/vc/models/ClaimFormat.js.map +0 -1
  3428. package/build/modules/vc/models/W3cVerifyResult.d.ts +0 -109
  3429. package/build/modules/vc/models/W3cVerifyResult.js +0 -3
  3430. package/build/modules/vc/models/W3cVerifyResult.js.map +0 -1
  3431. package/build/modules/vc/models/credential/W3cCredential.d.ts +0 -37
  3432. package/build/modules/vc/models/credential/W3cCredential.js +0 -135
  3433. package/build/modules/vc/models/credential/W3cCredential.js.map +0 -1
  3434. package/build/modules/vc/models/credential/W3cCredentialSchema.d.ts +0 -9
  3435. package/build/modules/vc/models/credential/W3cCredentialSchema.js +0 -32
  3436. package/build/modules/vc/models/credential/W3cCredentialSchema.js.map +0 -1
  3437. package/build/modules/vc/models/credential/W3cCredentialStatus.d.ts +0 -9
  3438. package/build/modules/vc/models/credential/W3cCredentialStatus.js +0 -32
  3439. package/build/modules/vc/models/credential/W3cCredentialStatus.js.map +0 -1
  3440. package/build/modules/vc/models/credential/W3cCredentialSubject.d.ts +0 -15
  3441. package/build/modules/vc/models/credential/W3cCredentialSubject.js +0 -90
  3442. package/build/modules/vc/models/credential/W3cCredentialSubject.js.map +0 -1
  3443. package/build/modules/vc/models/credential/W3cIssuer.d.ts +0 -14
  3444. package/build/modules/vc/models/credential/W3cIssuer.js +0 -65
  3445. package/build/modules/vc/models/credential/W3cIssuer.js.map +0 -1
  3446. package/build/modules/vc/models/credential/W3cJsonCredential.d.ts +0 -14
  3447. package/build/modules/vc/models/credential/W3cJsonCredential.js +0 -3
  3448. package/build/modules/vc/models/credential/W3cJsonCredential.js.map +0 -1
  3449. package/build/modules/vc/models/credential/W3cVerifiableCredential.d.ts +0 -5
  3450. package/build/modules/vc/models/credential/W3cVerifiableCredential.js +0 -38
  3451. package/build/modules/vc/models/credential/W3cVerifiableCredential.js.map +0 -1
  3452. package/build/modules/vc/models/credential/index.d.ts +0 -5
  3453. package/build/modules/vc/models/credential/index.js +0 -22
  3454. package/build/modules/vc/models/credential/index.js.map +0 -1
  3455. package/build/modules/vc/models/index.d.ts +0 -4
  3456. package/build/modules/vc/models/index.js +0 -21
  3457. package/build/modules/vc/models/index.js.map +0 -1
  3458. package/build/modules/vc/models/presentation/W3cHolder.d.ts +0 -13
  3459. package/build/modules/vc/models/presentation/W3cHolder.js +0 -65
  3460. package/build/modules/vc/models/presentation/W3cHolder.js.map +0 -1
  3461. package/build/modules/vc/models/presentation/W3cJsonPresentation.d.ts +0 -14
  3462. package/build/modules/vc/models/presentation/W3cJsonPresentation.js +0 -3
  3463. package/build/modules/vc/models/presentation/W3cJsonPresentation.js.map +0 -1
  3464. package/build/modules/vc/models/presentation/W3cPresentation.d.ts +0 -25
  3465. package/build/modules/vc/models/presentation/W3cPresentation.js +0 -88
  3466. package/build/modules/vc/models/presentation/W3cPresentation.js.map +0 -1
  3467. package/build/modules/vc/models/presentation/W3cVerifiablePresentation.d.ts +0 -4
  3468. package/build/modules/vc/models/presentation/W3cVerifiablePresentation.js +0 -3
  3469. package/build/modules/vc/models/presentation/W3cVerifiablePresentation.js.map +0 -1
  3470. package/build/modules/vc/models/presentation/index.d.ts +0 -2
  3471. package/build/modules/vc/models/presentation/index.js +0 -19
  3472. package/build/modules/vc/models/presentation/index.js.map +0 -1
  3473. package/build/modules/vc/repository/W3cCredentialRecord.d.ts +0 -42
  3474. package/build/modules/vc/repository/W3cCredentialRecord.js +0 -62
  3475. package/build/modules/vc/repository/W3cCredentialRecord.js.map +0 -1
  3476. package/build/modules/vc/repository/W3cCredentialRepository.d.ts +0 -7
  3477. package/build/modules/vc/repository/W3cCredentialRepository.js +0 -32
  3478. package/build/modules/vc/repository/W3cCredentialRepository.js.map +0 -1
  3479. package/build/modules/vc/repository/index.d.ts +0 -2
  3480. package/build/modules/vc/repository/index.js +0 -19
  3481. package/build/modules/vc/repository/index.js.map +0 -1
  3482. package/build/modules/vc/util.d.ts +0 -7
  3483. package/build/modules/vc/util.js +0 -19
  3484. package/build/modules/vc/util.js.map +0 -1
  3485. package/build/modules/vc/validators.d.ts +0 -2
  3486. package/build/modules/vc/validators.js +0 -24
  3487. package/build/modules/vc/validators.js.map +0 -1
  3488. package/build/modules/x509/X509Api.d.ts +0 -37
  3489. package/build/modules/x509/X509Api.js +0 -66
  3490. package/build/modules/x509/X509Api.js.map +0 -1
  3491. package/build/modules/x509/X509Certificate.d.ts +0 -49
  3492. package/build/modules/x509/X509Certificate.js +0 -169
  3493. package/build/modules/x509/X509Certificate.js.map +0 -1
  3494. package/build/modules/x509/X509Error.d.ts +0 -3
  3495. package/build/modules/x509/X509Error.js +0 -8
  3496. package/build/modules/x509/X509Error.js.map +0 -1
  3497. package/build/modules/x509/X509Module.d.ts +0 -16
  3498. package/build/modules/x509/X509Module.js +0 -31
  3499. package/build/modules/x509/X509Module.js.map +0 -1
  3500. package/build/modules/x509/X509ModuleConfig.d.ts +0 -27
  3501. package/build/modules/x509/X509ModuleConfig.js +0 -30
  3502. package/build/modules/x509/X509ModuleConfig.js.map +0 -1
  3503. package/build/modules/x509/X509Service.d.ts +0 -27
  3504. package/build/modules/x509/X509Service.js +0 -109
  3505. package/build/modules/x509/X509Service.js.map +0 -1
  3506. package/build/modules/x509/X509ServiceOptions.d.ts +0 -29
  3507. package/build/modules/x509/X509ServiceOptions.js +0 -3
  3508. package/build/modules/x509/X509ServiceOptions.js.map +0 -1
  3509. package/build/modules/x509/index.d.ts +0 -7
  3510. package/build/modules/x509/index.js +0 -24
  3511. package/build/modules/x509/index.js.map +0 -1
  3512. package/build/plugins/DependencyManager.d.ts +0 -36
  3513. package/build/plugins/DependencyManager.js +0 -85
  3514. package/build/plugins/DependencyManager.js.map +0 -1
  3515. package/build/plugins/Module.d.ts +0 -17
  3516. package/build/plugins/Module.js +0 -3
  3517. package/build/plugins/Module.js.map +0 -1
  3518. package/build/plugins/index.d.ts +0 -4
  3519. package/build/plugins/index.js +0 -25
  3520. package/build/plugins/index.js.map +0 -1
  3521. package/build/plugins/utils.d.ts +0 -7
  3522. package/build/plugins/utils.js +0 -20
  3523. package/build/plugins/utils.js.map +0 -1
  3524. package/build/storage/BaseRecord.d.ts +0 -54
  3525. package/build/storage/BaseRecord.js +0 -85
  3526. package/build/storage/BaseRecord.js.map +0 -1
  3527. package/build/storage/FileSystem.d.ts +0 -19
  3528. package/build/storage/FileSystem.js +0 -3
  3529. package/build/storage/FileSystem.js.map +0 -1
  3530. package/build/storage/Metadata.d.ts +0 -58
  3531. package/build/storage/Metadata.js +0 -70
  3532. package/build/storage/Metadata.js.map +0 -1
  3533. package/build/storage/Repository.d.ts +0 -49
  3534. package/build/storage/Repository.js +0 -123
  3535. package/build/storage/Repository.js.map +0 -1
  3536. package/build/storage/RepositoryEvents.d.ts +0 -28
  3537. package/build/storage/RepositoryEvents.js +0 -10
  3538. package/build/storage/RepositoryEvents.js.map +0 -1
  3539. package/build/storage/StorageService.d.ts +0 -72
  3540. package/build/storage/StorageService.js +0 -3
  3541. package/build/storage/StorageService.js.map +0 -1
  3542. package/build/storage/didcomm/DidCommMessageRecord.d.ts +0 -48
  3543. package/build/storage/didcomm/DidCommMessageRecord.js +0 -49
  3544. package/build/storage/didcomm/DidCommMessageRecord.js.map +0 -1
  3545. package/build/storage/didcomm/DidCommMessageRepository.d.ts +0 -24
  3546. package/build/storage/didcomm/DidCommMessageRepository.js +0 -78
  3547. package/build/storage/didcomm/DidCommMessageRepository.js.map +0 -1
  3548. package/build/storage/didcomm/DidCommMessageRole.d.ts +0 -4
  3549. package/build/storage/didcomm/DidCommMessageRole.js +0 -9
  3550. package/build/storage/didcomm/DidCommMessageRole.js.map +0 -1
  3551. package/build/storage/didcomm/index.d.ts +0 -3
  3552. package/build/storage/didcomm/index.js +0 -20
  3553. package/build/storage/didcomm/index.js.map +0 -1
  3554. package/build/storage/index.d.ts +0 -2
  3555. package/build/storage/index.js +0 -19
  3556. package/build/storage/index.js.map +0 -1
  3557. package/build/storage/migration/StorageUpdateService.d.ts +0 -22
  3558. package/build/storage/migration/StorageUpdateService.js +0 -77
  3559. package/build/storage/migration/StorageUpdateService.js.map +0 -1
  3560. package/build/storage/migration/UpdateAssistant.d.ts +0 -42
  3561. package/build/storage/migration/UpdateAssistant.js +0 -211
  3562. package/build/storage/migration/UpdateAssistant.js.map +0 -1
  3563. package/build/storage/migration/error/StorageUpdateError.d.ts +0 -6
  3564. package/build/storage/migration/error/StorageUpdateError.js +0 -11
  3565. package/build/storage/migration/error/StorageUpdateError.js.map +0 -1
  3566. package/build/storage/migration/index.d.ts +0 -6
  3567. package/build/storage/migration/index.js +0 -22
  3568. package/build/storage/migration/index.js.map +0 -1
  3569. package/build/storage/migration/isUpToDate.d.ts +0 -3
  3570. package/build/storage/migration/isUpToDate.js +0 -13
  3571. package/build/storage/migration/isUpToDate.js.map +0 -1
  3572. package/build/storage/migration/repository/StorageVersionRecord.d.ts +0 -14
  3573. package/build/storage/migration/repository/StorageVersionRecord.js +0 -23
  3574. package/build/storage/migration/repository/StorageVersionRecord.js.map +0 -1
  3575. package/build/storage/migration/repository/StorageVersionRepository.d.ts +0 -7
  3576. package/build/storage/migration/repository/StorageVersionRepository.js +0 -32
  3577. package/build/storage/migration/repository/StorageVersionRepository.js.map +0 -1
  3578. package/build/storage/migration/updates/0.1-0.2/connection.d.ts +0 -119
  3579. package/build/storage/migration/updates/0.1-0.2/connection.js +0 -380
  3580. package/build/storage/migration/updates/0.1-0.2/connection.js.map +0 -1
  3581. package/build/storage/migration/updates/0.1-0.2/credential.d.ts +0 -80
  3582. package/build/storage/migration/updates/0.1-0.2/credential.js +0 -215
  3583. package/build/storage/migration/updates/0.1-0.2/credential.js.map +0 -1
  3584. package/build/storage/migration/updates/0.1-0.2/index.d.ts +0 -6
  3585. package/build/storage/migration/updates/0.1-0.2/index.js +0 -12
  3586. package/build/storage/migration/updates/0.1-0.2/index.js.map +0 -1
  3587. package/build/storage/migration/updates/0.1-0.2/mediation.d.ts +0 -30
  3588. package/build/storage/migration/updates/0.1-0.2/mediation.js +0 -67
  3589. package/build/storage/migration/updates/0.1-0.2/mediation.js.map +0 -1
  3590. package/build/storage/migration/updates/0.2-0.3/connection.d.ts +0 -14
  3591. package/build/storage/migration/updates/0.2-0.3/connection.js +0 -47
  3592. package/build/storage/migration/updates/0.2-0.3/connection.js.map +0 -1
  3593. package/build/storage/migration/updates/0.2-0.3/index.d.ts +0 -2
  3594. package/build/storage/migration/updates/0.2-0.3/index.js +0 -10
  3595. package/build/storage/migration/updates/0.2-0.3/index.js.map +0 -1
  3596. package/build/storage/migration/updates/0.2-0.3/proof.d.ts +0 -42
  3597. package/build/storage/migration/updates/0.2-0.3/proof.js +0 -131
  3598. package/build/storage/migration/updates/0.2-0.3/proof.js.map +0 -1
  3599. package/build/storage/migration/updates/0.3-0.3.1/did.d.ts +0 -10
  3600. package/build/storage/migration/updates/0.3-0.3.1/did.js +0 -34
  3601. package/build/storage/migration/updates/0.3-0.3.1/did.js.map +0 -1
  3602. package/build/storage/migration/updates/0.3-0.3.1/index.d.ts +0 -2
  3603. package/build/storage/migration/updates/0.3-0.3.1/index.js +0 -8
  3604. package/build/storage/migration/updates/0.3-0.3.1/index.js.map +0 -1
  3605. package/build/storage/migration/updates/0.3.1-0.4/cache.d.ts +0 -5
  3606. package/build/storage/migration/updates/0.3.1-0.4/cache.js +0 -30
  3607. package/build/storage/migration/updates/0.3.1-0.4/cache.js.map +0 -1
  3608. package/build/storage/migration/updates/0.3.1-0.4/did.d.ts +0 -12
  3609. package/build/storage/migration/updates/0.3.1-0.4/did.js +0 -39
  3610. package/build/storage/migration/updates/0.3.1-0.4/did.js.map +0 -1
  3611. package/build/storage/migration/updates/0.3.1-0.4/index.d.ts +0 -2
  3612. package/build/storage/migration/updates/0.3.1-0.4/index.js +0 -12
  3613. package/build/storage/migration/updates/0.3.1-0.4/index.js.map +0 -1
  3614. package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.d.ts +0 -5
  3615. package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.js +0 -21
  3616. package/build/storage/migration/updates/0.3.1-0.4/w3cCredentialRecord.js.map +0 -1
  3617. package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.d.ts +0 -17
  3618. package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.js +0 -106
  3619. package/build/storage/migration/updates/0.4-0.5/credentialExchangeRecord.js.map +0 -1
  3620. package/build/storage/migration/updates/0.4-0.5/index.d.ts +0 -2
  3621. package/build/storage/migration/updates/0.4-0.5/index.js +0 -12
  3622. package/build/storage/migration/updates/0.4-0.5/index.js.map +0 -1
  3623. package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.d.ts +0 -17
  3624. package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.js +0 -87
  3625. package/build/storage/migration/updates/0.4-0.5/proofExchangeRecord.js.map +0 -1
  3626. package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.d.ts +0 -25
  3627. package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.js +0 -65
  3628. package/build/storage/migration/updates/0.4-0.5/w3cCredentialRecord.js.map +0 -1
  3629. package/build/storage/migration/updates.d.ts +0 -43
  3630. package/build/storage/migration/updates.js +0 -44
  3631. package/build/storage/migration/updates.js.map +0 -1
  3632. package/build/transport/HttpOutboundTransport.d.ts +0 -15
  3633. package/build/transport/HttpOutboundTransport.js +0 -124
  3634. package/build/transport/HttpOutboundTransport.js.map +0 -1
  3635. package/build/transport/InboundTransport.d.ts +0 -5
  3636. package/build/transport/InboundTransport.js +0 -3
  3637. package/build/transport/InboundTransport.js.map +0 -1
  3638. package/build/transport/OutboundTransport.d.ts +0 -8
  3639. package/build/transport/OutboundTransport.js +0 -3
  3640. package/build/transport/OutboundTransport.js.map +0 -1
  3641. package/build/transport/TransportEventTypes.d.ts +0 -34
  3642. package/build/transport/TransportEventTypes.js +0 -11
  3643. package/build/transport/TransportEventTypes.js.map +0 -1
  3644. package/build/transport/WsOutboundTransport.d.ts +0 -19
  3645. package/build/transport/WsOutboundTransport.js +0 -139
  3646. package/build/transport/WsOutboundTransport.js.map +0 -1
  3647. package/build/transport/index.d.ts +0 -5
  3648. package/build/transport/index.js +0 -22
  3649. package/build/transport/index.js.map +0 -1
  3650. package/build/types.d.ts +0 -128
  3651. package/build/types.js +0 -18
  3652. package/build/types.js.map +0 -1
  3653. package/build/utils/HashlinkEncoder.d.ts +0 -45
  3654. package/build/utils/HashlinkEncoder.js +0 -111
  3655. package/build/utils/HashlinkEncoder.js.map +0 -1
  3656. package/build/utils/JWE.d.ts +0 -2
  3657. package/build/utils/JWE.js +0 -14
  3658. package/build/utils/JWE.js.map +0 -1
  3659. package/build/utils/JsonEncoder.d.ts +0 -45
  3660. package/build/utils/JsonEncoder.js +0 -65
  3661. package/build/utils/JsonEncoder.js.map +0 -1
  3662. package/build/utils/JsonTransformer.d.ts +0 -16
  3663. package/build/utils/JsonTransformer.js +0 -46
  3664. package/build/utils/JsonTransformer.js.map +0 -1
  3665. package/build/utils/LinkedAttachment.d.ts +0 -23
  3666. package/build/utils/LinkedAttachment.js +0 -51
  3667. package/build/utils/LinkedAttachment.js.map +0 -1
  3668. package/build/utils/MessageValidator.d.ts +0 -9
  3669. package/build/utils/MessageValidator.js +0 -33
  3670. package/build/utils/MessageValidator.js.map +0 -1
  3671. package/build/utils/MultiBaseEncoder.d.ts +0 -24
  3672. package/build/utils/MultiBaseEncoder.js +0 -53
  3673. package/build/utils/MultiBaseEncoder.js.map +0 -1
  3674. package/build/utils/MultiHashEncoder.d.ts +0 -35
  3675. package/build/utils/MultiHashEncoder.js +0 -70
  3676. package/build/utils/MultiHashEncoder.js.map +0 -1
  3677. package/build/utils/TypedArrayEncoder.d.ts +0 -60
  3678. package/build/utils/TypedArrayEncoder.js +0 -90
  3679. package/build/utils/TypedArrayEncoder.js.map +0 -1
  3680. package/build/utils/VarintEncoder.d.ts +0 -6
  3681. package/build/utils/VarintEncoder.js +0 -21
  3682. package/build/utils/VarintEncoder.js.map +0 -1
  3683. package/build/utils/array.d.ts +0 -5
  3684. package/build/utils/array.js +0 -18
  3685. package/build/utils/array.js.map +0 -1
  3686. package/build/utils/attachment.d.ts +0 -19
  3687. package/build/utils/attachment.js +0 -39
  3688. package/build/utils/attachment.js.map +0 -1
  3689. package/build/utils/base58.d.ts +0 -2
  3690. package/build/utils/base58.js +0 -17
  3691. package/build/utils/base58.js.map +0 -1
  3692. package/build/utils/base64.d.ts +0 -1
  3693. package/build/utils/base64.js +0 -7
  3694. package/build/utils/base64.js.map +0 -1
  3695. package/build/utils/buffer.d.ts +0 -2
  3696. package/build/utils/buffer.js +0 -6
  3697. package/build/utils/buffer.js.map +0 -1
  3698. package/build/utils/deepEquality.d.ts +0 -5
  3699. package/build/utils/deepEquality.js +0 -57
  3700. package/build/utils/deepEquality.js.map +0 -1
  3701. package/build/utils/did.d.ts +0 -9
  3702. package/build/utils/did.js +0 -21
  3703. package/build/utils/did.js.map +0 -1
  3704. package/build/utils/domain.d.ts +0 -1
  3705. package/build/utils/domain.js +0 -12
  3706. package/build/utils/domain.js.map +0 -1
  3707. package/build/utils/error.d.ts +0 -1
  3708. package/build/utils/error.js +0 -6
  3709. package/build/utils/error.js.map +0 -1
  3710. package/build/utils/fetch.d.ts +0 -7
  3711. package/build/utils/fetch.js +0 -17
  3712. package/build/utils/fetch.js.map +0 -1
  3713. package/build/utils/index.d.ts +0 -17
  3714. package/build/utils/index.js +0 -36
  3715. package/build/utils/index.js.map +0 -1
  3716. package/build/utils/messageType.d.ts +0 -138
  3717. package/build/utils/messageType.js +0 -179
  3718. package/build/utils/messageType.js.map +0 -1
  3719. package/build/utils/mixins.d.ts +0 -17
  3720. package/build/utils/mixins.js +0 -20
  3721. package/build/utils/mixins.js.map +0 -1
  3722. package/build/utils/objectEquality.d.ts +0 -1
  3723. package/build/utils/objectEquality.js +0 -27
  3724. package/build/utils/objectEquality.js.map +0 -1
  3725. package/build/utils/parseInvitation.d.ts +0 -30
  3726. package/build/utils/parseInvitation.js +0 -174
  3727. package/build/utils/parseInvitation.js.map +0 -1
  3728. package/build/utils/path.d.ts +0 -14
  3729. package/build/utils/path.js +0 -38
  3730. package/build/utils/path.js.map +0 -1
  3731. package/build/utils/promises.d.ts +0 -11
  3732. package/build/utils/promises.js +0 -26
  3733. package/build/utils/promises.js.map +0 -1
  3734. package/build/utils/sleep.d.ts +0 -1
  3735. package/build/utils/sleep.js +0 -7
  3736. package/build/utils/sleep.js.map +0 -1
  3737. package/build/utils/thread.d.ts +0 -2
  3738. package/build/utils/thread.js +0 -8
  3739. package/build/utils/thread.js.map +0 -1
  3740. package/build/utils/timestamp.d.ts +0 -5
  3741. package/build/utils/timestamp.js +0 -23
  3742. package/build/utils/timestamp.js.map +0 -1
  3743. package/build/utils/transformers.d.ts +0 -15
  3744. package/build/utils/transformers.js +0 -85
  3745. package/build/utils/transformers.js.map +0 -1
  3746. package/build/utils/type.d.ts +0 -4
  3747. package/build/utils/type.js +0 -8
  3748. package/build/utils/type.js.map +0 -1
  3749. package/build/utils/uri.d.ts +0 -1
  3750. package/build/utils/uri.js +0 -8
  3751. package/build/utils/uri.js.map +0 -1
  3752. package/build/utils/uuid.d.ts +0 -2
  3753. package/build/utils/uuid.js +0 -12
  3754. package/build/utils/uuid.js.map +0 -1
  3755. package/build/utils/validators.d.ts +0 -20
  3756. package/build/utils/validators.js +0 -71
  3757. package/build/utils/validators.js.map +0 -1
  3758. package/build/utils/version.d.ts +0 -8
  3759. package/build/utils/version.js +0 -18
  3760. package/build/utils/version.js.map +0 -1
  3761. package/build/wallet/Wallet.d.ts +0 -98
  3762. package/build/wallet/Wallet.js +0 -3
  3763. package/build/wallet/Wallet.js.map +0 -1
  3764. package/build/wallet/WalletApi.d.ts +0 -40
  3765. package/build/wallet/WalletApi.js +0 -118
  3766. package/build/wallet/WalletApi.js.map +0 -1
  3767. package/build/wallet/WalletModule.d.ts +0 -9
  3768. package/build/wallet/WalletModule.js +0 -19
  3769. package/build/wallet/WalletModule.js.map +0 -1
  3770. package/build/wallet/error/WalletDuplicateError.d.ts +0 -7
  3771. package/build/wallet/error/WalletDuplicateError.js +0 -11
  3772. package/build/wallet/error/WalletDuplicateError.js.map +0 -1
  3773. package/build/wallet/error/WalletError.d.ts +0 -6
  3774. package/build/wallet/error/WalletError.js +0 -11
  3775. package/build/wallet/error/WalletError.js.map +0 -1
  3776. package/build/wallet/error/WalletExportPathExistsError.d.ts +0 -6
  3777. package/build/wallet/error/WalletExportPathExistsError.js +0 -11
  3778. package/build/wallet/error/WalletExportPathExistsError.js.map +0 -1
  3779. package/build/wallet/error/WalletExportUnsupportedError.d.ts +0 -6
  3780. package/build/wallet/error/WalletExportUnsupportedError.js +0 -11
  3781. package/build/wallet/error/WalletExportUnsupportedError.js.map +0 -1
  3782. package/build/wallet/error/WalletImportPathExistsError.d.ts +0 -6
  3783. package/build/wallet/error/WalletImportPathExistsError.js +0 -11
  3784. package/build/wallet/error/WalletImportPathExistsError.js.map +0 -1
  3785. package/build/wallet/error/WalletInvalidKeyError.d.ts +0 -7
  3786. package/build/wallet/error/WalletInvalidKeyError.js +0 -11
  3787. package/build/wallet/error/WalletInvalidKeyError.js.map +0 -1
  3788. package/build/wallet/error/WalletKeyExistsError.d.ts +0 -6
  3789. package/build/wallet/error/WalletKeyExistsError.js +0 -11
  3790. package/build/wallet/error/WalletKeyExistsError.js.map +0 -1
  3791. package/build/wallet/error/WalletNotFoundError.d.ts +0 -7
  3792. package/build/wallet/error/WalletNotFoundError.js +0 -11
  3793. package/build/wallet/error/WalletNotFoundError.js.map +0 -1
  3794. package/build/wallet/error/index.d.ts +0 -8
  3795. package/build/wallet/error/index.js +0 -20
  3796. package/build/wallet/error/index.js.map +0 -1
  3797. package/build/wallet/index.d.ts +0 -3
  3798. package/build/wallet/index.js +0 -20
  3799. package/build/wallet/index.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema_org.mjs","names":[],"sources":["../../../../../../src/modules/vc/data-integrity/libraries/contexts/schema_org.ts"],"sourcesContent":["export const SCHEMA_ORG = {\n '@context': {\n type: '@type',\n id: '@id',\n HTML: { '@id': 'rdf:HTML' },\n '@vocab': 'http://schema.org/',\n rdf: 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',\n rdfs: 'http://www.w3.org/2000/01/rdf-schema#',\n xsd: 'http://www.w3.org/2001/XMLSchema#',\n schema: 'http://schema.org/',\n owl: 'http://www.w3.org/2002/07/owl#',\n dc: 'http://purl.org/dc/elements/1.1/',\n dct: 'http://purl.org/dc/terms/',\n dctype: 'http://purl.org/dc/dcmitype/',\n void: 'http://rdfs.org/ns/void#',\n dcat: 'http://www.w3.org/ns/dcat#',\n '3DModel': { '@id': 'schema:3DModel' },\n AMRadioChannel: { '@id': 'schema:AMRadioChannel' },\n APIReference: { '@id': 'schema:APIReference' },\n Abdomen: { '@id': 'schema:Abdomen' },\n AboutPage: { '@id': 'schema:AboutPage' },\n AcceptAction: { '@id': 'schema:AcceptAction' },\n Accommodation: { '@id': 'schema:Accommodation' },\n AccountingService: { '@id': 'schema:AccountingService' },\n AchieveAction: { '@id': 'schema:AchieveAction' },\n Action: { '@id': 'schema:Action' },\n ActionAccessSpecification: { '@id': 'schema:ActionAccessSpecification' },\n ActionStatusType: { '@id': 'schema:ActionStatusType' },\n ActivateAction: { '@id': 'schema:ActivateAction' },\n ActivationFee: { '@id': 'schema:ActivationFee' },\n ActiveActionStatus: { '@id': 'schema:ActiveActionStatus' },\n ActiveNotRecruiting: { '@id': 'schema:ActiveNotRecruiting' },\n AddAction: { '@id': 'schema:AddAction' },\n AdministrativeArea: { '@id': 'schema:AdministrativeArea' },\n AdultEntertainment: { '@id': 'schema:AdultEntertainment' },\n AdvertiserContentArticle: { '@id': 'schema:AdvertiserContentArticle' },\n AerobicActivity: { '@id': 'schema:AerobicActivity' },\n AggregateOffer: { '@id': 'schema:AggregateOffer' },\n AggregateRating: { '@id': 'schema:AggregateRating' },\n AgreeAction: { '@id': 'schema:AgreeAction' },\n Airline: { '@id': 'schema:Airline' },\n Airport: { '@id': 'schema:Airport' },\n AlbumRelease: { '@id': 'schema:AlbumRelease' },\n AlignmentObject: { '@id': 'schema:AlignmentObject' },\n AllWheelDriveConfiguration: { '@id': 'schema:AllWheelDriveConfiguration' },\n AllergiesHealthAspect: { '@id': 'schema:AllergiesHealthAspect' },\n AllocateAction: { '@id': 'schema:AllocateAction' },\n AmpStory: { '@id': 'schema:AmpStory' },\n AmusementPark: { '@id': 'schema:AmusementPark' },\n AnaerobicActivity: { '@id': 'schema:AnaerobicActivity' },\n AnalysisNewsArticle: { '@id': 'schema:AnalysisNewsArticle' },\n AnatomicalStructure: { '@id': 'schema:AnatomicalStructure' },\n AnatomicalSystem: { '@id': 'schema:AnatomicalSystem' },\n Anesthesia: { '@id': 'schema:Anesthesia' },\n AnimalShelter: { '@id': 'schema:AnimalShelter' },\n Answer: { '@id': 'schema:Answer' },\n Apartment: { '@id': 'schema:Apartment' },\n ApartmentComplex: { '@id': 'schema:ApartmentComplex' },\n Appearance: { '@id': 'schema:Appearance' },\n AppendAction: { '@id': 'schema:AppendAction' },\n ApplyAction: { '@id': 'schema:ApplyAction' },\n ApprovedIndication: { '@id': 'schema:ApprovedIndication' },\n Aquarium: { '@id': 'schema:Aquarium' },\n ArchiveComponent: { '@id': 'schema:ArchiveComponent' },\n ArchiveOrganization: { '@id': 'schema:ArchiveOrganization' },\n ArriveAction: { '@id': 'schema:ArriveAction' },\n ArtGallery: { '@id': 'schema:ArtGallery' },\n Artery: { '@id': 'schema:Artery' },\n Article: { '@id': 'schema:Article' },\n AskAction: { '@id': 'schema:AskAction' },\n AskPublicNewsArticle: { '@id': 'schema:AskPublicNewsArticle' },\n AssessAction: { '@id': 'schema:AssessAction' },\n AssignAction: { '@id': 'schema:AssignAction' },\n Atlas: { '@id': 'schema:Atlas' },\n Attorney: { '@id': 'schema:Attorney' },\n Audience: { '@id': 'schema:Audience' },\n AudioObject: { '@id': 'schema:AudioObject' },\n Audiobook: { '@id': 'schema:Audiobook' },\n AudiobookFormat: { '@id': 'schema:AudiobookFormat' },\n AuthoritativeLegalValue: { '@id': 'schema:AuthoritativeLegalValue' },\n AuthorizeAction: { '@id': 'schema:AuthorizeAction' },\n AutoBodyShop: { '@id': 'schema:AutoBodyShop' },\n AutoDealer: { '@id': 'schema:AutoDealer' },\n AutoPartsStore: { '@id': 'schema:AutoPartsStore' },\n AutoRental: { '@id': 'schema:AutoRental' },\n AutoRepair: { '@id': 'schema:AutoRepair' },\n AutoWash: { '@id': 'schema:AutoWash' },\n AutomatedTeller: { '@id': 'schema:AutomatedTeller' },\n AutomotiveBusiness: { '@id': 'schema:AutomotiveBusiness' },\n Ayurvedic: { '@id': 'schema:Ayurvedic' },\n BackOrder: { '@id': 'schema:BackOrder' },\n BackgroundNewsArticle: { '@id': 'schema:BackgroundNewsArticle' },\n Bacteria: { '@id': 'schema:Bacteria' },\n Bakery: { '@id': 'schema:Bakery' },\n Balance: { '@id': 'schema:Balance' },\n BankAccount: { '@id': 'schema:BankAccount' },\n BankOrCreditUnion: { '@id': 'schema:BankOrCreditUnion' },\n BarOrPub: { '@id': 'schema:BarOrPub' },\n Barcode: { '@id': 'schema:Barcode' },\n BasicIncome: { '@id': 'schema:BasicIncome' },\n Beach: { '@id': 'schema:Beach' },\n BeautySalon: { '@id': 'schema:BeautySalon' },\n BedAndBreakfast: { '@id': 'schema:BedAndBreakfast' },\n BedDetails: { '@id': 'schema:BedDetails' },\n BedType: { '@id': 'schema:BedType' },\n BefriendAction: { '@id': 'schema:BefriendAction' },\n BenefitsHealthAspect: { '@id': 'schema:BenefitsHealthAspect' },\n BikeStore: { '@id': 'schema:BikeStore' },\n Blog: { '@id': 'schema:Blog' },\n BlogPosting: { '@id': 'schema:BlogPosting' },\n BloodTest: { '@id': 'schema:BloodTest' },\n BoardingPolicyType: { '@id': 'schema:BoardingPolicyType' },\n BoatReservation: { '@id': 'schema:BoatReservation' },\n BoatTerminal: { '@id': 'schema:BoatTerminal' },\n BoatTrip: { '@id': 'schema:BoatTrip' },\n BodyMeasurementArm: { '@id': 'schema:BodyMeasurementArm' },\n BodyMeasurementBust: { '@id': 'schema:BodyMeasurementBust' },\n BodyMeasurementChest: { '@id': 'schema:BodyMeasurementChest' },\n BodyMeasurementFoot: { '@id': 'schema:BodyMeasurementFoot' },\n BodyMeasurementHand: { '@id': 'schema:BodyMeasurementHand' },\n BodyMeasurementHead: { '@id': 'schema:BodyMeasurementHead' },\n BodyMeasurementHeight: { '@id': 'schema:BodyMeasurementHeight' },\n BodyMeasurementHips: { '@id': 'schema:BodyMeasurementHips' },\n BodyMeasurementInsideLeg: { '@id': 'schema:BodyMeasurementInsideLeg' },\n BodyMeasurementNeck: { '@id': 'schema:BodyMeasurementNeck' },\n BodyMeasurementTypeEnumeration: {\n '@id': 'schema:BodyMeasurementTypeEnumeration',\n },\n BodyMeasurementUnderbust: { '@id': 'schema:BodyMeasurementUnderbust' },\n BodyMeasurementWaist: { '@id': 'schema:BodyMeasurementWaist' },\n BodyMeasurementWeight: { '@id': 'schema:BodyMeasurementWeight' },\n BodyOfWater: { '@id': 'schema:BodyOfWater' },\n Bone: { '@id': 'schema:Bone' },\n Book: { '@id': 'schema:Book' },\n BookFormatType: { '@id': 'schema:BookFormatType' },\n BookSeries: { '@id': 'schema:BookSeries' },\n BookStore: { '@id': 'schema:BookStore' },\n BookmarkAction: { '@id': 'schema:BookmarkAction' },\n Boolean: { '@id': 'schema:Boolean' },\n BorrowAction: { '@id': 'schema:BorrowAction' },\n BowlingAlley: { '@id': 'schema:BowlingAlley' },\n BrainStructure: { '@id': 'schema:BrainStructure' },\n Brand: { '@id': 'schema:Brand' },\n BreadcrumbList: { '@id': 'schema:BreadcrumbList' },\n Brewery: { '@id': 'schema:Brewery' },\n Bridge: { '@id': 'schema:Bridge' },\n BroadcastChannel: { '@id': 'schema:BroadcastChannel' },\n BroadcastEvent: { '@id': 'schema:BroadcastEvent' },\n BroadcastFrequencySpecification: {\n '@id': 'schema:BroadcastFrequencySpecification',\n },\n BroadcastRelease: { '@id': 'schema:BroadcastRelease' },\n BroadcastService: { '@id': 'schema:BroadcastService' },\n BrokerageAccount: { '@id': 'schema:BrokerageAccount' },\n BuddhistTemple: { '@id': 'schema:BuddhistTemple' },\n BusOrCoach: { '@id': 'schema:BusOrCoach' },\n BusReservation: { '@id': 'schema:BusReservation' },\n BusStation: { '@id': 'schema:BusStation' },\n BusStop: { '@id': 'schema:BusStop' },\n BusTrip: { '@id': 'schema:BusTrip' },\n BusinessAudience: { '@id': 'schema:BusinessAudience' },\n BusinessEntityType: { '@id': 'schema:BusinessEntityType' },\n BusinessEvent: { '@id': 'schema:BusinessEvent' },\n BusinessFunction: { '@id': 'schema:BusinessFunction' },\n BusinessSupport: { '@id': 'schema:BusinessSupport' },\n BuyAction: { '@id': 'schema:BuyAction' },\n CDCPMDRecord: { '@id': 'schema:CDCPMDRecord' },\n CDFormat: { '@id': 'schema:CDFormat' },\n CT: { '@id': 'schema:CT' },\n CableOrSatelliteService: { '@id': 'schema:CableOrSatelliteService' },\n CafeOrCoffeeShop: { '@id': 'schema:CafeOrCoffeeShop' },\n Campground: { '@id': 'schema:Campground' },\n CampingPitch: { '@id': 'schema:CampingPitch' },\n Canal: { '@id': 'schema:Canal' },\n CancelAction: { '@id': 'schema:CancelAction' },\n Car: { '@id': 'schema:Car' },\n CarUsageType: { '@id': 'schema:CarUsageType' },\n Cardiovascular: { '@id': 'schema:Cardiovascular' },\n CardiovascularExam: { '@id': 'schema:CardiovascularExam' },\n CaseSeries: { '@id': 'schema:CaseSeries' },\n Casino: { '@id': 'schema:Casino' },\n CassetteFormat: { '@id': 'schema:CassetteFormat' },\n CategoryCode: { '@id': 'schema:CategoryCode' },\n CategoryCodeSet: { '@id': 'schema:CategoryCodeSet' },\n CatholicChurch: { '@id': 'schema:CatholicChurch' },\n CausesHealthAspect: { '@id': 'schema:CausesHealthAspect' },\n Cemetery: { '@id': 'schema:Cemetery' },\n Chapter: { '@id': 'schema:Chapter' },\n CharitableIncorporatedOrganization: {\n '@id': 'schema:CharitableIncorporatedOrganization',\n },\n CheckAction: { '@id': 'schema:CheckAction' },\n CheckInAction: { '@id': 'schema:CheckInAction' },\n CheckOutAction: { '@id': 'schema:CheckOutAction' },\n CheckoutPage: { '@id': 'schema:CheckoutPage' },\n ChildCare: { '@id': 'schema:ChildCare' },\n ChildrensEvent: { '@id': 'schema:ChildrensEvent' },\n Chiropractic: { '@id': 'schema:Chiropractic' },\n ChooseAction: { '@id': 'schema:ChooseAction' },\n Church: { '@id': 'schema:Church' },\n City: { '@id': 'schema:City' },\n CityHall: { '@id': 'schema:CityHall' },\n CivicStructure: { '@id': 'schema:CivicStructure' },\n Claim: { '@id': 'schema:Claim' },\n ClaimReview: { '@id': 'schema:ClaimReview' },\n Class: { '@id': 'schema:Class' },\n CleaningFee: { '@id': 'schema:CleaningFee' },\n Clinician: { '@id': 'schema:Clinician' },\n Clip: { '@id': 'schema:Clip' },\n ClothingStore: { '@id': 'schema:ClothingStore' },\n CoOp: { '@id': 'schema:CoOp' },\n Code: { '@id': 'schema:Code' },\n CohortStudy: { '@id': 'schema:CohortStudy' },\n Collection: { '@id': 'schema:Collection' },\n CollectionPage: { '@id': 'schema:CollectionPage' },\n CollegeOrUniversity: { '@id': 'schema:CollegeOrUniversity' },\n ComedyClub: { '@id': 'schema:ComedyClub' },\n ComedyEvent: { '@id': 'schema:ComedyEvent' },\n ComicCoverArt: { '@id': 'schema:ComicCoverArt' },\n ComicIssue: { '@id': 'schema:ComicIssue' },\n ComicSeries: { '@id': 'schema:ComicSeries' },\n ComicStory: { '@id': 'schema:ComicStory' },\n Comment: { '@id': 'schema:Comment' },\n CommentAction: { '@id': 'schema:CommentAction' },\n CommentPermission: { '@id': 'schema:CommentPermission' },\n CommunicateAction: { '@id': 'schema:CommunicateAction' },\n CommunityHealth: { '@id': 'schema:CommunityHealth' },\n CompilationAlbum: { '@id': 'schema:CompilationAlbum' },\n CompleteDataFeed: { '@id': 'schema:CompleteDataFeed' },\n Completed: { '@id': 'schema:Completed' },\n CompletedActionStatus: { '@id': 'schema:CompletedActionStatus' },\n CompoundPriceSpecification: { '@id': 'schema:CompoundPriceSpecification' },\n ComputerLanguage: { '@id': 'schema:ComputerLanguage' },\n ComputerStore: { '@id': 'schema:ComputerStore' },\n ConfirmAction: { '@id': 'schema:ConfirmAction' },\n Consortium: { '@id': 'schema:Consortium' },\n ConsumeAction: { '@id': 'schema:ConsumeAction' },\n ContactPage: { '@id': 'schema:ContactPage' },\n ContactPoint: { '@id': 'schema:ContactPoint' },\n ContactPointOption: { '@id': 'schema:ContactPointOption' },\n ContagiousnessHealthAspect: { '@id': 'schema:ContagiousnessHealthAspect' },\n Continent: { '@id': 'schema:Continent' },\n ControlAction: { '@id': 'schema:ControlAction' },\n ConvenienceStore: { '@id': 'schema:ConvenienceStore' },\n Conversation: { '@id': 'schema:Conversation' },\n CookAction: { '@id': 'schema:CookAction' },\n Corporation: { '@id': 'schema:Corporation' },\n CorrectionComment: { '@id': 'schema:CorrectionComment' },\n Country: { '@id': 'schema:Country' },\n Course: { '@id': 'schema:Course' },\n CourseInstance: { '@id': 'schema:CourseInstance' },\n Courthouse: { '@id': 'schema:Courthouse' },\n CoverArt: { '@id': 'schema:CoverArt' },\n CovidTestingFacility: { '@id': 'schema:CovidTestingFacility' },\n CreateAction: { '@id': 'schema:CreateAction' },\n CreativeWork: { '@id': 'schema:CreativeWork' },\n CreativeWorkSeason: { '@id': 'schema:CreativeWorkSeason' },\n CreativeWorkSeries: { '@id': 'schema:CreativeWorkSeries' },\n CreditCard: { '@id': 'schema:CreditCard' },\n Crematorium: { '@id': 'schema:Crematorium' },\n CriticReview: { '@id': 'schema:CriticReview' },\n CrossSectional: { '@id': 'schema:CrossSectional' },\n CssSelectorType: { '@id': 'schema:CssSelectorType' },\n CurrencyConversionService: { '@id': 'schema:CurrencyConversionService' },\n DDxElement: { '@id': 'schema:DDxElement' },\n DJMixAlbum: { '@id': 'schema:DJMixAlbum' },\n DVDFormat: { '@id': 'schema:DVDFormat' },\n DamagedCondition: { '@id': 'schema:DamagedCondition' },\n DanceEvent: { '@id': 'schema:DanceEvent' },\n DanceGroup: { '@id': 'schema:DanceGroup' },\n DataCatalog: { '@id': 'schema:DataCatalog' },\n DataDownload: { '@id': 'schema:DataDownload' },\n DataFeed: { '@id': 'schema:DataFeed' },\n DataFeedItem: { '@id': 'schema:DataFeedItem' },\n DataType: { '@id': 'schema:DataType' },\n Dataset: { '@id': 'schema:Dataset' },\n Date: { '@id': 'schema:Date' },\n DateTime: { '@id': 'schema:DateTime' },\n DatedMoneySpecification: { '@id': 'schema:DatedMoneySpecification' },\n DayOfWeek: { '@id': 'schema:DayOfWeek' },\n DaySpa: { '@id': 'schema:DaySpa' },\n DeactivateAction: { '@id': 'schema:DeactivateAction' },\n DecontextualizedContent: { '@id': 'schema:DecontextualizedContent' },\n DefenceEstablishment: { '@id': 'schema:DefenceEstablishment' },\n DefinedRegion: { '@id': 'schema:DefinedRegion' },\n DefinedTerm: { '@id': 'schema:DefinedTerm' },\n DefinedTermSet: { '@id': 'schema:DefinedTermSet' },\n DefinitiveLegalValue: { '@id': 'schema:DefinitiveLegalValue' },\n DeleteAction: { '@id': 'schema:DeleteAction' },\n DeliveryChargeSpecification: { '@id': 'schema:DeliveryChargeSpecification' },\n DeliveryEvent: { '@id': 'schema:DeliveryEvent' },\n DeliveryMethod: { '@id': 'schema:DeliveryMethod' },\n DeliveryTimeSettings: { '@id': 'schema:DeliveryTimeSettings' },\n Demand: { '@id': 'schema:Demand' },\n DemoAlbum: { '@id': 'schema:DemoAlbum' },\n Dentist: { '@id': 'schema:Dentist' },\n Dentistry: { '@id': 'schema:Dentistry' },\n DepartAction: { '@id': 'schema:DepartAction' },\n DepartmentStore: { '@id': 'schema:DepartmentStore' },\n DepositAccount: { '@id': 'schema:DepositAccount' },\n Dermatologic: { '@id': 'schema:Dermatologic' },\n Dermatology: { '@id': 'schema:Dermatology' },\n DiabeticDiet: { '@id': 'schema:DiabeticDiet' },\n Diagnostic: { '@id': 'schema:Diagnostic' },\n DiagnosticLab: { '@id': 'schema:DiagnosticLab' },\n DiagnosticProcedure: { '@id': 'schema:DiagnosticProcedure' },\n Diet: { '@id': 'schema:Diet' },\n DietNutrition: { '@id': 'schema:DietNutrition' },\n DietarySupplement: { '@id': 'schema:DietarySupplement' },\n DigitalAudioTapeFormat: { '@id': 'schema:DigitalAudioTapeFormat' },\n DigitalDocument: { '@id': 'schema:DigitalDocument' },\n DigitalDocumentPermission: { '@id': 'schema:DigitalDocumentPermission' },\n DigitalDocumentPermissionType: {\n '@id': 'schema:DigitalDocumentPermissionType',\n },\n DigitalFormat: { '@id': 'schema:DigitalFormat' },\n DisabilitySupport: { '@id': 'schema:DisabilitySupport' },\n DisagreeAction: { '@id': 'schema:DisagreeAction' },\n Discontinued: { '@id': 'schema:Discontinued' },\n DiscoverAction: { '@id': 'schema:DiscoverAction' },\n DiscussionForumPosting: { '@id': 'schema:DiscussionForumPosting' },\n DislikeAction: { '@id': 'schema:DislikeAction' },\n Distance: { '@id': 'schema:Distance' },\n DistanceFee: { '@id': 'schema:DistanceFee' },\n Distillery: { '@id': 'schema:Distillery' },\n DonateAction: { '@id': 'schema:DonateAction' },\n DoseSchedule: { '@id': 'schema:DoseSchedule' },\n DoubleBlindedTrial: { '@id': 'schema:DoubleBlindedTrial' },\n DownloadAction: { '@id': 'schema:DownloadAction' },\n Downpayment: { '@id': 'schema:Downpayment' },\n DrawAction: { '@id': 'schema:DrawAction' },\n Drawing: { '@id': 'schema:Drawing' },\n DrinkAction: { '@id': 'schema:DrinkAction' },\n DriveWheelConfigurationValue: { '@id': 'schema:DriveWheelConfigurationValue' },\n DrivingSchoolVehicleUsage: { '@id': 'schema:DrivingSchoolVehicleUsage' },\n Drug: { '@id': 'schema:Drug' },\n DrugClass: { '@id': 'schema:DrugClass' },\n DrugCost: { '@id': 'schema:DrugCost' },\n DrugCostCategory: { '@id': 'schema:DrugCostCategory' },\n DrugLegalStatus: { '@id': 'schema:DrugLegalStatus' },\n DrugPregnancyCategory: { '@id': 'schema:DrugPregnancyCategory' },\n DrugPrescriptionStatus: { '@id': 'schema:DrugPrescriptionStatus' },\n DrugStrength: { '@id': 'schema:DrugStrength' },\n DryCleaningOrLaundry: { '@id': 'schema:DryCleaningOrLaundry' },\n Duration: { '@id': 'schema:Duration' },\n EBook: { '@id': 'schema:EBook' },\n EPRelease: { '@id': 'schema:EPRelease' },\n EUEnergyEfficiencyCategoryA: { '@id': 'schema:EUEnergyEfficiencyCategoryA' },\n EUEnergyEfficiencyCategoryA1Plus: {\n '@id': 'schema:EUEnergyEfficiencyCategoryA1Plus',\n },\n EUEnergyEfficiencyCategoryA2Plus: {\n '@id': 'schema:EUEnergyEfficiencyCategoryA2Plus',\n },\n EUEnergyEfficiencyCategoryA3Plus: {\n '@id': 'schema:EUEnergyEfficiencyCategoryA3Plus',\n },\n EUEnergyEfficiencyCategoryB: { '@id': 'schema:EUEnergyEfficiencyCategoryB' },\n EUEnergyEfficiencyCategoryC: { '@id': 'schema:EUEnergyEfficiencyCategoryC' },\n EUEnergyEfficiencyCategoryD: { '@id': 'schema:EUEnergyEfficiencyCategoryD' },\n EUEnergyEfficiencyCategoryE: { '@id': 'schema:EUEnergyEfficiencyCategoryE' },\n EUEnergyEfficiencyCategoryF: { '@id': 'schema:EUEnergyEfficiencyCategoryF' },\n EUEnergyEfficiencyCategoryG: { '@id': 'schema:EUEnergyEfficiencyCategoryG' },\n EUEnergyEfficiencyEnumeration: {\n '@id': 'schema:EUEnergyEfficiencyEnumeration',\n },\n Ear: { '@id': 'schema:Ear' },\n EatAction: { '@id': 'schema:EatAction' },\n EditedOrCroppedContent: { '@id': 'schema:EditedOrCroppedContent' },\n EducationEvent: { '@id': 'schema:EducationEvent' },\n EducationalAudience: { '@id': 'schema:EducationalAudience' },\n EducationalOccupationalCredential: {\n '@id': 'schema:EducationalOccupationalCredential',\n },\n EducationalOccupationalProgram: {\n '@id': 'schema:EducationalOccupationalProgram',\n },\n EducationalOrganization: { '@id': 'schema:EducationalOrganization' },\n EffectivenessHealthAspect: { '@id': 'schema:EffectivenessHealthAspect' },\n Electrician: { '@id': 'schema:Electrician' },\n ElectronicsStore: { '@id': 'schema:ElectronicsStore' },\n ElementarySchool: { '@id': 'schema:ElementarySchool' },\n EmailMessage: { '@id': 'schema:EmailMessage' },\n Embassy: { '@id': 'schema:Embassy' },\n Emergency: { '@id': 'schema:Emergency' },\n EmergencyService: { '@id': 'schema:EmergencyService' },\n EmployeeRole: { '@id': 'schema:EmployeeRole' },\n EmployerAggregateRating: { '@id': 'schema:EmployerAggregateRating' },\n EmployerReview: { '@id': 'schema:EmployerReview' },\n EmploymentAgency: { '@id': 'schema:EmploymentAgency' },\n Endocrine: { '@id': 'schema:Endocrine' },\n EndorseAction: { '@id': 'schema:EndorseAction' },\n EndorsementRating: { '@id': 'schema:EndorsementRating' },\n Energy: { '@id': 'schema:Energy' },\n EnergyConsumptionDetails: { '@id': 'schema:EnergyConsumptionDetails' },\n EnergyEfficiencyEnumeration: { '@id': 'schema:EnergyEfficiencyEnumeration' },\n EnergyStarCertified: { '@id': 'schema:EnergyStarCertified' },\n EnergyStarEnergyEfficiencyEnumeration: {\n '@id': 'schema:EnergyStarEnergyEfficiencyEnumeration',\n },\n EngineSpecification: { '@id': 'schema:EngineSpecification' },\n EnrollingByInvitation: { '@id': 'schema:EnrollingByInvitation' },\n EntertainmentBusiness: { '@id': 'schema:EntertainmentBusiness' },\n EntryPoint: { '@id': 'schema:EntryPoint' },\n Enumeration: { '@id': 'schema:Enumeration' },\n Episode: { '@id': 'schema:Episode' },\n Event: { '@id': 'schema:Event' },\n EventAttendanceModeEnumeration: {\n '@id': 'schema:EventAttendanceModeEnumeration',\n },\n EventCancelled: { '@id': 'schema:EventCancelled' },\n EventMovedOnline: { '@id': 'schema:EventMovedOnline' },\n EventPostponed: { '@id': 'schema:EventPostponed' },\n EventRescheduled: { '@id': 'schema:EventRescheduled' },\n EventReservation: { '@id': 'schema:EventReservation' },\n EventScheduled: { '@id': 'schema:EventScheduled' },\n EventSeries: { '@id': 'schema:EventSeries' },\n EventStatusType: { '@id': 'schema:EventStatusType' },\n EventVenue: { '@id': 'schema:EventVenue' },\n EvidenceLevelA: { '@id': 'schema:EvidenceLevelA' },\n EvidenceLevelB: { '@id': 'schema:EvidenceLevelB' },\n EvidenceLevelC: { '@id': 'schema:EvidenceLevelC' },\n ExchangeRateSpecification: { '@id': 'schema:ExchangeRateSpecification' },\n ExchangeRefund: { '@id': 'schema:ExchangeRefund' },\n ExerciseAction: { '@id': 'schema:ExerciseAction' },\n ExerciseGym: { '@id': 'schema:ExerciseGym' },\n ExercisePlan: { '@id': 'schema:ExercisePlan' },\n ExhibitionEvent: { '@id': 'schema:ExhibitionEvent' },\n Eye: { '@id': 'schema:Eye' },\n FAQPage: { '@id': 'schema:FAQPage' },\n FDAcategoryA: { '@id': 'schema:FDAcategoryA' },\n FDAcategoryB: { '@id': 'schema:FDAcategoryB' },\n FDAcategoryC: { '@id': 'schema:FDAcategoryC' },\n FDAcategoryD: { '@id': 'schema:FDAcategoryD' },\n FDAcategoryX: { '@id': 'schema:FDAcategoryX' },\n FDAnotEvaluated: { '@id': 'schema:FDAnotEvaluated' },\n FMRadioChannel: { '@id': 'schema:FMRadioChannel' },\n FailedActionStatus: { '@id': 'schema:FailedActionStatus' },\n False: { '@id': 'schema:False' },\n FastFoodRestaurant: { '@id': 'schema:FastFoodRestaurant' },\n Female: { '@id': 'schema:Female' },\n Festival: { '@id': 'schema:Festival' },\n FilmAction: { '@id': 'schema:FilmAction' },\n FinancialProduct: { '@id': 'schema:FinancialProduct' },\n FinancialService: { '@id': 'schema:FinancialService' },\n FindAction: { '@id': 'schema:FindAction' },\n FireStation: { '@id': 'schema:FireStation' },\n Flexibility: { '@id': 'schema:Flexibility' },\n Flight: { '@id': 'schema:Flight' },\n FlightReservation: { '@id': 'schema:FlightReservation' },\n Float: { '@id': 'schema:Float' },\n FloorPlan: { '@id': 'schema:FloorPlan' },\n Florist: { '@id': 'schema:Florist' },\n FollowAction: { '@id': 'schema:FollowAction' },\n FoodEstablishment: { '@id': 'schema:FoodEstablishment' },\n FoodEstablishmentReservation: { '@id': 'schema:FoodEstablishmentReservation' },\n FoodEvent: { '@id': 'schema:FoodEvent' },\n FoodService: { '@id': 'schema:FoodService' },\n FourWheelDriveConfiguration: { '@id': 'schema:FourWheelDriveConfiguration' },\n Friday: { '@id': 'schema:Friday' },\n FrontWheelDriveConfiguration: { '@id': 'schema:FrontWheelDriveConfiguration' },\n FullRefund: { '@id': 'schema:FullRefund' },\n FundingAgency: { '@id': 'schema:FundingAgency' },\n FundingScheme: { '@id': 'schema:FundingScheme' },\n Fungus: { '@id': 'schema:Fungus' },\n FurnitureStore: { '@id': 'schema:FurnitureStore' },\n Game: { '@id': 'schema:Game' },\n GamePlayMode: { '@id': 'schema:GamePlayMode' },\n GameServer: { '@id': 'schema:GameServer' },\n GameServerStatus: { '@id': 'schema:GameServerStatus' },\n GardenStore: { '@id': 'schema:GardenStore' },\n GasStation: { '@id': 'schema:GasStation' },\n Gastroenterologic: { '@id': 'schema:Gastroenterologic' },\n GatedResidenceCommunity: { '@id': 'schema:GatedResidenceCommunity' },\n GenderType: { '@id': 'schema:GenderType' },\n GeneralContractor: { '@id': 'schema:GeneralContractor' },\n Genetic: { '@id': 'schema:Genetic' },\n Genitourinary: { '@id': 'schema:Genitourinary' },\n GeoCircle: { '@id': 'schema:GeoCircle' },\n GeoCoordinates: { '@id': 'schema:GeoCoordinates' },\n GeoShape: { '@id': 'schema:GeoShape' },\n GeospatialGeometry: { '@id': 'schema:GeospatialGeometry' },\n Geriatric: { '@id': 'schema:Geriatric' },\n GettingAccessHealthAspect: { '@id': 'schema:GettingAccessHealthAspect' },\n GiveAction: { '@id': 'schema:GiveAction' },\n GlutenFreeDiet: { '@id': 'schema:GlutenFreeDiet' },\n GolfCourse: { '@id': 'schema:GolfCourse' },\n GovernmentBenefitsType: { '@id': 'schema:GovernmentBenefitsType' },\n GovernmentBuilding: { '@id': 'schema:GovernmentBuilding' },\n GovernmentOffice: { '@id': 'schema:GovernmentOffice' },\n GovernmentOrganization: { '@id': 'schema:GovernmentOrganization' },\n GovernmentPermit: { '@id': 'schema:GovernmentPermit' },\n GovernmentService: { '@id': 'schema:GovernmentService' },\n Grant: { '@id': 'schema:Grant' },\n GraphicNovel: { '@id': 'schema:GraphicNovel' },\n GroceryStore: { '@id': 'schema:GroceryStore' },\n GroupBoardingPolicy: { '@id': 'schema:GroupBoardingPolicy' },\n Guide: { '@id': 'schema:Guide' },\n Gynecologic: { '@id': 'schema:Gynecologic' },\n HVACBusiness: { '@id': 'schema:HVACBusiness' },\n Hackathon: { '@id': 'schema:Hackathon' },\n HairSalon: { '@id': 'schema:HairSalon' },\n HalalDiet: { '@id': 'schema:HalalDiet' },\n Hardcover: { '@id': 'schema:Hardcover' },\n HardwareStore: { '@id': 'schema:HardwareStore' },\n Head: { '@id': 'schema:Head' },\n HealthAndBeautyBusiness: { '@id': 'schema:HealthAndBeautyBusiness' },\n HealthAspectEnumeration: { '@id': 'schema:HealthAspectEnumeration' },\n HealthCare: { '@id': 'schema:HealthCare' },\n HealthClub: { '@id': 'schema:HealthClub' },\n HealthInsurancePlan: { '@id': 'schema:HealthInsurancePlan' },\n HealthPlanCostSharingSpecification: {\n '@id': 'schema:HealthPlanCostSharingSpecification',\n },\n HealthPlanFormulary: { '@id': 'schema:HealthPlanFormulary' },\n HealthPlanNetwork: { '@id': 'schema:HealthPlanNetwork' },\n HealthTopicContent: { '@id': 'schema:HealthTopicContent' },\n HearingImpairedSupported: { '@id': 'schema:HearingImpairedSupported' },\n Hematologic: { '@id': 'schema:Hematologic' },\n HighSchool: { '@id': 'schema:HighSchool' },\n HinduDiet: { '@id': 'schema:HinduDiet' },\n HinduTemple: { '@id': 'schema:HinduTemple' },\n HobbyShop: { '@id': 'schema:HobbyShop' },\n HomeAndConstructionBusiness: { '@id': 'schema:HomeAndConstructionBusiness' },\n HomeGoodsStore: { '@id': 'schema:HomeGoodsStore' },\n Homeopathic: { '@id': 'schema:Homeopathic' },\n Hospital: { '@id': 'schema:Hospital' },\n Hostel: { '@id': 'schema:Hostel' },\n Hotel: { '@id': 'schema:Hotel' },\n HotelRoom: { '@id': 'schema:HotelRoom' },\n House: { '@id': 'schema:House' },\n HousePainter: { '@id': 'schema:HousePainter' },\n HowItWorksHealthAspect: { '@id': 'schema:HowItWorksHealthAspect' },\n HowOrWhereHealthAspect: { '@id': 'schema:HowOrWhereHealthAspect' },\n HowTo: { '@id': 'schema:HowTo' },\n HowToDirection: { '@id': 'schema:HowToDirection' },\n HowToItem: { '@id': 'schema:HowToItem' },\n HowToSection: { '@id': 'schema:HowToSection' },\n HowToStep: { '@id': 'schema:HowToStep' },\n HowToSupply: { '@id': 'schema:HowToSupply' },\n HowToTip: { '@id': 'schema:HowToTip' },\n HowToTool: { '@id': 'schema:HowToTool' },\n HyperToc: { '@id': 'schema:HyperToc' },\n HyperTocEntry: { '@id': 'schema:HyperTocEntry' },\n IceCreamShop: { '@id': 'schema:IceCreamShop' },\n IgnoreAction: { '@id': 'schema:IgnoreAction' },\n ImageGallery: { '@id': 'schema:ImageGallery' },\n ImageObject: { '@id': 'schema:ImageObject' },\n ImagingTest: { '@id': 'schema:ImagingTest' },\n InForce: { '@id': 'schema:InForce' },\n InStock: { '@id': 'schema:InStock' },\n InStoreOnly: { '@id': 'schema:InStoreOnly' },\n IndividualProduct: { '@id': 'schema:IndividualProduct' },\n Infectious: { '@id': 'schema:Infectious' },\n InfectiousAgentClass: { '@id': 'schema:InfectiousAgentClass' },\n InfectiousDisease: { '@id': 'schema:InfectiousDisease' },\n InformAction: { '@id': 'schema:InformAction' },\n IngredientsHealthAspect: { '@id': 'schema:IngredientsHealthAspect' },\n InsertAction: { '@id': 'schema:InsertAction' },\n InstallAction: { '@id': 'schema:InstallAction' },\n Installment: { '@id': 'schema:Installment' },\n InsuranceAgency: { '@id': 'schema:InsuranceAgency' },\n Intangible: { '@id': 'schema:Intangible' },\n Integer: { '@id': 'schema:Integer' },\n InteractAction: { '@id': 'schema:InteractAction' },\n InteractionCounter: { '@id': 'schema:InteractionCounter' },\n InternationalTrial: { '@id': 'schema:InternationalTrial' },\n InternetCafe: { '@id': 'schema:InternetCafe' },\n InvestmentFund: { '@id': 'schema:InvestmentFund' },\n InvestmentOrDeposit: { '@id': 'schema:InvestmentOrDeposit' },\n InviteAction: { '@id': 'schema:InviteAction' },\n Invoice: { '@id': 'schema:Invoice' },\n InvoicePrice: { '@id': 'schema:InvoicePrice' },\n ItemAvailability: { '@id': 'schema:ItemAvailability' },\n ItemList: { '@id': 'schema:ItemList' },\n ItemListOrderAscending: { '@id': 'schema:ItemListOrderAscending' },\n ItemListOrderDescending: { '@id': 'schema:ItemListOrderDescending' },\n ItemListOrderType: { '@id': 'schema:ItemListOrderType' },\n ItemListUnordered: { '@id': 'schema:ItemListUnordered' },\n ItemPage: { '@id': 'schema:ItemPage' },\n JewelryStore: { '@id': 'schema:JewelryStore' },\n JobPosting: { '@id': 'schema:JobPosting' },\n JoinAction: { '@id': 'schema:JoinAction' },\n Joint: { '@id': 'schema:Joint' },\n KosherDiet: { '@id': 'schema:KosherDiet' },\n LaboratoryScience: { '@id': 'schema:LaboratoryScience' },\n LakeBodyOfWater: { '@id': 'schema:LakeBodyOfWater' },\n Landform: { '@id': 'schema:Landform' },\n LandmarksOrHistoricalBuildings: {\n '@id': 'schema:LandmarksOrHistoricalBuildings',\n },\n Language: { '@id': 'schema:Language' },\n LaserDiscFormat: { '@id': 'schema:LaserDiscFormat' },\n LearningResource: { '@id': 'schema:LearningResource' },\n LeaveAction: { '@id': 'schema:LeaveAction' },\n LeftHandDriving: { '@id': 'schema:LeftHandDriving' },\n LegalForceStatus: { '@id': 'schema:LegalForceStatus' },\n LegalService: { '@id': 'schema:LegalService' },\n LegalValueLevel: { '@id': 'schema:LegalValueLevel' },\n Legislation: { '@id': 'schema:Legislation' },\n LegislationObject: { '@id': 'schema:LegislationObject' },\n LegislativeBuilding: { '@id': 'schema:LegislativeBuilding' },\n LeisureTimeActivity: { '@id': 'schema:LeisureTimeActivity' },\n LendAction: { '@id': 'schema:LendAction' },\n Library: { '@id': 'schema:Library' },\n LibrarySystem: { '@id': 'schema:LibrarySystem' },\n LifestyleModification: { '@id': 'schema:LifestyleModification' },\n Ligament: { '@id': 'schema:Ligament' },\n LikeAction: { '@id': 'schema:LikeAction' },\n LimitedAvailability: { '@id': 'schema:LimitedAvailability' },\n LimitedByGuaranteeCharity: { '@id': 'schema:LimitedByGuaranteeCharity' },\n LinkRole: { '@id': 'schema:LinkRole' },\n LiquorStore: { '@id': 'schema:LiquorStore' },\n ListItem: { '@id': 'schema:ListItem' },\n ListPrice: { '@id': 'schema:ListPrice' },\n ListenAction: { '@id': 'schema:ListenAction' },\n LiteraryEvent: { '@id': 'schema:LiteraryEvent' },\n LiveAlbum: { '@id': 'schema:LiveAlbum' },\n LiveBlogPosting: { '@id': 'schema:LiveBlogPosting' },\n LivingWithHealthAspect: { '@id': 'schema:LivingWithHealthAspect' },\n LoanOrCredit: { '@id': 'schema:LoanOrCredit' },\n LocalBusiness: { '@id': 'schema:LocalBusiness' },\n LocationFeatureSpecification: { '@id': 'schema:LocationFeatureSpecification' },\n LockerDelivery: { '@id': 'schema:LockerDelivery' },\n Locksmith: { '@id': 'schema:Locksmith' },\n LodgingBusiness: { '@id': 'schema:LodgingBusiness' },\n LodgingReservation: { '@id': 'schema:LodgingReservation' },\n Longitudinal: { '@id': 'schema:Longitudinal' },\n LoseAction: { '@id': 'schema:LoseAction' },\n LowCalorieDiet: { '@id': 'schema:LowCalorieDiet' },\n LowFatDiet: { '@id': 'schema:LowFatDiet' },\n LowLactoseDiet: { '@id': 'schema:LowLactoseDiet' },\n LowSaltDiet: { '@id': 'schema:LowSaltDiet' },\n Lung: { '@id': 'schema:Lung' },\n LymphaticVessel: { '@id': 'schema:LymphaticVessel' },\n MRI: { '@id': 'schema:MRI' },\n MSRP: { '@id': 'schema:MSRP' },\n Male: { '@id': 'schema:Male' },\n Manuscript: { '@id': 'schema:Manuscript' },\n Map: { '@id': 'schema:Map' },\n MapCategoryType: { '@id': 'schema:MapCategoryType' },\n MarryAction: { '@id': 'schema:MarryAction' },\n Mass: { '@id': 'schema:Mass' },\n MathSolver: { '@id': 'schema:MathSolver' },\n MaximumDoseSchedule: { '@id': 'schema:MaximumDoseSchedule' },\n MayTreatHealthAspect: { '@id': 'schema:MayTreatHealthAspect' },\n MeasurementTypeEnumeration: { '@id': 'schema:MeasurementTypeEnumeration' },\n MediaGallery: { '@id': 'schema:MediaGallery' },\n MediaManipulationRatingEnumeration: {\n '@id': 'schema:MediaManipulationRatingEnumeration',\n },\n MediaObject: { '@id': 'schema:MediaObject' },\n MediaReview: { '@id': 'schema:MediaReview' },\n MediaSubscription: { '@id': 'schema:MediaSubscription' },\n MedicalAudience: { '@id': 'schema:MedicalAudience' },\n MedicalAudienceType: { '@id': 'schema:MedicalAudienceType' },\n MedicalBusiness: { '@id': 'schema:MedicalBusiness' },\n MedicalCause: { '@id': 'schema:MedicalCause' },\n MedicalClinic: { '@id': 'schema:MedicalClinic' },\n MedicalCode: { '@id': 'schema:MedicalCode' },\n MedicalCondition: { '@id': 'schema:MedicalCondition' },\n MedicalConditionStage: { '@id': 'schema:MedicalConditionStage' },\n MedicalContraindication: { '@id': 'schema:MedicalContraindication' },\n MedicalDevice: { '@id': 'schema:MedicalDevice' },\n MedicalDevicePurpose: { '@id': 'schema:MedicalDevicePurpose' },\n MedicalEntity: { '@id': 'schema:MedicalEntity' },\n MedicalEnumeration: { '@id': 'schema:MedicalEnumeration' },\n MedicalEvidenceLevel: { '@id': 'schema:MedicalEvidenceLevel' },\n MedicalGuideline: { '@id': 'schema:MedicalGuideline' },\n MedicalGuidelineContraindication: {\n '@id': 'schema:MedicalGuidelineContraindication',\n },\n MedicalGuidelineRecommendation: {\n '@id': 'schema:MedicalGuidelineRecommendation',\n },\n MedicalImagingTechnique: { '@id': 'schema:MedicalImagingTechnique' },\n MedicalIndication: { '@id': 'schema:MedicalIndication' },\n MedicalIntangible: { '@id': 'schema:MedicalIntangible' },\n MedicalObservationalStudy: { '@id': 'schema:MedicalObservationalStudy' },\n MedicalObservationalStudyDesign: {\n '@id': 'schema:MedicalObservationalStudyDesign',\n },\n MedicalOrganization: { '@id': 'schema:MedicalOrganization' },\n MedicalProcedure: { '@id': 'schema:MedicalProcedure' },\n MedicalProcedureType: { '@id': 'schema:MedicalProcedureType' },\n MedicalResearcher: { '@id': 'schema:MedicalResearcher' },\n MedicalRiskCalculator: { '@id': 'schema:MedicalRiskCalculator' },\n MedicalRiskEstimator: { '@id': 'schema:MedicalRiskEstimator' },\n MedicalRiskFactor: { '@id': 'schema:MedicalRiskFactor' },\n MedicalRiskScore: { '@id': 'schema:MedicalRiskScore' },\n MedicalScholarlyArticle: { '@id': 'schema:MedicalScholarlyArticle' },\n MedicalSign: { '@id': 'schema:MedicalSign' },\n MedicalSignOrSymptom: { '@id': 'schema:MedicalSignOrSymptom' },\n MedicalSpecialty: { '@id': 'schema:MedicalSpecialty' },\n MedicalStudy: { '@id': 'schema:MedicalStudy' },\n MedicalStudyStatus: { '@id': 'schema:MedicalStudyStatus' },\n MedicalSymptom: { '@id': 'schema:MedicalSymptom' },\n MedicalTest: { '@id': 'schema:MedicalTest' },\n MedicalTestPanel: { '@id': 'schema:MedicalTestPanel' },\n MedicalTherapy: { '@id': 'schema:MedicalTherapy' },\n MedicalTrial: { '@id': 'schema:MedicalTrial' },\n MedicalTrialDesign: { '@id': 'schema:MedicalTrialDesign' },\n MedicalWebPage: { '@id': 'schema:MedicalWebPage' },\n MedicineSystem: { '@id': 'schema:MedicineSystem' },\n MeetingRoom: { '@id': 'schema:MeetingRoom' },\n MensClothingStore: { '@id': 'schema:MensClothingStore' },\n Menu: { '@id': 'schema:Menu' },\n MenuItem: { '@id': 'schema:MenuItem' },\n MenuSection: { '@id': 'schema:MenuSection' },\n MerchantReturnEnumeration: { '@id': 'schema:MerchantReturnEnumeration' },\n MerchantReturnFiniteReturnWindow: {\n '@id': 'schema:MerchantReturnFiniteReturnWindow',\n },\n MerchantReturnNotPermitted: { '@id': 'schema:MerchantReturnNotPermitted' },\n MerchantReturnPolicy: { '@id': 'schema:MerchantReturnPolicy' },\n MerchantReturnUnlimitedWindow: {\n '@id': 'schema:MerchantReturnUnlimitedWindow',\n },\n MerchantReturnUnspecified: { '@id': 'schema:MerchantReturnUnspecified' },\n Message: { '@id': 'schema:Message' },\n MiddleSchool: { '@id': 'schema:MiddleSchool' },\n Midwifery: { '@id': 'schema:Midwifery' },\n MinimumAdvertisedPrice: { '@id': 'schema:MinimumAdvertisedPrice' },\n MisconceptionsHealthAspect: { '@id': 'schema:MisconceptionsHealthAspect' },\n MixedEventAttendanceMode: { '@id': 'schema:MixedEventAttendanceMode' },\n MixtapeAlbum: { '@id': 'schema:MixtapeAlbum' },\n MobileApplication: { '@id': 'schema:MobileApplication' },\n MobilePhoneStore: { '@id': 'schema:MobilePhoneStore' },\n Monday: { '@id': 'schema:Monday' },\n MonetaryAmount: { '@id': 'schema:MonetaryAmount' },\n MonetaryAmountDistribution: { '@id': 'schema:MonetaryAmountDistribution' },\n MonetaryGrant: { '@id': 'schema:MonetaryGrant' },\n MoneyTransfer: { '@id': 'schema:MoneyTransfer' },\n MortgageLoan: { '@id': 'schema:MortgageLoan' },\n Mosque: { '@id': 'schema:Mosque' },\n Motel: { '@id': 'schema:Motel' },\n Motorcycle: { '@id': 'schema:Motorcycle' },\n MotorcycleDealer: { '@id': 'schema:MotorcycleDealer' },\n MotorcycleRepair: { '@id': 'schema:MotorcycleRepair' },\n MotorizedBicycle: { '@id': 'schema:MotorizedBicycle' },\n Mountain: { '@id': 'schema:Mountain' },\n MoveAction: { '@id': 'schema:MoveAction' },\n Movie: { '@id': 'schema:Movie' },\n MovieClip: { '@id': 'schema:MovieClip' },\n MovieRentalStore: { '@id': 'schema:MovieRentalStore' },\n MovieSeries: { '@id': 'schema:MovieSeries' },\n MovieTheater: { '@id': 'schema:MovieTheater' },\n MovingCompany: { '@id': 'schema:MovingCompany' },\n MultiCenterTrial: { '@id': 'schema:MultiCenterTrial' },\n MultiPlayer: { '@id': 'schema:MultiPlayer' },\n MulticellularParasite: { '@id': 'schema:MulticellularParasite' },\n Muscle: { '@id': 'schema:Muscle' },\n Musculoskeletal: { '@id': 'schema:Musculoskeletal' },\n MusculoskeletalExam: { '@id': 'schema:MusculoskeletalExam' },\n Museum: { '@id': 'schema:Museum' },\n MusicAlbum: { '@id': 'schema:MusicAlbum' },\n MusicAlbumProductionType: { '@id': 'schema:MusicAlbumProductionType' },\n MusicAlbumReleaseType: { '@id': 'schema:MusicAlbumReleaseType' },\n MusicComposition: { '@id': 'schema:MusicComposition' },\n MusicEvent: { '@id': 'schema:MusicEvent' },\n MusicGroup: { '@id': 'schema:MusicGroup' },\n MusicPlaylist: { '@id': 'schema:MusicPlaylist' },\n MusicRecording: { '@id': 'schema:MusicRecording' },\n MusicRelease: { '@id': 'schema:MusicRelease' },\n MusicReleaseFormatType: { '@id': 'schema:MusicReleaseFormatType' },\n MusicStore: { '@id': 'schema:MusicStore' },\n MusicVenue: { '@id': 'schema:MusicVenue' },\n MusicVideoObject: { '@id': 'schema:MusicVideoObject' },\n NGO: { '@id': 'schema:NGO' },\n NLNonprofitType: { '@id': 'schema:NLNonprofitType' },\n NailSalon: { '@id': 'schema:NailSalon' },\n Neck: { '@id': 'schema:Neck' },\n Nerve: { '@id': 'schema:Nerve' },\n Neuro: { '@id': 'schema:Neuro' },\n Neurologic: { '@id': 'schema:Neurologic' },\n NewCondition: { '@id': 'schema:NewCondition' },\n NewsArticle: { '@id': 'schema:NewsArticle' },\n NewsMediaOrganization: { '@id': 'schema:NewsMediaOrganization' },\n Newspaper: { '@id': 'schema:Newspaper' },\n NightClub: { '@id': 'schema:NightClub' },\n NoninvasiveProcedure: { '@id': 'schema:NoninvasiveProcedure' },\n Nonprofit501a: { '@id': 'schema:Nonprofit501a' },\n Nonprofit501c1: { '@id': 'schema:Nonprofit501c1' },\n Nonprofit501c10: { '@id': 'schema:Nonprofit501c10' },\n Nonprofit501c11: { '@id': 'schema:Nonprofit501c11' },\n Nonprofit501c12: { '@id': 'schema:Nonprofit501c12' },\n Nonprofit501c13: { '@id': 'schema:Nonprofit501c13' },\n Nonprofit501c14: { '@id': 'schema:Nonprofit501c14' },\n Nonprofit501c15: { '@id': 'schema:Nonprofit501c15' },\n Nonprofit501c16: { '@id': 'schema:Nonprofit501c16' },\n Nonprofit501c17: { '@id': 'schema:Nonprofit501c17' },\n Nonprofit501c18: { '@id': 'schema:Nonprofit501c18' },\n Nonprofit501c19: { '@id': 'schema:Nonprofit501c19' },\n Nonprofit501c2: { '@id': 'schema:Nonprofit501c2' },\n Nonprofit501c20: { '@id': 'schema:Nonprofit501c20' },\n Nonprofit501c21: { '@id': 'schema:Nonprofit501c21' },\n Nonprofit501c22: { '@id': 'schema:Nonprofit501c22' },\n Nonprofit501c23: { '@id': 'schema:Nonprofit501c23' },\n Nonprofit501c24: { '@id': 'schema:Nonprofit501c24' },\n Nonprofit501c25: { '@id': 'schema:Nonprofit501c25' },\n Nonprofit501c26: { '@id': 'schema:Nonprofit501c26' },\n Nonprofit501c27: { '@id': 'schema:Nonprofit501c27' },\n Nonprofit501c28: { '@id': 'schema:Nonprofit501c28' },\n Nonprofit501c3: { '@id': 'schema:Nonprofit501c3' },\n Nonprofit501c4: { '@id': 'schema:Nonprofit501c4' },\n Nonprofit501c5: { '@id': 'schema:Nonprofit501c5' },\n Nonprofit501c6: { '@id': 'schema:Nonprofit501c6' },\n Nonprofit501c7: { '@id': 'schema:Nonprofit501c7' },\n Nonprofit501c8: { '@id': 'schema:Nonprofit501c8' },\n Nonprofit501c9: { '@id': 'schema:Nonprofit501c9' },\n Nonprofit501d: { '@id': 'schema:Nonprofit501d' },\n Nonprofit501e: { '@id': 'schema:Nonprofit501e' },\n Nonprofit501f: { '@id': 'schema:Nonprofit501f' },\n Nonprofit501k: { '@id': 'schema:Nonprofit501k' },\n Nonprofit501n: { '@id': 'schema:Nonprofit501n' },\n Nonprofit501q: { '@id': 'schema:Nonprofit501q' },\n Nonprofit527: { '@id': 'schema:Nonprofit527' },\n NonprofitANBI: { '@id': 'schema:NonprofitANBI' },\n NonprofitSBBI: { '@id': 'schema:NonprofitSBBI' },\n NonprofitType: { '@id': 'schema:NonprofitType' },\n Nose: { '@id': 'schema:Nose' },\n NotInForce: { '@id': 'schema:NotInForce' },\n NotYetRecruiting: { '@id': 'schema:NotYetRecruiting' },\n Notary: { '@id': 'schema:Notary' },\n NoteDigitalDocument: { '@id': 'schema:NoteDigitalDocument' },\n Number: { '@id': 'schema:Number' },\n Nursing: { '@id': 'schema:Nursing' },\n NutritionInformation: { '@id': 'schema:NutritionInformation' },\n OTC: { '@id': 'schema:OTC' },\n Observation: { '@id': 'schema:Observation' },\n Observational: { '@id': 'schema:Observational' },\n Obstetric: { '@id': 'schema:Obstetric' },\n Occupation: { '@id': 'schema:Occupation' },\n OccupationalActivity: { '@id': 'schema:OccupationalActivity' },\n OccupationalExperienceRequirements: {\n '@id': 'schema:OccupationalExperienceRequirements',\n },\n OccupationalTherapy: { '@id': 'schema:OccupationalTherapy' },\n OceanBodyOfWater: { '@id': 'schema:OceanBodyOfWater' },\n Offer: { '@id': 'schema:Offer' },\n OfferCatalog: { '@id': 'schema:OfferCatalog' },\n OfferForLease: { '@id': 'schema:OfferForLease' },\n OfferForPurchase: { '@id': 'schema:OfferForPurchase' },\n OfferItemCondition: { '@id': 'schema:OfferItemCondition' },\n OfferShippingDetails: { '@id': 'schema:OfferShippingDetails' },\n OfficeEquipmentStore: { '@id': 'schema:OfficeEquipmentStore' },\n OfficialLegalValue: { '@id': 'schema:OfficialLegalValue' },\n OfflineEventAttendanceMode: { '@id': 'schema:OfflineEventAttendanceMode' },\n OfflinePermanently: { '@id': 'schema:OfflinePermanently' },\n OfflineTemporarily: { '@id': 'schema:OfflineTemporarily' },\n OnDemandEvent: { '@id': 'schema:OnDemandEvent' },\n OnSitePickup: { '@id': 'schema:OnSitePickup' },\n Oncologic: { '@id': 'schema:Oncologic' },\n OneTimePayments: { '@id': 'schema:OneTimePayments' },\n Online: { '@id': 'schema:Online' },\n OnlineEventAttendanceMode: { '@id': 'schema:OnlineEventAttendanceMode' },\n OnlineFull: { '@id': 'schema:OnlineFull' },\n OnlineOnly: { '@id': 'schema:OnlineOnly' },\n OpenTrial: { '@id': 'schema:OpenTrial' },\n OpeningHoursSpecification: { '@id': 'schema:OpeningHoursSpecification' },\n OpinionNewsArticle: { '@id': 'schema:OpinionNewsArticle' },\n Optician: { '@id': 'schema:Optician' },\n Optometric: { '@id': 'schema:Optometric' },\n Order: { '@id': 'schema:Order' },\n OrderAction: { '@id': 'schema:OrderAction' },\n OrderCancelled: { '@id': 'schema:OrderCancelled' },\n OrderDelivered: { '@id': 'schema:OrderDelivered' },\n OrderInTransit: { '@id': 'schema:OrderInTransit' },\n OrderItem: { '@id': 'schema:OrderItem' },\n OrderPaymentDue: { '@id': 'schema:OrderPaymentDue' },\n OrderPickupAvailable: { '@id': 'schema:OrderPickupAvailable' },\n OrderProblem: { '@id': 'schema:OrderProblem' },\n OrderProcessing: { '@id': 'schema:OrderProcessing' },\n OrderReturned: { '@id': 'schema:OrderReturned' },\n OrderStatus: { '@id': 'schema:OrderStatus' },\n Organization: { '@id': 'schema:Organization' },\n OrganizationRole: { '@id': 'schema:OrganizationRole' },\n OrganizeAction: { '@id': 'schema:OrganizeAction' },\n OriginalMediaContent: { '@id': 'schema:OriginalMediaContent' },\n OriginalShippingFees: { '@id': 'schema:OriginalShippingFees' },\n Osteopathic: { '@id': 'schema:Osteopathic' },\n Otolaryngologic: { '@id': 'schema:Otolaryngologic' },\n OutOfStock: { '@id': 'schema:OutOfStock' },\n OutletStore: { '@id': 'schema:OutletStore' },\n OverviewHealthAspect: { '@id': 'schema:OverviewHealthAspect' },\n OwnershipInfo: { '@id': 'schema:OwnershipInfo' },\n PET: { '@id': 'schema:PET' },\n PaidLeave: { '@id': 'schema:PaidLeave' },\n PaintAction: { '@id': 'schema:PaintAction' },\n Painting: { '@id': 'schema:Painting' },\n PalliativeProcedure: { '@id': 'schema:PalliativeProcedure' },\n Paperback: { '@id': 'schema:Paperback' },\n ParcelDelivery: { '@id': 'schema:ParcelDelivery' },\n ParcelService: { '@id': 'schema:ParcelService' },\n ParentAudience: { '@id': 'schema:ParentAudience' },\n ParentalSupport: { '@id': 'schema:ParentalSupport' },\n Park: { '@id': 'schema:Park' },\n ParkingFacility: { '@id': 'schema:ParkingFacility' },\n ParkingMap: { '@id': 'schema:ParkingMap' },\n PartiallyInForce: { '@id': 'schema:PartiallyInForce' },\n Pathology: { '@id': 'schema:Pathology' },\n PathologyTest: { '@id': 'schema:PathologyTest' },\n Patient: { '@id': 'schema:Patient' },\n PatientExperienceHealthAspect: {\n '@id': 'schema:PatientExperienceHealthAspect',\n },\n PawnShop: { '@id': 'schema:PawnShop' },\n PayAction: { '@id': 'schema:PayAction' },\n PaymentAutomaticallyApplied: { '@id': 'schema:PaymentAutomaticallyApplied' },\n PaymentCard: { '@id': 'schema:PaymentCard' },\n PaymentChargeSpecification: { '@id': 'schema:PaymentChargeSpecification' },\n PaymentComplete: { '@id': 'schema:PaymentComplete' },\n PaymentDeclined: { '@id': 'schema:PaymentDeclined' },\n PaymentDue: { '@id': 'schema:PaymentDue' },\n PaymentMethod: { '@id': 'schema:PaymentMethod' },\n PaymentPastDue: { '@id': 'schema:PaymentPastDue' },\n PaymentService: { '@id': 'schema:PaymentService' },\n PaymentStatusType: { '@id': 'schema:PaymentStatusType' },\n Pediatric: { '@id': 'schema:Pediatric' },\n PeopleAudience: { '@id': 'schema:PeopleAudience' },\n PercutaneousProcedure: { '@id': 'schema:PercutaneousProcedure' },\n PerformAction: { '@id': 'schema:PerformAction' },\n PerformanceRole: { '@id': 'schema:PerformanceRole' },\n PerformingArtsTheater: { '@id': 'schema:PerformingArtsTheater' },\n PerformingGroup: { '@id': 'schema:PerformingGroup' },\n Periodical: { '@id': 'schema:Periodical' },\n Permit: { '@id': 'schema:Permit' },\n Person: { '@id': 'schema:Person' },\n PetStore: { '@id': 'schema:PetStore' },\n Pharmacy: { '@id': 'schema:Pharmacy' },\n PharmacySpecialty: { '@id': 'schema:PharmacySpecialty' },\n Photograph: { '@id': 'schema:Photograph' },\n PhotographAction: { '@id': 'schema:PhotographAction' },\n PhysicalActivity: { '@id': 'schema:PhysicalActivity' },\n PhysicalActivityCategory: { '@id': 'schema:PhysicalActivityCategory' },\n PhysicalExam: { '@id': 'schema:PhysicalExam' },\n PhysicalTherapy: { '@id': 'schema:PhysicalTherapy' },\n Physician: { '@id': 'schema:Physician' },\n Physiotherapy: { '@id': 'schema:Physiotherapy' },\n Place: { '@id': 'schema:Place' },\n PlaceOfWorship: { '@id': 'schema:PlaceOfWorship' },\n PlaceboControlledTrial: { '@id': 'schema:PlaceboControlledTrial' },\n PlanAction: { '@id': 'schema:PlanAction' },\n PlasticSurgery: { '@id': 'schema:PlasticSurgery' },\n Play: { '@id': 'schema:Play' },\n PlayAction: { '@id': 'schema:PlayAction' },\n Playground: { '@id': 'schema:Playground' },\n Plumber: { '@id': 'schema:Plumber' },\n PodcastEpisode: { '@id': 'schema:PodcastEpisode' },\n PodcastSeason: { '@id': 'schema:PodcastSeason' },\n PodcastSeries: { '@id': 'schema:PodcastSeries' },\n Podiatric: { '@id': 'schema:Podiatric' },\n PoliceStation: { '@id': 'schema:PoliceStation' },\n Pond: { '@id': 'schema:Pond' },\n PostOffice: { '@id': 'schema:PostOffice' },\n PostalAddress: { '@id': 'schema:PostalAddress' },\n PostalCodeRangeSpecification: { '@id': 'schema:PostalCodeRangeSpecification' },\n Poster: { '@id': 'schema:Poster' },\n PotentialActionStatus: { '@id': 'schema:PotentialActionStatus' },\n PreOrder: { '@id': 'schema:PreOrder' },\n PreOrderAction: { '@id': 'schema:PreOrderAction' },\n PreSale: { '@id': 'schema:PreSale' },\n PregnancyHealthAspect: { '@id': 'schema:PregnancyHealthAspect' },\n PrependAction: { '@id': 'schema:PrependAction' },\n Preschool: { '@id': 'schema:Preschool' },\n PrescriptionOnly: { '@id': 'schema:PrescriptionOnly' },\n PresentationDigitalDocument: { '@id': 'schema:PresentationDigitalDocument' },\n PreventionHealthAspect: { '@id': 'schema:PreventionHealthAspect' },\n PreventionIndication: { '@id': 'schema:PreventionIndication' },\n PriceComponentTypeEnumeration: {\n '@id': 'schema:PriceComponentTypeEnumeration',\n },\n PriceSpecification: { '@id': 'schema:PriceSpecification' },\n PriceTypeEnumeration: { '@id': 'schema:PriceTypeEnumeration' },\n PrimaryCare: { '@id': 'schema:PrimaryCare' },\n Prion: { '@id': 'schema:Prion' },\n Product: { '@id': 'schema:Product' },\n ProductCollection: { '@id': 'schema:ProductCollection' },\n ProductGroup: { '@id': 'schema:ProductGroup' },\n ProductModel: { '@id': 'schema:ProductModel' },\n ProductReturnEnumeration: { '@id': 'schema:ProductReturnEnumeration' },\n ProductReturnFiniteReturnWindow: {\n '@id': 'schema:ProductReturnFiniteReturnWindow',\n },\n ProductReturnNotPermitted: { '@id': 'schema:ProductReturnNotPermitted' },\n ProductReturnPolicy: { '@id': 'schema:ProductReturnPolicy' },\n ProductReturnUnlimitedWindow: { '@id': 'schema:ProductReturnUnlimitedWindow' },\n ProductReturnUnspecified: { '@id': 'schema:ProductReturnUnspecified' },\n ProfessionalService: { '@id': 'schema:ProfessionalService' },\n ProfilePage: { '@id': 'schema:ProfilePage' },\n PrognosisHealthAspect: { '@id': 'schema:PrognosisHealthAspect' },\n ProgramMembership: { '@id': 'schema:ProgramMembership' },\n Project: { '@id': 'schema:Project' },\n PronounceableText: { '@id': 'schema:PronounceableText' },\n Property: { '@id': 'schema:Property' },\n PropertyValue: { '@id': 'schema:PropertyValue' },\n PropertyValueSpecification: { '@id': 'schema:PropertyValueSpecification' },\n Protozoa: { '@id': 'schema:Protozoa' },\n Psychiatric: { '@id': 'schema:Psychiatric' },\n PsychologicalTreatment: { '@id': 'schema:PsychologicalTreatment' },\n PublicHealth: { '@id': 'schema:PublicHealth' },\n PublicHolidays: { '@id': 'schema:PublicHolidays' },\n PublicSwimmingPool: { '@id': 'schema:PublicSwimmingPool' },\n PublicToilet: { '@id': 'schema:PublicToilet' },\n PublicationEvent: { '@id': 'schema:PublicationEvent' },\n PublicationIssue: { '@id': 'schema:PublicationIssue' },\n PublicationVolume: { '@id': 'schema:PublicationVolume' },\n Pulmonary: { '@id': 'schema:Pulmonary' },\n QAPage: { '@id': 'schema:QAPage' },\n QualitativeValue: { '@id': 'schema:QualitativeValue' },\n QuantitativeValue: { '@id': 'schema:QuantitativeValue' },\n QuantitativeValueDistribution: {\n '@id': 'schema:QuantitativeValueDistribution',\n },\n Quantity: { '@id': 'schema:Quantity' },\n Question: { '@id': 'schema:Question' },\n Quiz: { '@id': 'schema:Quiz' },\n Quotation: { '@id': 'schema:Quotation' },\n QuoteAction: { '@id': 'schema:QuoteAction' },\n RVPark: { '@id': 'schema:RVPark' },\n RadiationTherapy: { '@id': 'schema:RadiationTherapy' },\n RadioBroadcastService: { '@id': 'schema:RadioBroadcastService' },\n RadioChannel: { '@id': 'schema:RadioChannel' },\n RadioClip: { '@id': 'schema:RadioClip' },\n RadioEpisode: { '@id': 'schema:RadioEpisode' },\n RadioSeason: { '@id': 'schema:RadioSeason' },\n RadioSeries: { '@id': 'schema:RadioSeries' },\n RadioStation: { '@id': 'schema:RadioStation' },\n Radiography: { '@id': 'schema:Radiography' },\n RandomizedTrial: { '@id': 'schema:RandomizedTrial' },\n Rating: { '@id': 'schema:Rating' },\n ReactAction: { '@id': 'schema:ReactAction' },\n ReadAction: { '@id': 'schema:ReadAction' },\n ReadPermission: { '@id': 'schema:ReadPermission' },\n RealEstateAgent: { '@id': 'schema:RealEstateAgent' },\n RealEstateListing: { '@id': 'schema:RealEstateListing' },\n RearWheelDriveConfiguration: { '@id': 'schema:RearWheelDriveConfiguration' },\n ReceiveAction: { '@id': 'schema:ReceiveAction' },\n Recipe: { '@id': 'schema:Recipe' },\n Recommendation: { '@id': 'schema:Recommendation' },\n RecommendedDoseSchedule: { '@id': 'schema:RecommendedDoseSchedule' },\n Recruiting: { '@id': 'schema:Recruiting' },\n RecyclingCenter: { '@id': 'schema:RecyclingCenter' },\n RefundTypeEnumeration: { '@id': 'schema:RefundTypeEnumeration' },\n RefurbishedCondition: { '@id': 'schema:RefurbishedCondition' },\n RegisterAction: { '@id': 'schema:RegisterAction' },\n Registry: { '@id': 'schema:Registry' },\n ReimbursementCap: { '@id': 'schema:ReimbursementCap' },\n RejectAction: { '@id': 'schema:RejectAction' },\n RelatedTopicsHealthAspect: { '@id': 'schema:RelatedTopicsHealthAspect' },\n RemixAlbum: { '@id': 'schema:RemixAlbum' },\n Renal: { '@id': 'schema:Renal' },\n RentAction: { '@id': 'schema:RentAction' },\n RentalCarReservation: { '@id': 'schema:RentalCarReservation' },\n RentalVehicleUsage: { '@id': 'schema:RentalVehicleUsage' },\n RepaymentSpecification: { '@id': 'schema:RepaymentSpecification' },\n ReplaceAction: { '@id': 'schema:ReplaceAction' },\n ReplyAction: { '@id': 'schema:ReplyAction' },\n Report: { '@id': 'schema:Report' },\n ReportageNewsArticle: { '@id': 'schema:ReportageNewsArticle' },\n ReportedDoseSchedule: { '@id': 'schema:ReportedDoseSchedule' },\n ResearchProject: { '@id': 'schema:ResearchProject' },\n Researcher: { '@id': 'schema:Researcher' },\n Reservation: { '@id': 'schema:Reservation' },\n ReservationCancelled: { '@id': 'schema:ReservationCancelled' },\n ReservationConfirmed: { '@id': 'schema:ReservationConfirmed' },\n ReservationHold: { '@id': 'schema:ReservationHold' },\n ReservationPackage: { '@id': 'schema:ReservationPackage' },\n ReservationPending: { '@id': 'schema:ReservationPending' },\n ReservationStatusType: { '@id': 'schema:ReservationStatusType' },\n ReserveAction: { '@id': 'schema:ReserveAction' },\n Reservoir: { '@id': 'schema:Reservoir' },\n Residence: { '@id': 'schema:Residence' },\n Resort: { '@id': 'schema:Resort' },\n RespiratoryTherapy: { '@id': 'schema:RespiratoryTherapy' },\n Restaurant: { '@id': 'schema:Restaurant' },\n RestockingFees: { '@id': 'schema:RestockingFees' },\n RestrictedDiet: { '@id': 'schema:RestrictedDiet' },\n ResultsAvailable: { '@id': 'schema:ResultsAvailable' },\n ResultsNotAvailable: { '@id': 'schema:ResultsNotAvailable' },\n ResumeAction: { '@id': 'schema:ResumeAction' },\n Retail: { '@id': 'schema:Retail' },\n ReturnAction: { '@id': 'schema:ReturnAction' },\n ReturnFeesEnumeration: { '@id': 'schema:ReturnFeesEnumeration' },\n ReturnShippingFees: { '@id': 'schema:ReturnShippingFees' },\n Review: { '@id': 'schema:Review' },\n ReviewAction: { '@id': 'schema:ReviewAction' },\n ReviewNewsArticle: { '@id': 'schema:ReviewNewsArticle' },\n Rheumatologic: { '@id': 'schema:Rheumatologic' },\n RightHandDriving: { '@id': 'schema:RightHandDriving' },\n RisksOrComplicationsHealthAspect: {\n '@id': 'schema:RisksOrComplicationsHealthAspect',\n },\n RiverBodyOfWater: { '@id': 'schema:RiverBodyOfWater' },\n Role: { '@id': 'schema:Role' },\n RoofingContractor: { '@id': 'schema:RoofingContractor' },\n Room: { '@id': 'schema:Room' },\n RsvpAction: { '@id': 'schema:RsvpAction' },\n RsvpResponseMaybe: { '@id': 'schema:RsvpResponseMaybe' },\n RsvpResponseNo: { '@id': 'schema:RsvpResponseNo' },\n RsvpResponseType: { '@id': 'schema:RsvpResponseType' },\n RsvpResponseYes: { '@id': 'schema:RsvpResponseYes' },\n SRP: { '@id': 'schema:SRP' },\n SafetyHealthAspect: { '@id': 'schema:SafetyHealthAspect' },\n SaleEvent: { '@id': 'schema:SaleEvent' },\n SalePrice: { '@id': 'schema:SalePrice' },\n SatireOrParodyContent: { '@id': 'schema:SatireOrParodyContent' },\n SatiricalArticle: { '@id': 'schema:SatiricalArticle' },\n Saturday: { '@id': 'schema:Saturday' },\n Schedule: { '@id': 'schema:Schedule' },\n ScheduleAction: { '@id': 'schema:ScheduleAction' },\n ScholarlyArticle: { '@id': 'schema:ScholarlyArticle' },\n School: { '@id': 'schema:School' },\n SchoolDistrict: { '@id': 'schema:SchoolDistrict' },\n ScreeningEvent: { '@id': 'schema:ScreeningEvent' },\n ScreeningHealthAspect: { '@id': 'schema:ScreeningHealthAspect' },\n Sculpture: { '@id': 'schema:Sculpture' },\n SeaBodyOfWater: { '@id': 'schema:SeaBodyOfWater' },\n SearchAction: { '@id': 'schema:SearchAction' },\n SearchResultsPage: { '@id': 'schema:SearchResultsPage' },\n Season: { '@id': 'schema:Season' },\n Seat: { '@id': 'schema:Seat' },\n SeatingMap: { '@id': 'schema:SeatingMap' },\n SeeDoctorHealthAspect: { '@id': 'schema:SeeDoctorHealthAspect' },\n SeekToAction: { '@id': 'schema:SeekToAction' },\n SelfCareHealthAspect: { '@id': 'schema:SelfCareHealthAspect' },\n SelfStorage: { '@id': 'schema:SelfStorage' },\n SellAction: { '@id': 'schema:SellAction' },\n SendAction: { '@id': 'schema:SendAction' },\n Series: { '@id': 'schema:Series' },\n Service: { '@id': 'schema:Service' },\n ServiceChannel: { '@id': 'schema:ServiceChannel' },\n ShareAction: { '@id': 'schema:ShareAction' },\n SheetMusic: { '@id': 'schema:SheetMusic' },\n ShippingDeliveryTime: { '@id': 'schema:ShippingDeliveryTime' },\n ShippingRateSettings: { '@id': 'schema:ShippingRateSettings' },\n ShoeStore: { '@id': 'schema:ShoeStore' },\n ShoppingCenter: { '@id': 'schema:ShoppingCenter' },\n ShortStory: { '@id': 'schema:ShortStory' },\n SideEffectsHealthAspect: { '@id': 'schema:SideEffectsHealthAspect' },\n SingleBlindedTrial: { '@id': 'schema:SingleBlindedTrial' },\n SingleCenterTrial: { '@id': 'schema:SingleCenterTrial' },\n SingleFamilyResidence: { '@id': 'schema:SingleFamilyResidence' },\n SinglePlayer: { '@id': 'schema:SinglePlayer' },\n SingleRelease: { '@id': 'schema:SingleRelease' },\n SiteNavigationElement: { '@id': 'schema:SiteNavigationElement' },\n SizeGroupEnumeration: { '@id': 'schema:SizeGroupEnumeration' },\n SizeSpecification: { '@id': 'schema:SizeSpecification' },\n SizeSystemEnumeration: { '@id': 'schema:SizeSystemEnumeration' },\n SizeSystemImperial: { '@id': 'schema:SizeSystemImperial' },\n SizeSystemMetric: { '@id': 'schema:SizeSystemMetric' },\n SkiResort: { '@id': 'schema:SkiResort' },\n Skin: { '@id': 'schema:Skin' },\n SocialEvent: { '@id': 'schema:SocialEvent' },\n SocialMediaPosting: { '@id': 'schema:SocialMediaPosting' },\n SoftwareApplication: { '@id': 'schema:SoftwareApplication' },\n SoftwareSourceCode: { '@id': 'schema:SoftwareSourceCode' },\n SoldOut: { '@id': 'schema:SoldOut' },\n SolveMathAction: { '@id': 'schema:SolveMathAction' },\n SomeProducts: { '@id': 'schema:SomeProducts' },\n SoundtrackAlbum: { '@id': 'schema:SoundtrackAlbum' },\n SpeakableSpecification: { '@id': 'schema:SpeakableSpecification' },\n SpecialAnnouncement: { '@id': 'schema:SpecialAnnouncement' },\n Specialty: { '@id': 'schema:Specialty' },\n SpeechPathology: { '@id': 'schema:SpeechPathology' },\n SpokenWordAlbum: { '@id': 'schema:SpokenWordAlbum' },\n SportingGoodsStore: { '@id': 'schema:SportingGoodsStore' },\n SportsActivityLocation: { '@id': 'schema:SportsActivityLocation' },\n SportsClub: { '@id': 'schema:SportsClub' },\n SportsEvent: { '@id': 'schema:SportsEvent' },\n SportsOrganization: { '@id': 'schema:SportsOrganization' },\n SportsTeam: { '@id': 'schema:SportsTeam' },\n SpreadsheetDigitalDocument: { '@id': 'schema:SpreadsheetDigitalDocument' },\n StadiumOrArena: { '@id': 'schema:StadiumOrArena' },\n StagedContent: { '@id': 'schema:StagedContent' },\n StagesHealthAspect: { '@id': 'schema:StagesHealthAspect' },\n State: { '@id': 'schema:State' },\n StatisticalPopulation: { '@id': 'schema:StatisticalPopulation' },\n StatusEnumeration: { '@id': 'schema:StatusEnumeration' },\n SteeringPositionValue: { '@id': 'schema:SteeringPositionValue' },\n Store: { '@id': 'schema:Store' },\n StoreCreditRefund: { '@id': 'schema:StoreCreditRefund' },\n StrengthTraining: { '@id': 'schema:StrengthTraining' },\n StructuredValue: { '@id': 'schema:StructuredValue' },\n StudioAlbum: { '@id': 'schema:StudioAlbum' },\n StupidType: { '@id': 'schema:StupidType' },\n SubscribeAction: { '@id': 'schema:SubscribeAction' },\n Subscription: { '@id': 'schema:Subscription' },\n Substance: { '@id': 'schema:Substance' },\n SubwayStation: { '@id': 'schema:SubwayStation' },\n Suite: { '@id': 'schema:Suite' },\n Sunday: { '@id': 'schema:Sunday' },\n SuperficialAnatomy: { '@id': 'schema:SuperficialAnatomy' },\n Surgical: { '@id': 'schema:Surgical' },\n SurgicalProcedure: { '@id': 'schema:SurgicalProcedure' },\n SuspendAction: { '@id': 'schema:SuspendAction' },\n Suspended: { '@id': 'schema:Suspended' },\n SymptomsHealthAspect: { '@id': 'schema:SymptomsHealthAspect' },\n Synagogue: { '@id': 'schema:Synagogue' },\n TVClip: { '@id': 'schema:TVClip' },\n TVEpisode: { '@id': 'schema:TVEpisode' },\n TVSeason: { '@id': 'schema:TVSeason' },\n TVSeries: { '@id': 'schema:TVSeries' },\n Table: { '@id': 'schema:Table' },\n TakeAction: { '@id': 'schema:TakeAction' },\n TattooParlor: { '@id': 'schema:TattooParlor' },\n Taxi: { '@id': 'schema:Taxi' },\n TaxiReservation: { '@id': 'schema:TaxiReservation' },\n TaxiService: { '@id': 'schema:TaxiService' },\n TaxiStand: { '@id': 'schema:TaxiStand' },\n TaxiVehicleUsage: { '@id': 'schema:TaxiVehicleUsage' },\n TechArticle: { '@id': 'schema:TechArticle' },\n TelevisionChannel: { '@id': 'schema:TelevisionChannel' },\n TelevisionStation: { '@id': 'schema:TelevisionStation' },\n TennisComplex: { '@id': 'schema:TennisComplex' },\n Terminated: { '@id': 'schema:Terminated' },\n Text: { '@id': 'schema:Text' },\n TextDigitalDocument: { '@id': 'schema:TextDigitalDocument' },\n TheaterEvent: { '@id': 'schema:TheaterEvent' },\n TheaterGroup: { '@id': 'schema:TheaterGroup' },\n Therapeutic: { '@id': 'schema:Therapeutic' },\n TherapeuticProcedure: { '@id': 'schema:TherapeuticProcedure' },\n Thesis: { '@id': 'schema:Thesis' },\n Thing: { '@id': 'schema:Thing' },\n Throat: { '@id': 'schema:Throat' },\n Thursday: { '@id': 'schema:Thursday' },\n Ticket: { '@id': 'schema:Ticket' },\n TieAction: { '@id': 'schema:TieAction' },\n Time: { '@id': 'schema:Time' },\n TipAction: { '@id': 'schema:TipAction' },\n TireShop: { '@id': 'schema:TireShop' },\n TollFree: { '@id': 'schema:TollFree' },\n TouristAttraction: { '@id': 'schema:TouristAttraction' },\n TouristDestination: { '@id': 'schema:TouristDestination' },\n TouristInformationCenter: { '@id': 'schema:TouristInformationCenter' },\n TouristTrip: { '@id': 'schema:TouristTrip' },\n Toxicologic: { '@id': 'schema:Toxicologic' },\n ToyStore: { '@id': 'schema:ToyStore' },\n TrackAction: { '@id': 'schema:TrackAction' },\n TradeAction: { '@id': 'schema:TradeAction' },\n TraditionalChinese: { '@id': 'schema:TraditionalChinese' },\n TrainReservation: { '@id': 'schema:TrainReservation' },\n TrainStation: { '@id': 'schema:TrainStation' },\n TrainTrip: { '@id': 'schema:TrainTrip' },\n TransferAction: { '@id': 'schema:TransferAction' },\n TransformedContent: { '@id': 'schema:TransformedContent' },\n TransitMap: { '@id': 'schema:TransitMap' },\n TravelAction: { '@id': 'schema:TravelAction' },\n TravelAgency: { '@id': 'schema:TravelAgency' },\n TreatmentIndication: { '@id': 'schema:TreatmentIndication' },\n TreatmentsHealthAspect: { '@id': 'schema:TreatmentsHealthAspect' },\n Trip: { '@id': 'schema:Trip' },\n TripleBlindedTrial: { '@id': 'schema:TripleBlindedTrial' },\n True: { '@id': 'schema:True' },\n Tuesday: { '@id': 'schema:Tuesday' },\n TypeAndQuantityNode: { '@id': 'schema:TypeAndQuantityNode' },\n TypesHealthAspect: { '@id': 'schema:TypesHealthAspect' },\n UKNonprofitType: { '@id': 'schema:UKNonprofitType' },\n UKTrust: { '@id': 'schema:UKTrust' },\n URL: { '@id': 'schema:URL' },\n USNonprofitType: { '@id': 'schema:USNonprofitType' },\n Ultrasound: { '@id': 'schema:Ultrasound' },\n UnRegisterAction: { '@id': 'schema:UnRegisterAction' },\n UnemploymentSupport: { '@id': 'schema:UnemploymentSupport' },\n UnincorporatedAssociationCharity: {\n '@id': 'schema:UnincorporatedAssociationCharity',\n },\n UnitPriceSpecification: { '@id': 'schema:UnitPriceSpecification' },\n UnofficialLegalValue: { '@id': 'schema:UnofficialLegalValue' },\n UpdateAction: { '@id': 'schema:UpdateAction' },\n Urologic: { '@id': 'schema:Urologic' },\n UsageOrScheduleHealthAspect: { '@id': 'schema:UsageOrScheduleHealthAspect' },\n UseAction: { '@id': 'schema:UseAction' },\n UsedCondition: { '@id': 'schema:UsedCondition' },\n UserBlocks: { '@id': 'schema:UserBlocks' },\n UserCheckins: { '@id': 'schema:UserCheckins' },\n UserComments: { '@id': 'schema:UserComments' },\n UserDownloads: { '@id': 'schema:UserDownloads' },\n UserInteraction: { '@id': 'schema:UserInteraction' },\n UserLikes: { '@id': 'schema:UserLikes' },\n UserPageVisits: { '@id': 'schema:UserPageVisits' },\n UserPlays: { '@id': 'schema:UserPlays' },\n UserPlusOnes: { '@id': 'schema:UserPlusOnes' },\n UserReview: { '@id': 'schema:UserReview' },\n UserTweets: { '@id': 'schema:UserTweets' },\n VeganDiet: { '@id': 'schema:VeganDiet' },\n VegetarianDiet: { '@id': 'schema:VegetarianDiet' },\n Vehicle: { '@id': 'schema:Vehicle' },\n Vein: { '@id': 'schema:Vein' },\n VenueMap: { '@id': 'schema:VenueMap' },\n Vessel: { '@id': 'schema:Vessel' },\n VeterinaryCare: { '@id': 'schema:VeterinaryCare' },\n VideoGallery: { '@id': 'schema:VideoGallery' },\n VideoGame: { '@id': 'schema:VideoGame' },\n VideoGameClip: { '@id': 'schema:VideoGameClip' },\n VideoGameSeries: { '@id': 'schema:VideoGameSeries' },\n VideoObject: { '@id': 'schema:VideoObject' },\n ViewAction: { '@id': 'schema:ViewAction' },\n VinylFormat: { '@id': 'schema:VinylFormat' },\n VirtualLocation: { '@id': 'schema:VirtualLocation' },\n Virus: { '@id': 'schema:Virus' },\n VisualArtsEvent: { '@id': 'schema:VisualArtsEvent' },\n VisualArtwork: { '@id': 'schema:VisualArtwork' },\n VitalSign: { '@id': 'schema:VitalSign' },\n Volcano: { '@id': 'schema:Volcano' },\n VoteAction: { '@id': 'schema:VoteAction' },\n WPAdBlock: { '@id': 'schema:WPAdBlock' },\n WPFooter: { '@id': 'schema:WPFooter' },\n WPHeader: { '@id': 'schema:WPHeader' },\n WPSideBar: { '@id': 'schema:WPSideBar' },\n WantAction: { '@id': 'schema:WantAction' },\n WarrantyPromise: { '@id': 'schema:WarrantyPromise' },\n WarrantyScope: { '@id': 'schema:WarrantyScope' },\n WatchAction: { '@id': 'schema:WatchAction' },\n Waterfall: { '@id': 'schema:Waterfall' },\n WearAction: { '@id': 'schema:WearAction' },\n WearableMeasurementBack: { '@id': 'schema:WearableMeasurementBack' },\n WearableMeasurementChestOrBust: {\n '@id': 'schema:WearableMeasurementChestOrBust',\n },\n WearableMeasurementCollar: { '@id': 'schema:WearableMeasurementCollar' },\n WearableMeasurementCup: { '@id': 'schema:WearableMeasurementCup' },\n WearableMeasurementHeight: { '@id': 'schema:WearableMeasurementHeight' },\n WearableMeasurementHips: { '@id': 'schema:WearableMeasurementHips' },\n WearableMeasurementInseam: { '@id': 'schema:WearableMeasurementInseam' },\n WearableMeasurementLength: { '@id': 'schema:WearableMeasurementLength' },\n WearableMeasurementOutsideLeg: {\n '@id': 'schema:WearableMeasurementOutsideLeg',\n },\n WearableMeasurementSleeve: { '@id': 'schema:WearableMeasurementSleeve' },\n WearableMeasurementTypeEnumeration: {\n '@id': 'schema:WearableMeasurementTypeEnumeration',\n },\n WearableMeasurementWaist: { '@id': 'schema:WearableMeasurementWaist' },\n WearableMeasurementWidth: { '@id': 'schema:WearableMeasurementWidth' },\n WearableSizeGroupBig: { '@id': 'schema:WearableSizeGroupBig' },\n WearableSizeGroupBoys: { '@id': 'schema:WearableSizeGroupBoys' },\n WearableSizeGroupEnumeration: { '@id': 'schema:WearableSizeGroupEnumeration' },\n WearableSizeGroupExtraShort: { '@id': 'schema:WearableSizeGroupExtraShort' },\n WearableSizeGroupExtraTall: { '@id': 'schema:WearableSizeGroupExtraTall' },\n WearableSizeGroupGirls: { '@id': 'schema:WearableSizeGroupGirls' },\n WearableSizeGroupHusky: { '@id': 'schema:WearableSizeGroupHusky' },\n WearableSizeGroupInfants: { '@id': 'schema:WearableSizeGroupInfants' },\n WearableSizeGroupJuniors: { '@id': 'schema:WearableSizeGroupJuniors' },\n WearableSizeGroupMaternity: { '@id': 'schema:WearableSizeGroupMaternity' },\n WearableSizeGroupMens: { '@id': 'schema:WearableSizeGroupMens' },\n WearableSizeGroupMisses: { '@id': 'schema:WearableSizeGroupMisses' },\n WearableSizeGroupPetite: { '@id': 'schema:WearableSizeGroupPetite' },\n WearableSizeGroupPlus: { '@id': 'schema:WearableSizeGroupPlus' },\n WearableSizeGroupRegular: { '@id': 'schema:WearableSizeGroupRegular' },\n WearableSizeGroupShort: { '@id': 'schema:WearableSizeGroupShort' },\n WearableSizeGroupTall: { '@id': 'schema:WearableSizeGroupTall' },\n WearableSizeGroupWomens: { '@id': 'schema:WearableSizeGroupWomens' },\n WearableSizeSystemAU: { '@id': 'schema:WearableSizeSystemAU' },\n WearableSizeSystemBR: { '@id': 'schema:WearableSizeSystemBR' },\n WearableSizeSystemCN: { '@id': 'schema:WearableSizeSystemCN' },\n WearableSizeSystemContinental: {\n '@id': 'schema:WearableSizeSystemContinental',\n },\n WearableSizeSystemDE: { '@id': 'schema:WearableSizeSystemDE' },\n WearableSizeSystemEN13402: { '@id': 'schema:WearableSizeSystemEN13402' },\n WearableSizeSystemEnumeration: {\n '@id': 'schema:WearableSizeSystemEnumeration',\n },\n WearableSizeSystemEurope: { '@id': 'schema:WearableSizeSystemEurope' },\n WearableSizeSystemFR: { '@id': 'schema:WearableSizeSystemFR' },\n WearableSizeSystemGS1: { '@id': 'schema:WearableSizeSystemGS1' },\n WearableSizeSystemIT: { '@id': 'schema:WearableSizeSystemIT' },\n WearableSizeSystemJP: { '@id': 'schema:WearableSizeSystemJP' },\n WearableSizeSystemMX: { '@id': 'schema:WearableSizeSystemMX' },\n WearableSizeSystemUK: { '@id': 'schema:WearableSizeSystemUK' },\n WearableSizeSystemUS: { '@id': 'schema:WearableSizeSystemUS' },\n WebAPI: { '@id': 'schema:WebAPI' },\n WebApplication: { '@id': 'schema:WebApplication' },\n WebContent: { '@id': 'schema:WebContent' },\n WebPage: { '@id': 'schema:WebPage' },\n WebPageElement: { '@id': 'schema:WebPageElement' },\n WebSite: { '@id': 'schema:WebSite' },\n Wednesday: { '@id': 'schema:Wednesday' },\n WesternConventional: { '@id': 'schema:WesternConventional' },\n Wholesale: { '@id': 'schema:Wholesale' },\n WholesaleStore: { '@id': 'schema:WholesaleStore' },\n WinAction: { '@id': 'schema:WinAction' },\n Winery: { '@id': 'schema:Winery' },\n Withdrawn: { '@id': 'schema:Withdrawn' },\n WorkBasedProgram: { '@id': 'schema:WorkBasedProgram' },\n WorkersUnion: { '@id': 'schema:WorkersUnion' },\n WriteAction: { '@id': 'schema:WriteAction' },\n WritePermission: { '@id': 'schema:WritePermission' },\n XPathType: { '@id': 'schema:XPathType' },\n XRay: { '@id': 'schema:XRay' },\n ZoneBoardingPolicy: { '@id': 'schema:ZoneBoardingPolicy' },\n Zoo: { '@id': 'schema:Zoo' },\n about: { '@id': 'schema:about' },\n abridged: { '@id': 'schema:abridged' },\n abstract: { '@id': 'schema:abstract' },\n accelerationTime: { '@id': 'schema:accelerationTime' },\n acceptedAnswer: { '@id': 'schema:acceptedAnswer' },\n acceptedOffer: { '@id': 'schema:acceptedOffer' },\n acceptedPaymentMethod: { '@id': 'schema:acceptedPaymentMethod' },\n acceptsReservations: { '@id': 'schema:acceptsReservations' },\n accessCode: { '@id': 'schema:accessCode' },\n accessMode: { '@id': 'schema:accessMode' },\n accessModeSufficient: { '@id': 'schema:accessModeSufficient' },\n accessibilityAPI: { '@id': 'schema:accessibilityAPI' },\n accessibilityControl: { '@id': 'schema:accessibilityControl' },\n accessibilityFeature: { '@id': 'schema:accessibilityFeature' },\n accessibilityHazard: { '@id': 'schema:accessibilityHazard' },\n accessibilitySummary: { '@id': 'schema:accessibilitySummary' },\n accommodationCategory: { '@id': 'schema:accommodationCategory' },\n accommodationFloorPlan: { '@id': 'schema:accommodationFloorPlan' },\n accountId: { '@id': 'schema:accountId' },\n accountMinimumInflow: { '@id': 'schema:accountMinimumInflow' },\n accountOverdraftLimit: { '@id': 'schema:accountOverdraftLimit' },\n accountablePerson: { '@id': 'schema:accountablePerson' },\n acquireLicensePage: { '@id': 'schema:acquireLicensePage', '@type': '@id' },\n acquiredFrom: { '@id': 'schema:acquiredFrom' },\n acrissCode: { '@id': 'schema:acrissCode' },\n actionAccessibilityRequirement: {\n '@id': 'schema:actionAccessibilityRequirement',\n },\n actionApplication: { '@id': 'schema:actionApplication' },\n actionOption: { '@id': 'schema:actionOption' },\n actionPlatform: { '@id': 'schema:actionPlatform' },\n actionStatus: { '@id': 'schema:actionStatus' },\n actionableFeedbackPolicy: {\n '@id': 'schema:actionableFeedbackPolicy',\n '@type': '@id',\n },\n activeIngredient: { '@id': 'schema:activeIngredient' },\n activityDuration: { '@id': 'schema:activityDuration' },\n activityFrequency: { '@id': 'schema:activityFrequency' },\n actor: { '@id': 'schema:actor' },\n actors: { '@id': 'schema:actors' },\n addOn: { '@id': 'schema:addOn' },\n additionalName: { '@id': 'schema:additionalName' },\n additionalNumberOfGuests: { '@id': 'schema:additionalNumberOfGuests' },\n additionalProperty: { '@id': 'schema:additionalProperty' },\n additionalType: { '@id': 'schema:additionalType', '@type': '@id' },\n additionalVariable: { '@id': 'schema:additionalVariable' },\n address: { '@id': 'schema:address' },\n addressCountry: { '@id': 'schema:addressCountry' },\n addressLocality: { '@id': 'schema:addressLocality' },\n addressRegion: { '@id': 'schema:addressRegion' },\n administrationRoute: { '@id': 'schema:administrationRoute' },\n advanceBookingRequirement: { '@id': 'schema:advanceBookingRequirement' },\n adverseOutcome: { '@id': 'schema:adverseOutcome' },\n affectedBy: { '@id': 'schema:affectedBy' },\n affiliation: { '@id': 'schema:affiliation' },\n afterMedia: { '@id': 'schema:afterMedia', '@type': '@id' },\n agent: { '@id': 'schema:agent' },\n aggregateRating: { '@id': 'schema:aggregateRating' },\n aircraft: { '@id': 'schema:aircraft' },\n album: { '@id': 'schema:album' },\n albumProductionType: { '@id': 'schema:albumProductionType' },\n albumRelease: { '@id': 'schema:albumRelease' },\n albumReleaseType: { '@id': 'schema:albumReleaseType' },\n albums: { '@id': 'schema:albums' },\n alcoholWarning: { '@id': 'schema:alcoholWarning' },\n algorithm: { '@id': 'schema:algorithm' },\n alignmentType: { '@id': 'schema:alignmentType' },\n alternateName: { '@id': 'schema:alternateName' },\n alternativeHeadline: { '@id': 'schema:alternativeHeadline' },\n alumni: { '@id': 'schema:alumni' },\n alumniOf: { '@id': 'schema:alumniOf' },\n amenityFeature: { '@id': 'schema:amenityFeature' },\n amount: { '@id': 'schema:amount' },\n amountOfThisGood: { '@id': 'schema:amountOfThisGood' },\n announcementLocation: { '@id': 'schema:announcementLocation' },\n annualPercentageRate: { '@id': 'schema:annualPercentageRate' },\n answerCount: { '@id': 'schema:answerCount' },\n answerExplanation: { '@id': 'schema:answerExplanation' },\n antagonist: { '@id': 'schema:antagonist' },\n appearance: { '@id': 'schema:appearance' },\n applicableLocation: { '@id': 'schema:applicableLocation' },\n applicantLocationRequirements: {\n '@id': 'schema:applicantLocationRequirements',\n },\n application: { '@id': 'schema:application' },\n applicationCategory: { '@id': 'schema:applicationCategory' },\n applicationContact: { '@id': 'schema:applicationContact' },\n applicationDeadline: { '@id': 'schema:applicationDeadline', '@type': 'Date' },\n applicationStartDate: { '@id': 'schema:applicationStartDate', '@type': 'Date' },\n applicationSubCategory: { '@id': 'schema:applicationSubCategory' },\n applicationSuite: { '@id': 'schema:applicationSuite' },\n appliesToDeliveryMethod: { '@id': 'schema:appliesToDeliveryMethod' },\n appliesToPaymentMethod: { '@id': 'schema:appliesToPaymentMethod' },\n archiveHeld: { '@id': 'schema:archiveHeld' },\n area: { '@id': 'schema:area' },\n areaServed: { '@id': 'schema:areaServed' },\n arrivalAirport: { '@id': 'schema:arrivalAirport' },\n arrivalBoatTerminal: { '@id': 'schema:arrivalBoatTerminal' },\n arrivalBusStop: { '@id': 'schema:arrivalBusStop' },\n arrivalGate: { '@id': 'schema:arrivalGate' },\n arrivalPlatform: { '@id': 'schema:arrivalPlatform' },\n arrivalStation: { '@id': 'schema:arrivalStation' },\n arrivalTerminal: { '@id': 'schema:arrivalTerminal' },\n arrivalTime: { '@id': 'schema:arrivalTime' },\n artEdition: { '@id': 'schema:artEdition' },\n artMedium: { '@id': 'schema:artMedium' },\n arterialBranch: { '@id': 'schema:arterialBranch' },\n artform: { '@id': 'schema:artform' },\n articleBody: { '@id': 'schema:articleBody' },\n articleSection: { '@id': 'schema:articleSection' },\n artist: { '@id': 'schema:artist' },\n artworkSurface: { '@id': 'schema:artworkSurface' },\n aspect: { '@id': 'schema:aspect' },\n assembly: { '@id': 'schema:assembly' },\n assemblyVersion: { '@id': 'schema:assemblyVersion' },\n assesses: { '@id': 'schema:assesses' },\n associatedAnatomy: { '@id': 'schema:associatedAnatomy' },\n associatedArticle: { '@id': 'schema:associatedArticle' },\n associatedMedia: { '@id': 'schema:associatedMedia' },\n associatedPathophysiology: { '@id': 'schema:associatedPathophysiology' },\n athlete: { '@id': 'schema:athlete' },\n attendee: { '@id': 'schema:attendee' },\n attendees: { '@id': 'schema:attendees' },\n audience: { '@id': 'schema:audience' },\n audienceType: { '@id': 'schema:audienceType' },\n audio: { '@id': 'schema:audio' },\n authenticator: { '@id': 'schema:authenticator' },\n author: { '@id': 'schema:author' },\n availability: { '@id': 'schema:availability' },\n availabilityEnds: { '@id': 'schema:availabilityEnds', '@type': 'Date' },\n availabilityStarts: { '@id': 'schema:availabilityStarts', '@type': 'Date' },\n availableAtOrFrom: { '@id': 'schema:availableAtOrFrom' },\n availableChannel: { '@id': 'schema:availableChannel' },\n availableDeliveryMethod: { '@id': 'schema:availableDeliveryMethod' },\n availableFrom: { '@id': 'schema:availableFrom' },\n availableIn: { '@id': 'schema:availableIn' },\n availableLanguage: { '@id': 'schema:availableLanguage' },\n availableOnDevice: { '@id': 'schema:availableOnDevice' },\n availableService: { '@id': 'schema:availableService' },\n availableStrength: { '@id': 'schema:availableStrength' },\n availableTest: { '@id': 'schema:availableTest' },\n availableThrough: { '@id': 'schema:availableThrough' },\n award: { '@id': 'schema:award' },\n awards: { '@id': 'schema:awards' },\n awayTeam: { '@id': 'schema:awayTeam' },\n backstory: { '@id': 'schema:backstory' },\n bankAccountType: { '@id': 'schema:bankAccountType' },\n baseSalary: { '@id': 'schema:baseSalary' },\n bccRecipient: { '@id': 'schema:bccRecipient' },\n bed: { '@id': 'schema:bed' },\n beforeMedia: { '@id': 'schema:beforeMedia', '@type': '@id' },\n beneficiaryBank: { '@id': 'schema:beneficiaryBank' },\n benefits: { '@id': 'schema:benefits' },\n benefitsSummaryUrl: { '@id': 'schema:benefitsSummaryUrl', '@type': '@id' },\n bestRating: { '@id': 'schema:bestRating' },\n billingAddress: { '@id': 'schema:billingAddress' },\n billingDuration: { '@id': 'schema:billingDuration' },\n billingIncrement: { '@id': 'schema:billingIncrement' },\n billingPeriod: { '@id': 'schema:billingPeriod' },\n billingStart: { '@id': 'schema:billingStart' },\n biomechnicalClass: { '@id': 'schema:biomechnicalClass' },\n birthDate: { '@id': 'schema:birthDate', '@type': 'Date' },\n birthPlace: { '@id': 'schema:birthPlace' },\n bitrate: { '@id': 'schema:bitrate' },\n blogPost: { '@id': 'schema:blogPost' },\n blogPosts: { '@id': 'schema:blogPosts' },\n bloodSupply: { '@id': 'schema:bloodSupply' },\n boardingGroup: { '@id': 'schema:boardingGroup' },\n boardingPolicy: { '@id': 'schema:boardingPolicy' },\n bodyLocation: { '@id': 'schema:bodyLocation' },\n bodyType: { '@id': 'schema:bodyType' },\n bookEdition: { '@id': 'schema:bookEdition' },\n bookFormat: { '@id': 'schema:bookFormat' },\n bookingAgent: { '@id': 'schema:bookingAgent' },\n bookingTime: { '@id': 'schema:bookingTime' },\n borrower: { '@id': 'schema:borrower' },\n box: { '@id': 'schema:box' },\n branch: { '@id': 'schema:branch' },\n branchCode: { '@id': 'schema:branchCode' },\n branchOf: { '@id': 'schema:branchOf' },\n brand: { '@id': 'schema:brand' },\n breadcrumb: { '@id': 'schema:breadcrumb' },\n breastfeedingWarning: { '@id': 'schema:breastfeedingWarning' },\n broadcastAffiliateOf: { '@id': 'schema:broadcastAffiliateOf' },\n broadcastChannelId: { '@id': 'schema:broadcastChannelId' },\n broadcastDisplayName: { '@id': 'schema:broadcastDisplayName' },\n broadcastFrequency: { '@id': 'schema:broadcastFrequency' },\n broadcastFrequencyValue: { '@id': 'schema:broadcastFrequencyValue' },\n broadcastOfEvent: { '@id': 'schema:broadcastOfEvent' },\n broadcastServiceTier: { '@id': 'schema:broadcastServiceTier' },\n broadcastSignalModulation: { '@id': 'schema:broadcastSignalModulation' },\n broadcastSubChannel: { '@id': 'schema:broadcastSubChannel' },\n broadcastTimezone: { '@id': 'schema:broadcastTimezone' },\n broadcaster: { '@id': 'schema:broadcaster' },\n broker: { '@id': 'schema:broker' },\n browserRequirements: { '@id': 'schema:browserRequirements' },\n busName: { '@id': 'schema:busName' },\n busNumber: { '@id': 'schema:busNumber' },\n businessDays: { '@id': 'schema:businessDays' },\n businessFunction: { '@id': 'schema:businessFunction' },\n buyer: { '@id': 'schema:buyer' },\n byArtist: { '@id': 'schema:byArtist' },\n byDay: { '@id': 'schema:byDay' },\n byMonth: { '@id': 'schema:byMonth' },\n byMonthDay: { '@id': 'schema:byMonthDay' },\n byMonthWeek: { '@id': 'schema:byMonthWeek' },\n callSign: { '@id': 'schema:callSign' },\n calories: { '@id': 'schema:calories' },\n candidate: { '@id': 'schema:candidate' },\n caption: { '@id': 'schema:caption' },\n carbohydrateContent: { '@id': 'schema:carbohydrateContent' },\n cargoVolume: { '@id': 'schema:cargoVolume' },\n carrier: { '@id': 'schema:carrier' },\n carrierRequirements: { '@id': 'schema:carrierRequirements' },\n cashBack: { '@id': 'schema:cashBack' },\n catalog: { '@id': 'schema:catalog' },\n catalogNumber: { '@id': 'schema:catalogNumber' },\n category: { '@id': 'schema:category' },\n causeOf: { '@id': 'schema:causeOf' },\n ccRecipient: { '@id': 'schema:ccRecipient' },\n character: { '@id': 'schema:character' },\n characterAttribute: { '@id': 'schema:characterAttribute' },\n characterName: { '@id': 'schema:characterName' },\n cheatCode: { '@id': 'schema:cheatCode' },\n checkinTime: { '@id': 'schema:checkinTime' },\n checkoutTime: { '@id': 'schema:checkoutTime' },\n childMaxAge: { '@id': 'schema:childMaxAge' },\n childMinAge: { '@id': 'schema:childMinAge' },\n children: { '@id': 'schema:children' },\n cholesterolContent: { '@id': 'schema:cholesterolContent' },\n circle: { '@id': 'schema:circle' },\n citation: { '@id': 'schema:citation' },\n claimReviewed: { '@id': 'schema:claimReviewed' },\n clincalPharmacology: { '@id': 'schema:clincalPharmacology' },\n clinicalPharmacology: { '@id': 'schema:clinicalPharmacology' },\n clipNumber: { '@id': 'schema:clipNumber' },\n closes: { '@id': 'schema:closes' },\n coach: { '@id': 'schema:coach' },\n code: { '@id': 'schema:code' },\n codeRepository: { '@id': 'schema:codeRepository', '@type': '@id' },\n codeSampleType: { '@id': 'schema:codeSampleType' },\n codeValue: { '@id': 'schema:codeValue' },\n codingSystem: { '@id': 'schema:codingSystem' },\n colleague: { '@id': 'schema:colleague', '@type': '@id' },\n colleagues: { '@id': 'schema:colleagues' },\n collection: { '@id': 'schema:collection' },\n collectionSize: { '@id': 'schema:collectionSize' },\n color: { '@id': 'schema:color' },\n colorist: { '@id': 'schema:colorist' },\n comment: { '@id': 'schema:comment' },\n commentCount: { '@id': 'schema:commentCount' },\n commentText: { '@id': 'schema:commentText' },\n commentTime: { '@id': 'schema:commentTime', '@type': 'Date' },\n competencyRequired: { '@id': 'schema:competencyRequired' },\n competitor: { '@id': 'schema:competitor' },\n composer: { '@id': 'schema:composer' },\n comprisedOf: { '@id': 'schema:comprisedOf' },\n conditionsOfAccess: { '@id': 'schema:conditionsOfAccess' },\n confirmationNumber: { '@id': 'schema:confirmationNumber' },\n connectedTo: { '@id': 'schema:connectedTo' },\n constrainingProperty: { '@id': 'schema:constrainingProperty' },\n contactOption: { '@id': 'schema:contactOption' },\n contactPoint: { '@id': 'schema:contactPoint' },\n contactPoints: { '@id': 'schema:contactPoints' },\n contactType: { '@id': 'schema:contactType' },\n contactlessPayment: { '@id': 'schema:contactlessPayment' },\n containedIn: { '@id': 'schema:containedIn' },\n containedInPlace: { '@id': 'schema:containedInPlace' },\n containsPlace: { '@id': 'schema:containsPlace' },\n containsSeason: { '@id': 'schema:containsSeason' },\n contentLocation: { '@id': 'schema:contentLocation' },\n contentRating: { '@id': 'schema:contentRating' },\n contentReferenceTime: { '@id': 'schema:contentReferenceTime' },\n contentSize: { '@id': 'schema:contentSize' },\n contentType: { '@id': 'schema:contentType' },\n contentUrl: { '@id': 'schema:contentUrl', '@type': '@id' },\n contraindication: { '@id': 'schema:contraindication' },\n contributor: { '@id': 'schema:contributor' },\n cookTime: { '@id': 'schema:cookTime' },\n cookingMethod: { '@id': 'schema:cookingMethod' },\n copyrightHolder: { '@id': 'schema:copyrightHolder' },\n copyrightNotice: { '@id': 'schema:copyrightNotice' },\n copyrightYear: { '@id': 'schema:copyrightYear' },\n correction: { '@id': 'schema:correction' },\n correctionsPolicy: { '@id': 'schema:correctionsPolicy', '@type': '@id' },\n costCategory: { '@id': 'schema:costCategory' },\n costCurrency: { '@id': 'schema:costCurrency' },\n costOrigin: { '@id': 'schema:costOrigin' },\n costPerUnit: { '@id': 'schema:costPerUnit' },\n countriesNotSupported: { '@id': 'schema:countriesNotSupported' },\n countriesSupported: { '@id': 'schema:countriesSupported' },\n countryOfOrigin: { '@id': 'schema:countryOfOrigin' },\n course: { '@id': 'schema:course' },\n courseCode: { '@id': 'schema:courseCode' },\n courseMode: { '@id': 'schema:courseMode' },\n coursePrerequisites: { '@id': 'schema:coursePrerequisites' },\n courseWorkload: { '@id': 'schema:courseWorkload' },\n coverageEndTime: { '@id': 'schema:coverageEndTime' },\n coverageStartTime: { '@id': 'schema:coverageStartTime' },\n creativeWorkStatus: { '@id': 'schema:creativeWorkStatus' },\n creator: { '@id': 'schema:creator' },\n credentialCategory: { '@id': 'schema:credentialCategory' },\n creditText: { '@id': 'schema:creditText' },\n creditedTo: { '@id': 'schema:creditedTo' },\n cssSelector: { '@id': 'schema:cssSelector' },\n currenciesAccepted: { '@id': 'schema:currenciesAccepted' },\n currency: { '@id': 'schema:currency' },\n currentExchangeRate: { '@id': 'schema:currentExchangeRate' },\n customer: { '@id': 'schema:customer' },\n cutoffTime: { '@id': 'schema:cutoffTime' },\n cvdCollectionDate: { '@id': 'schema:cvdCollectionDate' },\n cvdFacilityCounty: { '@id': 'schema:cvdFacilityCounty' },\n cvdFacilityId: { '@id': 'schema:cvdFacilityId' },\n cvdNumBeds: { '@id': 'schema:cvdNumBeds' },\n cvdNumBedsOcc: { '@id': 'schema:cvdNumBedsOcc' },\n cvdNumC19Died: { '@id': 'schema:cvdNumC19Died' },\n cvdNumC19HOPats: { '@id': 'schema:cvdNumC19HOPats' },\n cvdNumC19HospPats: { '@id': 'schema:cvdNumC19HospPats' },\n cvdNumC19MechVentPats: { '@id': 'schema:cvdNumC19MechVentPats' },\n cvdNumC19OFMechVentPats: { '@id': 'schema:cvdNumC19OFMechVentPats' },\n cvdNumC19OverflowPats: { '@id': 'schema:cvdNumC19OverflowPats' },\n cvdNumICUBeds: { '@id': 'schema:cvdNumICUBeds' },\n cvdNumICUBedsOcc: { '@id': 'schema:cvdNumICUBedsOcc' },\n cvdNumTotBeds: { '@id': 'schema:cvdNumTotBeds' },\n cvdNumVent: { '@id': 'schema:cvdNumVent' },\n cvdNumVentUse: { '@id': 'schema:cvdNumVentUse' },\n dataFeedElement: { '@id': 'schema:dataFeedElement' },\n dataset: { '@id': 'schema:dataset' },\n datasetTimeInterval: { '@id': 'schema:datasetTimeInterval' },\n dateCreated: { '@id': 'schema:dateCreated', '@type': 'Date' },\n dateDeleted: { '@id': 'schema:dateDeleted', '@type': 'Date' },\n dateIssued: { '@id': 'schema:dateIssued', '@type': 'Date' },\n dateModified: { '@id': 'schema:dateModified', '@type': 'Date' },\n datePosted: { '@id': 'schema:datePosted', '@type': 'Date' },\n datePublished: { '@id': 'schema:datePublished', '@type': 'Date' },\n dateRead: { '@id': 'schema:dateRead', '@type': 'Date' },\n dateReceived: { '@id': 'schema:dateReceived' },\n dateSent: { '@id': 'schema:dateSent' },\n dateVehicleFirstRegistered: {\n '@id': 'schema:dateVehicleFirstRegistered',\n '@type': 'Date',\n },\n dateline: { '@id': 'schema:dateline' },\n dayOfWeek: { '@id': 'schema:dayOfWeek' },\n deathDate: { '@id': 'schema:deathDate', '@type': 'Date' },\n deathPlace: { '@id': 'schema:deathPlace' },\n defaultValue: { '@id': 'schema:defaultValue' },\n deliveryAddress: { '@id': 'schema:deliveryAddress' },\n deliveryLeadTime: { '@id': 'schema:deliveryLeadTime' },\n deliveryMethod: { '@id': 'schema:deliveryMethod' },\n deliveryStatus: { '@id': 'schema:deliveryStatus' },\n deliveryTime: { '@id': 'schema:deliveryTime' },\n department: { '@id': 'schema:department' },\n departureAirport: { '@id': 'schema:departureAirport' },\n departureBoatTerminal: { '@id': 'schema:departureBoatTerminal' },\n departureBusStop: { '@id': 'schema:departureBusStop' },\n departureGate: { '@id': 'schema:departureGate' },\n departurePlatform: { '@id': 'schema:departurePlatform' },\n departureStation: { '@id': 'schema:departureStation' },\n departureTerminal: { '@id': 'schema:departureTerminal' },\n departureTime: { '@id': 'schema:departureTime' },\n dependencies: { '@id': 'schema:dependencies' },\n depth: { '@id': 'schema:depth' },\n description: { '@id': 'schema:description' },\n device: { '@id': 'schema:device' },\n diagnosis: { '@id': 'schema:diagnosis' },\n diagram: { '@id': 'schema:diagram' },\n diet: { '@id': 'schema:diet' },\n dietFeatures: { '@id': 'schema:dietFeatures' },\n differentialDiagnosis: { '@id': 'schema:differentialDiagnosis' },\n director: { '@id': 'schema:director' },\n directors: { '@id': 'schema:directors' },\n disambiguatingDescription: { '@id': 'schema:disambiguatingDescription' },\n discount: { '@id': 'schema:discount' },\n discountCode: { '@id': 'schema:discountCode' },\n discountCurrency: { '@id': 'schema:discountCurrency' },\n discusses: { '@id': 'schema:discusses' },\n discussionUrl: { '@id': 'schema:discussionUrl', '@type': '@id' },\n diseasePreventionInfo: {\n '@id': 'schema:diseasePreventionInfo',\n '@type': '@id',\n },\n diseaseSpreadStatistics: {\n '@id': 'schema:diseaseSpreadStatistics',\n '@type': '@id',\n },\n dissolutionDate: { '@id': 'schema:dissolutionDate', '@type': 'Date' },\n distance: { '@id': 'schema:distance' },\n distinguishingSign: { '@id': 'schema:distinguishingSign' },\n distribution: { '@id': 'schema:distribution' },\n diversityPolicy: { '@id': 'schema:diversityPolicy', '@type': '@id' },\n diversityStaffingReport: {\n '@id': 'schema:diversityStaffingReport',\n '@type': '@id',\n },\n documentation: { '@id': 'schema:documentation', '@type': '@id' },\n doesNotShip: { '@id': 'schema:doesNotShip' },\n domainIncludes: { '@id': 'schema:domainIncludes' },\n domiciledMortgage: { '@id': 'schema:domiciledMortgage' },\n doorTime: { '@id': 'schema:doorTime' },\n dosageForm: { '@id': 'schema:dosageForm' },\n doseSchedule: { '@id': 'schema:doseSchedule' },\n doseUnit: { '@id': 'schema:doseUnit' },\n doseValue: { '@id': 'schema:doseValue' },\n downPayment: { '@id': 'schema:downPayment' },\n downloadUrl: { '@id': 'schema:downloadUrl', '@type': '@id' },\n downvoteCount: { '@id': 'schema:downvoteCount' },\n drainsTo: { '@id': 'schema:drainsTo' },\n driveWheelConfiguration: { '@id': 'schema:driveWheelConfiguration' },\n dropoffLocation: { '@id': 'schema:dropoffLocation' },\n dropoffTime: { '@id': 'schema:dropoffTime' },\n drug: { '@id': 'schema:drug' },\n drugClass: { '@id': 'schema:drugClass' },\n drugUnit: { '@id': 'schema:drugUnit' },\n duns: { '@id': 'schema:duns' },\n duplicateTherapy: { '@id': 'schema:duplicateTherapy' },\n duration: { '@id': 'schema:duration' },\n durationOfWarranty: { '@id': 'schema:durationOfWarranty' },\n duringMedia: { '@id': 'schema:duringMedia', '@type': '@id' },\n earlyPrepaymentPenalty: { '@id': 'schema:earlyPrepaymentPenalty' },\n editEIDR: { '@id': 'schema:editEIDR' },\n editor: { '@id': 'schema:editor' },\n eduQuestionType: { '@id': 'schema:eduQuestionType' },\n educationRequirements: { '@id': 'schema:educationRequirements' },\n educationalAlignment: { '@id': 'schema:educationalAlignment' },\n educationalCredentialAwarded: { '@id': 'schema:educationalCredentialAwarded' },\n educationalFramework: { '@id': 'schema:educationalFramework' },\n educationalLevel: { '@id': 'schema:educationalLevel' },\n educationalProgramMode: { '@id': 'schema:educationalProgramMode' },\n educationalRole: { '@id': 'schema:educationalRole' },\n educationalUse: { '@id': 'schema:educationalUse' },\n elevation: { '@id': 'schema:elevation' },\n eligibilityToWorkRequirement: { '@id': 'schema:eligibilityToWorkRequirement' },\n eligibleCustomerType: { '@id': 'schema:eligibleCustomerType' },\n eligibleDuration: { '@id': 'schema:eligibleDuration' },\n eligibleQuantity: { '@id': 'schema:eligibleQuantity' },\n eligibleRegion: { '@id': 'schema:eligibleRegion' },\n eligibleTransactionVolume: { '@id': 'schema:eligibleTransactionVolume' },\n email: { '@id': 'schema:email' },\n embedUrl: { '@id': 'schema:embedUrl', '@type': '@id' },\n emissionsCO2: { '@id': 'schema:emissionsCO2' },\n employee: { '@id': 'schema:employee' },\n employees: { '@id': 'schema:employees' },\n employerOverview: { '@id': 'schema:employerOverview' },\n employmentType: { '@id': 'schema:employmentType' },\n employmentUnit: { '@id': 'schema:employmentUnit' },\n encodesCreativeWork: { '@id': 'schema:encodesCreativeWork' },\n encoding: { '@id': 'schema:encoding' },\n encodingFormat: { '@id': 'schema:encodingFormat' },\n encodingType: { '@id': 'schema:encodingType' },\n encodings: { '@id': 'schema:encodings' },\n endDate: { '@id': 'schema:endDate', '@type': 'Date' },\n endOffset: { '@id': 'schema:endOffset' },\n endTime: { '@id': 'schema:endTime' },\n endorsee: { '@id': 'schema:endorsee' },\n endorsers: { '@id': 'schema:endorsers' },\n energyEfficiencyScaleMax: { '@id': 'schema:energyEfficiencyScaleMax' },\n energyEfficiencyScaleMin: { '@id': 'schema:energyEfficiencyScaleMin' },\n engineDisplacement: { '@id': 'schema:engineDisplacement' },\n enginePower: { '@id': 'schema:enginePower' },\n engineType: { '@id': 'schema:engineType' },\n entertainmentBusiness: { '@id': 'schema:entertainmentBusiness' },\n epidemiology: { '@id': 'schema:epidemiology' },\n episode: { '@id': 'schema:episode' },\n episodeNumber: { '@id': 'schema:episodeNumber' },\n episodes: { '@id': 'schema:episodes' },\n equal: { '@id': 'schema:equal' },\n error: { '@id': 'schema:error' },\n estimatedCost: { '@id': 'schema:estimatedCost' },\n estimatedFlightDuration: { '@id': 'schema:estimatedFlightDuration' },\n estimatedSalary: { '@id': 'schema:estimatedSalary' },\n estimatesRiskOf: { '@id': 'schema:estimatesRiskOf' },\n ethicsPolicy: { '@id': 'schema:ethicsPolicy', '@type': '@id' },\n event: { '@id': 'schema:event' },\n eventAttendanceMode: { '@id': 'schema:eventAttendanceMode' },\n eventSchedule: { '@id': 'schema:eventSchedule' },\n eventStatus: { '@id': 'schema:eventStatus' },\n events: { '@id': 'schema:events' },\n evidenceLevel: { '@id': 'schema:evidenceLevel' },\n evidenceOrigin: { '@id': 'schema:evidenceOrigin' },\n exampleOfWork: { '@id': 'schema:exampleOfWork' },\n exceptDate: { '@id': 'schema:exceptDate', '@type': 'Date' },\n exchangeRateSpread: { '@id': 'schema:exchangeRateSpread' },\n executableLibraryName: { '@id': 'schema:executableLibraryName' },\n exerciseCourse: { '@id': 'schema:exerciseCourse' },\n exercisePlan: { '@id': 'schema:exercisePlan' },\n exerciseRelatedDiet: { '@id': 'schema:exerciseRelatedDiet' },\n exerciseType: { '@id': 'schema:exerciseType' },\n exifData: { '@id': 'schema:exifData' },\n expectedArrivalFrom: { '@id': 'schema:expectedArrivalFrom', '@type': 'Date' },\n expectedArrivalUntil: { '@id': 'schema:expectedArrivalUntil', '@type': 'Date' },\n expectedPrognosis: { '@id': 'schema:expectedPrognosis' },\n expectsAcceptanceOf: { '@id': 'schema:expectsAcceptanceOf' },\n experienceInPlaceOfEducation: { '@id': 'schema:experienceInPlaceOfEducation' },\n experienceRequirements: { '@id': 'schema:experienceRequirements' },\n expertConsiderations: { '@id': 'schema:expertConsiderations' },\n expires: { '@id': 'schema:expires', '@type': 'Date' },\n familyName: { '@id': 'schema:familyName' },\n fatContent: { '@id': 'schema:fatContent' },\n faxNumber: { '@id': 'schema:faxNumber' },\n featureList: { '@id': 'schema:featureList' },\n feesAndCommissionsSpecification: {\n '@id': 'schema:feesAndCommissionsSpecification',\n },\n fiberContent: { '@id': 'schema:fiberContent' },\n fileFormat: { '@id': 'schema:fileFormat' },\n fileSize: { '@id': 'schema:fileSize' },\n financialAidEligible: { '@id': 'schema:financialAidEligible' },\n firstAppearance: { '@id': 'schema:firstAppearance' },\n firstPerformance: { '@id': 'schema:firstPerformance' },\n flightDistance: { '@id': 'schema:flightDistance' },\n flightNumber: { '@id': 'schema:flightNumber' },\n floorLevel: { '@id': 'schema:floorLevel' },\n floorLimit: { '@id': 'schema:floorLimit' },\n floorSize: { '@id': 'schema:floorSize' },\n followee: { '@id': 'schema:followee' },\n follows: { '@id': 'schema:follows' },\n followup: { '@id': 'schema:followup' },\n foodEstablishment: { '@id': 'schema:foodEstablishment' },\n foodEvent: { '@id': 'schema:foodEvent' },\n foodWarning: { '@id': 'schema:foodWarning' },\n founder: { '@id': 'schema:founder' },\n founders: { '@id': 'schema:founders' },\n foundingDate: { '@id': 'schema:foundingDate', '@type': 'Date' },\n foundingLocation: { '@id': 'schema:foundingLocation' },\n free: { '@id': 'schema:free' },\n freeShippingThreshold: { '@id': 'schema:freeShippingThreshold' },\n frequency: { '@id': 'schema:frequency' },\n fromLocation: { '@id': 'schema:fromLocation' },\n fuelCapacity: { '@id': 'schema:fuelCapacity' },\n fuelConsumption: { '@id': 'schema:fuelConsumption' },\n fuelEfficiency: { '@id': 'schema:fuelEfficiency' },\n fuelType: { '@id': 'schema:fuelType' },\n functionalClass: { '@id': 'schema:functionalClass' },\n fundedItem: { '@id': 'schema:fundedItem' },\n funder: { '@id': 'schema:funder' },\n game: { '@id': 'schema:game' },\n gameItem: { '@id': 'schema:gameItem' },\n gameLocation: { '@id': 'schema:gameLocation', '@type': '@id' },\n gamePlatform: { '@id': 'schema:gamePlatform' },\n gameServer: { '@id': 'schema:gameServer' },\n gameTip: { '@id': 'schema:gameTip' },\n gender: { '@id': 'schema:gender' },\n genre: { '@id': 'schema:genre' },\n geo: { '@id': 'schema:geo' },\n geoContains: { '@id': 'schema:geoContains' },\n geoCoveredBy: { '@id': 'schema:geoCoveredBy' },\n geoCovers: { '@id': 'schema:geoCovers' },\n geoCrosses: { '@id': 'schema:geoCrosses' },\n geoDisjoint: { '@id': 'schema:geoDisjoint' },\n geoEquals: { '@id': 'schema:geoEquals' },\n geoIntersects: { '@id': 'schema:geoIntersects' },\n geoMidpoint: { '@id': 'schema:geoMidpoint' },\n geoOverlaps: { '@id': 'schema:geoOverlaps' },\n geoRadius: { '@id': 'schema:geoRadius' },\n geoTouches: { '@id': 'schema:geoTouches' },\n geoWithin: { '@id': 'schema:geoWithin' },\n geographicArea: { '@id': 'schema:geographicArea' },\n gettingTestedInfo: { '@id': 'schema:gettingTestedInfo', '@type': '@id' },\n givenName: { '@id': 'schema:givenName' },\n globalLocationNumber: { '@id': 'schema:globalLocationNumber' },\n governmentBenefitsInfo: { '@id': 'schema:governmentBenefitsInfo' },\n gracePeriod: { '@id': 'schema:gracePeriod' },\n grantee: { '@id': 'schema:grantee' },\n greater: { '@id': 'schema:greater' },\n greaterOrEqual: { '@id': 'schema:greaterOrEqual' },\n gtin: { '@id': 'schema:gtin' },\n gtin12: { '@id': 'schema:gtin12' },\n gtin13: { '@id': 'schema:gtin13' },\n gtin14: { '@id': 'schema:gtin14' },\n gtin8: { '@id': 'schema:gtin8' },\n guideline: { '@id': 'schema:guideline' },\n guidelineDate: { '@id': 'schema:guidelineDate', '@type': 'Date' },\n guidelineSubject: { '@id': 'schema:guidelineSubject' },\n handlingTime: { '@id': 'schema:handlingTime' },\n hasBroadcastChannel: { '@id': 'schema:hasBroadcastChannel' },\n hasCategoryCode: { '@id': 'schema:hasCategoryCode' },\n hasCourse: { '@id': 'schema:hasCourse' },\n hasCourseInstance: { '@id': 'schema:hasCourseInstance' },\n hasCredential: { '@id': 'schema:hasCredential' },\n hasDefinedTerm: { '@id': 'schema:hasDefinedTerm' },\n hasDeliveryMethod: { '@id': 'schema:hasDeliveryMethod' },\n hasDigitalDocumentPermission: { '@id': 'schema:hasDigitalDocumentPermission' },\n hasDriveThroughService: { '@id': 'schema:hasDriveThroughService' },\n hasEnergyConsumptionDetails: { '@id': 'schema:hasEnergyConsumptionDetails' },\n hasEnergyEfficiencyCategory: { '@id': 'schema:hasEnergyEfficiencyCategory' },\n hasHealthAspect: { '@id': 'schema:hasHealthAspect' },\n hasMap: { '@id': 'schema:hasMap', '@type': '@id' },\n hasMeasurement: { '@id': 'schema:hasMeasurement' },\n hasMenu: { '@id': 'schema:hasMenu' },\n hasMenuItem: { '@id': 'schema:hasMenuItem' },\n hasMenuSection: { '@id': 'schema:hasMenuSection' },\n hasMerchantReturnPolicy: { '@id': 'schema:hasMerchantReturnPolicy' },\n hasOccupation: { '@id': 'schema:hasOccupation' },\n hasOfferCatalog: { '@id': 'schema:hasOfferCatalog' },\n hasPOS: { '@id': 'schema:hasPOS' },\n hasPart: { '@id': 'schema:hasPart' },\n hasProductReturnPolicy: { '@id': 'schema:hasProductReturnPolicy' },\n hasVariant: { '@id': 'schema:hasVariant' },\n headline: { '@id': 'schema:headline' },\n healthCondition: { '@id': 'schema:healthCondition' },\n healthPlanCoinsuranceOption: { '@id': 'schema:healthPlanCoinsuranceOption' },\n healthPlanCoinsuranceRate: { '@id': 'schema:healthPlanCoinsuranceRate' },\n healthPlanCopay: { '@id': 'schema:healthPlanCopay' },\n healthPlanCopayOption: { '@id': 'schema:healthPlanCopayOption' },\n healthPlanCostSharing: { '@id': 'schema:healthPlanCostSharing' },\n healthPlanDrugOption: { '@id': 'schema:healthPlanDrugOption' },\n healthPlanDrugTier: { '@id': 'schema:healthPlanDrugTier' },\n healthPlanId: { '@id': 'schema:healthPlanId' },\n healthPlanMarketingUrl: {\n '@id': 'schema:healthPlanMarketingUrl',\n '@type': '@id',\n },\n healthPlanNetworkId: { '@id': 'schema:healthPlanNetworkId' },\n healthPlanNetworkTier: { '@id': 'schema:healthPlanNetworkTier' },\n healthPlanPharmacyCategory: { '@id': 'schema:healthPlanPharmacyCategory' },\n healthcareReportingData: { '@id': 'schema:healthcareReportingData' },\n height: { '@id': 'schema:height' },\n highPrice: { '@id': 'schema:highPrice' },\n hiringOrganization: { '@id': 'schema:hiringOrganization' },\n holdingArchive: { '@id': 'schema:holdingArchive' },\n homeLocation: { '@id': 'schema:homeLocation' },\n homeTeam: { '@id': 'schema:homeTeam' },\n honorificPrefix: { '@id': 'schema:honorificPrefix' },\n honorificSuffix: { '@id': 'schema:honorificSuffix' },\n hospitalAffiliation: { '@id': 'schema:hospitalAffiliation' },\n hostingOrganization: { '@id': 'schema:hostingOrganization' },\n hoursAvailable: { '@id': 'schema:hoursAvailable' },\n howPerformed: { '@id': 'schema:howPerformed' },\n httpMethod: { '@id': 'schema:httpMethod' },\n iataCode: { '@id': 'schema:iataCode' },\n icaoCode: { '@id': 'schema:icaoCode' },\n identifier: { '@id': 'schema:identifier' },\n identifyingExam: { '@id': 'schema:identifyingExam' },\n identifyingTest: { '@id': 'schema:identifyingTest' },\n illustrator: { '@id': 'schema:illustrator' },\n image: { '@id': 'schema:image', '@type': '@id' },\n imagingTechnique: { '@id': 'schema:imagingTechnique' },\n inAlbum: { '@id': 'schema:inAlbum' },\n inBroadcastLineup: { '@id': 'schema:inBroadcastLineup' },\n inCodeSet: { '@id': 'schema:inCodeSet', '@type': '@id' },\n inDefinedTermSet: { '@id': 'schema:inDefinedTermSet', '@type': '@id' },\n inLanguage: { '@id': 'schema:inLanguage' },\n inPlaylist: { '@id': 'schema:inPlaylist' },\n inProductGroupWithID: { '@id': 'schema:inProductGroupWithID' },\n inStoreReturnsOffered: { '@id': 'schema:inStoreReturnsOffered' },\n inSupportOf: { '@id': 'schema:inSupportOf' },\n incentiveCompensation: { '@id': 'schema:incentiveCompensation' },\n incentives: { '@id': 'schema:incentives' },\n includedComposition: { '@id': 'schema:includedComposition' },\n includedDataCatalog: { '@id': 'schema:includedDataCatalog' },\n includedInDataCatalog: { '@id': 'schema:includedInDataCatalog' },\n includedInHealthInsurancePlan: {\n '@id': 'schema:includedInHealthInsurancePlan',\n },\n includedRiskFactor: { '@id': 'schema:includedRiskFactor' },\n includesAttraction: { '@id': 'schema:includesAttraction' },\n includesHealthPlanFormulary: { '@id': 'schema:includesHealthPlanFormulary' },\n includesHealthPlanNetwork: { '@id': 'schema:includesHealthPlanNetwork' },\n includesObject: { '@id': 'schema:includesObject' },\n increasesRiskOf: { '@id': 'schema:increasesRiskOf' },\n industry: { '@id': 'schema:industry' },\n ineligibleRegion: { '@id': 'schema:ineligibleRegion' },\n infectiousAgent: { '@id': 'schema:infectiousAgent' },\n infectiousAgentClass: { '@id': 'schema:infectiousAgentClass' },\n ingredients: { '@id': 'schema:ingredients' },\n inker: { '@id': 'schema:inker' },\n insertion: { '@id': 'schema:insertion' },\n installUrl: { '@id': 'schema:installUrl', '@type': '@id' },\n instructor: { '@id': 'schema:instructor' },\n instrument: { '@id': 'schema:instrument' },\n intensity: { '@id': 'schema:intensity' },\n interactingDrug: { '@id': 'schema:interactingDrug' },\n interactionCount: { '@id': 'schema:interactionCount' },\n interactionService: { '@id': 'schema:interactionService' },\n interactionStatistic: { '@id': 'schema:interactionStatistic' },\n interactionType: { '@id': 'schema:interactionType' },\n interactivityType: { '@id': 'schema:interactivityType' },\n interestRate: { '@id': 'schema:interestRate' },\n inventoryLevel: { '@id': 'schema:inventoryLevel' },\n inverseOf: { '@id': 'schema:inverseOf' },\n isAcceptingNewPatients: { '@id': 'schema:isAcceptingNewPatients' },\n isAccessibleForFree: { '@id': 'schema:isAccessibleForFree' },\n isAccessoryOrSparePartFor: { '@id': 'schema:isAccessoryOrSparePartFor' },\n isAvailableGenerically: { '@id': 'schema:isAvailableGenerically' },\n isBasedOn: { '@id': 'schema:isBasedOn', '@type': '@id' },\n isBasedOnUrl: { '@id': 'schema:isBasedOnUrl', '@type': '@id' },\n isConsumableFor: { '@id': 'schema:isConsumableFor' },\n isFamilyFriendly: { '@id': 'schema:isFamilyFriendly' },\n isGift: { '@id': 'schema:isGift' },\n isLiveBroadcast: { '@id': 'schema:isLiveBroadcast' },\n isPartOf: { '@id': 'schema:isPartOf', '@type': '@id' },\n isPlanForApartment: { '@id': 'schema:isPlanForApartment' },\n isProprietary: { '@id': 'schema:isProprietary' },\n isRelatedTo: { '@id': 'schema:isRelatedTo' },\n isResizable: { '@id': 'schema:isResizable' },\n isSimilarTo: { '@id': 'schema:isSimilarTo' },\n isUnlabelledFallback: { '@id': 'schema:isUnlabelledFallback' },\n isVariantOf: { '@id': 'schema:isVariantOf' },\n isbn: { '@id': 'schema:isbn' },\n isicV4: { '@id': 'schema:isicV4' },\n isrcCode: { '@id': 'schema:isrcCode' },\n issn: { '@id': 'schema:issn' },\n issueNumber: { '@id': 'schema:issueNumber' },\n issuedBy: { '@id': 'schema:issuedBy' },\n issuedThrough: { '@id': 'schema:issuedThrough' },\n iswcCode: { '@id': 'schema:iswcCode' },\n item: { '@id': 'schema:item' },\n itemCondition: { '@id': 'schema:itemCondition' },\n itemListElement: { '@id': 'schema:itemListElement' },\n itemListOrder: { '@id': 'schema:itemListOrder' },\n itemLocation: { '@id': 'schema:itemLocation' },\n itemOffered: { '@id': 'schema:itemOffered' },\n itemReviewed: { '@id': 'schema:itemReviewed' },\n itemShipped: { '@id': 'schema:itemShipped' },\n itinerary: { '@id': 'schema:itinerary' },\n jobBenefits: { '@id': 'schema:jobBenefits' },\n jobImmediateStart: { '@id': 'schema:jobImmediateStart' },\n jobLocation: { '@id': 'schema:jobLocation' },\n jobLocationType: { '@id': 'schema:jobLocationType' },\n jobStartDate: { '@id': 'schema:jobStartDate' },\n jobTitle: { '@id': 'schema:jobTitle' },\n jurisdiction: { '@id': 'schema:jurisdiction' },\n keywords: { '@id': 'schema:keywords' },\n knownVehicleDamages: { '@id': 'schema:knownVehicleDamages' },\n knows: { '@id': 'schema:knows' },\n knowsAbout: { '@id': 'schema:knowsAbout' },\n knowsLanguage: { '@id': 'schema:knowsLanguage' },\n labelDetails: { '@id': 'schema:labelDetails', '@type': '@id' },\n landlord: { '@id': 'schema:landlord' },\n language: { '@id': 'schema:language' },\n lastReviewed: { '@id': 'schema:lastReviewed', '@type': 'Date' },\n latitude: { '@id': 'schema:latitude' },\n layoutImage: { '@id': 'schema:layoutImage', '@type': '@id' },\n learningResourceType: { '@id': 'schema:learningResourceType' },\n leaseLength: { '@id': 'schema:leaseLength' },\n legalName: { '@id': 'schema:legalName' },\n legalStatus: { '@id': 'schema:legalStatus' },\n legislationApplies: { '@id': 'schema:legislationApplies' },\n legislationChanges: { '@id': 'schema:legislationChanges' },\n legislationConsolidates: { '@id': 'schema:legislationConsolidates' },\n legislationDate: { '@id': 'schema:legislationDate', '@type': 'Date' },\n legislationDateVersion: {\n '@id': 'schema:legislationDateVersion',\n '@type': 'Date',\n },\n legislationIdentifier: { '@id': 'schema:legislationIdentifier' },\n legislationJurisdiction: { '@id': 'schema:legislationJurisdiction' },\n legislationLegalForce: { '@id': 'schema:legislationLegalForce' },\n legislationLegalValue: { '@id': 'schema:legislationLegalValue' },\n legislationPassedBy: { '@id': 'schema:legislationPassedBy' },\n legislationResponsible: { '@id': 'schema:legislationResponsible' },\n legislationTransposes: { '@id': 'schema:legislationTransposes' },\n legislationType: { '@id': 'schema:legislationType' },\n leiCode: { '@id': 'schema:leiCode' },\n lender: { '@id': 'schema:lender' },\n lesser: { '@id': 'schema:lesser' },\n lesserOrEqual: { '@id': 'schema:lesserOrEqual' },\n letterer: { '@id': 'schema:letterer' },\n license: { '@id': 'schema:license', '@type': '@id' },\n line: { '@id': 'schema:line' },\n linkRelationship: { '@id': 'schema:linkRelationship' },\n liveBlogUpdate: { '@id': 'schema:liveBlogUpdate' },\n loanMortgageMandateAmount: { '@id': 'schema:loanMortgageMandateAmount' },\n loanPaymentAmount: { '@id': 'schema:loanPaymentAmount' },\n loanPaymentFrequency: { '@id': 'schema:loanPaymentFrequency' },\n loanRepaymentForm: { '@id': 'schema:loanRepaymentForm' },\n loanTerm: { '@id': 'schema:loanTerm' },\n loanType: { '@id': 'schema:loanType' },\n location: { '@id': 'schema:location' },\n locationCreated: { '@id': 'schema:locationCreated' },\n lodgingUnitDescription: { '@id': 'schema:lodgingUnitDescription' },\n lodgingUnitType: { '@id': 'schema:lodgingUnitType' },\n logo: { '@id': 'schema:logo', '@type': '@id' },\n longitude: { '@id': 'schema:longitude' },\n loser: { '@id': 'schema:loser' },\n lowPrice: { '@id': 'schema:lowPrice' },\n lyricist: { '@id': 'schema:lyricist' },\n lyrics: { '@id': 'schema:lyrics' },\n mainContentOfPage: { '@id': 'schema:mainContentOfPage' },\n mainEntity: { '@id': 'schema:mainEntity' },\n mainEntityOfPage: { '@id': 'schema:mainEntityOfPage', '@type': '@id' },\n maintainer: { '@id': 'schema:maintainer' },\n makesOffer: { '@id': 'schema:makesOffer' },\n manufacturer: { '@id': 'schema:manufacturer' },\n map: { '@id': 'schema:map', '@type': '@id' },\n mapType: { '@id': 'schema:mapType' },\n maps: { '@id': 'schema:maps', '@type': '@id' },\n marginOfError: { '@id': 'schema:marginOfError' },\n masthead: { '@id': 'schema:masthead', '@type': '@id' },\n material: { '@id': 'schema:material' },\n materialExtent: { '@id': 'schema:materialExtent' },\n mathExpression: { '@id': 'schema:mathExpression' },\n maxPrice: { '@id': 'schema:maxPrice' },\n maxValue: { '@id': 'schema:maxValue' },\n maximumAttendeeCapacity: { '@id': 'schema:maximumAttendeeCapacity' },\n maximumEnrollment: { '@id': 'schema:maximumEnrollment' },\n maximumIntake: { '@id': 'schema:maximumIntake' },\n maximumPhysicalAttendeeCapacity: {\n '@id': 'schema:maximumPhysicalAttendeeCapacity',\n },\n maximumVirtualAttendeeCapacity: {\n '@id': 'schema:maximumVirtualAttendeeCapacity',\n },\n mealService: { '@id': 'schema:mealService' },\n measuredProperty: { '@id': 'schema:measuredProperty' },\n measuredValue: { '@id': 'schema:measuredValue' },\n measurementTechnique: { '@id': 'schema:measurementTechnique' },\n mechanismOfAction: { '@id': 'schema:mechanismOfAction' },\n mediaAuthenticityCategory: { '@id': 'schema:mediaAuthenticityCategory' },\n median: { '@id': 'schema:median' },\n medicalAudience: { '@id': 'schema:medicalAudience' },\n medicalSpecialty: { '@id': 'schema:medicalSpecialty' },\n medicineSystem: { '@id': 'schema:medicineSystem' },\n meetsEmissionStandard: { '@id': 'schema:meetsEmissionStandard' },\n member: { '@id': 'schema:member' },\n memberOf: { '@id': 'schema:memberOf' },\n members: { '@id': 'schema:members' },\n membershipNumber: { '@id': 'schema:membershipNumber' },\n membershipPointsEarned: { '@id': 'schema:membershipPointsEarned' },\n memoryRequirements: { '@id': 'schema:memoryRequirements' },\n mentions: { '@id': 'schema:mentions' },\n menu: { '@id': 'schema:menu' },\n menuAddOn: { '@id': 'schema:menuAddOn' },\n merchant: { '@id': 'schema:merchant' },\n merchantReturnDays: { '@id': 'schema:merchantReturnDays' },\n merchantReturnLink: { '@id': 'schema:merchantReturnLink', '@type': '@id' },\n messageAttachment: { '@id': 'schema:messageAttachment' },\n mileageFromOdometer: { '@id': 'schema:mileageFromOdometer' },\n minPrice: { '@id': 'schema:minPrice' },\n minValue: { '@id': 'schema:minValue' },\n minimumPaymentDue: { '@id': 'schema:minimumPaymentDue' },\n missionCoveragePrioritiesPolicy: {\n '@id': 'schema:missionCoveragePrioritiesPolicy',\n '@type': '@id',\n },\n model: { '@id': 'schema:model' },\n modelDate: { '@id': 'schema:modelDate', '@type': 'Date' },\n modifiedTime: { '@id': 'schema:modifiedTime' },\n monthlyMinimumRepaymentAmount: {\n '@id': 'schema:monthlyMinimumRepaymentAmount',\n },\n monthsOfExperience: { '@id': 'schema:monthsOfExperience' },\n mpn: { '@id': 'schema:mpn' },\n multipleValues: { '@id': 'schema:multipleValues' },\n muscleAction: { '@id': 'schema:muscleAction' },\n musicArrangement: { '@id': 'schema:musicArrangement' },\n musicBy: { '@id': 'schema:musicBy' },\n musicCompositionForm: { '@id': 'schema:musicCompositionForm' },\n musicGroupMember: { '@id': 'schema:musicGroupMember' },\n musicReleaseFormat: { '@id': 'schema:musicReleaseFormat' },\n musicalKey: { '@id': 'schema:musicalKey' },\n naics: { '@id': 'schema:naics' },\n name: { '@id': 'schema:name' },\n namedPosition: { '@id': 'schema:namedPosition' },\n nationality: { '@id': 'schema:nationality' },\n naturalProgression: { '@id': 'schema:naturalProgression' },\n nerve: { '@id': 'schema:nerve' },\n nerveMotor: { '@id': 'schema:nerveMotor' },\n netWorth: { '@id': 'schema:netWorth' },\n newsUpdatesAndGuidelines: {\n '@id': 'schema:newsUpdatesAndGuidelines',\n '@type': '@id',\n },\n nextItem: { '@id': 'schema:nextItem' },\n noBylinesPolicy: { '@id': 'schema:noBylinesPolicy', '@type': '@id' },\n nonEqual: { '@id': 'schema:nonEqual' },\n nonProprietaryName: { '@id': 'schema:nonProprietaryName' },\n nonprofitStatus: { '@id': 'schema:nonprofitStatus' },\n normalRange: { '@id': 'schema:normalRange' },\n nsn: { '@id': 'schema:nsn' },\n numAdults: { '@id': 'schema:numAdults' },\n numChildren: { '@id': 'schema:numChildren' },\n numConstraints: { '@id': 'schema:numConstraints' },\n numTracks: { '@id': 'schema:numTracks' },\n numberOfAccommodationUnits: { '@id': 'schema:numberOfAccommodationUnits' },\n numberOfAirbags: { '@id': 'schema:numberOfAirbags' },\n numberOfAvailableAccommodationUnits: {\n '@id': 'schema:numberOfAvailableAccommodationUnits',\n },\n numberOfAxles: { '@id': 'schema:numberOfAxles' },\n numberOfBathroomsTotal: { '@id': 'schema:numberOfBathroomsTotal' },\n numberOfBedrooms: { '@id': 'schema:numberOfBedrooms' },\n numberOfBeds: { '@id': 'schema:numberOfBeds' },\n numberOfCredits: { '@id': 'schema:numberOfCredits' },\n numberOfDoors: { '@id': 'schema:numberOfDoors' },\n numberOfEmployees: { '@id': 'schema:numberOfEmployees' },\n numberOfEpisodes: { '@id': 'schema:numberOfEpisodes' },\n numberOfForwardGears: { '@id': 'schema:numberOfForwardGears' },\n numberOfFullBathrooms: { '@id': 'schema:numberOfFullBathrooms' },\n numberOfItems: { '@id': 'schema:numberOfItems' },\n numberOfLoanPayments: { '@id': 'schema:numberOfLoanPayments' },\n numberOfPages: { '@id': 'schema:numberOfPages' },\n numberOfPartialBathrooms: { '@id': 'schema:numberOfPartialBathrooms' },\n numberOfPlayers: { '@id': 'schema:numberOfPlayers' },\n numberOfPreviousOwners: { '@id': 'schema:numberOfPreviousOwners' },\n numberOfRooms: { '@id': 'schema:numberOfRooms' },\n numberOfSeasons: { '@id': 'schema:numberOfSeasons' },\n numberedPosition: { '@id': 'schema:numberedPosition' },\n nutrition: { '@id': 'schema:nutrition' },\n object: { '@id': 'schema:object' },\n observationDate: { '@id': 'schema:observationDate' },\n observedNode: { '@id': 'schema:observedNode' },\n occupancy: { '@id': 'schema:occupancy' },\n occupationLocation: { '@id': 'schema:occupationLocation' },\n occupationalCategory: { '@id': 'schema:occupationalCategory' },\n occupationalCredentialAwarded: {\n '@id': 'schema:occupationalCredentialAwarded',\n },\n offerCount: { '@id': 'schema:offerCount' },\n offeredBy: { '@id': 'schema:offeredBy' },\n offers: { '@id': 'schema:offers' },\n offersPrescriptionByMail: { '@id': 'schema:offersPrescriptionByMail' },\n openingHours: { '@id': 'schema:openingHours' },\n openingHoursSpecification: { '@id': 'schema:openingHoursSpecification' },\n opens: { '@id': 'schema:opens' },\n operatingSystem: { '@id': 'schema:operatingSystem' },\n opponent: { '@id': 'schema:opponent' },\n option: { '@id': 'schema:option' },\n orderDate: { '@id': 'schema:orderDate', '@type': 'Date' },\n orderDelivery: { '@id': 'schema:orderDelivery' },\n orderItemNumber: { '@id': 'schema:orderItemNumber' },\n orderItemStatus: { '@id': 'schema:orderItemStatus' },\n orderNumber: { '@id': 'schema:orderNumber' },\n orderQuantity: { '@id': 'schema:orderQuantity' },\n orderStatus: { '@id': 'schema:orderStatus' },\n orderedItem: { '@id': 'schema:orderedItem' },\n organizer: { '@id': 'schema:organizer' },\n originAddress: { '@id': 'schema:originAddress' },\n originatesFrom: { '@id': 'schema:originatesFrom' },\n overdosage: { '@id': 'schema:overdosage' },\n ownedFrom: { '@id': 'schema:ownedFrom' },\n ownedThrough: { '@id': 'schema:ownedThrough' },\n ownershipFundingInfo: { '@id': 'schema:ownershipFundingInfo' },\n owns: { '@id': 'schema:owns' },\n pageEnd: { '@id': 'schema:pageEnd' },\n pageStart: { '@id': 'schema:pageStart' },\n pagination: { '@id': 'schema:pagination' },\n parent: { '@id': 'schema:parent' },\n parentItem: { '@id': 'schema:parentItem' },\n parentOrganization: { '@id': 'schema:parentOrganization' },\n parentService: { '@id': 'schema:parentService' },\n parents: { '@id': 'schema:parents' },\n partOfEpisode: { '@id': 'schema:partOfEpisode' },\n partOfInvoice: { '@id': 'schema:partOfInvoice' },\n partOfOrder: { '@id': 'schema:partOfOrder' },\n partOfSeason: { '@id': 'schema:partOfSeason' },\n partOfSeries: { '@id': 'schema:partOfSeries' },\n partOfSystem: { '@id': 'schema:partOfSystem' },\n partOfTVSeries: { '@id': 'schema:partOfTVSeries' },\n partOfTrip: { '@id': 'schema:partOfTrip' },\n participant: { '@id': 'schema:participant' },\n partySize: { '@id': 'schema:partySize' },\n passengerPriorityStatus: { '@id': 'schema:passengerPriorityStatus' },\n passengerSequenceNumber: { '@id': 'schema:passengerSequenceNumber' },\n pathophysiology: { '@id': 'schema:pathophysiology' },\n pattern: { '@id': 'schema:pattern' },\n payload: { '@id': 'schema:payload' },\n paymentAccepted: { '@id': 'schema:paymentAccepted' },\n paymentDue: { '@id': 'schema:paymentDue' },\n paymentDueDate: { '@id': 'schema:paymentDueDate', '@type': 'Date' },\n paymentMethod: { '@id': 'schema:paymentMethod' },\n paymentMethodId: { '@id': 'schema:paymentMethodId' },\n paymentStatus: { '@id': 'schema:paymentStatus' },\n paymentUrl: { '@id': 'schema:paymentUrl', '@type': '@id' },\n penciler: { '@id': 'schema:penciler' },\n percentile10: { '@id': 'schema:percentile10' },\n percentile25: { '@id': 'schema:percentile25' },\n percentile75: { '@id': 'schema:percentile75' },\n percentile90: { '@id': 'schema:percentile90' },\n performTime: { '@id': 'schema:performTime' },\n performer: { '@id': 'schema:performer' },\n performerIn: { '@id': 'schema:performerIn' },\n performers: { '@id': 'schema:performers' },\n permissionType: { '@id': 'schema:permissionType' },\n permissions: { '@id': 'schema:permissions' },\n permitAudience: { '@id': 'schema:permitAudience' },\n permittedUsage: { '@id': 'schema:permittedUsage' },\n petsAllowed: { '@id': 'schema:petsAllowed' },\n phoneticText: { '@id': 'schema:phoneticText' },\n photo: { '@id': 'schema:photo' },\n photos: { '@id': 'schema:photos' },\n physicalRequirement: { '@id': 'schema:physicalRequirement' },\n physiologicalBenefits: { '@id': 'schema:physiologicalBenefits' },\n pickupLocation: { '@id': 'schema:pickupLocation' },\n pickupTime: { '@id': 'schema:pickupTime' },\n playMode: { '@id': 'schema:playMode' },\n playerType: { '@id': 'schema:playerType' },\n playersOnline: { '@id': 'schema:playersOnline' },\n polygon: { '@id': 'schema:polygon' },\n populationType: { '@id': 'schema:populationType' },\n position: { '@id': 'schema:position' },\n possibleComplication: { '@id': 'schema:possibleComplication' },\n possibleTreatment: { '@id': 'schema:possibleTreatment' },\n postOfficeBoxNumber: { '@id': 'schema:postOfficeBoxNumber' },\n postOp: { '@id': 'schema:postOp' },\n postalCode: { '@id': 'schema:postalCode' },\n postalCodeBegin: { '@id': 'schema:postalCodeBegin' },\n postalCodeEnd: { '@id': 'schema:postalCodeEnd' },\n postalCodePrefix: { '@id': 'schema:postalCodePrefix' },\n postalCodeRange: { '@id': 'schema:postalCodeRange' },\n potentialAction: { '@id': 'schema:potentialAction' },\n preOp: { '@id': 'schema:preOp' },\n predecessorOf: { '@id': 'schema:predecessorOf' },\n pregnancyCategory: { '@id': 'schema:pregnancyCategory' },\n pregnancyWarning: { '@id': 'schema:pregnancyWarning' },\n prepTime: { '@id': 'schema:prepTime' },\n preparation: { '@id': 'schema:preparation' },\n prescribingInfo: { '@id': 'schema:prescribingInfo', '@type': '@id' },\n prescriptionStatus: { '@id': 'schema:prescriptionStatus' },\n previousItem: { '@id': 'schema:previousItem' },\n previousStartDate: { '@id': 'schema:previousStartDate', '@type': 'Date' },\n price: { '@id': 'schema:price' },\n priceComponent: { '@id': 'schema:priceComponent' },\n priceComponentType: { '@id': 'schema:priceComponentType' },\n priceCurrency: { '@id': 'schema:priceCurrency' },\n priceRange: { '@id': 'schema:priceRange' },\n priceSpecification: { '@id': 'schema:priceSpecification' },\n priceType: { '@id': 'schema:priceType' },\n priceValidUntil: { '@id': 'schema:priceValidUntil', '@type': 'Date' },\n primaryImageOfPage: { '@id': 'schema:primaryImageOfPage' },\n primaryPrevention: { '@id': 'schema:primaryPrevention' },\n printColumn: { '@id': 'schema:printColumn' },\n printEdition: { '@id': 'schema:printEdition' },\n printPage: { '@id': 'schema:printPage' },\n printSection: { '@id': 'schema:printSection' },\n procedure: { '@id': 'schema:procedure' },\n procedureType: { '@id': 'schema:procedureType' },\n processingTime: { '@id': 'schema:processingTime' },\n processorRequirements: { '@id': 'schema:processorRequirements' },\n producer: { '@id': 'schema:producer' },\n produces: { '@id': 'schema:produces' },\n productGroupID: { '@id': 'schema:productGroupID' },\n productID: { '@id': 'schema:productID' },\n productReturnDays: { '@id': 'schema:productReturnDays' },\n productReturnLink: { '@id': 'schema:productReturnLink', '@type': '@id' },\n productSupported: { '@id': 'schema:productSupported' },\n productionCompany: { '@id': 'schema:productionCompany' },\n productionDate: { '@id': 'schema:productionDate', '@type': 'Date' },\n proficiencyLevel: { '@id': 'schema:proficiencyLevel' },\n programMembershipUsed: { '@id': 'schema:programMembershipUsed' },\n programName: { '@id': 'schema:programName' },\n programPrerequisites: { '@id': 'schema:programPrerequisites' },\n programType: { '@id': 'schema:programType' },\n programmingLanguage: { '@id': 'schema:programmingLanguage' },\n programmingModel: { '@id': 'schema:programmingModel' },\n propertyID: { '@id': 'schema:propertyID' },\n proprietaryName: { '@id': 'schema:proprietaryName' },\n proteinContent: { '@id': 'schema:proteinContent' },\n provider: { '@id': 'schema:provider' },\n providerMobility: { '@id': 'schema:providerMobility' },\n providesBroadcastService: { '@id': 'schema:providesBroadcastService' },\n providesService: { '@id': 'schema:providesService' },\n publicAccess: { '@id': 'schema:publicAccess' },\n publicTransportClosuresInfo: {\n '@id': 'schema:publicTransportClosuresInfo',\n '@type': '@id',\n },\n publication: { '@id': 'schema:publication' },\n publicationType: { '@id': 'schema:publicationType' },\n publishedBy: { '@id': 'schema:publishedBy' },\n publishedOn: { '@id': 'schema:publishedOn' },\n publisher: { '@id': 'schema:publisher' },\n publisherImprint: { '@id': 'schema:publisherImprint' },\n publishingPrinciples: { '@id': 'schema:publishingPrinciples', '@type': '@id' },\n purchaseDate: { '@id': 'schema:purchaseDate', '@type': 'Date' },\n qualifications: { '@id': 'schema:qualifications' },\n quarantineGuidelines: { '@id': 'schema:quarantineGuidelines', '@type': '@id' },\n query: { '@id': 'schema:query' },\n quest: { '@id': 'schema:quest' },\n question: { '@id': 'schema:question' },\n rangeIncludes: { '@id': 'schema:rangeIncludes' },\n ratingCount: { '@id': 'schema:ratingCount' },\n ratingExplanation: { '@id': 'schema:ratingExplanation' },\n ratingValue: { '@id': 'schema:ratingValue' },\n readBy: { '@id': 'schema:readBy' },\n readonlyValue: { '@id': 'schema:readonlyValue' },\n realEstateAgent: { '@id': 'schema:realEstateAgent' },\n recipe: { '@id': 'schema:recipe' },\n recipeCategory: { '@id': 'schema:recipeCategory' },\n recipeCuisine: { '@id': 'schema:recipeCuisine' },\n recipeIngredient: { '@id': 'schema:recipeIngredient' },\n recipeInstructions: { '@id': 'schema:recipeInstructions' },\n recipeYield: { '@id': 'schema:recipeYield' },\n recipient: { '@id': 'schema:recipient' },\n recognizedBy: { '@id': 'schema:recognizedBy' },\n recognizingAuthority: { '@id': 'schema:recognizingAuthority' },\n recommendationStrength: { '@id': 'schema:recommendationStrength' },\n recommendedIntake: { '@id': 'schema:recommendedIntake' },\n recordLabel: { '@id': 'schema:recordLabel' },\n recordedAs: { '@id': 'schema:recordedAs' },\n recordedAt: { '@id': 'schema:recordedAt' },\n recordedIn: { '@id': 'schema:recordedIn' },\n recordingOf: { '@id': 'schema:recordingOf' },\n recourseLoan: { '@id': 'schema:recourseLoan' },\n referenceQuantity: { '@id': 'schema:referenceQuantity' },\n referencesOrder: { '@id': 'schema:referencesOrder' },\n refundType: { '@id': 'schema:refundType' },\n regionDrained: { '@id': 'schema:regionDrained' },\n regionsAllowed: { '@id': 'schema:regionsAllowed' },\n relatedAnatomy: { '@id': 'schema:relatedAnatomy' },\n relatedCondition: { '@id': 'schema:relatedCondition' },\n relatedDrug: { '@id': 'schema:relatedDrug' },\n relatedLink: { '@id': 'schema:relatedLink', '@type': '@id' },\n relatedStructure: { '@id': 'schema:relatedStructure' },\n relatedTherapy: { '@id': 'schema:relatedTherapy' },\n relatedTo: { '@id': 'schema:relatedTo' },\n releaseDate: { '@id': 'schema:releaseDate', '@type': 'Date' },\n releaseNotes: { '@id': 'schema:releaseNotes' },\n releaseOf: { '@id': 'schema:releaseOf' },\n releasedEvent: { '@id': 'schema:releasedEvent' },\n relevantOccupation: { '@id': 'schema:relevantOccupation' },\n relevantSpecialty: { '@id': 'schema:relevantSpecialty' },\n remainingAttendeeCapacity: { '@id': 'schema:remainingAttendeeCapacity' },\n renegotiableLoan: { '@id': 'schema:renegotiableLoan' },\n repeatCount: { '@id': 'schema:repeatCount' },\n repeatFrequency: { '@id': 'schema:repeatFrequency' },\n repetitions: { '@id': 'schema:repetitions' },\n replacee: { '@id': 'schema:replacee' },\n replacer: { '@id': 'schema:replacer' },\n replyToUrl: { '@id': 'schema:replyToUrl', '@type': '@id' },\n reportNumber: { '@id': 'schema:reportNumber' },\n representativeOfPage: { '@id': 'schema:representativeOfPage' },\n requiredCollateral: { '@id': 'schema:requiredCollateral' },\n requiredGender: { '@id': 'schema:requiredGender' },\n requiredMaxAge: { '@id': 'schema:requiredMaxAge' },\n requiredMinAge: { '@id': 'schema:requiredMinAge' },\n requiredQuantity: { '@id': 'schema:requiredQuantity' },\n requirements: { '@id': 'schema:requirements' },\n requiresSubscription: { '@id': 'schema:requiresSubscription' },\n reservationFor: { '@id': 'schema:reservationFor' },\n reservationId: { '@id': 'schema:reservationId' },\n reservationStatus: { '@id': 'schema:reservationStatus' },\n reservedTicket: { '@id': 'schema:reservedTicket' },\n responsibilities: { '@id': 'schema:responsibilities' },\n restPeriods: { '@id': 'schema:restPeriods' },\n result: { '@id': 'schema:result' },\n resultComment: { '@id': 'schema:resultComment' },\n resultReview: { '@id': 'schema:resultReview' },\n returnFees: { '@id': 'schema:returnFees' },\n returnPolicyCategory: { '@id': 'schema:returnPolicyCategory' },\n review: { '@id': 'schema:review' },\n reviewAspect: { '@id': 'schema:reviewAspect' },\n reviewBody: { '@id': 'schema:reviewBody' },\n reviewCount: { '@id': 'schema:reviewCount' },\n reviewRating: { '@id': 'schema:reviewRating' },\n reviewedBy: { '@id': 'schema:reviewedBy' },\n reviews: { '@id': 'schema:reviews' },\n riskFactor: { '@id': 'schema:riskFactor' },\n risks: { '@id': 'schema:risks' },\n roleName: { '@id': 'schema:roleName' },\n roofLoad: { '@id': 'schema:roofLoad' },\n rsvpResponse: { '@id': 'schema:rsvpResponse' },\n runsTo: { '@id': 'schema:runsTo' },\n runtime: { '@id': 'schema:runtime' },\n runtimePlatform: { '@id': 'schema:runtimePlatform' },\n rxcui: { '@id': 'schema:rxcui' },\n safetyConsideration: { '@id': 'schema:safetyConsideration' },\n salaryCurrency: { '@id': 'schema:salaryCurrency' },\n salaryUponCompletion: { '@id': 'schema:salaryUponCompletion' },\n sameAs: { '@id': 'schema:sameAs', '@type': '@id' },\n sampleType: { '@id': 'schema:sampleType' },\n saturatedFatContent: { '@id': 'schema:saturatedFatContent' },\n scheduleTimezone: { '@id': 'schema:scheduleTimezone' },\n scheduledPaymentDate: { '@id': 'schema:scheduledPaymentDate', '@type': 'Date' },\n scheduledTime: { '@id': 'schema:scheduledTime' },\n schemaVersion: { '@id': 'schema:schemaVersion' },\n schoolClosuresInfo: { '@id': 'schema:schoolClosuresInfo', '@type': '@id' },\n screenCount: { '@id': 'schema:screenCount' },\n screenshot: { '@id': 'schema:screenshot', '@type': '@id' },\n sdDatePublished: { '@id': 'schema:sdDatePublished', '@type': 'Date' },\n sdLicense: { '@id': 'schema:sdLicense', '@type': '@id' },\n sdPublisher: { '@id': 'schema:sdPublisher' },\n season: { '@id': 'schema:season', '@type': '@id' },\n seasonNumber: { '@id': 'schema:seasonNumber' },\n seasons: { '@id': 'schema:seasons' },\n seatNumber: { '@id': 'schema:seatNumber' },\n seatRow: { '@id': 'schema:seatRow' },\n seatSection: { '@id': 'schema:seatSection' },\n seatingCapacity: { '@id': 'schema:seatingCapacity' },\n seatingType: { '@id': 'schema:seatingType' },\n secondaryPrevention: { '@id': 'schema:secondaryPrevention' },\n securityClearanceRequirement: { '@id': 'schema:securityClearanceRequirement' },\n securityScreening: { '@id': 'schema:securityScreening' },\n seeks: { '@id': 'schema:seeks' },\n seller: { '@id': 'schema:seller' },\n sender: { '@id': 'schema:sender' },\n sensoryRequirement: { '@id': 'schema:sensoryRequirement' },\n sensoryUnit: { '@id': 'schema:sensoryUnit' },\n serialNumber: { '@id': 'schema:serialNumber' },\n seriousAdverseOutcome: { '@id': 'schema:seriousAdverseOutcome' },\n serverStatus: { '@id': 'schema:serverStatus' },\n servesCuisine: { '@id': 'schema:servesCuisine' },\n serviceArea: { '@id': 'schema:serviceArea' },\n serviceAudience: { '@id': 'schema:serviceAudience' },\n serviceLocation: { '@id': 'schema:serviceLocation' },\n serviceOperator: { '@id': 'schema:serviceOperator' },\n serviceOutput: { '@id': 'schema:serviceOutput' },\n servicePhone: { '@id': 'schema:servicePhone' },\n servicePostalAddress: { '@id': 'schema:servicePostalAddress' },\n serviceSmsNumber: { '@id': 'schema:serviceSmsNumber' },\n serviceType: { '@id': 'schema:serviceType' },\n serviceUrl: { '@id': 'schema:serviceUrl', '@type': '@id' },\n servingSize: { '@id': 'schema:servingSize' },\n sharedContent: { '@id': 'schema:sharedContent' },\n shippingDestination: { '@id': 'schema:shippingDestination' },\n shippingDetails: { '@id': 'schema:shippingDetails' },\n shippingLabel: { '@id': 'schema:shippingLabel' },\n shippingRate: { '@id': 'schema:shippingRate' },\n shippingSettingsLink: { '@id': 'schema:shippingSettingsLink', '@type': '@id' },\n sibling: { '@id': 'schema:sibling' },\n siblings: { '@id': 'schema:siblings' },\n signDetected: { '@id': 'schema:signDetected' },\n signOrSymptom: { '@id': 'schema:signOrSymptom' },\n significance: { '@id': 'schema:significance' },\n significantLink: { '@id': 'schema:significantLink', '@type': '@id' },\n significantLinks: { '@id': 'schema:significantLinks', '@type': '@id' },\n size: { '@id': 'schema:size' },\n sizeGroup: { '@id': 'schema:sizeGroup' },\n sizeSystem: { '@id': 'schema:sizeSystem' },\n skills: { '@id': 'schema:skills' },\n sku: { '@id': 'schema:sku' },\n slogan: { '@id': 'schema:slogan' },\n smokingAllowed: { '@id': 'schema:smokingAllowed' },\n sodiumContent: { '@id': 'schema:sodiumContent' },\n softwareAddOn: { '@id': 'schema:softwareAddOn' },\n softwareHelp: { '@id': 'schema:softwareHelp' },\n softwareRequirements: { '@id': 'schema:softwareRequirements' },\n softwareVersion: { '@id': 'schema:softwareVersion' },\n sourceOrganization: { '@id': 'schema:sourceOrganization' },\n sourcedFrom: { '@id': 'schema:sourcedFrom' },\n spatial: { '@id': 'schema:spatial' },\n spatialCoverage: { '@id': 'schema:spatialCoverage' },\n speakable: { '@id': 'schema:speakable', '@type': '@id' },\n specialCommitments: { '@id': 'schema:specialCommitments' },\n specialOpeningHoursSpecification: {\n '@id': 'schema:specialOpeningHoursSpecification',\n },\n specialty: { '@id': 'schema:specialty' },\n speechToTextMarkup: { '@id': 'schema:speechToTextMarkup' },\n speed: { '@id': 'schema:speed' },\n spokenByCharacter: { '@id': 'schema:spokenByCharacter' },\n sponsor: { '@id': 'schema:sponsor' },\n sport: { '@id': 'schema:sport' },\n sportsActivityLocation: { '@id': 'schema:sportsActivityLocation' },\n sportsEvent: { '@id': 'schema:sportsEvent' },\n sportsTeam: { '@id': 'schema:sportsTeam' },\n spouse: { '@id': 'schema:spouse' },\n stage: { '@id': 'schema:stage' },\n stageAsNumber: { '@id': 'schema:stageAsNumber' },\n starRating: { '@id': 'schema:starRating' },\n startDate: { '@id': 'schema:startDate', '@type': 'Date' },\n startOffset: { '@id': 'schema:startOffset' },\n startTime: { '@id': 'schema:startTime' },\n status: { '@id': 'schema:status' },\n steeringPosition: { '@id': 'schema:steeringPosition' },\n step: { '@id': 'schema:step' },\n stepValue: { '@id': 'schema:stepValue' },\n steps: { '@id': 'schema:steps' },\n storageRequirements: { '@id': 'schema:storageRequirements' },\n streetAddress: { '@id': 'schema:streetAddress' },\n strengthUnit: { '@id': 'schema:strengthUnit' },\n strengthValue: { '@id': 'schema:strengthValue' },\n structuralClass: { '@id': 'schema:structuralClass' },\n study: { '@id': 'schema:study' },\n studyDesign: { '@id': 'schema:studyDesign' },\n studyLocation: { '@id': 'schema:studyLocation' },\n studySubject: { '@id': 'schema:studySubject' },\n stupidProperty: { '@id': 'schema:stupidProperty' },\n subEvent: { '@id': 'schema:subEvent' },\n subEvents: { '@id': 'schema:subEvents' },\n subOrganization: { '@id': 'schema:subOrganization' },\n subReservation: { '@id': 'schema:subReservation' },\n subStageSuffix: { '@id': 'schema:subStageSuffix' },\n subStructure: { '@id': 'schema:subStructure' },\n subTest: { '@id': 'schema:subTest' },\n subTrip: { '@id': 'schema:subTrip' },\n subjectOf: { '@id': 'schema:subjectOf' },\n subtitleLanguage: { '@id': 'schema:subtitleLanguage' },\n successorOf: { '@id': 'schema:successorOf' },\n sugarContent: { '@id': 'schema:sugarContent' },\n suggestedAge: { '@id': 'schema:suggestedAge' },\n suggestedAnswer: { '@id': 'schema:suggestedAnswer' },\n suggestedGender: { '@id': 'schema:suggestedGender' },\n suggestedMaxAge: { '@id': 'schema:suggestedMaxAge' },\n suggestedMeasurement: { '@id': 'schema:suggestedMeasurement' },\n suggestedMinAge: { '@id': 'schema:suggestedMinAge' },\n suitableForDiet: { '@id': 'schema:suitableForDiet' },\n superEvent: { '@id': 'schema:superEvent' },\n supersededBy: { '@id': 'schema:supersededBy' },\n supply: { '@id': 'schema:supply' },\n supplyTo: { '@id': 'schema:supplyTo' },\n supportingData: { '@id': 'schema:supportingData' },\n surface: { '@id': 'schema:surface' },\n target: { '@id': 'schema:target' },\n targetCollection: { '@id': 'schema:targetCollection' },\n targetDescription: { '@id': 'schema:targetDescription' },\n targetName: { '@id': 'schema:targetName' },\n targetPlatform: { '@id': 'schema:targetPlatform' },\n targetPopulation: { '@id': 'schema:targetPopulation' },\n targetProduct: { '@id': 'schema:targetProduct' },\n targetUrl: { '@id': 'schema:targetUrl', '@type': '@id' },\n taxID: { '@id': 'schema:taxID' },\n teaches: { '@id': 'schema:teaches' },\n telephone: { '@id': 'schema:telephone' },\n temporal: { '@id': 'schema:temporal' },\n temporalCoverage: { '@id': 'schema:temporalCoverage' },\n termCode: { '@id': 'schema:termCode' },\n termDuration: { '@id': 'schema:termDuration' },\n termsOfService: { '@id': 'schema:termsOfService' },\n termsPerYear: { '@id': 'schema:termsPerYear' },\n text: { '@id': 'schema:text' },\n textValue: { '@id': 'schema:textValue' },\n thumbnail: { '@id': 'schema:thumbnail' },\n thumbnailUrl: { '@id': 'schema:thumbnailUrl', '@type': '@id' },\n tickerSymbol: { '@id': 'schema:tickerSymbol' },\n ticketNumber: { '@id': 'schema:ticketNumber' },\n ticketToken: { '@id': 'schema:ticketToken' },\n ticketedSeat: { '@id': 'schema:ticketedSeat' },\n timeOfDay: { '@id': 'schema:timeOfDay' },\n timeRequired: { '@id': 'schema:timeRequired' },\n timeToComplete: { '@id': 'schema:timeToComplete' },\n tissueSample: { '@id': 'schema:tissueSample' },\n title: { '@id': 'schema:title' },\n titleEIDR: { '@id': 'schema:titleEIDR' },\n toLocation: { '@id': 'schema:toLocation' },\n toRecipient: { '@id': 'schema:toRecipient' },\n tocContinuation: { '@id': 'schema:tocContinuation' },\n tocEntry: { '@id': 'schema:tocEntry' },\n tongueWeight: { '@id': 'schema:tongueWeight' },\n tool: { '@id': 'schema:tool' },\n torque: { '@id': 'schema:torque' },\n totalJobOpenings: { '@id': 'schema:totalJobOpenings' },\n totalPaymentDue: { '@id': 'schema:totalPaymentDue' },\n totalPrice: { '@id': 'schema:totalPrice' },\n totalTime: { '@id': 'schema:totalTime' },\n tourBookingPage: { '@id': 'schema:tourBookingPage', '@type': '@id' },\n touristType: { '@id': 'schema:touristType' },\n track: { '@id': 'schema:track' },\n trackingNumber: { '@id': 'schema:trackingNumber' },\n trackingUrl: { '@id': 'schema:trackingUrl', '@type': '@id' },\n tracks: { '@id': 'schema:tracks' },\n trailer: { '@id': 'schema:trailer' },\n trailerWeight: { '@id': 'schema:trailerWeight' },\n trainName: { '@id': 'schema:trainName' },\n trainNumber: { '@id': 'schema:trainNumber' },\n trainingSalary: { '@id': 'schema:trainingSalary' },\n transFatContent: { '@id': 'schema:transFatContent' },\n transcript: { '@id': 'schema:transcript' },\n transitTime: { '@id': 'schema:transitTime' },\n transitTimeLabel: { '@id': 'schema:transitTimeLabel' },\n translationOfWork: { '@id': 'schema:translationOfWork' },\n translator: { '@id': 'schema:translator' },\n transmissionMethod: { '@id': 'schema:transmissionMethod' },\n travelBans: { '@id': 'schema:travelBans', '@type': '@id' },\n trialDesign: { '@id': 'schema:trialDesign' },\n tributary: { '@id': 'schema:tributary' },\n typeOfBed: { '@id': 'schema:typeOfBed' },\n typeOfGood: { '@id': 'schema:typeOfGood' },\n typicalAgeRange: { '@id': 'schema:typicalAgeRange' },\n typicalCreditsPerTerm: { '@id': 'schema:typicalCreditsPerTerm' },\n typicalTest: { '@id': 'schema:typicalTest' },\n underName: { '@id': 'schema:underName' },\n unitCode: { '@id': 'schema:unitCode' },\n unitText: { '@id': 'schema:unitText' },\n unnamedSourcesPolicy: { '@id': 'schema:unnamedSourcesPolicy', '@type': '@id' },\n unsaturatedFatContent: { '@id': 'schema:unsaturatedFatContent' },\n uploadDate: { '@id': 'schema:uploadDate', '@type': 'Date' },\n upvoteCount: { '@id': 'schema:upvoteCount' },\n url: { '@id': 'schema:url', '@type': '@id' },\n urlTemplate: { '@id': 'schema:urlTemplate' },\n usageInfo: { '@id': 'schema:usageInfo', '@type': '@id' },\n usedToDiagnose: { '@id': 'schema:usedToDiagnose' },\n userInteractionCount: { '@id': 'schema:userInteractionCount' },\n usesDevice: { '@id': 'schema:usesDevice' },\n usesHealthPlanIdStandard: { '@id': 'schema:usesHealthPlanIdStandard' },\n utterances: { '@id': 'schema:utterances' },\n validFor: { '@id': 'schema:validFor' },\n validFrom: { '@id': 'schema:validFrom', '@type': 'Date' },\n validIn: { '@id': 'schema:validIn' },\n validThrough: { '@id': 'schema:validThrough', '@type': 'Date' },\n validUntil: { '@id': 'schema:validUntil', '@type': 'Date' },\n value: { '@id': 'schema:value' },\n valueAddedTaxIncluded: { '@id': 'schema:valueAddedTaxIncluded' },\n valueMaxLength: { '@id': 'schema:valueMaxLength' },\n valueMinLength: { '@id': 'schema:valueMinLength' },\n valueName: { '@id': 'schema:valueName' },\n valuePattern: { '@id': 'schema:valuePattern' },\n valueReference: { '@id': 'schema:valueReference' },\n valueRequired: { '@id': 'schema:valueRequired' },\n variableMeasured: { '@id': 'schema:variableMeasured' },\n variablesMeasured: { '@id': 'schema:variablesMeasured' },\n variantCover: { '@id': 'schema:variantCover' },\n variesBy: { '@id': 'schema:variesBy' },\n vatID: { '@id': 'schema:vatID' },\n vehicleConfiguration: { '@id': 'schema:vehicleConfiguration' },\n vehicleEngine: { '@id': 'schema:vehicleEngine' },\n vehicleIdentificationNumber: { '@id': 'schema:vehicleIdentificationNumber' },\n vehicleInteriorColor: { '@id': 'schema:vehicleInteriorColor' },\n vehicleInteriorType: { '@id': 'schema:vehicleInteriorType' },\n vehicleModelDate: { '@id': 'schema:vehicleModelDate', '@type': 'Date' },\n vehicleSeatingCapacity: { '@id': 'schema:vehicleSeatingCapacity' },\n vehicleSpecialUsage: { '@id': 'schema:vehicleSpecialUsage' },\n vehicleTransmission: { '@id': 'schema:vehicleTransmission' },\n vendor: { '@id': 'schema:vendor' },\n verificationFactCheckingPolicy: {\n '@id': 'schema:verificationFactCheckingPolicy',\n '@type': '@id',\n },\n version: { '@id': 'schema:version' },\n video: { '@id': 'schema:video' },\n videoFormat: { '@id': 'schema:videoFormat' },\n videoFrameSize: { '@id': 'schema:videoFrameSize' },\n videoQuality: { '@id': 'schema:videoQuality' },\n volumeNumber: { '@id': 'schema:volumeNumber' },\n warning: { '@id': 'schema:warning' },\n warranty: { '@id': 'schema:warranty' },\n warrantyPromise: { '@id': 'schema:warrantyPromise' },\n warrantyScope: { '@id': 'schema:warrantyScope' },\n webCheckinTime: { '@id': 'schema:webCheckinTime' },\n webFeed: { '@id': 'schema:webFeed', '@type': '@id' },\n weight: { '@id': 'schema:weight' },\n weightTotal: { '@id': 'schema:weightTotal' },\n wheelbase: { '@id': 'schema:wheelbase' },\n width: { '@id': 'schema:width' },\n winner: { '@id': 'schema:winner' },\n wordCount: { '@id': 'schema:wordCount' },\n workExample: { '@id': 'schema:workExample' },\n workFeatured: { '@id': 'schema:workFeatured' },\n workHours: { '@id': 'schema:workHours' },\n workLocation: { '@id': 'schema:workLocation' },\n workPerformed: { '@id': 'schema:workPerformed' },\n workPresented: { '@id': 'schema:workPresented' },\n workTranslation: { '@id': 'schema:workTranslation' },\n workload: { '@id': 'schema:workload' },\n worksFor: { '@id': 'schema:worksFor' },\n worstRating: { '@id': 'schema:worstRating' },\n xpath: { '@id': 'schema:xpath' },\n yearBuilt: { '@id': 'schema:yearBuilt' },\n yearlyRevenue: { '@id': 'schema:yearlyRevenue' },\n yearsInOperation: { '@id': 'schema:yearsInOperation' },\n yield: { '@id': 'schema:yield' },\n },\n}\n"],"mappings":"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"}