@credo-ts/askar-to-drizzle-storage-migration 0.6.0-alpha-20251010154241 → 0.6.0-alpha-20251010164336

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 (1868) hide show
  1. package/build/AskarToDrizzleStorageMigrator.d.mts +62 -0
  2. package/build/AskarToDrizzleStorageMigrator.d.mts.map +1 -0
  3. package/build/AskarToDrizzleStorageMigrator.d.ts +49 -36
  4. package/build/AskarToDrizzleStorageMigrator.d.ts.map +1 -0
  5. package/build/AskarToDrizzleStorageMigrator.js +168 -202
  6. package/build/AskarToDrizzleStorageMigrator.mjs +165 -0
  7. package/build/AskarToDrizzleStorageMigrator.mjs.map +1 -0
  8. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/assertClassBrand.js +9 -0
  9. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/assertClassBrand.mjs +8 -0
  10. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/checkPrivateRedeclaration.js +8 -0
  11. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/checkPrivateRedeclaration.mjs +7 -0
  12. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldGet2.js +9 -0
  13. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldGet2.mjs +9 -0
  14. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldInitSpec.js +9 -0
  15. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldInitSpec.mjs +9 -0
  16. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldSet2.js +9 -0
  17. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/classPrivateFieldSet2.mjs +9 -0
  18. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorate.js +11 -0
  19. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorate.mjs +10 -0
  20. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateMetadata.js +8 -0
  21. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateMetadata.mjs +7 -0
  22. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateParam.js +10 -0
  23. package/build/_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateParam.mjs +9 -0
  24. package/build/_virtual/rolldown_runtime.js +29 -0
  25. package/build/_virtual/rolldown_runtime.mjs +27 -0
  26. package/build/errors/AskarToDrizzleStorageMigrationError.js +11 -10
  27. package/build/errors/AskarToDrizzleStorageMigrationError.mjs +11 -0
  28. package/build/errors/AskarToDrizzleStorageMigrationError.mjs.map +1 -0
  29. package/build/index.d.mts +2 -0
  30. package/build/index.d.ts +2 -1
  31. package/build/index.js +3 -6
  32. package/build/index.mjs +3 -0
  33. package/build/node_modules/.pnpm/async-mutex@0.5.0/node_modules/async-mutex/index.js +303 -0
  34. package/build/node_modules/.pnpm/async-mutex@0.5.0/node_modules/async-mutex/index.mjs +302 -0
  35. package/build/node_modules/.pnpm/async-mutex@0.5.0/node_modules/async-mutex/index.mjs.map +1 -0
  36. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/ClassTransformer.js +76 -0
  37. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/MetadataStorage.js +157 -0
  38. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/TransformOperationExecutor.js +279 -0
  39. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/constants/default-options.constant.js +30 -0
  40. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/exclude.decorator.js +39 -0
  41. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/expose.decorator.js +39 -0
  42. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/index.js +43 -0
  43. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/transform-instance-to-instance.decorator.js +32 -0
  44. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/transform-instance-to-plain.decorator.js +32 -0
  45. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/transform-plain-to-instance.decorator.js +32 -0
  46. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/transform.decorator.js +32 -0
  47. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/decorators/type.decorator.js +35 -0
  48. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/enums/index.js +31 -0
  49. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/enums/transformation-type.enum.js +20 -0
  50. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/index.js +107 -0
  51. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/class-constructor.type.js +14 -0
  52. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/class-transformer-options.interface.js +14 -0
  53. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/exclude-options.interface.js +14 -0
  54. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/expose-options.interface.js +14 -0
  55. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/transform-options.interface.js +14 -0
  56. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/type-discriminator-descriptor.interface.js +14 -0
  57. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/decorator-options/type-options.interface.js +14 -0
  58. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/index.js +57 -0
  59. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/exclude-metadata.interface.js +14 -0
  60. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/expose-metadata.interface.js +14 -0
  61. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/transform-fn-params.interface.js +14 -0
  62. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/transform-metadata.interface.js +14 -0
  63. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/metadata/type-metadata.interface.js +14 -0
  64. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/target-map.interface.js +14 -0
  65. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/interfaces/type-help-options.interface.js +14 -0
  66. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/storage.js +20 -0
  67. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/utils/get-global.util.js +27 -0
  68. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/utils/index.js +33 -0
  69. package/build/node_modules/.pnpm/class-transformer@0.5.1/node_modules/class-transformer/cjs/utils/is-promise.util.js +18 -0
  70. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/container.js +58 -0
  71. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/ValidationOptions.js +19 -0
  72. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayContains.js +42 -0
  73. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayMaxSize.js +41 -0
  74. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayMinSize.js +41 -0
  75. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayNotContains.js +42 -0
  76. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayNotEmpty.js +40 -0
  77. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/array/ArrayUnique.js +45 -0
  78. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/Allow.js +35 -0
  79. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/Equals.js +39 -0
  80. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsDefined.js +40 -0
  81. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsEmpty.js +38 -0
  82. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsIn.js +39 -0
  83. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsLatLong.js +43 -0
  84. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsLatitude.js +40 -0
  85. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsLongitude.js +40 -0
  86. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsNotEmpty.js +38 -0
  87. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsNotIn.js +39 -0
  88. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/IsOptional.js +38 -0
  89. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/NotEquals.js +39 -0
  90. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/Validate.js +52 -0
  91. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/ValidateBy.js +35 -0
  92. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/ValidateIf.js +36 -0
  93. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/ValidateNested.js +38 -0
  94. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/common/ValidatePromise.js +35 -0
  95. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/date/MaxDate.js +39 -0
  96. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/date/MinDate.js +39 -0
  97. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/decorators.js +253 -0
  98. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/IsDivisibleBy.js +44 -0
  99. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/IsNegative.js +38 -0
  100. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/IsPositive.js +38 -0
  101. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/Max.js +39 -0
  102. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/number/Min.js +39 -0
  103. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/object/IsInstance.js +42 -0
  104. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/object/IsNotEmptyObject.js +46 -0
  105. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/Contains.js +46 -0
  106. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsAlpha.js +46 -0
  107. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsAlphanumeric.js +46 -0
  108. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsAscii.js +45 -0
  109. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBIC.js +45 -0
  110. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBase32.js +45 -0
  111. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBase58.js +45 -0
  112. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBase64.js +46 -0
  113. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBooleanString.js +45 -0
  114. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsBtcAddress.js +45 -0
  115. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsByteLength.js +49 -0
  116. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsCreditCard.js +45 -0
  117. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsCurrency.js +46 -0
  118. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsDataURI.js +45 -0
  119. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsDateString.js +41 -0
  120. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsDecimal.js +46 -0
  121. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsEAN.js +45 -0
  122. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsEmail.js +46 -0
  123. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsEthereumAddress.js +45 -0
  124. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsFQDN.js +46 -0
  125. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsFirebasePushId.js +40 -0
  126. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsFullWidth.js +45 -0
  127. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHSL.js +47 -0
  128. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHalfWidth.js +45 -0
  129. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHash.js +48 -0
  130. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHexColor.js +45 -0
  131. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsHexadecimal.js +45 -0
  132. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsIBAN.js +45 -0
  133. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsIP.js +47 -0
  134. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISBN.js +47 -0
  135. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISIN.js +45 -0
  136. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISO31661Alpha2.js +43 -0
  137. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISO31661Alpha3.js +43 -0
  138. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISO8601.js +48 -0
  139. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISRC.js +45 -0
  140. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsISSN.js +46 -0
  141. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsIdentityCard.js +50 -0
  142. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsJSON.js +45 -0
  143. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsJWT.js +45 -0
  144. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsLocale.js +45 -0
  145. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsLowercase.js +45 -0
  146. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMacAddress.js +46 -0
  147. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMagnetURI.js +45 -0
  148. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMilitaryTime.js +45 -0
  149. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMimeType.js +45 -0
  150. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMobilePhone.js +62 -0
  151. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMongoId.js +45 -0
  152. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsMultibyte.js +45 -0
  153. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsNumberString.js +46 -0
  154. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsOctal.js +45 -0
  155. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsPassportNumber.js +46 -0
  156. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsPhoneNumber.js +61 -0
  157. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsPort.js +43 -0
  158. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsPostalCode.js +46 -0
  159. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsRFC3339.js +45 -0
  160. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsRgbColor.js +48 -0
  161. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsSemVer.js +45 -0
  162. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsStrongPassword.js +74 -0
  163. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsSurrogatePair.js +45 -0
  164. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsTimeZone.js +47 -0
  165. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsUUID.js +46 -0
  166. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsUppercase.js +45 -0
  167. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsUrl.js +46 -0
  168. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/IsVariableWidth.js +45 -0
  169. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/Length.js +55 -0
  170. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/Matches.js +41 -0
  171. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/MaxLength.js +49 -0
  172. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/MinLength.js +46 -0
  173. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/NotContains.js +46 -0
  174. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/is-iso4217-currency-code.js +43 -0
  175. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/string/is-tax-id.js +54 -0
  176. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsArray.js +38 -0
  177. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsBoolean.js +38 -0
  178. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsDate.js +38 -0
  179. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsEnum.js +45 -0
  180. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsInt.js +38 -0
  181. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsNumber.js +47 -0
  182. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsObject.js +40 -0
  183. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/decorator/typechecker/IsString.js +38 -0
  184. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/index.js +92 -0
  185. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/metadata/ConstraintMetadata.js +33 -0
  186. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/metadata/MetadataStorage.js +121 -0
  187. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/metadata/ValidationMetadata.js +45 -0
  188. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/register-decorator.js +57 -0
  189. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/utils/convert-to-array.util.js +22 -0
  190. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/utils/get-global.util.js +27 -0
  191. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/utils/index.js +37 -0
  192. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/utils/is-promise.util.js +18 -0
  193. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationArguments.js +14 -0
  194. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationError.js +42 -0
  195. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationExecutor.js +228 -0
  196. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationTypes.js +32 -0
  197. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidationUtils.js +42 -0
  198. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/Validator.js +63 -0
  199. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidatorConstraintInterface.js +14 -0
  200. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation/ValidatorOptions.js +14 -0
  201. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation-schema/ValidationSchema.js +14 -0
  202. package/build/node_modules/.pnpm/class-validator@0.14.1/node_modules/class-validator/cjs/validation-schema/ValidationSchemaToMetadataTransformer.js +46 -0
  203. package/build/node_modules/.pnpm/decode-uri-component@0.2.2/node_modules/decode-uri-component/index.js +70 -0
  204. package/build/node_modules/.pnpm/decode-uri-component@0.2.2/node_modules/decode-uri-component/index.mjs +68 -0
  205. package/build/node_modules/.pnpm/decode-uri-component@0.2.2/node_modules/decode-uri-component/index.mjs.map +1 -0
  206. package/build/node_modules/.pnpm/filter-obj@1.1.0/node_modules/filter-obj/index.js +24 -0
  207. package/build/node_modules/.pnpm/filter-obj@1.1.0/node_modules/filter-obj/index.mjs +22 -0
  208. package/build/node_modules/.pnpm/filter-obj@1.1.0/node_modules/filter-obj/index.mjs.map +1 -0
  209. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouType.js +396 -0
  210. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.PatternMatcher.js +179 -0
  211. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.PatternParser.js +164 -0
  212. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.complete.js +73 -0
  213. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.js +393 -0
  214. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeFormatter.util.js +107 -0
  215. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeParser.js +332 -0
  216. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/AsYouTypeState.js +132 -0
  217. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/ParseError.js +144 -0
  218. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/PhoneNumber.js +195 -0
  219. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/PhoneNumberMatcher.js +326 -0
  220. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/constants.js +31 -0
  221. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/LRUCache.js +109 -0
  222. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/Leniency.js +121 -0
  223. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/RegExpCache.js +56 -0
  224. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/isValidCandidate.js +61 -0
  225. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/isValidPreCandidate.js +26 -0
  226. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/matchPhoneNumberStringAgainstPhoneNumber.js +46 -0
  227. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/parsePreCandidate.js +21 -0
  228. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/utf-8.js +62 -0
  229. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findNumbers/util.js +38 -0
  230. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/findPhoneNumbersInText.js +60 -0
  231. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/format.js +204 -0
  232. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/formatIncompletePhoneNumber.js +35 -0
  233. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/getCountries.js +23 -0
  234. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/getCountryCallingCode.js +22 -0
  235. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/getExampleNumber.js +23 -0
  236. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/RFC3966.js +120 -0
  237. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/applyInternationalSeparatorStyle.js +20 -0
  238. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/checkNumberLength.js +41 -0
  239. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extension/createExtensionPattern.js +72 -0
  240. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extension/extractExtension.js +35 -0
  241. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractCountryCallingCode.js +81 -0
  242. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractCountryCallingCodeFromInternationalNumberWithoutPlusSign.js +52 -0
  243. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractFormattedPhoneNumberFromPossibleRfc3966NumberUri.js +80 -0
  244. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractNationalNumber.js +57 -0
  245. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractNationalNumberFromPossiblyIncompleteNumber.js +59 -0
  246. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/extractPhoneContext.js +69 -0
  247. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/formatNationalNumberUsingFormat.js +30 -0
  248. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getCountryByCallingCode.js +36 -0
  249. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getCountryByNationalNumber.js +70 -0
  250. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getIddPrefix.js +36 -0
  251. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getNumberType.js +88 -0
  252. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/getPossibleCountriesForNumber.js +40 -0
  253. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/isObject.js +19 -0
  254. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/isViablePhoneNumber.js +36 -0
  255. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/matchesEntirely.js +24 -0
  256. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/mergeArrays.js +60 -0
  257. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/parseDigits.js +113 -0
  258. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/helpers/stripIddPrefix.js +36 -0
  259. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/isPossible.js +63 -0
  260. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/isPossiblePhoneNumber.js +59 -0
  261. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/isValid.js +66 -0
  262. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/isValidPhoneNumber.js +59 -0
  263. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/legacy/findNumbers.js +29 -0
  264. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/legacy/searchNumbers.js +48 -0
  265. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/metadata.js +559 -0
  266. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/normalizeArguments.js +124 -0
  267. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parse.js +241 -0
  268. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parseIncompletePhoneNumber.js +91 -0
  269. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parsePhoneNumber.js +26 -0
  270. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parsePhoneNumberWithError.js +26 -0
  271. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parsePhoneNumberWithError_.js +54 -0
  272. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/parsePhoneNumber_.js +64 -0
  273. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/searchPhoneNumbersInText.js +66 -0
  274. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/tools/semver-compare.js +31 -0
  275. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/build/validatePhoneNumberLength.js +74 -0
  276. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/core/index.js +63 -0
  277. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/max/index.js +89 -0
  278. package/build/node_modules/.pnpm/libphonenumber-js@1.11.3/node_modules/libphonenumber-js/metadata.max.js +10466 -0
  279. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/datetime.js +1974 -0
  280. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/datetime.mjs +1974 -0
  281. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/datetime.mjs.map +1 -0
  282. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/duration.js +792 -0
  283. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/duration.mjs +793 -0
  284. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/duration.mjs.map +1 -0
  285. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.js +63 -0
  286. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.mjs +57 -0
  287. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/errors.mjs.map +1 -0
  288. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.js +176 -0
  289. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.mjs +167 -0
  290. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/conversions.mjs.map +1 -0
  291. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/diff.js +62 -0
  292. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/diff.mjs +63 -0
  293. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/diff.mjs.map +1 -0
  294. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/digits.js +77 -0
  295. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/digits.mjs +75 -0
  296. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/digits.mjs.map +1 -0
  297. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/english.js +197 -0
  298. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/english.mjs +186 -0
  299. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/english.mjs.map +1 -0
  300. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formats.js +177 -0
  301. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formats.mjs +156 -0
  302. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formats.mjs.map +1 -0
  303. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formatter.js +240 -0
  304. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formatter.mjs +241 -0
  305. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/formatter.mjs.map +1 -0
  306. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/invalid.js +15 -0
  307. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/invalid.mjs +15 -0
  308. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/invalid.mjs.map +1 -0
  309. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/locale.js +379 -0
  310. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/locale.mjs +380 -0
  311. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/locale.mjs.map +1 -0
  312. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/regexParser.js +203 -0
  313. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/regexParser.mjs +199 -0
  314. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/regexParser.mjs.map +1 -0
  315. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/tokenParser.js +329 -0
  316. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/tokenParser.mjs +326 -0
  317. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/tokenParser.mjs.map +1 -0
  318. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/util.js +238 -0
  319. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/util.mjs +211 -0
  320. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/util.mjs.map +1 -0
  321. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/zoneUtil.js +24 -0
  322. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/zoneUtil.mjs +25 -0
  323. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/impl/zoneUtil.mjs.map +1 -0
  324. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/info.js +188 -0
  325. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/info.mjs +189 -0
  326. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/info.mjs.map +1 -0
  327. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/interval.js +529 -0
  328. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/interval.mjs +530 -0
  329. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/interval.mjs.map +1 -0
  330. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/settings.js +158 -0
  331. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/settings.mjs +159 -0
  332. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/settings.mjs.map +1 -0
  333. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zone.js +93 -0
  334. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zone.mjs +94 -0
  335. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zone.mjs.map +1 -0
  336. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/IANAZone.js +203 -0
  337. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/IANAZone.mjs +204 -0
  338. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/IANAZone.mjs.map +1 -0
  339. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/fixedOffsetZone.js +134 -0
  340. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/fixedOffsetZone.mjs +135 -0
  341. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/fixedOffsetZone.mjs.map +1 -0
  342. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/invalidZone.js +49 -0
  343. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/invalidZone.mjs +50 -0
  344. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/invalidZone.mjs.map +1 -0
  345. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/systemZone.js +54 -0
  346. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/systemZone.mjs +55 -0
  347. package/build/node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/zones/systemZone.mjs.map +1 -0
  348. package/build/node_modules/.pnpm/query-string@7.1.3/node_modules/query-string/index.js +299 -0
  349. package/build/node_modules/.pnpm/query-string@7.1.3/node_modules/query-string/index.mjs +297 -0
  350. package/build/node_modules/.pnpm/query-string@7.1.3/node_modules/query-string/index.mjs.map +1 -0
  351. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/index.js +1404 -0
  352. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/AsyncSubject.js +67 -0
  353. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/BehaviorSubject.js +64 -0
  354. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Notification.js +74 -0
  355. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/NotificationFactories.js +33 -0
  356. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Observable.js +115 -0
  357. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/ReplaySubject.js +86 -0
  358. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Scheduler.js +30 -0
  359. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Subject.js +193 -0
  360. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Subscriber.js +192 -0
  361. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/Subscription.js +160 -0
  362. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/config.js +21 -0
  363. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/firstValueFrom.js +36 -0
  364. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/lastValueFrom.js +36 -0
  365. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/ConnectableObservable.js +96 -0
  366. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/bindCallback.js +20 -0
  367. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/bindCallbackInternals.js +93 -0
  368. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/bindNodeCallback.js +20 -0
  369. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/combineLatest.js +78 -0
  370. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/concat.js +26 -0
  371. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/connectable.js +48 -0
  372. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/defer.js +24 -0
  373. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/dom/animationFrames.js +47 -0
  374. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/empty.js +31 -0
  375. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/forkJoin.js +64 -0
  376. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/from.js +22 -0
  377. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/fromEvent.js +92 -0
  378. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/fromEventPattern.js +35 -0
  379. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/fromSubscribable.js +22 -0
  380. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/generate.js +143 -0
  381. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/iif.js +22 -0
  382. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/innerFrom.js +309 -0
  383. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/interval.js +25 -0
  384. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/merge.js +33 -0
  385. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/never.js +24 -0
  386. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/of.js +25 -0
  387. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/onErrorResumeNext.js +48 -0
  388. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/pairs.js +20 -0
  389. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/partition.js +24 -0
  390. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/race.js +45 -0
  391. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/range.js +40 -0
  392. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/throwError.js +30 -0
  393. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/timer.js +42 -0
  394. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/using.js +31 -0
  395. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/observable/zip.js +88 -0
  396. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/OperatorSubscriber.js +82 -0
  397. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/audit.js +52 -0
  398. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/auditTime.js +27 -0
  399. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/buffer.js +42 -0
  400. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/bufferCount.js +98 -0
  401. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/bufferTime.js +105 -0
  402. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/bufferToggle.js +72 -0
  403. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/bufferWhen.js +45 -0
  404. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/catchError.js +41 -0
  405. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/combineAll.js +17 -0
  406. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/combineLatest.js +56 -0
  407. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/combineLatestAll.js +22 -0
  408. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/combineLatestWith.js +43 -0
  409. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concat.js +52 -0
  410. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concatAll.js +20 -0
  411. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concatMap.js +22 -0
  412. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concatMapTo.js +26 -0
  413. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/concatWith.js +43 -0
  414. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/connect.js +35 -0
  415. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/count.js +22 -0
  416. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/debounce.js +52 -0
  417. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/debounceTime.js +61 -0
  418. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/defaultIfEmpty.js +31 -0
  419. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/delay.js +28 -0
  420. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/delayWhen.js +35 -0
  421. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/dematerialize.js +28 -0
  422. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/distinct.js +38 -0
  423. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilChanged.js +40 -0
  424. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/distinctUntilKeyChanged.js +22 -0
  425. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/elementAt.js +36 -0
  426. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/endWith.js +47 -0
  427. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/every.js +33 -0
  428. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/exhaust.js +17 -0
  429. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/exhaustAll.js +22 -0
  430. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/exhaustMap.js +49 -0
  431. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/expand.js +26 -0
  432. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/filter.js +27 -0
  433. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/finalize.js +26 -0
  434. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/find.js +39 -0
  435. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/findIndex.js +22 -0
  436. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/first.js +37 -0
  437. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/flatMap.js +17 -0
  438. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/groupBy.js +89 -0
  439. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/ignoreElements.js +26 -0
  440. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/isEmpty.js +30 -0
  441. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/joinAllInternals.js +30 -0
  442. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/last.js +37 -0
  443. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/map.js +27 -0
  444. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mapTo.js +22 -0
  445. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/materialize.js +34 -0
  446. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/max.js +26 -0
  447. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/merge.js +53 -0
  448. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeAll.js +23 -0
  449. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeInternals.js +67 -0
  450. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeMap.js +37 -0
  451. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeMapTo.js +29 -0
  452. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeScan.js +32 -0
  453. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/mergeWith.js +43 -0
  454. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/min.js +26 -0
  455. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/multicast.js +30 -0
  456. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/observeOn.js +39 -0
  457. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/onErrorResumeNextWith.js +49 -0
  458. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/pairwise.js +31 -0
  459. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/partition.js +24 -0
  460. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/pluck.js +32 -0
  461. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/publish.js +28 -0
  462. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/publishBehavior.js +27 -0
  463. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/publishLast.js +27 -0
  464. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/publishReplay.js +28 -0
  465. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/race.js +45 -0
  466. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/raceWith.js +49 -0
  467. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/reduce.js +22 -0
  468. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/refCount.js +38 -0
  469. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/repeat.js +60 -0
  470. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/repeatWhen.js +62 -0
  471. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/retry.js +69 -0
  472. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/retryWhen.js +48 -0
  473. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/sample.js +41 -0
  474. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/sampleTime.js +25 -0
  475. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/scan.js +22 -0
  476. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/scanInternals.js +32 -0
  477. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/sequenceEqual.js +55 -0
  478. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/share.js +116 -0
  479. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/shareReplay.js +34 -0
  480. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/single.js +46 -0
  481. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/skip.js +22 -0
  482. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/skipLast.js +40 -0
  483. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/skipUntil.js +36 -0
  484. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/skipWhile.js +28 -0
  485. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/startWith.js +29 -0
  486. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/subscribeOn.js +25 -0
  487. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/switchAll.js +22 -0
  488. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/switchMap.js +45 -0
  489. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/switchMapTo.js +26 -0
  490. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/switchScan.js +32 -0
  491. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/take.js +34 -0
  492. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/takeLast.js +63 -0
  493. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/takeUntil.js +31 -0
  494. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/takeWhile.js +30 -0
  495. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/tap.js +54 -0
  496. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/throttle.js +62 -0
  497. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/throttleTime.js +28 -0
  498. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/throwIfEmpty.js +36 -0
  499. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/timeInterval.js +41 -0
  500. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/timeout.js +76 -0
  501. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/timeoutWith.js +40 -0
  502. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/timestamp.js +28 -0
  503. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/toArray.js +27 -0
  504. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/window.js +49 -0
  505. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/windowCount.js +71 -0
  506. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/windowTime.js +98 -0
  507. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/windowToggle.js +89 -0
  508. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/windowWhen.js +57 -0
  509. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/withLatestFrom.js +77 -0
  510. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/zip.js +47 -0
  511. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/zipAll.js +22 -0
  512. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/operators/zipWith.js +43 -0
  513. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleArray.js +29 -0
  514. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleAsyncIterable.js +33 -0
  515. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleIterable.js +47 -0
  516. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleObservable.js +24 -0
  517. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/schedulePromise.js +24 -0
  518. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduleReadableStreamLike.js +22 -0
  519. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduled/scheduled.js +52 -0
  520. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/Action.js +45 -0
  521. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameAction.js +65 -0
  522. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AnimationFrameScheduler.js +61 -0
  523. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AsapAction.js +63 -0
  524. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AsapScheduler.js +57 -0
  525. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncAction.js +105 -0
  526. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/AsyncScheduler.js +63 -0
  527. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/QueueAction.js +61 -0
  528. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/QueueScheduler.js +41 -0
  529. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/VirtualTimeScheduler.js +114 -0
  530. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrame.js +21 -0
  531. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/animationFrameProvider.js +69 -0
  532. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/asap.js +21 -0
  533. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/async.js +21 -0
  534. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/dateTimestampProvider.js +21 -0
  535. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/immediateProvider.js +52 -0
  536. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/intervalProvider.js +50 -0
  537. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/performanceTimestampProvider.js +21 -0
  538. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/queue.js +21 -0
  539. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/scheduler/timeoutProvider.js +50 -0
  540. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/symbol/iterator.js +20 -0
  541. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/symbol/observable.js +17 -0
  542. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/types.js +14 -0
  543. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/ArgumentOutOfRangeError.js +23 -0
  544. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/EmptyError.js +23 -0
  545. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/Immediate.js +41 -0
  546. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/NotFoundError.js +23 -0
  547. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/ObjectUnsubscribedError.js +23 -0
  548. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/SequenceError.js +23 -0
  549. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/UnsubscriptionError.js +26 -0
  550. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/args.js +33 -0
  551. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/argsArgArrayOrObject.js +42 -0
  552. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/argsOrArgArray.js +19 -0
  553. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/arrRemove.js +21 -0
  554. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/createErrorClass.js +25 -0
  555. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/createObject.js +20 -0
  556. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/errorContext.js +40 -0
  557. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/executeSchedule.js +26 -0
  558. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/identity.js +18 -0
  559. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isArrayLike.js +17 -0
  560. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isAsyncIterable.js +20 -0
  561. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isDate.js +18 -0
  562. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isFunction.js +18 -0
  563. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isInteropObservable.js +22 -0
  564. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isIterable.js +22 -0
  565. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isObservable.js +22 -0
  566. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isPromise.js +20 -0
  567. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isReadableStreamLike.js +182 -0
  568. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/isScheduler.js +20 -0
  569. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/lift.js +33 -0
  570. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/mapOneOrManyArgs.js +47 -0
  571. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/noop.js +16 -0
  572. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/not.js +20 -0
  573. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/pipe.js +32 -0
  574. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/reportUnhandledError.js +26 -0
  575. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/internal/util/throwUnobservableError.js +18 -0
  576. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/cjs/operators/index.js +921 -0
  577. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/NotificationFactories.mjs +21 -0
  578. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/NotificationFactories.mjs.map +1 -0
  579. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Observable.mjs +99 -0
  580. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Observable.mjs.map +1 -0
  581. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/ReplaySubject.mjs +58 -0
  582. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/ReplaySubject.mjs.map +1 -0
  583. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Scheduler.mjs +20 -0
  584. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Scheduler.mjs.map +1 -0
  585. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subject.mjs +149 -0
  586. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subject.mjs.map +1 -0
  587. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subscriber.mjs +156 -0
  588. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subscriber.mjs.map +1 -0
  589. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subscription.mjs +115 -0
  590. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/Subscription.mjs.map +1 -0
  591. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/config.mjs +12 -0
  592. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/config.mjs.map +1 -0
  593. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/firstValueFrom.mjs +25 -0
  594. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/firstValueFrom.mjs.map +1 -0
  595. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/concat.mjs +14 -0
  596. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/concat.mjs.map +1 -0
  597. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/empty.mjs +10 -0
  598. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/empty.mjs.map +1 -0
  599. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/from.mjs +11 -0
  600. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/from.mjs.map +1 -0
  601. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/innerFrom.mjs +139 -0
  602. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/innerFrom.mjs.map +1 -0
  603. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/interval.mjs +14 -0
  604. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/interval.mjs.map +1 -0
  605. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/merge.mjs +19 -0
  606. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/merge.mjs.map +1 -0
  607. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/of.mjs +13 -0
  608. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/of.mjs.map +1 -0
  609. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/timer.mjs +29 -0
  610. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/observable/timer.mjs.map +1 -0
  611. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.mjs +54 -0
  612. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/OperatorSubscriber.mjs.map +1 -0
  613. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/catchError.mjs +29 -0
  614. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/catchError.mjs.map +1 -0
  615. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/concatAll.mjs +10 -0
  616. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/concatAll.mjs.map +1 -0
  617. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/defaultIfEmpty.mjs +20 -0
  618. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/defaultIfEmpty.mjs.map +1 -0
  619. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/delayWhen.mjs +20 -0
  620. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/delayWhen.mjs.map +1 -0
  621. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/filter.mjs +16 -0
  622. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/filter.mjs.map +1 -0
  623. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/first.mjs +22 -0
  624. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/first.mjs.map +1 -0
  625. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/ignoreElements.mjs +14 -0
  626. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/ignoreElements.mjs.map +1 -0
  627. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/map.mjs +16 -0
  628. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/map.mjs.map +1 -0
  629. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mapTo.mjs +12 -0
  630. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mapTo.mjs.map +1 -0
  631. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.mjs +12 -0
  632. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeAll.mjs.map +1 -0
  633. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeInternals.mjs +55 -0
  634. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeInternals.mjs.map +1 -0
  635. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeMap.mjs +23 -0
  636. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/mergeMap.mjs.map +1 -0
  637. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/observeOn.mjs +27 -0
  638. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/observeOn.mjs.map +1 -0
  639. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/subscribeOn.mjs +15 -0
  640. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/subscribeOn.mjs.map +1 -0
  641. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/take.mjs +22 -0
  642. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/take.mjs.map +1 -0
  643. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/takeUntil.mjs +18 -0
  644. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/takeUntil.mjs.map +1 -0
  645. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/tap.mjs +41 -0
  646. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/tap.mjs.map +1 -0
  647. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttle.mjs +50 -0
  648. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttle.mjs.map +1 -0
  649. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttleTime.mjs +16 -0
  650. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throttleTime.mjs.map +1 -0
  651. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throwIfEmpty.mjs +24 -0
  652. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/throwIfEmpty.mjs.map +1 -0
  653. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/timeout.mjs +59 -0
  654. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/operators/timeout.mjs.map +1 -0
  655. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.mjs +19 -0
  656. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleArray.mjs.map +1 -0
  657. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.mjs +22 -0
  658. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleAsyncIterable.mjs.map +1 -0
  659. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.mjs +34 -0
  660. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleIterable.mjs.map +1 -0
  661. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.mjs +12 -0
  662. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleObservable.mjs.map +1 -0
  663. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.mjs +12 -0
  664. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/schedulePromise.mjs.map +1 -0
  665. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleReadableStreamLike.mjs +11 -0
  666. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduleReadableStreamLike.mjs.map +1 -0
  667. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.mjs +30 -0
  668. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduled/scheduled.mjs.map +1 -0
  669. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/Action.mjs +19 -0
  670. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/Action.mjs.map +1 -0
  671. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.mjs +76 -0
  672. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncAction.mjs.map +1 -0
  673. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.mjs +36 -0
  674. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/AsyncScheduler.mjs.map +1 -0
  675. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/async.mjs +10 -0
  676. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/async.mjs.map +1 -0
  677. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.mjs +11 -0
  678. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/dateTimestampProvider.mjs.map +1 -0
  679. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.mjs +21 -0
  680. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/intervalProvider.mjs.map +1 -0
  681. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.mjs +21 -0
  682. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/scheduler/timeoutProvider.mjs.map +1 -0
  683. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/symbol/iterator.mjs +10 -0
  684. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/symbol/iterator.mjs.map +1 -0
  685. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/symbol/observable.mjs +8 -0
  686. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/symbol/observable.mjs.map +1 -0
  687. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/EmptyError.mjs +14 -0
  688. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/EmptyError.mjs.map +1 -0
  689. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.mjs +14 -0
  690. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/ObjectUnsubscribedError.mjs.map +1 -0
  691. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.mjs +17 -0
  692. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/UnsubscriptionError.mjs.map +1 -0
  693. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/args.mjs +16 -0
  694. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/args.mjs.map +1 -0
  695. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/arrRemove.mjs +11 -0
  696. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/arrRemove.mjs.map +1 -0
  697. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.mjs +15 -0
  698. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/createErrorClass.mjs.map +1 -0
  699. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/errorContext.mjs +29 -0
  700. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/errorContext.mjs.map +1 -0
  701. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.mjs +16 -0
  702. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/executeSchedule.mjs.map +1 -0
  703. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/identity.mjs +8 -0
  704. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/identity.mjs.map +1 -0
  705. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isArrayLike.mjs +8 -0
  706. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isArrayLike.mjs.map +1 -0
  707. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isAsyncIterable.mjs +10 -0
  708. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isAsyncIterable.mjs.map +1 -0
  709. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isDate.mjs +8 -0
  710. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isDate.mjs.map +1 -0
  711. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isFunction.mjs +8 -0
  712. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isFunction.mjs.map +1 -0
  713. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.mjs +11 -0
  714. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isInteropObservable.mjs.map +1 -0
  715. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isIterable.mjs +11 -0
  716. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isIterable.mjs.map +1 -0
  717. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isPromise.mjs +10 -0
  718. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isPromise.mjs.map +1 -0
  719. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.mjs +47 -0
  720. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isReadableStreamLike.mjs.map +1 -0
  721. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isScheduler.mjs +10 -0
  722. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/isScheduler.mjs.map +1 -0
  723. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/lift.mjs +22 -0
  724. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/lift.mjs.map +1 -0
  725. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/noop.mjs +6 -0
  726. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/noop.mjs.map +1 -0
  727. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/pipe.mjs +16 -0
  728. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/pipe.mjs.map +1 -0
  729. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.mjs +15 -0
  730. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/reportUnhandledError.mjs.map +1 -0
  731. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/throwUnobservableError.mjs +8 -0
  732. package/build/node_modules/.pnpm/rxjs@7.8.2/node_modules/rxjs/dist/esm5/internal/util/throwUnobservableError.mjs.map +1 -0
  733. package/build/node_modules/.pnpm/split-on-first@1.1.0/node_modules/split-on-first/index.js +20 -0
  734. package/build/node_modules/.pnpm/split-on-first@1.1.0/node_modules/split-on-first/index.mjs +18 -0
  735. package/build/node_modules/.pnpm/split-on-first@1.1.0/node_modules/split-on-first/index.mjs.map +1 -0
  736. package/build/node_modules/.pnpm/strict-uri-encode@2.0.0/node_modules/strict-uri-encode/index.js +14 -0
  737. package/build/node_modules/.pnpm/strict-uri-encode@2.0.0/node_modules/strict-uri-encode/index.mjs +12 -0
  738. package/build/node_modules/.pnpm/strict-uri-encode@2.0.0/node_modules/strict-uri-encode/index.mjs.map +1 -0
  739. package/build/node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs +251 -0
  740. package/build/node_modules/.pnpm/tslib@2.8.1/node_modules/tslib/tslib.es6.mjs.map +1 -0
  741. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/index.js +356 -0
  742. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/alpha.js +200 -0
  743. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/blacklist.js +26 -0
  744. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/contains.js +36 -0
  745. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/equals.js +26 -0
  746. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/escape.js +26 -0
  747. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAbaRouting.js +32 -0
  748. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAfter.js +28 -0
  749. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAlpha.js +35 -0
  750. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAlphanumeric.js +35 -0
  751. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isAscii.js +27 -0
  752. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBIC.js +31 -0
  753. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBase32.js +34 -0
  754. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBase58.js +28 -0
  755. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBase64.js +36 -0
  756. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBefore.js +31 -0
  757. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBoolean.js +36 -0
  758. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isBtcAddress.js +28 -0
  759. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isByteLength.js +44 -0
  760. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isCreditCard.js +53 -0
  761. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isCurrency.js +74 -0
  762. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isDataURI.js +38 -0
  763. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isDate.js +166 -0
  764. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isDecimal.js +47 -0
  765. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isDivisibleBy.js +28 -0
  766. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isEAN.js +83 -0
  767. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isEmail.js +115 -0
  768. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isEmpty.js +30 -0
  769. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isEthereumAddress.js +27 -0
  770. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isFQDN.js +54 -0
  771. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isFloat.js +31 -0
  772. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isFullWidth.js +25 -0
  773. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHSL.js +30 -0
  774. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHalfWidth.js +25 -0
  775. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHash.js +41 -0
  776. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHexColor.js +27 -0
  777. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isHexadecimal.js +27 -0
  778. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIBAN.js +172 -0
  779. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIMEI.js +43 -0
  780. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIP.js +65 -0
  781. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIPRange.js +47 -0
  782. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISBN.js +44 -0
  783. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISIN.js +49 -0
  784. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO31661Alpha2.js +276 -0
  785. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO31661Alpha3.js +277 -0
  786. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO4217.js +207 -0
  787. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO6346.js +43 -0
  788. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO6391.js +213 -0
  789. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISO8601.js +49 -0
  790. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISRC.js +27 -0
  791. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isISSN.js +38 -0
  792. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIdentityCard.js +581 -0
  793. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isIn.js +45 -0
  794. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isInt.js +34 -0
  795. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isJSON.js +48 -0
  796. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isJWT.js +32 -0
  797. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLatLong.js +38 -0
  798. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLength.js +46 -0
  799. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLicensePlate.js +72 -0
  800. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLocale.js +36 -0
  801. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLowercase.js +26 -0
  802. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isLuhnNumber.js +41 -0
  803. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMACAddress.js +43 -0
  804. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMD5.js +27 -0
  805. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMagnetURI.js +28 -0
  806. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMailtoURI.js +160 -0
  807. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMimeType.js +29 -0
  808. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMobilePhone.js +209 -0
  809. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMongoId.js +28 -0
  810. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isMultibyte.js +27 -0
  811. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isNumeric.js +30 -0
  812. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isOctal.js +27 -0
  813. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isPassportNumber.js +104 -0
  814. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isPort.js +29 -0
  815. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isPostalCode.js +106 -0
  816. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isRFC3339.js +39 -0
  817. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isRgbColor.js +32 -0
  818. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isSemVer.js +39 -0
  819. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isSlug.js +27 -0
  820. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isStrongPassword.js +87 -0
  821. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isSurrogatePair.js +27 -0
  822. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isTaxID.js +1041 -0
  823. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isTime.js +41 -0
  824. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isURL.js +159 -0
  825. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isUUID.js +36 -0
  826. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isUppercase.js +26 -0
  827. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isVAT.js +306 -0
  828. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isVariableWidth.js +30 -0
  829. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/isWhitelisted.js +27 -0
  830. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/ltrim.js +27 -0
  831. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/matches.js +27 -0
  832. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/normalizeEmail.js +177 -0
  833. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/rtrim.js +32 -0
  834. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/stripLow.js +29 -0
  835. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/toBoolean.js +27 -0
  836. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/toDate.js +27 -0
  837. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/toFloat.js +26 -0
  838. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/toInt.js +26 -0
  839. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/trim.js +27 -0
  840. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/unescape.js +26 -0
  841. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/algorithms.js +276 -0
  842. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/assertString.js +33 -0
  843. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/includes.js +23 -0
  844. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/merge.js +23 -0
  845. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/multilineRegex.js +29 -0
  846. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/util/toString.js +31 -0
  847. package/build/node_modules/.pnpm/validator@13.12.0/node_modules/validator/lib/whitelist.js +26 -0
  848. package/build/packages/didcomm/src/BaseDidCommMessage.js +33 -0
  849. package/build/packages/didcomm/src/BaseDidCommMessage.mjs +28 -0
  850. package/build/packages/didcomm/src/BaseDidCommMessage.mjs.map +1 -0
  851. package/build/packages/didcomm/src/DidCommApi.js +104 -0
  852. package/build/packages/didcomm/src/DidCommApi.mjs +98 -0
  853. package/build/packages/didcomm/src/DidCommApi.mjs.map +1 -0
  854. package/build/packages/didcomm/src/DidCommDispatcher.js +106 -0
  855. package/build/packages/didcomm/src/DidCommDispatcher.mjs +100 -0
  856. package/build/packages/didcomm/src/DidCommDispatcher.mjs.map +1 -0
  857. package/build/packages/didcomm/src/DidCommEnvelopeService.js +237 -0
  858. package/build/packages/didcomm/src/DidCommEnvelopeService.mjs +231 -0
  859. package/build/packages/didcomm/src/DidCommEnvelopeService.mjs.map +1 -0
  860. package/build/packages/didcomm/src/DidCommEvents.js +11 -0
  861. package/build/packages/didcomm/src/DidCommEvents.mjs +11 -0
  862. package/build/packages/didcomm/src/DidCommEvents.mjs.map +1 -0
  863. package/build/packages/didcomm/src/DidCommFeatureRegistry.js +53 -0
  864. package/build/packages/didcomm/src/DidCommFeatureRegistry.mjs +47 -0
  865. package/build/packages/didcomm/src/DidCommFeatureRegistry.mjs.map +1 -0
  866. package/build/packages/didcomm/src/DidCommMessage.js +39 -0
  867. package/build/packages/didcomm/src/DidCommMessage.mjs +37 -0
  868. package/build/packages/didcomm/src/DidCommMessage.mjs.map +1 -0
  869. package/build/packages/didcomm/src/DidCommMessageHandlerRegistry.js +71 -0
  870. package/build/packages/didcomm/src/DidCommMessageHandlerRegistry.mjs +65 -0
  871. package/build/packages/didcomm/src/DidCommMessageHandlerRegistry.mjs.map +1 -0
  872. package/build/packages/didcomm/src/DidCommMessageReceiver.js +208 -0
  873. package/build/packages/didcomm/src/DidCommMessageReceiver.mjs +202 -0
  874. package/build/packages/didcomm/src/DidCommMessageReceiver.mjs.map +1 -0
  875. package/build/packages/didcomm/src/DidCommMessageSender.js +355 -0
  876. package/build/packages/didcomm/src/DidCommMessageSender.mjs +349 -0
  877. package/build/packages/didcomm/src/DidCommMessageSender.mjs.map +1 -0
  878. package/build/packages/didcomm/src/DidCommModule.js +20 -0
  879. package/build/packages/didcomm/src/DidCommModule.mjs +18 -0
  880. package/build/packages/didcomm/src/DidCommModuleConfig.js +59 -0
  881. package/build/packages/didcomm/src/DidCommModuleConfig.mjs +60 -0
  882. package/build/packages/didcomm/src/DidCommModuleConfig.mjs.map +1 -0
  883. package/build/packages/didcomm/src/DidCommTransportService.js +63 -0
  884. package/build/packages/didcomm/src/DidCommTransportService.mjs +57 -0
  885. package/build/packages/didcomm/src/DidCommTransportService.mjs.map +1 -0
  886. package/build/packages/didcomm/src/constants.js +6 -0
  887. package/build/packages/didcomm/src/constants.mjs +6 -0
  888. package/build/packages/didcomm/src/constants.mjs.map +1 -0
  889. package/build/packages/didcomm/src/decorators/ack/AckDecorator.js +30 -0
  890. package/build/packages/didcomm/src/decorators/ack/AckDecorator.mjs +28 -0
  891. package/build/packages/didcomm/src/decorators/ack/AckDecorator.mjs.map +1 -0
  892. package/build/packages/didcomm/src/decorators/ack/AckDecoratorExtension.js +36 -0
  893. package/build/packages/didcomm/src/decorators/ack/AckDecoratorExtension.mjs +34 -0
  894. package/build/packages/didcomm/src/decorators/ack/AckDecoratorExtension.mjs.map +1 -0
  895. package/build/packages/didcomm/src/decorators/attachment/AttachmentExtension.js +33 -0
  896. package/build/packages/didcomm/src/decorators/attachment/AttachmentExtension.mjs +31 -0
  897. package/build/packages/didcomm/src/decorators/attachment/AttachmentExtension.mjs.map +1 -0
  898. package/build/packages/didcomm/src/decorators/attachment/DidCommAttachment.js +111 -0
  899. package/build/packages/didcomm/src/decorators/attachment/DidCommAttachment.mjs +107 -0
  900. package/build/packages/didcomm/src/decorators/attachment/DidCommAttachment.mjs.map +1 -0
  901. package/build/packages/didcomm/src/decorators/l10n/L10nDecorator.js +13 -0
  902. package/build/packages/didcomm/src/decorators/l10n/L10nDecorator.mjs +13 -0
  903. package/build/packages/didcomm/src/decorators/l10n/L10nDecorator.mjs.map +1 -0
  904. package/build/packages/didcomm/src/decorators/l10n/L10nDecoratorExtension.js +33 -0
  905. package/build/packages/didcomm/src/decorators/l10n/L10nDecoratorExtension.mjs +31 -0
  906. package/build/packages/didcomm/src/decorators/l10n/L10nDecoratorExtension.mjs.map +1 -0
  907. package/build/packages/didcomm/src/decorators/service/ServiceDecorator.js +54 -0
  908. package/build/packages/didcomm/src/decorators/service/ServiceDecorator.mjs +52 -0
  909. package/build/packages/didcomm/src/decorators/service/ServiceDecorator.mjs.map +1 -0
  910. package/build/packages/didcomm/src/decorators/service/ServiceDecoratorExtension.js +29 -0
  911. package/build/packages/didcomm/src/decorators/service/ServiceDecoratorExtension.mjs +27 -0
  912. package/build/packages/didcomm/src/decorators/service/ServiceDecoratorExtension.mjs.map +1 -0
  913. package/build/packages/didcomm/src/decorators/signature/SignatureDecorator.js +49 -0
  914. package/build/packages/didcomm/src/decorators/signature/SignatureDecorator.mjs +47 -0
  915. package/build/packages/didcomm/src/decorators/signature/SignatureDecorator.mjs.map +1 -0
  916. package/build/packages/didcomm/src/decorators/signature/SignatureDecoratorUtils.js +60 -0
  917. package/build/packages/didcomm/src/decorators/signature/SignatureDecoratorUtils.mjs +58 -0
  918. package/build/packages/didcomm/src/decorators/signature/SignatureDecoratorUtils.mjs.map +1 -0
  919. package/build/packages/didcomm/src/decorators/thread/ThreadDecorator.js +48 -0
  920. package/build/packages/didcomm/src/decorators/thread/ThreadDecorator.mjs +46 -0
  921. package/build/packages/didcomm/src/decorators/thread/ThreadDecorator.mjs.map +1 -0
  922. package/build/packages/didcomm/src/decorators/thread/ThreadDecoratorExtension.js +33 -0
  923. package/build/packages/didcomm/src/decorators/thread/ThreadDecoratorExtension.mjs +31 -0
  924. package/build/packages/didcomm/src/decorators/thread/ThreadDecoratorExtension.mjs.map +1 -0
  925. package/build/packages/didcomm/src/decorators/timing/TimingDecorator.js +68 -0
  926. package/build/packages/didcomm/src/decorators/timing/TimingDecorator.mjs +66 -0
  927. package/build/packages/didcomm/src/decorators/timing/TimingDecorator.mjs.map +1 -0
  928. package/build/packages/didcomm/src/decorators/timing/TimingDecoratorExtension.js +30 -0
  929. package/build/packages/didcomm/src/decorators/timing/TimingDecoratorExtension.mjs +28 -0
  930. package/build/packages/didcomm/src/decorators/timing/TimingDecoratorExtension.mjs.map +1 -0
  931. package/build/packages/didcomm/src/decorators/transport/TransportDecorator.js +49 -0
  932. package/build/packages/didcomm/src/decorators/transport/TransportDecorator.mjs +46 -0
  933. package/build/packages/didcomm/src/decorators/transport/TransportDecorator.mjs.map +1 -0
  934. package/build/packages/didcomm/src/decorators/transport/TransportDecoratorExtension.js +43 -0
  935. package/build/packages/didcomm/src/decorators/transport/TransportDecoratorExtension.mjs +41 -0
  936. package/build/packages/didcomm/src/decorators/transport/TransportDecoratorExtension.mjs.map +1 -0
  937. package/build/packages/didcomm/src/errors/MessageSendingError.js +14 -0
  938. package/build/packages/didcomm/src/errors/MessageSendingError.mjs +13 -0
  939. package/build/packages/didcomm/src/errors/MessageSendingError.mjs.map +1 -0
  940. package/build/packages/didcomm/src/errors/index.js +3 -0
  941. package/build/packages/didcomm/src/errors/index.mjs +3 -0
  942. package/build/packages/didcomm/src/errors/problem-reports/DidCommProblemReportError.js +19 -0
  943. package/build/packages/didcomm/src/errors/problem-reports/DidCommProblemReportError.mjs +18 -0
  944. package/build/packages/didcomm/src/errors/problem-reports/DidCommProblemReportError.mjs.map +1 -0
  945. package/build/packages/didcomm/src/errors/problem-reports/index.js +1 -0
  946. package/build/packages/didcomm/src/errors/problem-reports/index.mjs +1 -0
  947. package/build/packages/didcomm/src/getDidCommOutboundMessageContext.js +175 -0
  948. package/build/packages/didcomm/src/getDidCommOutboundMessageContext.mjs +174 -0
  949. package/build/packages/didcomm/src/getDidCommOutboundMessageContext.mjs.map +1 -0
  950. package/build/packages/didcomm/src/handlers/DidCommMessageHandlerMiddleware.js +23 -0
  951. package/build/packages/didcomm/src/handlers/DidCommMessageHandlerMiddleware.mjs +23 -0
  952. package/build/packages/didcomm/src/handlers/DidCommMessageHandlerMiddleware.mjs.map +1 -0
  953. package/build/packages/didcomm/src/index.js +188 -0
  954. package/build/packages/didcomm/src/index.mjs +188 -0
  955. package/build/packages/didcomm/src/messages/common/DidCommAckMessage.js +43 -0
  956. package/build/packages/didcomm/src/messages/common/DidCommAckMessage.mjs +41 -0
  957. package/build/packages/didcomm/src/messages/common/DidCommAckMessage.mjs.map +1 -0
  958. package/build/packages/didcomm/src/messages/common/index.js +1 -0
  959. package/build/packages/didcomm/src/messages/common/index.mjs +1 -0
  960. package/build/packages/didcomm/src/messages/index.js +4 -0
  961. package/build/packages/didcomm/src/messages/index.mjs +4 -0
  962. package/build/packages/didcomm/src/messages/problem-reports/DidCommProblemReportMessage.js +109 -0
  963. package/build/packages/didcomm/src/messages/problem-reports/DidCommProblemReportMessage.mjs +104 -0
  964. package/build/packages/didcomm/src/messages/problem-reports/DidCommProblemReportMessage.mjs.map +1 -0
  965. package/build/packages/didcomm/src/messages/problem-reports/index.js +1 -0
  966. package/build/packages/didcomm/src/messages/problem-reports/index.mjs +1 -0
  967. package/build/packages/didcomm/src/models/DidCommInboundMessageContext.js +45 -0
  968. package/build/packages/didcomm/src/models/DidCommInboundMessageContext.mjs +44 -0
  969. package/build/packages/didcomm/src/models/DidCommInboundMessageContext.mjs.map +1 -0
  970. package/build/packages/didcomm/src/models/DidCommOutboundMessageContext.js +44 -0
  971. package/build/packages/didcomm/src/models/DidCommOutboundMessageContext.mjs +43 -0
  972. package/build/packages/didcomm/src/models/DidCommOutboundMessageContext.mjs.map +1 -0
  973. package/build/packages/didcomm/src/models/DidCommOutboundMessageSendStatus.js +12 -0
  974. package/build/packages/didcomm/src/models/DidCommOutboundMessageSendStatus.mjs +12 -0
  975. package/build/packages/didcomm/src/models/DidCommOutboundMessageSendStatus.mjs.map +1 -0
  976. package/build/packages/didcomm/src/models/features/DidCommFeature.js +49 -0
  977. package/build/packages/didcomm/src/models/features/DidCommFeature.mjs +46 -0
  978. package/build/packages/didcomm/src/models/features/DidCommFeature.mjs.map +1 -0
  979. package/build/packages/didcomm/src/models/features/DidCommFeatureQuery.js +26 -0
  980. package/build/packages/didcomm/src/models/features/DidCommFeatureQuery.mjs +24 -0
  981. package/build/packages/didcomm/src/models/features/DidCommFeatureQuery.mjs.map +1 -0
  982. package/build/packages/didcomm/src/models/features/DidCommGoalCode.js +15 -0
  983. package/build/packages/didcomm/src/models/features/DidCommGoalCode.mjs +16 -0
  984. package/build/packages/didcomm/src/models/features/DidCommGoalCode.mjs.map +1 -0
  985. package/build/packages/didcomm/src/models/features/DidCommGovernanceFramework.js +15 -0
  986. package/build/packages/didcomm/src/models/features/DidCommGovernanceFramework.mjs +16 -0
  987. package/build/packages/didcomm/src/models/features/DidCommGovernanceFramework.mjs.map +1 -0
  988. package/build/packages/didcomm/src/models/features/DidCommProtocol.js +26 -0
  989. package/build/packages/didcomm/src/models/features/DidCommProtocol.mjs +25 -0
  990. package/build/packages/didcomm/src/models/features/DidCommProtocol.mjs.map +1 -0
  991. package/build/packages/didcomm/src/models/features/index.js +5 -0
  992. package/build/packages/didcomm/src/models/features/index.mjs +5 -0
  993. package/build/packages/didcomm/src/models/index.js +10 -0
  994. package/build/packages/didcomm/src/models/index.mjs +10 -0
  995. package/build/packages/didcomm/src/models/problem-reports/DidCommProblemReportReason.js +9 -0
  996. package/build/packages/didcomm/src/models/problem-reports/DidCommProblemReportReason.mjs +9 -0
  997. package/build/packages/didcomm/src/models/problem-reports/DidCommProblemReportReason.mjs.map +1 -0
  998. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageEvents.js +9 -0
  999. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageEvents.mjs +9 -0
  1000. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageEvents.mjs.map +1 -0
  1001. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageRole.js +10 -0
  1002. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageRole.mjs +10 -0
  1003. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessageRole.mjs.map +1 -0
  1004. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesApi.js +98 -0
  1005. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesApi.mjs +92 -0
  1006. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesApi.mjs.map +1 -0
  1007. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesModule.js +7 -0
  1008. package/build/packages/didcomm/src/modules/basic-messages/DidCommBasicMessagesModule.mjs +7 -0
  1009. package/build/packages/didcomm/src/modules/basic-messages/handlers/BasicMessageHandler.js +1 -0
  1010. package/build/packages/didcomm/src/modules/basic-messages/handlers/BasicMessageHandler.mjs +1 -0
  1011. package/build/packages/didcomm/src/modules/basic-messages/handlers/index.js +1 -0
  1012. package/build/packages/didcomm/src/modules/basic-messages/handlers/index.mjs +1 -0
  1013. package/build/packages/didcomm/src/modules/basic-messages/index.js +11 -0
  1014. package/build/packages/didcomm/src/modules/basic-messages/index.mjs +11 -0
  1015. package/build/packages/didcomm/src/modules/basic-messages/messages/DidCommBasicMessage.js +47 -0
  1016. package/build/packages/didcomm/src/modules/basic-messages/messages/DidCommBasicMessage.mjs +45 -0
  1017. package/build/packages/didcomm/src/modules/basic-messages/messages/DidCommBasicMessage.mjs.map +1 -0
  1018. package/build/packages/didcomm/src/modules/basic-messages/messages/index.js +1 -0
  1019. package/build/packages/didcomm/src/modules/basic-messages/messages/index.mjs +1 -0
  1020. package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRecord.js +35 -0
  1021. package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRecord.mjs +34 -0
  1022. package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRecord.mjs.map +1 -0
  1023. package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRepository.js +28 -0
  1024. package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRepository.mjs +22 -0
  1025. package/build/packages/didcomm/src/modules/basic-messages/repository/DidCommBasicMessageRepository.mjs.map +1 -0
  1026. package/build/packages/didcomm/src/modules/basic-messages/repository/index.js +2 -0
  1027. package/build/packages/didcomm/src/modules/basic-messages/repository/index.mjs +2 -0
  1028. package/build/packages/didcomm/src/modules/basic-messages/services/DidCommBasicMessageService.js +89 -0
  1029. package/build/packages/didcomm/src/modules/basic-messages/services/DidCommBasicMessageService.mjs +83 -0
  1030. package/build/packages/didcomm/src/modules/basic-messages/services/DidCommBasicMessageService.mjs.map +1 -0
  1031. package/build/packages/didcomm/src/modules/basic-messages/services/index.js +1 -0
  1032. package/build/packages/didcomm/src/modules/basic-messages/services/index.mjs +1 -0
  1033. package/build/packages/didcomm/src/modules/connections/DidCommConnectionEvents.js +10 -0
  1034. package/build/packages/didcomm/src/modules/connections/DidCommConnectionEvents.mjs +10 -0
  1035. package/build/packages/didcomm/src/modules/connections/DidCommConnectionEvents.mjs.map +1 -0
  1036. package/build/packages/didcomm/src/modules/connections/DidCommConnectionsApi.js +362 -0
  1037. package/build/packages/didcomm/src/modules/connections/DidCommConnectionsApi.mjs +356 -0
  1038. package/build/packages/didcomm/src/modules/connections/DidCommConnectionsApi.mjs.map +1 -0
  1039. package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModule.js +17 -0
  1040. package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModule.mjs +15 -0
  1041. package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModuleConfig.js +49 -0
  1042. package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModuleConfig.mjs +48 -0
  1043. package/build/packages/didcomm/src/modules/connections/DidCommConnectionsModuleConfig.mjs.map +1 -0
  1044. package/build/packages/didcomm/src/modules/connections/DidCommTrustPingEvents.js +10 -0
  1045. package/build/packages/didcomm/src/modules/connections/DidCommTrustPingEvents.mjs +10 -0
  1046. package/build/packages/didcomm/src/modules/connections/DidCommTrustPingEvents.mjs.map +1 -0
  1047. package/build/packages/didcomm/src/modules/connections/DidExchangeProtocol.js +381 -0
  1048. package/build/packages/didcomm/src/modules/connections/DidExchangeProtocol.mjs +375 -0
  1049. package/build/packages/didcomm/src/modules/connections/DidExchangeProtocol.mjs.map +1 -0
  1050. package/build/packages/didcomm/src/modules/connections/DidExchangeStateMachine.js +73 -0
  1051. package/build/packages/didcomm/src/modules/connections/DidExchangeStateMachine.mjs +72 -0
  1052. package/build/packages/didcomm/src/modules/connections/DidExchangeStateMachine.mjs.map +1 -0
  1053. package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportError.js +19 -0
  1054. package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportError.mjs +20 -0
  1055. package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportError.mjs.map +1 -0
  1056. package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportReason.js +17 -0
  1057. package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportReason.mjs +17 -0
  1058. package/build/packages/didcomm/src/modules/connections/errors/ConnectionProblemReportReason.mjs.map +1 -0
  1059. package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportError.js +19 -0
  1060. package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportError.mjs +20 -0
  1061. package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportError.mjs.map +1 -0
  1062. package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportReason.js +18 -0
  1063. package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportReason.mjs +18 -0
  1064. package/build/packages/didcomm/src/modules/connections/errors/DidExchangeProblemReportReason.mjs.map +1 -0
  1065. package/build/packages/didcomm/src/modules/connections/errors/index.js +4 -0
  1066. package/build/packages/didcomm/src/modules/connections/errors/index.mjs +4 -0
  1067. package/build/packages/didcomm/src/modules/connections/handlers/DidCommAckMessageHandler.js +1 -0
  1068. package/build/packages/didcomm/src/modules/connections/handlers/DidCommAckMessageHandler.mjs +1 -0
  1069. package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionProblemReportHandler.js +1 -0
  1070. package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionProblemReportHandler.mjs +1 -0
  1071. package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionRequestHandler.js +7 -0
  1072. package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionRequestHandler.mjs +5 -0
  1073. package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionResponseHandler.js +7 -0
  1074. package/build/packages/didcomm/src/modules/connections/handlers/DidCommConnectionResponseHandler.mjs +5 -0
  1075. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeCompleteHandler.js +5 -0
  1076. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeCompleteHandler.mjs +3 -0
  1077. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeRequestHandler.js +7 -0
  1078. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeRequestHandler.mjs +5 -0
  1079. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeResponseHandler.js +7 -0
  1080. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidExchangeResponseHandler.mjs +5 -0
  1081. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateAckHandler.js +1 -0
  1082. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateAckHandler.mjs +1 -0
  1083. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateHandler.js +4 -0
  1084. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateHandler.mjs +2 -0
  1085. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateProblemReportHandler.js +1 -0
  1086. package/build/packages/didcomm/src/modules/connections/handlers/DidCommDidRotateProblemReportHandler.mjs +1 -0
  1087. package/build/packages/didcomm/src/modules/connections/handlers/DidCommHangupHandler.js +1 -0
  1088. package/build/packages/didcomm/src/modules/connections/handlers/DidCommHangupHandler.mjs +1 -0
  1089. package/build/packages/didcomm/src/modules/connections/handlers/DidCommTrustPingMessageHandler.js +5 -0
  1090. package/build/packages/didcomm/src/modules/connections/handlers/DidCommTrustPingMessageHandler.mjs +3 -0
  1091. package/build/packages/didcomm/src/modules/connections/handlers/DidCommTrustPingResponseMessageHandler.js +1 -0
  1092. package/build/packages/didcomm/src/modules/connections/handlers/DidCommTrustPingResponseMessageHandler.mjs +1 -0
  1093. package/build/packages/didcomm/src/modules/connections/handlers/index.js +13 -0
  1094. package/build/packages/didcomm/src/modules/connections/handlers/index.mjs +13 -0
  1095. package/build/packages/didcomm/src/modules/connections/index.js +51 -0
  1096. package/build/packages/didcomm/src/modules/connections/index.mjs +51 -0
  1097. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionInvitationMessage.js +116 -0
  1098. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionInvitationMessage.mjs +114 -0
  1099. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionInvitationMessage.mjs.map +1 -0
  1100. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionProblemReportMessage.js +22 -0
  1101. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionProblemReportMessage.mjs +23 -0
  1102. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionProblemReportMessage.mjs.map +1 -0
  1103. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionRequestMessage.js +56 -0
  1104. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionRequestMessage.mjs +54 -0
  1105. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionRequestMessage.mjs.map +1 -0
  1106. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionResponseMessage.js +46 -0
  1107. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionResponseMessage.mjs +44 -0
  1108. package/build/packages/didcomm/src/modules/connections/messages/DidCommConnectionResponseMessage.mjs.map +1 -0
  1109. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeCompleteMessage.js +27 -0
  1110. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeCompleteMessage.mjs +28 -0
  1111. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeCompleteMessage.mjs.map +1 -0
  1112. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeProblemReportMessage.js +21 -0
  1113. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeProblemReportMessage.mjs +22 -0
  1114. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeProblemReportMessage.mjs.map +1 -0
  1115. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeRequestMessage.js +59 -0
  1116. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeRequestMessage.mjs +57 -0
  1117. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeRequestMessage.mjs.map +1 -0
  1118. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeResponseMessage.js +53 -0
  1119. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeResponseMessage.mjs +51 -0
  1120. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidExchangeResponseMessage.mjs.map +1 -0
  1121. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateAckMessage.js +18 -0
  1122. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateAckMessage.mjs +19 -0
  1123. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateAckMessage.mjs.map +1 -0
  1124. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateMessage.js +40 -0
  1125. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateMessage.mjs +38 -0
  1126. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateMessage.mjs.map +1 -0
  1127. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateProblemReportMessage.js +21 -0
  1128. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateProblemReportMessage.mjs +22 -0
  1129. package/build/packages/didcomm/src/modules/connections/messages/DidCommDidRotateProblemReportMessage.mjs.map +1 -0
  1130. package/build/packages/didcomm/src/modules/connections/messages/DidCommHangupMessage.js +28 -0
  1131. package/build/packages/didcomm/src/modules/connections/messages/DidCommHangupMessage.mjs +29 -0
  1132. package/build/packages/didcomm/src/modules/connections/messages/DidCommHangupMessage.mjs.map +1 -0
  1133. package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingMessage.js +54 -0
  1134. package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingMessage.mjs +52 -0
  1135. package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingMessage.mjs.map +1 -0
  1136. package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingResponseMessage.js +45 -0
  1137. package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingResponseMessage.mjs +44 -0
  1138. package/build/packages/didcomm/src/modules/connections/messages/DidCommTrustPingResponseMessage.mjs.map +1 -0
  1139. package/build/packages/didcomm/src/modules/connections/messages/index.js +14 -0
  1140. package/build/packages/didcomm/src/modules/connections/messages/index.mjs +14 -0
  1141. package/build/packages/didcomm/src/modules/connections/models/DidCommConnection.js +35 -0
  1142. package/build/packages/didcomm/src/modules/connections/models/DidCommConnection.mjs +33 -0
  1143. package/build/packages/didcomm/src/modules/connections/models/DidCommConnection.mjs.map +1 -0
  1144. package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionState.js +33 -0
  1145. package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionState.mjs +33 -0
  1146. package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionState.mjs.map +1 -0
  1147. package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionType.js +9 -0
  1148. package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionType.mjs +9 -0
  1149. package/build/packages/didcomm/src/modules/connections/models/DidCommConnectionType.mjs.map +1 -0
  1150. package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeRole.js +10 -0
  1151. package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeRole.mjs +10 -0
  1152. package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeRole.mjs.map +1 -0
  1153. package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeState.js +22 -0
  1154. package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeState.mjs +22 -0
  1155. package/build/packages/didcomm/src/modules/connections/models/DidCommDidExchangeState.mjs.map +1 -0
  1156. package/build/packages/didcomm/src/modules/connections/models/DidCommHandshakeProtocol.js +14 -0
  1157. package/build/packages/didcomm/src/modules/connections/models/DidCommHandshakeProtocol.mjs +14 -0
  1158. package/build/packages/didcomm/src/modules/connections/models/DidCommHandshakeProtocol.mjs.map +1 -0
  1159. package/build/packages/didcomm/src/modules/connections/models/did/DidDoc.js +86 -0
  1160. package/build/packages/didcomm/src/modules/connections/models/did/DidDoc.mjs +83 -0
  1161. package/build/packages/didcomm/src/modules/connections/models/did/DidDoc.mjs.map +1 -0
  1162. package/build/packages/didcomm/src/modules/connections/models/did/authentication/Authentication.js +6 -0
  1163. package/build/packages/didcomm/src/modules/connections/models/did/authentication/Authentication.mjs +6 -0
  1164. package/build/packages/didcomm/src/modules/connections/models/did/authentication/Authentication.mjs.map +1 -0
  1165. package/build/packages/didcomm/src/modules/connections/models/did/authentication/EmbeddedAuthentication.js +25 -0
  1166. package/build/packages/didcomm/src/modules/connections/models/did/authentication/EmbeddedAuthentication.mjs +24 -0
  1167. package/build/packages/didcomm/src/modules/connections/models/did/authentication/EmbeddedAuthentication.mjs.map +1 -0
  1168. package/build/packages/didcomm/src/modules/connections/models/did/authentication/ReferencedAuthentication.js +24 -0
  1169. package/build/packages/didcomm/src/modules/connections/models/did/authentication/ReferencedAuthentication.mjs +22 -0
  1170. package/build/packages/didcomm/src/modules/connections/models/did/authentication/ReferencedAuthentication.mjs.map +1 -0
  1171. package/build/packages/didcomm/src/modules/connections/models/did/authentication/index.js +43 -0
  1172. package/build/packages/didcomm/src/modules/connections/models/did/authentication/index.mjs +40 -0
  1173. package/build/packages/didcomm/src/modules/connections/models/did/authentication/index.mjs.map +1 -0
  1174. package/build/packages/didcomm/src/modules/connections/models/did/index.js +10 -0
  1175. package/build/packages/didcomm/src/modules/connections/models/did/index.mjs +10 -0
  1176. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/Ed25119Sig2018.js +29 -0
  1177. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/Ed25119Sig2018.mjs +27 -0
  1178. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/Ed25119Sig2018.mjs.map +1 -0
  1179. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.js +29 -0
  1180. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.mjs +27 -0
  1181. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/EddsaSaSigSecp256k1.mjs.map +1 -0
  1182. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/PublicKey.js +28 -0
  1183. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/PublicKey.mjs +27 -0
  1184. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/PublicKey.mjs.map +1 -0
  1185. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/RsaSig2018.js +29 -0
  1186. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/RsaSig2018.mjs +27 -0
  1187. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/RsaSig2018.mjs.map +1 -0
  1188. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/index.js +34 -0
  1189. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/index.mjs +32 -0
  1190. package/build/packages/didcomm/src/modules/connections/models/did/publicKey/index.mjs.map +1 -0
  1191. package/build/packages/didcomm/src/modules/connections/models/index.js +17 -0
  1192. package/build/packages/didcomm/src/modules/connections/models/index.mjs +17 -0
  1193. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionMetadataTypes.js +10 -0
  1194. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionMetadataTypes.mjs +10 -0
  1195. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionMetadataTypes.mjs.map +1 -0
  1196. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRecord.js +91 -0
  1197. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRecord.mjs +89 -0
  1198. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRecord.mjs.map +1 -0
  1199. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRepository.js +54 -0
  1200. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRepository.mjs +48 -0
  1201. package/build/packages/didcomm/src/modules/connections/repository/DidCommConnectionRepository.mjs.map +1 -0
  1202. package/build/packages/didcomm/src/modules/connections/repository/index.js +2 -0
  1203. package/build/packages/didcomm/src/modules/connections/repository/index.mjs +2 -0
  1204. package/build/packages/didcomm/src/modules/connections/services/DidCommConnectionService.js +587 -0
  1205. package/build/packages/didcomm/src/modules/connections/services/DidCommConnectionService.mjs +582 -0
  1206. package/build/packages/didcomm/src/modules/connections/services/DidCommConnectionService.mjs.map +1 -0
  1207. package/build/packages/didcomm/src/modules/connections/services/DidCommDidRotateService.js +208 -0
  1208. package/build/packages/didcomm/src/modules/connections/services/DidCommDidRotateService.mjs +202 -0
  1209. package/build/packages/didcomm/src/modules/connections/services/DidCommDidRotateService.mjs.map +1 -0
  1210. package/build/packages/didcomm/src/modules/connections/services/DidCommTrustPingService.js +51 -0
  1211. package/build/packages/didcomm/src/modules/connections/services/DidCommTrustPingService.mjs +45 -0
  1212. package/build/packages/didcomm/src/modules/connections/services/DidCommTrustPingService.mjs.map +1 -0
  1213. package/build/packages/didcomm/src/modules/connections/services/helpers.js +129 -0
  1214. package/build/packages/didcomm/src/modules/connections/services/helpers.mjs +124 -0
  1215. package/build/packages/didcomm/src/modules/connections/services/helpers.mjs.map +1 -0
  1216. package/build/packages/didcomm/src/modules/connections/services/index.js +3 -0
  1217. package/build/packages/didcomm/src/modules/connections/services/index.mjs +3 -0
  1218. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialEvents.js +10 -0
  1219. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialEvents.mjs +10 -0
  1220. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialEvents.mjs.map +1 -0
  1221. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsApi.js +444 -0
  1222. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsApi.mjs +438 -0
  1223. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsApi.mjs.map +1 -0
  1224. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModule.js +9 -0
  1225. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModule.mjs +9 -0
  1226. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModuleConfig.js +20 -0
  1227. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModuleConfig.mjs +21 -0
  1228. package/build/packages/didcomm/src/modules/credentials/DidCommCredentialsModuleConfig.mjs.map +1 -0
  1229. package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.js +107 -0
  1230. package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.mjs +101 -0
  1231. package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/dataIntegrityExchange.mjs.map +1 -0
  1232. package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/index.js +1 -0
  1233. package/build/packages/didcomm/src/modules/credentials/formats/dataIntegrity/index.mjs +1 -0
  1234. package/build/packages/didcomm/src/modules/credentials/formats/index.js +5 -0
  1235. package/build/packages/didcomm/src/modules/credentials/formats/index.mjs +5 -0
  1236. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetail.js +32 -0
  1237. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetail.mjs +30 -0
  1238. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetail.mjs.map +1 -0
  1239. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetailOptions.js +52 -0
  1240. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetailOptions.mjs +50 -0
  1241. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialDetailOptions.mjs.map +1 -0
  1242. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialFormatService.js +6 -0
  1243. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/DidCommJsonLdCredentialFormatService.mjs +4 -0
  1244. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/index.js +3 -0
  1245. package/build/packages/didcomm/src/modules/credentials/formats/jsonld/index.mjs +3 -0
  1246. package/build/packages/didcomm/src/modules/credentials/index.js +27 -0
  1247. package/build/packages/didcomm/src/modules/credentials/index.mjs +27 -0
  1248. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialAutoAcceptType.js +17 -0
  1249. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialAutoAcceptType.mjs +17 -0
  1250. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialAutoAcceptType.mjs.map +1 -0
  1251. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialFormatSpec.js +28 -0
  1252. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialFormatSpec.mjs +25 -0
  1253. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialFormatSpec.mjs.map +1 -0
  1254. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialPreviewAttribute.js +35 -0
  1255. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialPreviewAttribute.mjs +32 -0
  1256. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialPreviewAttribute.mjs.map +1 -0
  1257. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialState.js +24 -0
  1258. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialState.mjs +24 -0
  1259. package/build/packages/didcomm/src/modules/credentials/models/DidCommCredentialState.mjs.map +1 -0
  1260. package/build/packages/didcomm/src/modules/credentials/models/DidCommRevocationNotification.js +18 -0
  1261. package/build/packages/didcomm/src/modules/credentials/models/DidCommRevocationNotification.mjs +17 -0
  1262. package/build/packages/didcomm/src/modules/credentials/models/DidCommRevocationNotification.mjs.map +1 -0
  1263. package/build/packages/didcomm/src/modules/credentials/models/index.js +5 -0
  1264. package/build/packages/didcomm/src/modules/credentials/models/index.mjs +5 -0
  1265. package/build/packages/didcomm/src/modules/credentials/protocol/DidCommBaseCredentialProtocol.js +6 -0
  1266. package/build/packages/didcomm/src/modules/credentials/protocol/DidCommBaseCredentialProtocol.mjs +4 -0
  1267. package/build/packages/didcomm/src/modules/credentials/protocol/index.js +12 -0
  1268. package/build/packages/didcomm/src/modules/credentials/protocol/index.mjs +12 -0
  1269. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/DidCommRevocationNotificationV1Handler.js +1 -0
  1270. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/DidCommRevocationNotificationV1Handler.mjs +1 -0
  1271. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/DidCommRevocationNotificationV2Handler.js +1 -0
  1272. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/DidCommRevocationNotificationV2Handler.mjs +1 -0
  1273. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/index.js +2 -0
  1274. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/handlers/index.mjs +2 -0
  1275. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/index.js +3 -0
  1276. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/index.mjs +3 -0
  1277. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV1Message.js +39 -0
  1278. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV1Message.mjs +37 -0
  1279. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV1Message.mjs.map +1 -0
  1280. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV2Message.js +45 -0
  1281. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV2Message.mjs +43 -0
  1282. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/DidCommRevocationNotificationV2Message.mjs.map +1 -0
  1283. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/index.js +2 -0
  1284. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/messages/index.mjs +2 -0
  1285. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/DidCommRevocationNotificationService.js +120 -0
  1286. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/DidCommRevocationNotificationService.mjs +114 -0
  1287. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/DidCommRevocationNotificationService.mjs.map +1 -0
  1288. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/index.js +1 -0
  1289. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/services/index.mjs +1 -0
  1290. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.js +14 -0
  1291. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.mjs +10 -0
  1292. package/build/packages/didcomm/src/modules/credentials/protocol/revocation-notification/util/revocationIdentifier.mjs.map +1 -0
  1293. package/build/packages/didcomm/src/modules/credentials/protocol/v2/DidCommCredentialFormatCoordinator.js +5 -0
  1294. package/build/packages/didcomm/src/modules/credentials/protocol/v2/DidCommCredentialFormatCoordinator.mjs +3 -0
  1295. package/build/packages/didcomm/src/modules/credentials/protocol/v2/DidCommCredentialV2Protocol.js +15 -0
  1296. package/build/packages/didcomm/src/modules/credentials/protocol/v2/DidCommCredentialV2Protocol.mjs +13 -0
  1297. package/build/packages/didcomm/src/modules/credentials/protocol/v2/errors/DidCommCredentialV2ProblemReportError.js +2 -0
  1298. package/build/packages/didcomm/src/modules/credentials/protocol/v2/errors/DidCommCredentialV2ProblemReportError.mjs +2 -0
  1299. package/build/packages/didcomm/src/modules/credentials/protocol/v2/errors/index.js +1 -0
  1300. package/build/packages/didcomm/src/modules/credentials/protocol/v2/errors/index.mjs +1 -0
  1301. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommCredentialV2AckHandler.js +1 -0
  1302. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommCredentialV2AckHandler.mjs +1 -0
  1303. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommCredentialV2ProblemReportHandler.js +1 -0
  1304. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommCredentialV2ProblemReportHandler.mjs +1 -0
  1305. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommIssueCredentialV2Handler.js +5 -0
  1306. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommIssueCredentialV2Handler.mjs +3 -0
  1307. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommOfferCredentialV2Handler.js +2 -0
  1308. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommOfferCredentialV2Handler.mjs +2 -0
  1309. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommProposeCredentialV2Handler.js +2 -0
  1310. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommProposeCredentialV2Handler.mjs +2 -0
  1311. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommRequestCredentialV2Handler.js +5 -0
  1312. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/DidCommRequestCredentialV2Handler.mjs +3 -0
  1313. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/index.js +6 -0
  1314. package/build/packages/didcomm/src/modules/credentials/protocol/v2/handlers/index.mjs +6 -0
  1315. package/build/packages/didcomm/src/modules/credentials/protocol/v2/index.js +10 -0
  1316. package/build/packages/didcomm/src/modules/credentials/protocol/v2/index.mjs +10 -0
  1317. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2AckMessage.js +21 -0
  1318. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2AckMessage.mjs +22 -0
  1319. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2AckMessage.mjs.map +1 -0
  1320. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2Preview.js +61 -0
  1321. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2Preview.mjs +58 -0
  1322. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2Preview.mjs.map +1 -0
  1323. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2ProblemReportMessage.js +20 -0
  1324. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2ProblemReportMessage.mjs +21 -0
  1325. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommCredentialV2ProblemReportMessage.mjs.map +1 -0
  1326. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommIssueCredentialV2Message.js +67 -0
  1327. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommIssueCredentialV2Message.mjs +65 -0
  1328. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommIssueCredentialV2Message.mjs.map +1 -0
  1329. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommOfferCredentialV2Message.js +84 -0
  1330. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommOfferCredentialV2Message.mjs +82 -0
  1331. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommOfferCredentialV2Message.mjs.map +1 -0
  1332. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommProposeCredentialV2Message.js +79 -0
  1333. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommProposeCredentialV2Message.mjs +77 -0
  1334. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommProposeCredentialV2Message.mjs.map +1 -0
  1335. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommRequestCredentialV2Message.js +68 -0
  1336. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommRequestCredentialV2Message.mjs +66 -0
  1337. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/DidCommRequestCredentialV2Message.mjs.map +1 -0
  1338. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/index.js +7 -0
  1339. package/build/packages/didcomm/src/modules/credentials/protocol/v2/messages/index.mjs +7 -0
  1340. package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRecord.js +67 -0
  1341. package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRecord.mjs +65 -0
  1342. package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRecord.mjs.map +1 -0
  1343. package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRepository.js +28 -0
  1344. package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRepository.mjs +22 -0
  1345. package/build/packages/didcomm/src/modules/credentials/repository/DidCommCredentialExchangeRepository.mjs.map +1 -0
  1346. package/build/packages/didcomm/src/modules/credentials/repository/index.js +2 -0
  1347. package/build/packages/didcomm/src/modules/credentials/repository/index.mjs +2 -0
  1348. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesApi.js +117 -0
  1349. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesApi.mjs +117 -0
  1350. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesApi.mjs.map +1 -0
  1351. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesEvents.js +10 -0
  1352. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesEvents.mjs +10 -0
  1353. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesEvents.mjs.map +1 -0
  1354. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModule.js +6 -0
  1355. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModule.mjs +6 -0
  1356. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModuleConfig.js +14 -0
  1357. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModuleConfig.mjs +14 -0
  1358. package/build/packages/didcomm/src/modules/discover-features/DidCommDiscoverFeaturesModuleConfig.mjs.map +1 -0
  1359. package/build/packages/didcomm/src/modules/discover-features/index.js +10 -0
  1360. package/build/packages/didcomm/src/modules/discover-features/index.mjs +10 -0
  1361. package/build/packages/didcomm/src/modules/discover-features/protocol/index.js +8 -0
  1362. package/build/packages/didcomm/src/modules/discover-features/protocol/index.mjs +8 -0
  1363. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/DidCommDiscoverFeaturesV1Service.js +111 -0
  1364. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/DidCommDiscoverFeaturesV1Service.mjs +105 -0
  1365. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/DidCommDiscoverFeaturesV1Service.mjs.map +1 -0
  1366. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesDiscloseMessageHandler.js +16 -0
  1367. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesDiscloseMessageHandler.mjs +17 -0
  1368. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesDiscloseMessageHandler.mjs.map +1 -0
  1369. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesQueryMessageHandler.js +23 -0
  1370. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesQueryMessageHandler.mjs +24 -0
  1371. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/DidCommFeaturesQueryMessageHandler.mjs.map +1 -0
  1372. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/index.js +2 -0
  1373. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/handlers/index.mjs +2 -0
  1374. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/index.js +4 -0
  1375. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/index.mjs +4 -0
  1376. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesDiscloseMessage.js +51 -0
  1377. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesDiscloseMessage.mjs +48 -0
  1378. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesDiscloseMessage.mjs.map +1 -0
  1379. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesQueryMessage.js +31 -0
  1380. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesQueryMessage.mjs +30 -0
  1381. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/DidCommFeaturesQueryMessage.mjs.map +1 -0
  1382. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/index.js +2 -0
  1383. package/build/packages/didcomm/src/modules/discover-features/protocol/v1/messages/index.mjs +2 -0
  1384. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/DidCommDiscoverFeaturesV2Service.js +90 -0
  1385. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/DidCommDiscoverFeaturesV2Service.mjs +84 -0
  1386. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/DidCommDiscoverFeaturesV2Service.mjs.map +1 -0
  1387. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesDisclosuresMessageHandler.js +16 -0
  1388. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesDisclosuresMessageHandler.mjs +17 -0
  1389. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesDisclosuresMessageHandler.mjs.map +1 -0
  1390. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesQueriesMessageHandler.js +23 -0
  1391. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesQueriesMessageHandler.mjs +24 -0
  1392. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/DidCommFeaturesQueriesMessageHandler.mjs.map +1 -0
  1393. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/index.js +2 -0
  1394. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/handlers/index.mjs +2 -0
  1395. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/index.js +4 -0
  1396. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/index.mjs +4 -0
  1397. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesDisclosuresMessage.js +34 -0
  1398. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesDisclosuresMessage.mjs +32 -0
  1399. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesDisclosuresMessage.mjs.map +1 -0
  1400. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesQueriesMessage.js +34 -0
  1401. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesQueriesMessage.mjs +32 -0
  1402. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/DidCommFeaturesQueriesMessage.mjs.map +1 -0
  1403. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/index.js +2 -0
  1404. package/build/packages/didcomm/src/modules/discover-features/protocol/v2/messages/index.mjs +2 -0
  1405. package/build/packages/didcomm/src/modules/discover-features/services/DidCommDiscoverFeaturesService.js +13 -0
  1406. package/build/packages/didcomm/src/modules/discover-features/services/DidCommDiscoverFeaturesService.mjs +13 -0
  1407. package/build/packages/didcomm/src/modules/discover-features/services/DidCommDiscoverFeaturesService.mjs.map +1 -0
  1408. package/build/packages/didcomm/src/modules/index.js +146 -0
  1409. package/build/packages/didcomm/src/modules/index.mjs +146 -0
  1410. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupApi.js +183 -0
  1411. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupApi.mjs +182 -0
  1412. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupApi.mjs.map +1 -0
  1413. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupEvents.js +11 -0
  1414. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupEvents.mjs +11 -0
  1415. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupEvents.mjs.map +1 -0
  1416. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModule.js +5 -0
  1417. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModule.mjs +5 -0
  1418. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModuleConfig.js +18 -0
  1419. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModuleConfig.mjs +18 -0
  1420. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupModuleConfig.mjs.map +1 -0
  1421. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupSession.js +10 -0
  1422. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupSession.mjs +10 -0
  1423. package/build/packages/didcomm/src/modules/message-pickup/DidCommMessagePickupSession.mjs.map +1 -0
  1424. package/build/packages/didcomm/src/modules/message-pickup/index.js +17 -0
  1425. package/build/packages/didcomm/src/modules/message-pickup/index.mjs +17 -0
  1426. package/build/packages/didcomm/src/modules/message-pickup/protocol/DidCommBaseMessagePickupProtocol.js +10 -0
  1427. package/build/packages/didcomm/src/modules/message-pickup/protocol/DidCommBaseMessagePickupProtocol.mjs +10 -0
  1428. package/build/packages/didcomm/src/modules/message-pickup/protocol/DidCommBaseMessagePickupProtocol.mjs.map +1 -0
  1429. package/build/packages/didcomm/src/modules/message-pickup/protocol/index.js +12 -0
  1430. package/build/packages/didcomm/src/modules/message-pickup/protocol/index.mjs +12 -0
  1431. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/DidCommMessagePickupV1Protocol.js +116 -0
  1432. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/DidCommMessagePickupV1Protocol.mjs +110 -0
  1433. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/DidCommMessagePickupV1Protocol.mjs.map +1 -0
  1434. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchHandler.js +23 -0
  1435. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchHandler.mjs +24 -0
  1436. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchHandler.mjs.map +1 -0
  1437. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchPickupHandler.js +17 -0
  1438. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchPickupHandler.mjs +18 -0
  1439. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/DidCommBatchPickupHandler.mjs.map +1 -0
  1440. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/index.js +2 -0
  1441. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/handlers/index.mjs +2 -0
  1442. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/index.js +4 -0
  1443. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/index.mjs +4 -0
  1444. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchMessage.js +55 -0
  1445. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchMessage.mjs +51 -0
  1446. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchMessage.mjs.map +1 -0
  1447. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchPickupMessage.js +42 -0
  1448. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchPickupMessage.mjs +40 -0
  1449. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/DidCommBatchPickupMessage.mjs.map +1 -0
  1450. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/index.js +2 -0
  1451. package/build/packages/didcomm/src/modules/message-pickup/protocol/v1/messages/index.mjs +2 -0
  1452. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/DidCommMessagePickupV2Protocol.js +215 -0
  1453. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/DidCommMessagePickupV2Protocol.mjs +209 -0
  1454. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/DidCommMessagePickupV2Protocol.mjs.map +1 -0
  1455. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommDeliveryRequestV2Handler.js +17 -0
  1456. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommDeliveryRequestV2Handler.mjs +18 -0
  1457. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommDeliveryRequestV2Handler.mjs.map +1 -0
  1458. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommLiveDeliveryChangeV2Handler.js +17 -0
  1459. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommLiveDeliveryChangeV2Handler.mjs +18 -0
  1460. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommLiveDeliveryChangeV2Handler.mjs.map +1 -0
  1461. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessageDeliveryV2Handler.js +22 -0
  1462. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessageDeliveryV2Handler.mjs +23 -0
  1463. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessageDeliveryV2Handler.mjs.map +1 -0
  1464. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessagesReceivedV2Handler.js +17 -0
  1465. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessagesReceivedV2Handler.mjs +18 -0
  1466. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommMessagesReceivedV2Handler.mjs.map +1 -0
  1467. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusRequestV2Handler.js +17 -0
  1468. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusRequestV2Handler.mjs +18 -0
  1469. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusRequestV2Handler.mjs.map +1 -0
  1470. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusV2Handler.js +23 -0
  1471. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusV2Handler.mjs +24 -0
  1472. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/DidCommStatusV2Handler.mjs.map +1 -0
  1473. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/index.js +6 -0
  1474. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/handlers/index.mjs +6 -0
  1475. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/index.js +8 -0
  1476. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/index.mjs +8 -0
  1477. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommDeliveryRequestV2Message.js +37 -0
  1478. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommDeliveryRequestV2Message.mjs +35 -0
  1479. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommDeliveryRequestV2Message.mjs.map +1 -0
  1480. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommLiveDeliveryChangeV2Message.js +34 -0
  1481. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommLiveDeliveryChangeV2Message.mjs +32 -0
  1482. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommLiveDeliveryChangeV2Message.mjs.map +1 -0
  1483. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessageDeliveryV2Message.js +37 -0
  1484. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessageDeliveryV2Message.mjs +35 -0
  1485. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessageDeliveryV2Message.mjs.map +1 -0
  1486. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessagesReceivedV2Message.js +34 -0
  1487. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessagesReceivedV2Message.mjs +32 -0
  1488. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommMessagesReceivedV2Message.mjs.map +1 -0
  1489. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusRequestV2Message.js +33 -0
  1490. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusRequestV2Message.mjs +31 -0
  1491. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusRequestV2Message.mjs.map +1 -0
  1492. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusV2Message.js +81 -0
  1493. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusV2Message.mjs +79 -0
  1494. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/DidCommStatusV2Message.mjs.map +1 -0
  1495. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/index.js +6 -0
  1496. package/build/packages/didcomm/src/modules/message-pickup/protocol/v2/messages/index.mjs +6 -0
  1497. package/build/packages/didcomm/src/modules/message-pickup/services/DidCommMessagePickupSessionService.js +68 -0
  1498. package/build/packages/didcomm/src/modules/message-pickup/services/DidCommMessagePickupSessionService.mjs +61 -0
  1499. package/build/packages/didcomm/src/modules/message-pickup/services/DidCommMessagePickupSessionService.mjs.map +1 -0
  1500. package/build/packages/didcomm/src/modules/message-pickup/services/index.js +1 -0
  1501. package/build/packages/didcomm/src/modules/message-pickup/services/index.mjs +1 -0
  1502. package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandApi.js +594 -0
  1503. package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandApi.mjs +593 -0
  1504. package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandApi.mjs.map +1 -0
  1505. package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandModule.js +8 -0
  1506. package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandModule.mjs +8 -0
  1507. package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandService.js +183 -0
  1508. package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandService.mjs +177 -0
  1509. package/build/packages/didcomm/src/modules/oob/DidCommOutOfBandService.mjs.map +1 -0
  1510. package/build/packages/didcomm/src/modules/oob/converters.js +55 -0
  1511. package/build/packages/didcomm/src/modules/oob/converters.mjs +53 -0
  1512. package/build/packages/didcomm/src/modules/oob/converters.mjs.map +1 -0
  1513. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandEvents.js +10 -0
  1514. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandEvents.mjs +10 -0
  1515. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandEvents.mjs.map +1 -0
  1516. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandRole.js +10 -0
  1517. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandRole.mjs +10 -0
  1518. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandRole.mjs.map +1 -0
  1519. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandState.js +12 -0
  1520. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandState.mjs +12 -0
  1521. package/build/packages/didcomm/src/modules/oob/domain/DidCommOutOfBandState.mjs.map +1 -0
  1522. package/build/packages/didcomm/src/modules/oob/domain/OutOfBandDidCommService.js +82 -0
  1523. package/build/packages/didcomm/src/modules/oob/domain/OutOfBandDidCommService.mjs +80 -0
  1524. package/build/packages/didcomm/src/modules/oob/domain/OutOfBandDidCommService.mjs.map +1 -0
  1525. package/build/packages/didcomm/src/modules/oob/domain/index.js +4 -0
  1526. package/build/packages/didcomm/src/modules/oob/domain/index.mjs +4 -0
  1527. package/build/packages/didcomm/src/modules/oob/handlers/DidCommHandshakeReuseAcceptedHandler.js +1 -0
  1528. package/build/packages/didcomm/src/modules/oob/handlers/DidCommHandshakeReuseAcceptedHandler.mjs +1 -0
  1529. package/build/packages/didcomm/src/modules/oob/handlers/DidCommHandshakeReuseHandler.js +2 -0
  1530. package/build/packages/didcomm/src/modules/oob/handlers/DidCommHandshakeReuseHandler.mjs +2 -0
  1531. package/build/packages/didcomm/src/modules/oob/handlers/index.js +1 -0
  1532. package/build/packages/didcomm/src/modules/oob/handlers/index.mjs +1 -0
  1533. package/build/packages/didcomm/src/modules/oob/helpers.js +33 -0
  1534. package/build/packages/didcomm/src/modules/oob/helpers.mjs +31 -0
  1535. package/build/packages/didcomm/src/modules/oob/helpers.mjs.map +1 -0
  1536. package/build/packages/didcomm/src/modules/oob/index.js +15 -0
  1537. package/build/packages/didcomm/src/modules/oob/index.mjs +15 -0
  1538. package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseAcceptedMessage.js +24 -0
  1539. package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseAcceptedMessage.mjs +25 -0
  1540. package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseAcceptedMessage.mjs.map +1 -0
  1541. package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseMessage.js +21 -0
  1542. package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseMessage.mjs +22 -0
  1543. package/build/packages/didcomm/src/modules/oob/messages/DidCommHandshakeReuseMessage.mjs.map +1 -0
  1544. package/build/packages/didcomm/src/modules/oob/messages/DidCommOutOfBandInvitation.js +142 -0
  1545. package/build/packages/didcomm/src/modules/oob/messages/DidCommOutOfBandInvitation.mjs +139 -0
  1546. package/build/packages/didcomm/src/modules/oob/messages/DidCommOutOfBandInvitation.mjs.map +1 -0
  1547. package/build/packages/didcomm/src/modules/oob/messages/index.js +3 -0
  1548. package/build/packages/didcomm/src/modules/oob/messages/index.mjs +3 -0
  1549. package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRecord.js +55 -0
  1550. package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRecord.mjs +53 -0
  1551. package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRecord.mjs.map +1 -0
  1552. package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRepository.js +28 -0
  1553. package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRepository.mjs +22 -0
  1554. package/build/packages/didcomm/src/modules/oob/repository/DidCommOutOfBandRepository.mjs.map +1 -0
  1555. package/build/packages/didcomm/src/modules/oob/repository/index.js +2 -0
  1556. package/build/packages/didcomm/src/modules/oob/repository/index.mjs +2 -0
  1557. package/build/packages/didcomm/src/modules/oob/repository/outOfBandRecordMetadataTypes.js +10 -0
  1558. package/build/packages/didcomm/src/modules/oob/repository/outOfBandRecordMetadataTypes.mjs +10 -0
  1559. package/build/packages/didcomm/src/modules/oob/repository/outOfBandRecordMetadataTypes.mjs.map +1 -0
  1560. package/build/packages/didcomm/src/modules/proofs/DidCommProofsApi.js +430 -0
  1561. package/build/packages/didcomm/src/modules/proofs/DidCommProofsApi.mjs +424 -0
  1562. package/build/packages/didcomm/src/modules/proofs/DidCommProofsApi.mjs.map +1 -0
  1563. package/build/packages/didcomm/src/modules/proofs/DidCommProofsModule.js +5 -0
  1564. package/build/packages/didcomm/src/modules/proofs/DidCommProofsModule.mjs +5 -0
  1565. package/build/packages/didcomm/src/modules/proofs/DidCommProofsModuleConfig.js +19 -0
  1566. package/build/packages/didcomm/src/modules/proofs/DidCommProofsModuleConfig.mjs +20 -0
  1567. package/build/packages/didcomm/src/modules/proofs/DidCommProofsModuleConfig.mjs.map +1 -0
  1568. package/build/packages/didcomm/src/modules/proofs/formats/dif-presentation-exchange/DidCommDifPresentationExchangeProofFormatService.js +5 -0
  1569. package/build/packages/didcomm/src/modules/proofs/formats/dif-presentation-exchange/DidCommDifPresentationExchangeProofFormatService.mjs +3 -0
  1570. package/build/packages/didcomm/src/modules/proofs/formats/dif-presentation-exchange/index.js +1 -0
  1571. package/build/packages/didcomm/src/modules/proofs/formats/dif-presentation-exchange/index.mjs +1 -0
  1572. package/build/packages/didcomm/src/modules/proofs/formats/index.js +1 -0
  1573. package/build/packages/didcomm/src/modules/proofs/formats/index.mjs +1 -0
  1574. package/build/packages/didcomm/src/modules/proofs/index.js +17 -0
  1575. package/build/packages/didcomm/src/modules/proofs/index.mjs +17 -0
  1576. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofAutoAcceptType.js +14 -0
  1577. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofAutoAcceptType.mjs +14 -0
  1578. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofAutoAcceptType.mjs.map +1 -0
  1579. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofFormatSpec.js +28 -0
  1580. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofFormatSpec.mjs +25 -0
  1581. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofFormatSpec.mjs.map +1 -0
  1582. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofState.js +22 -0
  1583. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofState.mjs +22 -0
  1584. package/build/packages/didcomm/src/modules/proofs/models/DidCommProofState.mjs.map +1 -0
  1585. package/build/packages/didcomm/src/modules/proofs/models/index.js +3 -0
  1586. package/build/packages/didcomm/src/modules/proofs/models/index.mjs +3 -0
  1587. package/build/packages/didcomm/src/modules/proofs/protocol/DidCommBaseProofProtocol.js +6 -0
  1588. package/build/packages/didcomm/src/modules/proofs/protocol/DidCommBaseProofProtocol.mjs +4 -0
  1589. package/build/packages/didcomm/src/modules/proofs/protocol/index.js +7 -0
  1590. package/build/packages/didcomm/src/modules/proofs/protocol/index.mjs +7 -0
  1591. package/build/packages/didcomm/src/modules/proofs/protocol/v2/DidCommProofFormatCoordinator.js +5 -0
  1592. package/build/packages/didcomm/src/modules/proofs/protocol/v2/DidCommProofFormatCoordinator.mjs +3 -0
  1593. package/build/packages/didcomm/src/modules/proofs/protocol/v2/DidCommProofV2Protocol.js +22 -0
  1594. package/build/packages/didcomm/src/modules/proofs/protocol/v2/DidCommProofV2Protocol.mjs +20 -0
  1595. package/build/packages/didcomm/src/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.js +2 -0
  1596. package/build/packages/didcomm/src/modules/proofs/protocol/v2/errors/V2PresentationProblemReportError.mjs +2 -0
  1597. package/build/packages/didcomm/src/modules/proofs/protocol/v2/errors/index.js +1 -0
  1598. package/build/packages/didcomm/src/modules/proofs/protocol/v2/errors/index.mjs +1 -0
  1599. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2AckHandler.js +1 -0
  1600. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2AckHandler.mjs +1 -0
  1601. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2Handler.js +3 -0
  1602. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2Handler.mjs +3 -0
  1603. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2ProblemReportHandler.js +1 -0
  1604. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommPresentationV2ProblemReportHandler.mjs +1 -0
  1605. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommProposePresentationV2Handler.js +2 -0
  1606. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommProposePresentationV2Handler.mjs +2 -0
  1607. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommRequestPresentationV2Handler.js +2 -0
  1608. package/build/packages/didcomm/src/modules/proofs/protocol/v2/handlers/DidCommRequestPresentationV2Handler.mjs +2 -0
  1609. package/build/packages/didcomm/src/modules/proofs/protocol/v2/index.js +8 -0
  1610. package/build/packages/didcomm/src/modules/proofs/protocol/v2/index.mjs +8 -0
  1611. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2AckMessage.js +18 -0
  1612. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2AckMessage.mjs +19 -0
  1613. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2AckMessage.mjs.map +1 -0
  1614. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2Message.js +78 -0
  1615. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2Message.mjs +75 -0
  1616. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2Message.mjs.map +1 -0
  1617. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2ProblemReportMessage.js +21 -0
  1618. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2ProblemReportMessage.mjs +22 -0
  1619. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommPresentationV2ProblemReportMessage.mjs.map +1 -0
  1620. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommProposePresentationV2Message.js +70 -0
  1621. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommProposePresentationV2Message.mjs +67 -0
  1622. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommProposePresentationV2Message.mjs.map +1 -0
  1623. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommRequestPresentationV2Message.js +85 -0
  1624. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommRequestPresentationV2Message.mjs +82 -0
  1625. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/DidCommRequestPresentationV2Message.mjs.map +1 -0
  1626. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/index.js +5 -0
  1627. package/build/packages/didcomm/src/modules/proofs/protocol/v2/messages/index.mjs +5 -0
  1628. package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRecord.js +50 -0
  1629. package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRecord.mjs +49 -0
  1630. package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRecord.mjs.map +1 -0
  1631. package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRepository.js +56 -0
  1632. package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRepository.mjs +50 -0
  1633. package/build/packages/didcomm/src/modules/proofs/repository/DidCommProofExchangeRepository.mjs.map +1 -0
  1634. package/build/packages/didcomm/src/modules/proofs/repository/index.js +2 -0
  1635. package/build/packages/didcomm/src/modules/proofs/repository/index.mjs +2 -0
  1636. package/build/packages/didcomm/src/modules/proofs/utils/composeAutoAccept.js +1 -0
  1637. package/build/packages/didcomm/src/modules/proofs/utils/composeAutoAccept.mjs +1 -0
  1638. package/build/packages/didcomm/src/modules/proofs/utils/index.js +1 -0
  1639. package/build/packages/didcomm/src/modules/proofs/utils/index.mjs +1 -0
  1640. package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientApi.js +318 -0
  1641. package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientApi.mjs +321 -0
  1642. package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientApi.mjs.map +1 -0
  1643. package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModule.js +12 -0
  1644. package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModule.mjs +10 -0
  1645. package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModuleConfig.js +34 -0
  1646. package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModuleConfig.mjs +34 -0
  1647. package/build/packages/didcomm/src/modules/routing/DidCommMediationRecipientModuleConfig.mjs.map +1 -0
  1648. package/build/packages/didcomm/src/modules/routing/DidCommMediatorApi.js +51 -0
  1649. package/build/packages/didcomm/src/modules/routing/DidCommMediatorApi.mjs +45 -0
  1650. package/build/packages/didcomm/src/modules/routing/DidCommMediatorApi.mjs.map +1 -0
  1651. package/build/packages/didcomm/src/modules/routing/DidCommMediatorModule.js +9 -0
  1652. package/build/packages/didcomm/src/modules/routing/DidCommMediatorModule.mjs +9 -0
  1653. package/build/packages/didcomm/src/modules/routing/DidCommMediatorModuleConfig.js +19 -0
  1654. package/build/packages/didcomm/src/modules/routing/DidCommMediatorModuleConfig.mjs +20 -0
  1655. package/build/packages/didcomm/src/modules/routing/DidCommMediatorModuleConfig.mjs.map +1 -0
  1656. package/build/packages/didcomm/src/modules/routing/DidCommMediatorPickupStrategy.js +13 -0
  1657. package/build/packages/didcomm/src/modules/routing/DidCommMediatorPickupStrategy.mjs +13 -0
  1658. package/build/packages/didcomm/src/modules/routing/DidCommMediatorPickupStrategy.mjs.map +1 -0
  1659. package/build/packages/didcomm/src/modules/routing/DidCommMessageForwardingStrategy.js +11 -0
  1660. package/build/packages/didcomm/src/modules/routing/DidCommMessageForwardingStrategy.mjs +11 -0
  1661. package/build/packages/didcomm/src/modules/routing/DidCommMessageForwardingStrategy.mjs.map +1 -0
  1662. package/build/packages/didcomm/src/modules/routing/DidCommRoutingEvents.js +11 -0
  1663. package/build/packages/didcomm/src/modules/routing/DidCommRoutingEvents.mjs +11 -0
  1664. package/build/packages/didcomm/src/modules/routing/DidCommRoutingEvents.mjs.map +1 -0
  1665. package/build/packages/didcomm/src/modules/routing/error/DidCommRoutingProblemReportReason.js +9 -0
  1666. package/build/packages/didcomm/src/modules/routing/error/DidCommRoutingProblemReportReason.mjs +9 -0
  1667. package/build/packages/didcomm/src/modules/routing/error/DidCommRoutingProblemReportReason.mjs.map +1 -0
  1668. package/build/packages/didcomm/src/modules/routing/handlers/DidCommForwardHandler.js +1 -0
  1669. package/build/packages/didcomm/src/modules/routing/handlers/DidCommForwardHandler.mjs +1 -0
  1670. package/build/packages/didcomm/src/modules/routing/handlers/DidCommKeylistUpdateHandler.js +2 -0
  1671. package/build/packages/didcomm/src/modules/routing/handlers/DidCommKeylistUpdateHandler.mjs +2 -0
  1672. package/build/packages/didcomm/src/modules/routing/handlers/DidCommKeylistUpdateResponseHandler.js +1 -0
  1673. package/build/packages/didcomm/src/modules/routing/handlers/DidCommKeylistUpdateResponseHandler.mjs +1 -0
  1674. package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationDenyHandler.js +1 -0
  1675. package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationDenyHandler.mjs +1 -0
  1676. package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationGrantHandler.js +1 -0
  1677. package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationGrantHandler.mjs +1 -0
  1678. package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationRequestHandler.js +2 -0
  1679. package/build/packages/didcomm/src/modules/routing/handlers/DidCommMediationRequestHandler.mjs +2 -0
  1680. package/build/packages/didcomm/src/modules/routing/handlers/index.js +6 -0
  1681. package/build/packages/didcomm/src/modules/routing/handlers/index.mjs +6 -0
  1682. package/build/packages/didcomm/src/modules/routing/index.js +25 -0
  1683. package/build/packages/didcomm/src/modules/routing/index.mjs +25 -0
  1684. package/build/packages/didcomm/src/modules/routing/messages/DidCommForwardMessage.js +42 -0
  1685. package/build/packages/didcomm/src/modules/routing/messages/DidCommForwardMessage.mjs +40 -0
  1686. package/build/packages/didcomm/src/modules/routing/messages/DidCommForwardMessage.mjs.map +1 -0
  1687. package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateMessage.js +60 -0
  1688. package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateMessage.mjs +56 -0
  1689. package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateMessage.mjs.map +1 -0
  1690. package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateResponseMessage.js +66 -0
  1691. package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateResponseMessage.mjs +62 -0
  1692. package/build/packages/didcomm/src/modules/routing/messages/DidCommKeylistUpdateResponseMessage.mjs.map +1 -0
  1693. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationDenyMessage.js +23 -0
  1694. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationDenyMessage.mjs +24 -0
  1695. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationDenyMessage.mjs.map +1 -0
  1696. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationGrantMessage.js +45 -0
  1697. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationGrantMessage.mjs +43 -0
  1698. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationGrantMessage.mjs.map +1 -0
  1699. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationRequestMessage.js +32 -0
  1700. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationRequestMessage.mjs +33 -0
  1701. package/build/packages/didcomm/src/modules/routing/messages/DidCommMediationRequestMessage.mjs.map +1 -0
  1702. package/build/packages/didcomm/src/modules/routing/messages/index.js +6 -0
  1703. package/build/packages/didcomm/src/modules/routing/messages/index.mjs +6 -0
  1704. package/build/packages/didcomm/src/modules/routing/models/DidCommMediationRole.js +15 -0
  1705. package/build/packages/didcomm/src/modules/routing/models/DidCommMediationRole.mjs +15 -0
  1706. package/build/packages/didcomm/src/modules/routing/models/DidCommMediationRole.mjs.map +1 -0
  1707. package/build/packages/didcomm/src/modules/routing/models/DidCommMediationState.js +16 -0
  1708. package/build/packages/didcomm/src/modules/routing/models/DidCommMediationState.mjs +16 -0
  1709. package/build/packages/didcomm/src/modules/routing/models/DidCommMediationState.mjs.map +1 -0
  1710. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRecord.js +75 -0
  1711. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRecord.mjs +73 -0
  1712. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRecord.mjs.map +1 -0
  1713. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRepository.js +34 -0
  1714. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRepository.mjs +28 -0
  1715. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediationRepository.mjs.map +1 -0
  1716. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRecord.js +49 -0
  1717. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRecord.mjs +48 -0
  1718. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRecord.mjs.map +1 -0
  1719. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRepository.js +29 -0
  1720. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRepository.mjs +23 -0
  1721. package/build/packages/didcomm/src/modules/routing/repository/DidCommMediatorRoutingRepository.mjs.map +1 -0
  1722. package/build/packages/didcomm/src/modules/routing/repository/index.js +4 -0
  1723. package/build/packages/didcomm/src/modules/routing/repository/index.mjs +4 -0
  1724. package/build/packages/didcomm/src/modules/routing/services/DidCommMediationRecipientService.js +232 -0
  1725. package/build/packages/didcomm/src/modules/routing/services/DidCommMediationRecipientService.mjs +227 -0
  1726. package/build/packages/didcomm/src/modules/routing/services/DidCommMediationRecipientService.mjs.map +1 -0
  1727. package/build/packages/didcomm/src/modules/routing/services/DidCommMediatorService.js +234 -0
  1728. package/build/packages/didcomm/src/modules/routing/services/DidCommMediatorService.mjs +228 -0
  1729. package/build/packages/didcomm/src/modules/routing/services/DidCommMediatorService.mjs.map +1 -0
  1730. package/build/packages/didcomm/src/modules/routing/services/DidCommRoutingService.js +51 -0
  1731. package/build/packages/didcomm/src/modules/routing/services/DidCommRoutingService.mjs +45 -0
  1732. package/build/packages/didcomm/src/modules/routing/services/DidCommRoutingService.mjs.map +1 -0
  1733. package/build/packages/didcomm/src/modules/routing/services/helpers.js +13 -0
  1734. package/build/packages/didcomm/src/modules/routing/services/helpers.mjs +12 -0
  1735. package/build/packages/didcomm/src/modules/routing/services/helpers.mjs.map +1 -0
  1736. package/build/packages/didcomm/src/modules/routing/services/index.js +3 -0
  1737. package/build/packages/didcomm/src/modules/routing/services/index.mjs +3 -0
  1738. package/build/packages/didcomm/src/repository/DidCommMessageRecord.js +47 -0
  1739. package/build/packages/didcomm/src/repository/DidCommMessageRecord.mjs +46 -0
  1740. package/build/packages/didcomm/src/repository/DidCommMessageRecord.mjs.map +1 -0
  1741. package/build/packages/didcomm/src/repository/DidCommMessageRepository.js +71 -0
  1742. package/build/packages/didcomm/src/repository/DidCommMessageRepository.mjs +65 -0
  1743. package/build/packages/didcomm/src/repository/DidCommMessageRepository.mjs.map +1 -0
  1744. package/build/packages/didcomm/src/repository/DidCommMessageRole.js +10 -0
  1745. package/build/packages/didcomm/src/repository/DidCommMessageRole.mjs +10 -0
  1746. package/build/packages/didcomm/src/repository/DidCommMessageRole.mjs.map +1 -0
  1747. package/build/packages/didcomm/src/repository/index.js +3 -0
  1748. package/build/packages/didcomm/src/repository/index.mjs +3 -0
  1749. package/build/packages/didcomm/src/services/DidCommDocumentService.js +71 -0
  1750. package/build/packages/didcomm/src/services/DidCommDocumentService.mjs +65 -0
  1751. package/build/packages/didcomm/src/services/DidCommDocumentService.mjs.map +1 -0
  1752. package/build/packages/didcomm/src/services/index.js +1 -0
  1753. package/build/packages/didcomm/src/services/index.mjs +1 -0
  1754. package/build/packages/didcomm/src/transport/DidCommHttpOutboundTransport.js +4 -0
  1755. package/build/packages/didcomm/src/transport/DidCommHttpOutboundTransport.mjs +2 -0
  1756. package/build/packages/didcomm/src/transport/DidCommTransportEventTypes.js +12 -0
  1757. package/build/packages/didcomm/src/transport/DidCommTransportEventTypes.mjs +12 -0
  1758. package/build/packages/didcomm/src/transport/DidCommTransportEventTypes.mjs.map +1 -0
  1759. package/build/packages/didcomm/src/transport/DidCommWsOutboundTransport.js +3 -0
  1760. package/build/packages/didcomm/src/transport/DidCommWsOutboundTransport.mjs +1 -0
  1761. package/build/packages/didcomm/src/transport/index.js +5 -0
  1762. package/build/packages/didcomm/src/transport/index.mjs +5 -0
  1763. package/build/packages/didcomm/src/transport/queue/DidCommQueueTransportRepository.js +3 -0
  1764. package/build/packages/didcomm/src/transport/queue/DidCommQueueTransportRepository.mjs +1 -0
  1765. package/build/packages/didcomm/src/transport/queue/InMemoryQueueTransportRepository.js +61 -0
  1766. package/build/packages/didcomm/src/transport/queue/InMemoryQueueTransportRepository.mjs +55 -0
  1767. package/build/packages/didcomm/src/transport/queue/InMemoryQueueTransportRepository.mjs.map +1 -0
  1768. package/build/packages/didcomm/src/transport/queue/index.js +2 -0
  1769. package/build/packages/didcomm/src/transport/queue/index.mjs +2 -0
  1770. package/build/packages/didcomm/src/types.js +10 -0
  1771. package/build/packages/didcomm/src/types.mjs +10 -0
  1772. package/build/packages/didcomm/src/types.mjs.map +1 -0
  1773. package/build/packages/didcomm/src/updates/0.1-0.2/connection.js +8 -0
  1774. package/build/packages/didcomm/src/updates/0.1-0.2/connection.mjs +6 -0
  1775. package/build/packages/didcomm/src/updates/0.1-0.2/credential.js +37 -0
  1776. package/build/packages/didcomm/src/updates/0.1-0.2/credential.mjs +36 -0
  1777. package/build/packages/didcomm/src/updates/0.1-0.2/credential.mjs.map +1 -0
  1778. package/build/packages/didcomm/src/updates/0.1-0.2/index.js +3 -0
  1779. package/build/packages/didcomm/src/updates/0.1-0.2/index.mjs +3 -0
  1780. package/build/packages/didcomm/src/updates/0.1-0.2/mediation.js +1 -0
  1781. package/build/packages/didcomm/src/updates/0.1-0.2/mediation.mjs +1 -0
  1782. package/build/packages/didcomm/src/updates/0.2-0.3/connection.js +2 -0
  1783. package/build/packages/didcomm/src/updates/0.2-0.3/connection.mjs +2 -0
  1784. package/build/packages/didcomm/src/updates/0.2-0.3/index.js +2 -0
  1785. package/build/packages/didcomm/src/updates/0.2-0.3/index.mjs +2 -0
  1786. package/build/packages/didcomm/src/updates/0.2-0.3/proof.js +32 -0
  1787. package/build/packages/didcomm/src/updates/0.2-0.3/proof.mjs +33 -0
  1788. package/build/packages/didcomm/src/updates/0.2-0.3/proof.mjs.map +1 -0
  1789. package/build/packages/didcomm/src/updates/0.4-0.5/credentialExchangeRecord.js +23 -0
  1790. package/build/packages/didcomm/src/updates/0.4-0.5/credentialExchangeRecord.mjs +23 -0
  1791. package/build/packages/didcomm/src/updates/0.4-0.5/credentialExchangeRecord.mjs.map +1 -0
  1792. package/build/packages/didcomm/src/updates/0.4-0.5/index.js +2 -0
  1793. package/build/packages/didcomm/src/updates/0.4-0.5/index.mjs +2 -0
  1794. package/build/packages/didcomm/src/updates/0.4-0.5/proofExchangeRecord.js +21 -0
  1795. package/build/packages/didcomm/src/updates/0.4-0.5/proofExchangeRecord.mjs +21 -0
  1796. package/build/packages/didcomm/src/updates/0.4-0.5/proofExchangeRecord.mjs.map +1 -0
  1797. package/build/packages/didcomm/src/util/DidCommLinkedAttachment.js +33 -0
  1798. package/build/packages/didcomm/src/util/DidCommLinkedAttachment.mjs +31 -0
  1799. package/build/packages/didcomm/src/util/DidCommLinkedAttachment.mjs.map +1 -0
  1800. package/build/packages/didcomm/src/util/JWE.js +8 -0
  1801. package/build/packages/didcomm/src/util/JWE.mjs +8 -0
  1802. package/build/packages/didcomm/src/util/JWE.mjs.map +1 -0
  1803. package/build/packages/didcomm/src/util/attachment.js +22 -0
  1804. package/build/packages/didcomm/src/util/attachment.mjs +21 -0
  1805. package/build/packages/didcomm/src/util/attachment.mjs.map +1 -0
  1806. package/build/packages/didcomm/src/util/messageType.js +161 -0
  1807. package/build/packages/didcomm/src/util/messageType.mjs +152 -0
  1808. package/build/packages/didcomm/src/util/messageType.mjs.map +1 -0
  1809. package/build/packages/didcomm/src/util/parseInvitation.js +121 -0
  1810. package/build/packages/didcomm/src/util/parseInvitation.mjs +119 -0
  1811. package/build/packages/didcomm/src/util/parseInvitation.mjs.map +1 -0
  1812. package/build/packages/didcomm/src/util/thread.js +8 -0
  1813. package/build/packages/didcomm/src/util/thread.mjs +8 -0
  1814. package/build/packages/didcomm/src/util/thread.mjs.map +1 -0
  1815. package/build/packages/didcomm/src/util/transformers.js +13 -0
  1816. package/build/packages/didcomm/src/util/transformers.mjs +14 -0
  1817. package/build/packages/didcomm/src/util/transformers.mjs.map +1 -0
  1818. package/build/packages/tenants/src/TenantAgent.js +24 -0
  1819. package/build/packages/tenants/src/TenantAgent.mjs +23 -0
  1820. package/build/packages/tenants/src/TenantAgent.mjs.map +1 -0
  1821. package/build/packages/tenants/src/TenantsApi.js +113 -0
  1822. package/build/packages/tenants/src/TenantsApi.mjs +107 -0
  1823. package/build/packages/tenants/src/TenantsApi.mjs.map +1 -0
  1824. package/build/packages/tenants/src/TenantsModule.js +9 -0
  1825. package/build/packages/tenants/src/TenantsModule.mjs +7 -0
  1826. package/build/packages/tenants/src/TenantsModuleConfig.js +18 -0
  1827. package/build/packages/tenants/src/TenantsModuleConfig.mjs +18 -0
  1828. package/build/packages/tenants/src/TenantsModuleConfig.mjs.map +1 -0
  1829. package/build/packages/tenants/src/context/TenantAgentContextProvider.js +157 -0
  1830. package/build/packages/tenants/src/context/TenantAgentContextProvider.mjs +151 -0
  1831. package/build/packages/tenants/src/context/TenantAgentContextProvider.mjs.map +1 -0
  1832. package/build/packages/tenants/src/context/TenantSessionCoordinator.js +192 -0
  1833. package/build/packages/tenants/src/context/TenantSessionCoordinator.mjs +186 -0
  1834. package/build/packages/tenants/src/context/TenantSessionCoordinator.mjs.map +1 -0
  1835. package/build/packages/tenants/src/context/TenantSessionMutex.js +67 -0
  1836. package/build/packages/tenants/src/context/TenantSessionMutex.mjs +66 -0
  1837. package/build/packages/tenants/src/context/TenantSessionMutex.mjs.map +1 -0
  1838. package/build/packages/tenants/src/index.js +6 -0
  1839. package/build/packages/tenants/src/index.mjs +6 -0
  1840. package/build/packages/tenants/src/repository/TenantRecord.js +30 -0
  1841. package/build/packages/tenants/src/repository/TenantRecord.mjs +29 -0
  1842. package/build/packages/tenants/src/repository/TenantRecord.mjs.map +1 -0
  1843. package/build/packages/tenants/src/repository/TenantRepository.js +31 -0
  1844. package/build/packages/tenants/src/repository/TenantRepository.mjs +25 -0
  1845. package/build/packages/tenants/src/repository/TenantRepository.mjs.map +1 -0
  1846. package/build/packages/tenants/src/repository/TenantRoutingRecord.js +29 -0
  1847. package/build/packages/tenants/src/repository/TenantRoutingRecord.mjs +28 -0
  1848. package/build/packages/tenants/src/repository/TenantRoutingRecord.mjs.map +1 -0
  1849. package/build/packages/tenants/src/repository/TenantRoutingRepository.js +31 -0
  1850. package/build/packages/tenants/src/repository/TenantRoutingRepository.mjs +25 -0
  1851. package/build/packages/tenants/src/repository/TenantRoutingRepository.mjs.map +1 -0
  1852. package/build/packages/tenants/src/repository/index.js +4 -0
  1853. package/build/packages/tenants/src/repository/index.mjs +4 -0
  1854. package/build/packages/tenants/src/services/TenantRecordService.js +69 -0
  1855. package/build/packages/tenants/src/services/TenantRecordService.mjs +63 -0
  1856. package/build/packages/tenants/src/services/TenantRecordService.mjs.map +1 -0
  1857. package/build/packages/tenants/src/services/index.js +1 -0
  1858. package/build/packages/tenants/src/services/index.mjs +1 -0
  1859. package/build/packages/tenants/src/updates/0.4-0.5/index.js +1 -0
  1860. package/build/packages/tenants/src/updates/0.4-0.5/index.mjs +1 -0
  1861. package/build/packages/tenants/src/updates/0.4-0.5/tenantRecord.js +1 -0
  1862. package/build/packages/tenants/src/updates/0.4-0.5/tenantRecord.mjs +1 -0
  1863. package/package.json +17 -12
  1864. package/LICENSE +0 -202
  1865. package/build/AskarToDrizzleStorageMigrator.js.map +0 -1
  1866. package/build/errors/AskarToDrizzleStorageMigrationError.d.ts +0 -6
  1867. package/build/errors/AskarToDrizzleStorageMigrationError.js.map +0 -1
  1868. package/build/index.js.map +0 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DidCommConnectionService.mjs","names":["DidCommConnectionService","logger: Logger","didDoc: DidDoc","keys: DidDocumentKey[]","signingKey: Kms.PublicJwk<Kms.Ed25519PublicJwk>","service","connection"],"sources":["../../../../../../../../didcomm/src/modules/connections/services/DidCommConnectionService.ts"],"sourcesContent":["import type { AgentContext, DidDocumentKey, Query, QueryOptions } from '@credo-ts/core'\nimport type { DidCommMessage } from '../../../DidCommMessage'\nimport type { DidCommAckMessage } from '../../../messages'\nimport type { DidCommInboundMessageContext } from '../../../models'\nimport type { DidCommOutOfBandRecord } from '../../oob/repository'\nimport type { DidCommConnectionStateChangedEvent } from '../DidCommConnectionEvents'\nimport type { DidCommConnectionProblemReportMessage } from '../messages'\nimport type { DidCommConnectionType } from '../models'\nimport type { DidCommConnectionRecordProps } from '../repository'\n\nimport {\n CredoError,\n DidDocumentRole,\n DidRecord,\n DidRecordMetadataKeys,\n DidRepository,\n DidsApi,\n EventEmitter,\n IndyAgentService,\n InjectionSymbols,\n JsonTransformer,\n Kms,\n type Logger,\n TypedArrayEncoder,\n didDocumentJsonToNumAlgo1Did,\n filterContextCorrelationId,\n inject,\n injectable,\n parseDid,\n utils,\n} from '@credo-ts/core'\nimport { ReplaySubject, firstValueFrom } from 'rxjs'\nimport { first, map, timeout } from 'rxjs/operators'\nimport { signData, unpackAndVerifySignatureDecorator } from '../../../decorators/signature/SignatureDecoratorUtils'\nimport type { DidCommRouting } from '../../../models'\nimport { DidCommOutOfBandService } from '../../oob/DidCommOutOfBandService'\nimport { DidCommOutOfBandRole } from '../../oob/domain/DidCommOutOfBandRole'\nimport { DidCommOutOfBandState } from '../../oob/domain/DidCommOutOfBandState'\nimport { DidCommInvitationType } from '../../oob/messages'\nimport { DidCommOutOfBandRepository } from '../../oob/repository'\nimport { DidCommOutOfBandRecordMetadataKeys } from '../../oob/repository/outOfBandRecordMetadataTypes'\nimport { DidCommConnectionEventTypes } from '../DidCommConnectionEvents'\nimport { ConnectionProblemReportError, ConnectionProblemReportReason } from '../errors'\nimport { DidCommConnectionRequestMessage, DidCommConnectionResponseMessage, DidCommTrustPingMessage } from '../messages'\nimport {\n DidCommConnection,\n DidCommDidExchangeRole,\n DidCommDidExchangeState,\n DidCommHandshakeProtocol,\n DidDoc,\n Ed25119Sig2018,\n ReferencedAuthentication,\n authenticationTypes,\n} from '../models'\nimport { DidCommConnectionRecord, DidCommConnectionRepository } from '../repository'\n\nimport {\n assertNoCreatedDidExistsForKeys,\n convertToNewDidDocument,\n getResolvedDidcommServiceWithSigningKeyId,\n} from './helpers'\n\nexport interface ConnectionRequestParams {\n label: string\n imageUrl?: string\n alias?: string\n routing: DidCommRouting\n autoAcceptConnection?: boolean\n}\n\n@injectable()\nexport class DidCommConnectionService {\n private connectionRepository: DidCommConnectionRepository\n private didRepository: DidRepository\n private eventEmitter: EventEmitter\n private logger: Logger\n\n public constructor(\n @inject(InjectionSymbols.Logger) logger: Logger,\n connectionRepository: DidCommConnectionRepository,\n didRepository: DidRepository,\n eventEmitter: EventEmitter\n ) {\n this.connectionRepository = connectionRepository\n this.didRepository = didRepository\n this.eventEmitter = eventEmitter\n this.logger = logger\n }\n\n /**\n * Create a connection request message for a given out-of-band.\n *\n * @param outOfBandRecord out-of-band record for which to create a connection request\n * @param config config for creation of connection request\n * @returns outbound message containing connection request\n */\n public async createRequest(\n agentContext: AgentContext,\n outOfBandRecord: DidCommOutOfBandRecord,\n config: ConnectionRequestParams\n ): Promise<ConnectionProtocolMsgReturnType<DidCommConnectionRequestMessage>> {\n this.logger.debug(`Create message ${DidCommConnectionRequestMessage.type.messageTypeUri} start`, outOfBandRecord)\n outOfBandRecord.assertRole(DidCommOutOfBandRole.Receiver)\n outOfBandRecord.assertState(DidCommOutOfBandState.PrepareResponse)\n\n // TODO check there is no connection record for particular oob record\n\n const { outOfBandInvitation } = outOfBandRecord\n\n const { mediatorId } = config.routing\n const { didDoc, keys } = this.createDidDoc(config.routing)\n\n // TODO: We should store only one did that we'll use to send the request message with success.\n // We take just the first one for now.\n const [invitationDid] = outOfBandInvitation.invitationDids\n\n const { did: peerDid } = await this.createDid(agentContext, {\n role: DidDocumentRole.Created,\n didDoc,\n keys,\n })\n\n const { label, imageUrl } = config\n\n const connectionRequest = new DidCommConnectionRequestMessage({\n label,\n did: didDoc.id,\n didDoc,\n imageUrl,\n })\n\n connectionRequest.setThread({\n threadId: connectionRequest.threadId,\n parentThreadId: outOfBandRecord.outOfBandInvitation.id,\n })\n\n const connectionRecord = await this.createConnection(agentContext, {\n protocol: DidCommHandshakeProtocol.Connections,\n role: DidCommDidExchangeRole.Requester,\n state: DidCommDidExchangeState.InvitationReceived,\n theirLabel: outOfBandInvitation.label,\n alias: config?.alias,\n did: peerDid,\n mediatorId,\n autoAcceptConnection: config?.autoAcceptConnection,\n outOfBandId: outOfBandRecord.id,\n invitationDid,\n imageUrl: outOfBandInvitation.imageUrl,\n threadId: connectionRequest.threadId,\n })\n\n await this.updateState(agentContext, connectionRecord, DidCommDidExchangeState.RequestSent)\n\n return {\n connectionRecord,\n message: connectionRequest,\n }\n }\n\n public async processRequest(\n messageContext: DidCommInboundMessageContext<DidCommConnectionRequestMessage>,\n outOfBandRecord: DidCommOutOfBandRecord\n ): Promise<DidCommConnectionRecord> {\n this.logger.debug(`Process message ${DidCommConnectionRequestMessage.type.messageTypeUri} start`, {\n message: messageContext.message,\n })\n outOfBandRecord.assertRole(DidCommOutOfBandRole.Sender)\n outOfBandRecord.assertState(DidCommOutOfBandState.AwaitResponse)\n\n // TODO check there is no connection record for particular oob record\n\n const { message } = messageContext\n if (!message.connection.didDoc) {\n throw new ConnectionProblemReportError('Public DIDs are not supported yet', {\n problemCode: ConnectionProblemReportReason.RequestNotAccepted,\n })\n }\n\n const { did: peerDid } = await this.createDid(messageContext.agentContext, {\n role: DidDocumentRole.Received,\n didDoc: message.connection.didDoc,\n })\n\n const connectionRecord = await this.createConnection(messageContext.agentContext, {\n protocol: DidCommHandshakeProtocol.Connections,\n role: DidCommDidExchangeRole.Responder,\n state: DidCommDidExchangeState.RequestReceived,\n alias: outOfBandRecord.alias,\n theirLabel: message.label,\n imageUrl: message.imageUrl,\n outOfBandId: outOfBandRecord.id,\n theirDid: peerDid,\n threadId: message.threadId,\n mediatorId: outOfBandRecord.mediatorId,\n autoAcceptConnection: outOfBandRecord.autoAcceptConnection,\n })\n\n await this.connectionRepository.update(messageContext.agentContext, connectionRecord)\n this.emitStateChangedEvent(messageContext.agentContext, connectionRecord, null)\n\n this.logger.debug(`Process message ${DidCommConnectionRequestMessage.type.messageTypeUri} end`, connectionRecord)\n return connectionRecord\n }\n\n /**\n * Create a connection response message for the connection with the specified connection id.\n *\n * @param connectionRecord the connection for which to create a connection response\n * @returns outbound message containing connection response\n */\n public async createResponse(\n agentContext: AgentContext,\n connectionRecord: DidCommConnectionRecord,\n outOfBandRecord: DidCommOutOfBandRecord,\n routing?: DidCommRouting\n ): Promise<ConnectionProtocolMsgReturnType<DidCommConnectionResponseMessage>> {\n this.logger.debug(`Create message ${DidCommConnectionResponseMessage.type.messageTypeUri} start`, connectionRecord)\n connectionRecord.assertState(DidCommDidExchangeState.RequestReceived)\n connectionRecord.assertRole(DidCommDidExchangeRole.Responder)\n\n let didDoc: DidDoc\n let keys: DidDocumentKey[]\n if (routing) {\n const result = this.createDidDoc(routing)\n didDoc = result.didDoc\n keys = result.keys\n } else if (outOfBandRecord.outOfBandInvitation.getInlineServices().length > 0) {\n const result = this.createDidDocFromOutOfBandDidCommServices(outOfBandRecord)\n didDoc = result.didDoc\n keys = result.keys\n } else {\n // We don't support using a did from the OOB invitation services currently, in this case we always pass routing to this method\n throw new CredoError(\n 'No routing provided, and no inline services found in out of band invitation. When using did services in out of band invitation, make sure to provide routing information for rotation.'\n )\n }\n\n const { did: peerDid } = await this.createDid(agentContext, {\n role: DidDocumentRole.Created,\n didDoc,\n keys,\n })\n\n const connection = new DidCommConnection({\n did: didDoc.id,\n didDoc,\n })\n\n const connectionJson = JsonTransformer.toJSON(connection)\n\n if (!connectionRecord.threadId) {\n throw new CredoError(`Connection record with id ${connectionRecord.id} does not have a thread id`)\n }\n\n let signingKey: Kms.PublicJwk<Kms.Ed25519PublicJwk>\n const firstService = outOfBandRecord.outOfBandInvitation.getServices()[0]\n if (typeof firstService === 'string') {\n const dids = agentContext.resolve(DidsApi)\n const resolved = await dids.resolveCreatedDidDocumentWithKeys(parseDid(firstService).did)\n\n const recipientKeys = resolved.didDocument.getRecipientKeysWithVerificationMethod({ mapX25519ToEd25519: true })\n if (recipientKeys.length === 0) {\n throw new CredoError(`Unable to extract signing key for connection response from did '${firstService}'`)\n }\n\n signingKey = recipientKeys[0].publicJwk\n // TOOD: we probably need an util: addKeyIdToVerificationMethodKey\n signingKey.keyId =\n resolved.keys?.find(({ didDocumentRelativeKeyId }) =>\n recipientKeys[0].verificationMethod.id.endsWith(didDocumentRelativeKeyId)\n )?.kmsKeyId ?? signingKey.legacyKeyId\n } else {\n const service = getResolvedDidcommServiceWithSigningKeyId(\n firstService,\n outOfBandRecord.invitationInlineServiceKeys\n )\n signingKey = service.recipientKeys[0]\n }\n\n const connectionResponse = new DidCommConnectionResponseMessage({\n threadId: connectionRecord.threadId,\n connectionSig: await signData(agentContext, connectionJson, signingKey),\n })\n\n connectionRecord.did = peerDid\n await this.updateState(agentContext, connectionRecord, DidCommDidExchangeState.ResponseSent)\n\n this.logger.debug(`Create message ${DidCommConnectionResponseMessage.type.messageTypeUri} end`, {\n connectionRecord,\n message: connectionResponse,\n })\n return {\n connectionRecord,\n message: connectionResponse,\n }\n }\n\n /**\n * Process a received connection response message. This will not accept the connection request\n * or send a connection acknowledgement message. It will only update the existing connection record\n * with all the new information from the connection response message. Use {@link DidCommConnectionService.createTrustPing}\n * after calling this function to create a trust ping message.\n *\n * @param messageContext the message context containing a connection response message\n * @returns updated connection record\n */\n public async processResponse(\n messageContext: DidCommInboundMessageContext<DidCommConnectionResponseMessage>,\n outOfBandRecord: DidCommOutOfBandRecord\n ): Promise<DidCommConnectionRecord> {\n this.logger.debug(`Process message ${DidCommConnectionResponseMessage.type.messageTypeUri} start`, {\n message: messageContext.message,\n })\n const { connection: connectionRecord, message, recipientKey, senderKey } = messageContext\n\n if (!recipientKey || !senderKey) {\n throw new CredoError('Unable to process connection request without senderKey or recipientKey')\n }\n\n if (!connectionRecord) {\n throw new CredoError('No connection record in message context.')\n }\n\n connectionRecord.assertState(DidCommDidExchangeState.RequestSent)\n connectionRecord.assertRole(DidCommDidExchangeRole.Requester)\n\n let connectionJson = null\n try {\n connectionJson = await unpackAndVerifySignatureDecorator(messageContext.agentContext, message.connectionSig)\n } catch (error) {\n if (error instanceof CredoError) {\n throw new ConnectionProblemReportError(error.message, {\n problemCode: ConnectionProblemReportReason.ResponseProcessingError,\n })\n }\n throw error\n }\n\n const connection = JsonTransformer.fromJSON(connectionJson, DidCommConnection)\n\n // Per the Connection RFC we must check if the key used to sign the connection~sig is the same key\n // as the recipient key(s) in the connection invitation message\n const signerVerkey = message.connectionSig.signer\n\n const invitationKey = Kms.PublicJwk.fromFingerprint(outOfBandRecord.getTags().recipientKeyFingerprints[0])\n if (!invitationKey.is(Kms.Ed25519PublicJwk)) {\n throw new ConnectionProblemReportError(\n `Expected invitation key to be an Ed25519 key, found ${invitationKey.jwkTypehumanDescription}`,\n { problemCode: ConnectionProblemReportReason.ResponseNotAccepted }\n )\n }\n\n const invitationKeyBase58 = TypedArrayEncoder.toBase58(invitationKey.publicKey.publicKey)\n\n if (signerVerkey !== invitationKeyBase58) {\n throw new ConnectionProblemReportError(\n `Connection object in connection response message is not signed with same key as recipient key in invitation expected='${invitationKey}' received='${signerVerkey}'`,\n { problemCode: ConnectionProblemReportReason.ResponseNotAccepted }\n )\n }\n\n if (!connection.didDoc) {\n throw new CredoError('DID Document is missing.')\n }\n\n const { did: peerDid } = await this.createDid(messageContext.agentContext, {\n role: DidDocumentRole.Received,\n didDoc: connection.didDoc,\n })\n\n connectionRecord.theirDid = peerDid\n connectionRecord.threadId = message.threadId\n\n await this.updateState(messageContext.agentContext, connectionRecord, DidCommDidExchangeState.ResponseReceived)\n return connectionRecord\n }\n\n /**\n * Create a trust ping message for the connection with the specified connection id.\n *\n * By default a trust ping message should elicit a response. If this is not desired the\n * `config.responseRequested` property can be set to `false`.\n *\n * @param connectionRecord the connection for which to create a trust ping message\n * @param config the config for the trust ping message\n * @returns outbound message containing trust ping message\n */\n public async createTrustPing(\n agentContext: AgentContext,\n connectionRecord: DidCommConnectionRecord,\n config: { responseRequested?: boolean; comment?: string } = {}\n ): Promise<ConnectionProtocolMsgReturnType<DidCommTrustPingMessage>> {\n connectionRecord.assertState([DidCommDidExchangeState.ResponseReceived, DidCommDidExchangeState.Completed])\n\n // TODO:\n // - create ack message\n // - maybe this shouldn't be in the connection service?\n const trustPing = new DidCommTrustPingMessage(config)\n\n // Only update connection record and emit an event if the state is not already 'Complete'\n if (connectionRecord.state !== DidCommDidExchangeState.Completed) {\n await this.updateState(agentContext, connectionRecord, DidCommDidExchangeState.Completed)\n }\n\n return {\n connectionRecord,\n message: trustPing,\n }\n }\n\n /**\n * Process a received ack message. This will update the state of the connection\n * to Completed if this is not already the case.\n *\n * @param messageContext the message context containing an ack message\n * @returns updated connection record\n */\n public async processAck(\n messageContext: DidCommInboundMessageContext<DidCommAckMessage>\n ): Promise<DidCommConnectionRecord> {\n const { connection, recipientKey } = messageContext\n\n if (!connection) {\n throw new CredoError(\n `Unable to process connection ack: connection for recipient key ${recipientKey?.fingerprint} not found`\n )\n }\n\n // TODO: This is better addressed in a middleware of some kind because\n // any message can transition the state to complete, not just an ack or trust ping\n if (\n connection.state === DidCommDidExchangeState.ResponseSent &&\n connection.role === DidCommDidExchangeRole.Responder\n ) {\n await this.updateState(messageContext.agentContext, connection, DidCommDidExchangeState.Completed)\n }\n\n return connection\n }\n\n /**\n * Process a received {@link DidCommProblemReportMessage}.\n *\n * @param messageContext The message context containing a connection problem report message\n * @returns connection record associated with the connection problem report message\n *\n */\n public async processProblemReport(\n messageContext: DidCommInboundMessageContext<DidCommConnectionProblemReportMessage>\n ): Promise<DidCommConnectionRecord> {\n const { message: connectionProblemReportMessage, recipientKey, senderKey } = messageContext\n\n this.logger.debug(`Processing connection problem report for verkey ${recipientKey?.fingerprint}`)\n\n if (!recipientKey) {\n throw new CredoError('Unable to process connection problem report without recipientKey')\n }\n\n const ourDidRecord = await this.didRepository.findCreatedDidByRecipientKey(\n messageContext.agentContext,\n recipientKey\n )\n if (!ourDidRecord) {\n throw new CredoError(\n `Unable to process connection problem report: created did record for recipient key ${recipientKey.fingerprint} not found`\n )\n }\n\n const connectionRecord = await this.findByOurDid(messageContext.agentContext, ourDidRecord.did)\n if (!connectionRecord) {\n throw new CredoError(\n `Unable to process connection problem report: connection for recipient key ${recipientKey.fingerprint} not found`\n )\n }\n\n const theirDidRecord =\n connectionRecord.theirDid &&\n (await this.didRepository.findReceivedDid(messageContext.agentContext, connectionRecord.theirDid))\n if (!theirDidRecord) {\n throw new CredoError(`Received did record for did ${connectionRecord.theirDid} not found.`)\n }\n\n if (senderKey) {\n if (!theirDidRecord?.getTags().recipientKeyFingerprints?.includes(senderKey.fingerprint)) {\n throw new CredoError(\"Sender key doesn't match key of connection record\")\n }\n }\n\n connectionRecord.errorMessage = `${connectionProblemReportMessage.description.code} : ${connectionProblemReportMessage.description.en}`\n await this.update(messageContext.agentContext, connectionRecord)\n\n // Marking connection as abandoned in case of problem report from issuer agent\n // TODO: Can be conditionally abandoned - Like if another user is scanning already used connection invite where issuer will send invite-already-used problem code.\n await this.updateState(messageContext.agentContext, connectionRecord, DidCommDidExchangeState.Abandoned)\n\n return connectionRecord\n }\n\n /**\n * Assert that an inbound message either has a connection associated with it,\n * or has everything correctly set up for connection-less exchange (optionally with out of band)\n *\n * @param messageContext - the inbound message context\n */\n public async assertConnectionOrOutOfBandExchange(\n messageContext: DidCommInboundMessageContext,\n {\n lastSentMessage,\n lastReceivedMessage,\n expectedConnectionId,\n }: {\n lastSentMessage?: DidCommMessage | null\n lastReceivedMessage?: DidCommMessage | null\n expectedConnectionId?: string\n } = {}\n ) {\n const { connection, message } = messageContext\n\n if (expectedConnectionId && !connection) {\n throw new CredoError(\n `Expected incoming message to be from connection ${expectedConnectionId} but no connection found.`\n )\n }\n if (expectedConnectionId && connection?.id !== expectedConnectionId) {\n throw new CredoError(\n `Expected incoming message to be from connection ${expectedConnectionId} but connection is ${connection?.id}.`\n )\n }\n\n // Check if we have a ready connection. Verification is already done somewhere else. Return\n if (connection) {\n connection.assertReady()\n this.logger.debug(`Processing message with id ${message.id} and connection id ${connection.id}`, {\n type: message.type,\n })\n } else {\n this.logger.debug(`Processing connection-less message with id ${message.id}`, {\n type: message.type,\n })\n\n const recipientKey = messageContext.recipientKey\n const senderKey = messageContext.senderKey\n\n // set theirService to the value of lastReceivedMessage.service\n let theirService =\n messageContext.message?.service?.resolvedDidCommService ?? lastReceivedMessage?.service?.resolvedDidCommService\n let ourService = lastSentMessage?.service?.resolvedDidCommService\n\n // FIXME: we should remove support for the flow where no out of band record is used.\n // Users have had enough time to update to the OOB API which supports legacy connectionsless\n // invitations as well\n // 1. check if there's an oob record associated.\n const outOfBandRepository = messageContext.agentContext.dependencyManager.resolve(DidCommOutOfBandRepository)\n const outOfBandService = messageContext.agentContext.dependencyManager.resolve(DidCommOutOfBandService)\n const outOfBandRecord = await outOfBandRepository.findSingleByQuery(messageContext.agentContext, {\n invitationRequestsThreadIds: [message.threadId],\n })\n\n // If we have an out of band record, we can extract the service for our/the other party from the oob record\n if (outOfBandRecord?.role === DidCommOutOfBandRole.Sender) {\n ourService = await outOfBandService.getResolvedServiceForOutOfBandServices(\n messageContext.agentContext,\n outOfBandRecord.outOfBandInvitation.getServices(),\n outOfBandRecord.invitationInlineServiceKeys\n )\n } else if (outOfBandRecord?.role === DidCommOutOfBandRole.Receiver) {\n theirService = await outOfBandService.getResolvedServiceForOutOfBandServices(\n messageContext.agentContext,\n outOfBandRecord.outOfBandInvitation.getServices()\n )\n }\n\n // theirService can be null when we receive an oob invitation and process the message.\n // In this case there MUST be an oob record, otherwise there is no way for us to reply\n // to the message\n if (!theirService && !outOfBandRecord) {\n throw new CredoError(\n 'No service for incoming connection-less message and no associated out of band record found.'\n )\n }\n\n // ourService can be null when we receive an oob invitation or legacy connectionless message and process the message.\n // In this case lastSentMessage and lastReceivedMessage MUST be null, because there shouldn't be any previous exchange\n if (!ourService && (lastReceivedMessage || lastSentMessage)) {\n throw new CredoError(\n 'No keys on our side to use for encrypting messages, and previous messages found (in which case our keys MUST also be present).'\n )\n }\n\n // If the message is unpacked or AuthCrypt, there cannot be any previous exchange (this must be the first message).\n // All exchange after the first unpacked oob exchange MUST be encrypted.\n if ((!senderKey || !recipientKey) && (lastSentMessage || lastReceivedMessage)) {\n throw new CredoError(\n 'Incoming message must have recipientKey and senderKey (so cannot be AuthCrypt or unpacked) if there are lastSentMessage or lastReceivedMessage.'\n )\n }\n\n // Check if recipientKey is in ourService\n if (recipientKey && ourService) {\n const recipientKeyFound = ourService.recipientKeys.some((key) => recipientKey.equals(key))\n if (!recipientKeyFound) {\n throw new CredoError(`Recipient key ${recipientKey.fingerprint} not found in our service`)\n }\n }\n\n // Check if senderKey is in theirService\n if (senderKey && theirService) {\n const senderKeyFound = theirService.recipientKeys.some((key) => senderKey.equals(key))\n if (!senderKeyFound) {\n throw new CredoError(`Sender key ${senderKey.fingerprint} not found in their service.`)\n }\n }\n }\n }\n\n /**\n * If knownConnectionId is passed, it will compare the incoming connection id with the knownConnectionId, and skip the other validation.\n *\n * If no known connection id is passed, it asserts that the incoming message is in response to an attached request message to an out of band invitation.\n * If is the case, and the state of the out of band record is still await response, the state will be updated to done\n *\n */\n public async matchIncomingMessageToRequestMessageInOutOfBandExchange(\n messageContext: DidCommInboundMessageContext,\n { expectedConnectionId }: { expectedConnectionId?: string }\n ) {\n if (expectedConnectionId && messageContext.connection?.id !== expectedConnectionId) {\n throw new CredoError(\n `Expecting incoming message to have connection ${expectedConnectionId}, but incoming connection is ${\n messageContext.connection?.id ?? 'undefined'\n }`\n )\n }\n\n const outOfBandRepository = messageContext.agentContext.dependencyManager.resolve(DidCommOutOfBandRepository)\n const outOfBandInvitationId = messageContext.message.thread?.parentThreadId\n\n // Find the out of band record that is associated with this request\n const outOfBandRecord = await outOfBandRepository.findSingleByQuery(messageContext.agentContext, {\n invitationId: outOfBandInvitationId,\n role: DidCommOutOfBandRole.Sender,\n invitationRequestsThreadIds: [messageContext.message.threadId],\n })\n\n // There is no out of band record\n if (!outOfBandRecord) {\n throw new CredoError(\n `No out of band record found for credential request message with thread ${messageContext.message.threadId}, out of band invitation id ${outOfBandInvitationId} and role ${DidCommOutOfBandRole.Sender}`\n )\n }\n\n const legacyInvitationMetadata = outOfBandRecord.metadata.get(DidCommOutOfBandRecordMetadataKeys.LegacyInvitation)\n\n // If the original invitation was a legacy connectionless invitation, it's okay if the message does not have a pthid.\n if (\n legacyInvitationMetadata?.legacyInvitationType !== DidCommInvitationType.Connectionless &&\n outOfBandRecord.outOfBandInvitation.id !== outOfBandInvitationId\n ) {\n throw new CredoError(\n 'Response messages to out of band invitation requests MUST have a parent thread id that matches the out of band invitation id.'\n )\n }\n\n // This should not happen, as it is not allowed to create reusable out of band invitations with attached messages\n // But should that implementation change, we at least cover it here.\n if (outOfBandRecord.reusable) {\n throw new CredoError('Receiving messages in response to reusable out of band invitations is not supported.')\n }\n\n if (outOfBandRecord.state === DidCommOutOfBandState.Done) {\n if (!messageContext.connection) {\n throw new CredoError(\n \"Can't find connection associated with incoming message, while out of band state is done. State must be await response if no connection has been created\"\n )\n }\n if (messageContext.connection.outOfBandId !== outOfBandRecord.id) {\n throw new CredoError(\n 'Connection associated with incoming message is not associated with the out of band invitation containing the attached message.'\n )\n }\n\n // We're good to go. Connection was created and points to the correct out of band record. And the message is in response to an attached request message from the oob invitation.\n } else if (outOfBandRecord.state === DidCommOutOfBandState.AwaitResponse) {\n // We're good to go. Waiting for a response. And the message is in response to an attached request message from the oob invitation.\n\n // Now that we have received the first response message to our out of band invitation, we mark the out of band record as done\n outOfBandRecord.state = DidCommOutOfBandState.Done\n await outOfBandRepository.update(messageContext.agentContext, outOfBandRecord)\n } else {\n throw new CredoError(`Out of band record is in incorrect state ${outOfBandRecord.state}`)\n }\n }\n\n public async updateState(\n agentContext: AgentContext,\n connectionRecord: DidCommConnectionRecord,\n newState: DidCommDidExchangeState\n ) {\n const previousState = connectionRecord.state\n connectionRecord.state = newState\n await this.connectionRepository.update(agentContext, connectionRecord)\n\n this.emitStateChangedEvent(agentContext, connectionRecord, previousState)\n }\n\n private emitStateChangedEvent(\n agentContext: AgentContext,\n connectionRecord: DidCommConnectionRecord,\n previousState: DidCommDidExchangeState | null\n ) {\n this.eventEmitter.emit<DidCommConnectionStateChangedEvent>(agentContext, {\n type: DidCommConnectionEventTypes.DidCommConnectionStateChanged,\n payload: {\n // Connection record in event should be static\n connectionRecord: connectionRecord.clone(),\n previousState,\n },\n })\n }\n\n public update(agentContext: AgentContext, connectionRecord: DidCommConnectionRecord) {\n return this.connectionRepository.update(agentContext, connectionRecord)\n }\n\n /**\n * Retrieve all connections records\n *\n * @returns List containing all connection records\n */\n public getAll(agentContext: AgentContext) {\n return this.connectionRepository.getAll(agentContext)\n }\n\n /**\n * Retrieve a connection record by id\n *\n * @param connectionId The connection record id\n * @throws {RecordNotFoundError} If no record is found\n * @return The connection record\n *\n */\n public getById(agentContext: AgentContext, connectionId: string): Promise<DidCommConnectionRecord> {\n return this.connectionRepository.getById(agentContext, connectionId)\n }\n\n /**\n * Find a connection record by id\n *\n * @param connectionId the connection record id\n * @returns The connection record or null if not found\n */\n public findById(agentContext: AgentContext, connectionId: string): Promise<DidCommConnectionRecord | null> {\n return this.connectionRepository.findById(agentContext, connectionId)\n }\n\n /**\n * Delete a connection record by id\n *\n * @param connectionId the connection record id\n */\n public async deleteById(agentContext: AgentContext, connectionId: string) {\n const connectionRecord = await this.getById(agentContext, connectionId)\n return this.connectionRepository.delete(agentContext, connectionRecord)\n }\n\n public async findByDids(agentContext: AgentContext, query: { ourDid: string; theirDid: string }) {\n return this.connectionRepository.findByDids(agentContext, query)\n }\n\n /**\n * Retrieve a connection record by thread id\n *\n * @param threadId The thread id\n * @throws {RecordNotFoundError} If no record is found\n * @throws {RecordDuplicateError} If multiple records are found\n * @returns The connection record\n */\n public async getByThreadId(agentContext: AgentContext, threadId: string): Promise<DidCommConnectionRecord> {\n return this.connectionRepository.getByThreadId(agentContext, threadId)\n }\n\n public async getByRoleAndThreadId(agentContext: AgentContext, role: DidCommDidExchangeRole, threadId: string) {\n return this.connectionRepository.getByRoleAndThreadId(agentContext, role, threadId)\n }\n\n public async findByTheirDid(agentContext: AgentContext, theirDid: string): Promise<DidCommConnectionRecord | null> {\n return this.connectionRepository.findSingleByQuery(agentContext, { theirDid })\n }\n\n public async findByOurDid(agentContext: AgentContext, ourDid: string): Promise<DidCommConnectionRecord | null> {\n return this.connectionRepository.findSingleByQuery(agentContext, { did: ourDid })\n }\n\n public async findAllByOutOfBandId(agentContext: AgentContext, outOfBandId: string) {\n return this.connectionRepository.findByQuery(agentContext, { outOfBandId })\n }\n\n public async findAllByConnectionTypes(\n agentContext: AgentContext,\n connectionTypes: Array<DidCommConnectionType | string>\n ) {\n return this.connectionRepository.findByQuery(agentContext, { connectionTypes })\n }\n\n public async findByInvitationDid(agentContext: AgentContext, invitationDid: string) {\n return this.connectionRepository.findByQuery(agentContext, { invitationDid })\n }\n\n public async findByKeys(\n agentContext: AgentContext,\n {\n senderKey,\n recipientKey,\n }: { senderKey: Kms.PublicJwk<Kms.Ed25519PublicJwk>; recipientKey: Kms.PublicJwk<Kms.Ed25519PublicJwk> }\n ) {\n const theirDidRecord = await this.didRepository.findReceivedDidByRecipientKey(agentContext, senderKey)\n if (theirDidRecord) {\n const ourDidRecord = await this.didRepository.findCreatedDidByRecipientKey(agentContext, recipientKey)\n if (ourDidRecord) {\n const connectionRecord = await this.findByDids(agentContext, {\n ourDid: ourDidRecord.did,\n theirDid: theirDidRecord.did,\n })\n if (connectionRecord?.isReady) return connectionRecord\n }\n }\n\n this.logger.debug(\n `No connection record found for encrypted message with recipient key ${recipientKey.fingerprint} and sender key ${senderKey.fingerprint}`\n )\n\n return null\n }\n\n public async findAllByQuery(\n agentContext: AgentContext,\n query: Query<DidCommConnectionRecord>,\n queryOptions?: QueryOptions\n ): Promise<DidCommConnectionRecord[]> {\n return this.connectionRepository.findByQuery(agentContext, query, queryOptions)\n }\n\n public async createConnection(\n agentContext: AgentContext,\n options: DidCommConnectionRecordProps\n ): Promise<DidCommConnectionRecord> {\n const connectionRecord = new DidCommConnectionRecord(options)\n await this.connectionRepository.save(agentContext, connectionRecord)\n return connectionRecord\n }\n\n public async addConnectionType(agentContext: AgentContext, connectionRecord: DidCommConnectionRecord, type: string) {\n const connectionTypes = connectionRecord.connectionTypes || []\n connectionRecord.connectionTypes = [type, ...connectionTypes]\n await this.update(agentContext, connectionRecord)\n }\n\n public async removeConnectionType(\n agentContext: AgentContext,\n connectionRecord: DidCommConnectionRecord,\n type: string\n ) {\n connectionRecord.connectionTypes = connectionRecord.connectionTypes.filter((value) => value !== type)\n await this.update(agentContext, connectionRecord)\n }\n\n public async getConnectionTypes(connectionRecord: DidCommConnectionRecord) {\n return connectionRecord.connectionTypes || []\n }\n\n private async createDid(\n agentContext: AgentContext,\n { role, didDoc, keys }: { role: DidDocumentRole; didDoc: DidDoc; keys?: DidDocumentKey[] }\n ) {\n if (keys && role !== DidDocumentRole.Created) {\n throw new CredoError(`keys can only be provided for did documents when the role is '${DidDocumentRole.Created}'`)\n }\n\n // Convert the legacy did doc to a new did document\n const { didDocument, keys: updatedKeys } = convertToNewDidDocument(didDoc, keys)\n\n // Assert that the keys we are going to use for creating a did document haven't already been used in another did document\n if (role === DidDocumentRole.Created) {\n await assertNoCreatedDidExistsForKeys(agentContext, didDocument.recipientKeys)\n }\n\n const peerDid = didDocumentJsonToNumAlgo1Did(didDocument.toJSON())\n didDocument.id = peerDid\n const didRecord = new DidRecord({\n did: peerDid,\n role,\n didDocument,\n keys: updatedKeys,\n })\n\n // Store the unqualified did with the legacy did document in the metadata\n // Can be removed at a later stage if we know for sure we don't need it anymore\n didRecord.metadata.set(DidRecordMetadataKeys.LegacyDid, {\n unqualifiedDid: didDoc.id,\n didDocumentString: JsonTransformer.serialize(didDoc),\n })\n\n this.logger.debug('Saving DID record', {\n id: didRecord.id,\n did: didRecord.did,\n role: didRecord.role,\n tags: didRecord.getTags(),\n didDocument: 'omitted...',\n })\n\n await this.didRepository.save(agentContext, didRecord)\n this.logger.debug('Did record created.', didRecord)\n return { did: peerDid, didDocument }\n }\n\n private createDidDoc(routing: DidCommRouting) {\n const recipientKeyBase58 = TypedArrayEncoder.toBase58(routing.recipientKey.publicKey.publicKey)\n const indyDid = utils.indyDidFromPublicKeyBase58(recipientKeyBase58)\n\n const keys: DidDocumentKey[] = [\n {\n didDocumentRelativeKeyId: '#1',\n kmsKeyId: routing.recipientKey.keyId,\n },\n ]\n\n const publicKey = new Ed25119Sig2018({\n id: `${indyDid}#1`,\n controller: indyDid,\n publicKeyBase58: recipientKeyBase58,\n })\n\n const auth = new ReferencedAuthentication(publicKey, authenticationTypes.Ed25519VerificationKey2018)\n\n // IndyAgentService is old service type\n const services = routing.endpoints.map(\n (endpoint, index) =>\n new IndyAgentService({\n id: `${indyDid}#IndyAgentService-${index + 1}`,\n serviceEndpoint: endpoint,\n recipientKeys: [recipientKeyBase58],\n routingKeys: routing.routingKeys.map((key) => TypedArrayEncoder.toBase58(key.publicKey.publicKey)),\n // Order of endpoint determines priority\n priority: index,\n })\n )\n\n return {\n didDoc: new DidDoc({\n id: indyDid,\n authentication: [auth],\n service: services,\n publicKey: [publicKey],\n }),\n keys,\n }\n }\n\n private createDidDocFromOutOfBandDidCommServices(outOfBandRecord: DidCommOutOfBandRecord) {\n const services = outOfBandRecord.outOfBandInvitation\n .getInlineServices()\n .map((service) => getResolvedDidcommServiceWithSigningKeyId(service, outOfBandRecord.invitationInlineServiceKeys))\n\n const [recipientKey] = services[0].recipientKeys\n const recipientKeyBase58 = TypedArrayEncoder.toBase58(recipientKey.publicKey.publicKey)\n const did = utils.indyDidFromPublicKeyBase58(recipientKeyBase58)\n\n const publicKey = new Ed25119Sig2018({\n id: `${did}#1`,\n controller: did,\n publicKeyBase58: recipientKeyBase58,\n })\n\n const auth = new ReferencedAuthentication(publicKey, authenticationTypes.Ed25519VerificationKey2018)\n\n // IndyAgentService is old service type\n const service = services.map(\n (service, index) =>\n new IndyAgentService({\n id: `${did}#IndyAgentService-${index + 1}`,\n serviceEndpoint: service.serviceEndpoint,\n recipientKeys: [recipientKeyBase58],\n routingKeys: service.routingKeys?.map((publicJwk) =>\n TypedArrayEncoder.toBase58(publicJwk.publicKey.publicKey)\n ),\n priority: index,\n })\n )\n\n return {\n didDoc: new DidDoc({\n id: did,\n authentication: [auth],\n service,\n publicKey: [publicKey],\n }),\n keys: [{ didDocumentRelativeKeyId: '#1', kmsKeyId: recipientKey.keyId }] satisfies DidDocumentKey[],\n }\n }\n\n public async returnWhenIsConnected(\n agentContext: AgentContext,\n connectionId: string,\n timeoutMs = 20000\n ): Promise<DidCommConnectionRecord> {\n const isConnected = (connection: DidCommConnectionRecord) => {\n return connection.id === connectionId && connection.state === DidCommDidExchangeState.Completed\n }\n\n const observable = this.eventEmitter.observable<DidCommConnectionStateChangedEvent>(\n DidCommConnectionEventTypes.DidCommConnectionStateChanged\n )\n const subject = new ReplaySubject<DidCommConnectionRecord>(1)\n\n observable\n .pipe(\n filterContextCorrelationId(agentContext.contextCorrelationId),\n map((e) => e.payload.connectionRecord),\n first(isConnected), // Do not wait for longer than specified timeout\n timeout({\n first: timeoutMs,\n meta: 'DidCommConnectionService.returnWhenIsConnected',\n })\n )\n .subscribe(subject)\n\n const connection = await this.getById(agentContext, connectionId)\n if (isConnected(connection)) {\n subject.next(connection)\n }\n\n return firstValueFrom(subject)\n }\n}\n\nexport interface ConnectionProtocolMsgReturnType<MessageType extends DidCommMessage> {\n message: MessageType\n connectionRecord: DidCommConnectionRecord\n}\n"],"mappings":"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"}
@@ -0,0 +1,208 @@
1
+ const require_rolldown_runtime = require('../../../../../../_virtual/rolldown_runtime.js');
2
+ const require_decorateMetadata = require('../../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateMetadata.js');
3
+ const require_decorate = require('../../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorate.js');
4
+ const require_DidCommAckMessage = require('../../../messages/common/DidCommAckMessage.js');
5
+ require('../../../messages/index.js');
6
+ const require_DidCommOutboundMessageContext = require('../../../models/DidCommOutboundMessageContext.js');
7
+ require('../../../models/index.js');
8
+ const require_DidCommDidRotateProblemReportMessage = require('../messages/DidCommDidRotateProblemReportMessage.js');
9
+ const require_DidCommDidRotateMessage = require('../messages/DidCommDidRotateMessage.js');
10
+ const require_DidCommDidRotateAckMessage = require('../messages/DidCommDidRotateAckMessage.js');
11
+ const require_DidCommHangupMessage = require('../messages/DidCommHangupMessage.js');
12
+ require('../messages/index.js');
13
+ const require_decorateParam = require('../../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateParam.js');
14
+ const require_helpers = require('./helpers.js');
15
+ const require_DidCommConnectionEvents = require('../DidCommConnectionEvents.js');
16
+ const require_DidCommConnectionService = require('./DidCommConnectionService.js');
17
+ const require_DidCommConnectionMetadataTypes = require('../repository/DidCommConnectionMetadataTypes.js');
18
+ const require_helpers$1 = require('../../routing/services/helpers.js');
19
+ const require_DidCommConnectionsModuleConfig = require('../DidCommConnectionsModuleConfig.js');
20
+ let __credo_ts_core = require("@credo-ts/core");
21
+ __credo_ts_core = require_rolldown_runtime.__toESM(__credo_ts_core);
22
+
23
+ //#region ../didcomm/src/modules/connections/services/DidCommDidRotateService.ts
24
+ var _ref, _ref2;
25
+ let DidCommDidRotateService = class DidCommDidRotateService$1 {
26
+ constructor(didResolverService, logger, eventEmitter) {
27
+ this.didResolverService = didResolverService;
28
+ this.logger = logger;
29
+ this.eventEmitter = eventEmitter;
30
+ }
31
+ async createRotate(agentContext, options) {
32
+ const { connection, toDid, routing } = options;
33
+ const config = agentContext.resolve(require_DidCommConnectionsModuleConfig.DidCommConnectionsModuleConfig);
34
+ const dids = agentContext.resolve(__credo_ts_core.DidsApi);
35
+ if (connection.metadata.get(require_DidCommConnectionMetadataTypes.DidCommConnectionMetadataKeys.DidRotate)) throw new __credo_ts_core.CredoError(`There is already an existing opened did rotation flow for connection id ${connection.id}`);
36
+ let resolvedDid;
37
+ let mediatorId;
38
+ if (toDid) {
39
+ resolvedDid = await dids.resolveCreatedDidDocumentWithKeys(toDid);
40
+ mediatorId = (await require_helpers$1.getMediationRecordForDidDocument(agentContext, resolvedDid.didDocument))?.id;
41
+ } else {
42
+ if (!routing) throw new __credo_ts_core.CredoError("Routing configuration must be defined when rotating to a new peer did");
43
+ resolvedDid = await require_helpers.createPeerDidFromServices(agentContext, require_helpers.routingToServices(routing), config.peerNumAlgoForDidRotation);
44
+ mediatorId = routing.mediatorId;
45
+ }
46
+ const message = new require_DidCommDidRotateMessage.DidCommDidRotateMessage({ toDid: resolvedDid.didDocument.id });
47
+ connection.metadata.set(require_DidCommConnectionMetadataTypes.DidCommConnectionMetadataKeys.DidRotate, {
48
+ threadId: message.threadId,
49
+ did: resolvedDid.didDocument.id,
50
+ mediatorId
51
+ });
52
+ await agentContext.resolve(require_DidCommConnectionService.DidCommConnectionService).update(agentContext, connection);
53
+ return message;
54
+ }
55
+ async createHangup(agentContext, options) {
56
+ const { connection } = options;
57
+ const message = new require_DidCommHangupMessage.DidCommHangupMessage({});
58
+ if (connection.did) connection.previousDids = [...connection.previousDids, connection.did];
59
+ connection.did = void 0;
60
+ await agentContext.dependencyManager.resolve(require_DidCommConnectionService.DidCommConnectionService).update(agentContext, connection);
61
+ return message;
62
+ }
63
+ /**
64
+ * Process a Hangup message and mark connection's theirDid as undefined so it is effectively terminated.
65
+ * Connection Record itself is not deleted (TODO: config parameter to automatically do so)
66
+ *
67
+ * Its previous did will be stored in record in order to be able to recognize any message received
68
+ * afterwards.
69
+ *
70
+ * @param messageContext
71
+ */
72
+ async processHangup(messageContext) {
73
+ const connection = messageContext.assertReadyConnection();
74
+ const { agentContext } = messageContext;
75
+ if (connection.theirDid) connection.previousTheirDids = [...connection.previousTheirDids, connection.theirDid];
76
+ const previousTheirDid = connection.theirDid;
77
+ connection.theirDid = void 0;
78
+ await agentContext.dependencyManager.resolve(require_DidCommConnectionService.DidCommConnectionService).update(agentContext, connection);
79
+ this.emitDidRotatedEvent(agentContext, connection, { previousTheirDid });
80
+ }
81
+ /**
82
+ * Process an incoming DID Rotate message and update connection if success. Any acknowledge
83
+ * or problem report will be sent to the prior DID, so the created context will take former
84
+ * connection record data
85
+ *
86
+ * @param paramInboundDidCommMessageContext
87
+ * @param connection
88
+ * @returns
89
+ */
90
+ async processRotate(messageContext) {
91
+ const connection = messageContext.assertReadyConnection();
92
+ const { message, agentContext } = messageContext;
93
+ const newDid = message.toDid;
94
+ if ((0, __credo_ts_core.isValidPeerDid)(newDid) && (0, __credo_ts_core.getNumAlgoFromPeerDid)(newDid) === __credo_ts_core.PeerDidNumAlgo.GenesisDoc) {
95
+ this.logger.error(`Unable to resolve DID Document for '${newDid}`);
96
+ return new require_DidCommOutboundMessageContext.DidCommOutboundMessageContext(new require_DidCommDidRotateProblemReportMessage.DidCommDidRotateProblemReportMessage({ description: {
97
+ en: "DID Method Unsupported",
98
+ code: "e.did.method_unsupported"
99
+ } }), {
100
+ agentContext,
101
+ connection
102
+ });
103
+ }
104
+ const didDocument = (await this.didResolverService.resolve(agentContext, newDid)).didDocument;
105
+ if (!didDocument) {
106
+ this.logger.error(`Unable to resolve DID Document for '${newDid}`);
107
+ return new require_DidCommOutboundMessageContext.DidCommOutboundMessageContext(new require_DidCommDidRotateProblemReportMessage.DidCommDidRotateProblemReportMessage({ description: {
108
+ en: "DID Unresolvable",
109
+ code: "e.did.unresolvable"
110
+ } }), {
111
+ agentContext,
112
+ connection
113
+ });
114
+ }
115
+ if (!didDocument.didCommServices) return new require_DidCommOutboundMessageContext.DidCommOutboundMessageContext(new require_DidCommDidRotateProblemReportMessage.DidCommDidRotateProblemReportMessage({ description: {
116
+ en: "DID Document Unsupported",
117
+ code: "e.did.doc_unsupported"
118
+ } }), {
119
+ agentContext,
120
+ connection
121
+ });
122
+ const outboundMessageContext = new require_DidCommOutboundMessageContext.DidCommOutboundMessageContext(new require_DidCommDidRotateAckMessage.DidCommDidRotateAckMessage({
123
+ threadId: message.threadId,
124
+ status: require_DidCommAckMessage.AckStatus.OK
125
+ }), {
126
+ agentContext,
127
+ connection: connection.clone()
128
+ });
129
+ await agentContext.dependencyManager.resolve(__credo_ts_core.DidRepository).storeReceivedDid(agentContext, {
130
+ did: didDocument.id,
131
+ didDocument,
132
+ tags: { alternativeDids: (0, __credo_ts_core.isValidPeerDid)(didDocument.id) ? (0, __credo_ts_core.getAlternativeDidsForPeerDid)(didDocument.id) : void 0 }
133
+ });
134
+ if (connection.theirDid) connection.previousTheirDids = [...connection.previousTheirDids, connection.theirDid];
135
+ const previousTheirDid = connection.theirDid;
136
+ connection.theirDid = newDid;
137
+ await agentContext.dependencyManager.resolve(require_DidCommConnectionService.DidCommConnectionService).update(agentContext, connection);
138
+ this.emitDidRotatedEvent(agentContext, connection, { previousTheirDid });
139
+ return outboundMessageContext;
140
+ }
141
+ async processRotateAck(inboundMessage) {
142
+ const { agentContext, message } = inboundMessage;
143
+ const connection = inboundMessage.assertReadyConnection();
144
+ const didRotateMetadata = connection.metadata.get(require_DidCommConnectionMetadataTypes.DidCommConnectionMetadataKeys.DidRotate);
145
+ if (!didRotateMetadata) throw new __credo_ts_core.CredoError(`No did rotation data found for connection with id '${connection.id}'`);
146
+ if (didRotateMetadata.threadId !== message.threadId) throw new __credo_ts_core.CredoError(`Existing did rotation flow thread id '${didRotateMetadata.threadId} does not match incoming message'`);
147
+ if (connection.did) connection.previousDids = [...connection.previousDids, connection.did];
148
+ const previousOurDid = connection.did;
149
+ connection.did = didRotateMetadata.did;
150
+ connection.mediatorId = didRotateMetadata.mediatorId;
151
+ connection.metadata.delete(require_DidCommConnectionMetadataTypes.DidCommConnectionMetadataKeys.DidRotate);
152
+ await agentContext.dependencyManager.resolve(require_DidCommConnectionService.DidCommConnectionService).update(agentContext, connection);
153
+ this.emitDidRotatedEvent(agentContext, connection, { previousOurDid });
154
+ }
155
+ /**
156
+ * Process a problem report related to did rotate protocol, by simply deleting any temporary metadata.
157
+ *
158
+ * No specific event is thrown other than generic message processing
159
+ *DidCommInboundMessageContext
160
+ * @param messageContext
161
+ */
162
+ async processProblemReport(messageContext) {
163
+ const { message, agentContext } = messageContext;
164
+ const connection = messageContext.assertReadyConnection();
165
+ this.logger.debug(`Processing problem report with id ${message.id}`);
166
+ if (!connection.metadata.get(require_DidCommConnectionMetadataTypes.DidCommConnectionMetadataKeys.DidRotate)) throw new __credo_ts_core.CredoError(`No did rotation data found for connection with id '${connection.id}'`);
167
+ connection.metadata.delete(require_DidCommConnectionMetadataTypes.DidCommConnectionMetadataKeys.DidRotate);
168
+ await agentContext.dependencyManager.resolve(require_DidCommConnectionService.DidCommConnectionService).update(agentContext, connection);
169
+ }
170
+ async clearDidRotationData(agentContext, connection) {
171
+ if (!connection.metadata.get(require_DidCommConnectionMetadataTypes.DidCommConnectionMetadataKeys.DidRotate)) throw new __credo_ts_core.CredoError(`No did rotation data found for connection with id '${connection.id}'`);
172
+ connection.metadata.delete(require_DidCommConnectionMetadataTypes.DidCommConnectionMetadataKeys.DidRotate);
173
+ await agentContext.dependencyManager.resolve(require_DidCommConnectionService.DidCommConnectionService).update(agentContext, connection);
174
+ }
175
+ emitDidRotatedEvent(agentContext, connectionRecord, { previousOurDid, previousTheirDid }) {
176
+ this.eventEmitter.emit(agentContext, {
177
+ type: require_DidCommConnectionEvents.DidCommConnectionEventTypes.DidCommConnectionDidRotated,
178
+ payload: {
179
+ connectionRecord: connectionRecord.clone(),
180
+ ourDid: previousOurDid && connectionRecord.did ? {
181
+ from: previousOurDid,
182
+ to: connectionRecord.did
183
+ } : void 0,
184
+ theirDid: previousTheirDid && connectionRecord.theirDid ? {
185
+ from: previousTheirDid,
186
+ to: connectionRecord.theirDid
187
+ } : void 0
188
+ }
189
+ });
190
+ }
191
+ };
192
+ DidCommDidRotateService = require_decorate.__decorate([
193
+ (0, __credo_ts_core.injectable)(),
194
+ require_decorateParam.__decorateParam(1, (0, __credo_ts_core.inject)(__credo_ts_core.InjectionSymbols.Logger)),
195
+ require_decorateMetadata.__decorateMetadata("design:paramtypes", [
196
+ typeof (_ref = typeof __credo_ts_core.DidResolverService !== "undefined" && __credo_ts_core.DidResolverService) === "function" ? _ref : Object,
197
+ Object,
198
+ typeof (_ref2 = typeof __credo_ts_core.EventEmitter !== "undefined" && __credo_ts_core.EventEmitter) === "function" ? _ref2 : Object
199
+ ])
200
+ ], DidCommDidRotateService);
201
+
202
+ //#endregion
203
+ Object.defineProperty(exports, 'DidCommDidRotateService', {
204
+ enumerable: true,
205
+ get: function () {
206
+ return DidCommDidRotateService;
207
+ }
208
+ });
@@ -0,0 +1,202 @@
1
+ import { __decorateMetadata } from "../../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateMetadata.mjs";
2
+ import { __decorate } from "../../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorate.mjs";
3
+ import { AckStatus } from "../../../messages/common/DidCommAckMessage.mjs";
4
+ import "../../../messages/index.mjs";
5
+ import { DidCommOutboundMessageContext } from "../../../models/DidCommOutboundMessageContext.mjs";
6
+ import "../../../models/index.mjs";
7
+ import { DidCommDidRotateProblemReportMessage } from "../messages/DidCommDidRotateProblemReportMessage.mjs";
8
+ import { DidCommDidRotateMessage } from "../messages/DidCommDidRotateMessage.mjs";
9
+ import { DidCommDidRotateAckMessage } from "../messages/DidCommDidRotateAckMessage.mjs";
10
+ import { DidCommHangupMessage } from "../messages/DidCommHangupMessage.mjs";
11
+ import "../messages/index.mjs";
12
+ import { __decorateParam } from "../../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateParam.mjs";
13
+ import { createPeerDidFromServices, routingToServices } from "./helpers.mjs";
14
+ import { DidCommConnectionEventTypes } from "../DidCommConnectionEvents.mjs";
15
+ import { DidCommConnectionService } from "./DidCommConnectionService.mjs";
16
+ import { DidCommConnectionMetadataKeys } from "../repository/DidCommConnectionMetadataTypes.mjs";
17
+ import { getMediationRecordForDidDocument } from "../../routing/services/helpers.mjs";
18
+ import { DidCommConnectionsModuleConfig } from "../DidCommConnectionsModuleConfig.mjs";
19
+ import { CredoError, DidRepository, DidResolverService, DidsApi, EventEmitter, InjectionSymbols, PeerDidNumAlgo, getAlternativeDidsForPeerDid, getNumAlgoFromPeerDid, inject, injectable, isValidPeerDid } from "@credo-ts/core";
20
+
21
+ //#region ../didcomm/src/modules/connections/services/DidCommDidRotateService.ts
22
+ var _ref, _ref2;
23
+ let DidCommDidRotateService = class DidCommDidRotateService$1 {
24
+ constructor(didResolverService, logger, eventEmitter) {
25
+ this.didResolverService = didResolverService;
26
+ this.logger = logger;
27
+ this.eventEmitter = eventEmitter;
28
+ }
29
+ async createRotate(agentContext, options) {
30
+ const { connection, toDid, routing } = options;
31
+ const config = agentContext.resolve(DidCommConnectionsModuleConfig);
32
+ const dids = agentContext.resolve(DidsApi);
33
+ if (connection.metadata.get(DidCommConnectionMetadataKeys.DidRotate)) throw new CredoError(`There is already an existing opened did rotation flow for connection id ${connection.id}`);
34
+ let resolvedDid;
35
+ let mediatorId;
36
+ if (toDid) {
37
+ resolvedDid = await dids.resolveCreatedDidDocumentWithKeys(toDid);
38
+ mediatorId = (await getMediationRecordForDidDocument(agentContext, resolvedDid.didDocument))?.id;
39
+ } else {
40
+ if (!routing) throw new CredoError("Routing configuration must be defined when rotating to a new peer did");
41
+ resolvedDid = await createPeerDidFromServices(agentContext, routingToServices(routing), config.peerNumAlgoForDidRotation);
42
+ mediatorId = routing.mediatorId;
43
+ }
44
+ const message = new DidCommDidRotateMessage({ toDid: resolvedDid.didDocument.id });
45
+ connection.metadata.set(DidCommConnectionMetadataKeys.DidRotate, {
46
+ threadId: message.threadId,
47
+ did: resolvedDid.didDocument.id,
48
+ mediatorId
49
+ });
50
+ await agentContext.resolve(DidCommConnectionService).update(agentContext, connection);
51
+ return message;
52
+ }
53
+ async createHangup(agentContext, options) {
54
+ const { connection } = options;
55
+ const message = new DidCommHangupMessage({});
56
+ if (connection.did) connection.previousDids = [...connection.previousDids, connection.did];
57
+ connection.did = void 0;
58
+ await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection);
59
+ return message;
60
+ }
61
+ /**
62
+ * Process a Hangup message and mark connection's theirDid as undefined so it is effectively terminated.
63
+ * Connection Record itself is not deleted (TODO: config parameter to automatically do so)
64
+ *
65
+ * Its previous did will be stored in record in order to be able to recognize any message received
66
+ * afterwards.
67
+ *
68
+ * @param messageContext
69
+ */
70
+ async processHangup(messageContext) {
71
+ const connection = messageContext.assertReadyConnection();
72
+ const { agentContext } = messageContext;
73
+ if (connection.theirDid) connection.previousTheirDids = [...connection.previousTheirDids, connection.theirDid];
74
+ const previousTheirDid = connection.theirDid;
75
+ connection.theirDid = void 0;
76
+ await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection);
77
+ this.emitDidRotatedEvent(agentContext, connection, { previousTheirDid });
78
+ }
79
+ /**
80
+ * Process an incoming DID Rotate message and update connection if success. Any acknowledge
81
+ * or problem report will be sent to the prior DID, so the created context will take former
82
+ * connection record data
83
+ *
84
+ * @param paramInboundDidCommMessageContext
85
+ * @param connection
86
+ * @returns
87
+ */
88
+ async processRotate(messageContext) {
89
+ const connection = messageContext.assertReadyConnection();
90
+ const { message, agentContext } = messageContext;
91
+ const newDid = message.toDid;
92
+ if (isValidPeerDid(newDid) && getNumAlgoFromPeerDid(newDid) === PeerDidNumAlgo.GenesisDoc) {
93
+ this.logger.error(`Unable to resolve DID Document for '${newDid}`);
94
+ return new DidCommOutboundMessageContext(new DidCommDidRotateProblemReportMessage({ description: {
95
+ en: "DID Method Unsupported",
96
+ code: "e.did.method_unsupported"
97
+ } }), {
98
+ agentContext,
99
+ connection
100
+ });
101
+ }
102
+ const didDocument = (await this.didResolverService.resolve(agentContext, newDid)).didDocument;
103
+ if (!didDocument) {
104
+ this.logger.error(`Unable to resolve DID Document for '${newDid}`);
105
+ return new DidCommOutboundMessageContext(new DidCommDidRotateProblemReportMessage({ description: {
106
+ en: "DID Unresolvable",
107
+ code: "e.did.unresolvable"
108
+ } }), {
109
+ agentContext,
110
+ connection
111
+ });
112
+ }
113
+ if (!didDocument.didCommServices) return new DidCommOutboundMessageContext(new DidCommDidRotateProblemReportMessage({ description: {
114
+ en: "DID Document Unsupported",
115
+ code: "e.did.doc_unsupported"
116
+ } }), {
117
+ agentContext,
118
+ connection
119
+ });
120
+ const outboundMessageContext = new DidCommOutboundMessageContext(new DidCommDidRotateAckMessage({
121
+ threadId: message.threadId,
122
+ status: AckStatus.OK
123
+ }), {
124
+ agentContext,
125
+ connection: connection.clone()
126
+ });
127
+ await agentContext.dependencyManager.resolve(DidRepository).storeReceivedDid(agentContext, {
128
+ did: didDocument.id,
129
+ didDocument,
130
+ tags: { alternativeDids: isValidPeerDid(didDocument.id) ? getAlternativeDidsForPeerDid(didDocument.id) : void 0 }
131
+ });
132
+ if (connection.theirDid) connection.previousTheirDids = [...connection.previousTheirDids, connection.theirDid];
133
+ const previousTheirDid = connection.theirDid;
134
+ connection.theirDid = newDid;
135
+ await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection);
136
+ this.emitDidRotatedEvent(agentContext, connection, { previousTheirDid });
137
+ return outboundMessageContext;
138
+ }
139
+ async processRotateAck(inboundMessage) {
140
+ const { agentContext, message } = inboundMessage;
141
+ const connection = inboundMessage.assertReadyConnection();
142
+ const didRotateMetadata = connection.metadata.get(DidCommConnectionMetadataKeys.DidRotate);
143
+ if (!didRotateMetadata) throw new CredoError(`No did rotation data found for connection with id '${connection.id}'`);
144
+ if (didRotateMetadata.threadId !== message.threadId) throw new CredoError(`Existing did rotation flow thread id '${didRotateMetadata.threadId} does not match incoming message'`);
145
+ if (connection.did) connection.previousDids = [...connection.previousDids, connection.did];
146
+ const previousOurDid = connection.did;
147
+ connection.did = didRotateMetadata.did;
148
+ connection.mediatorId = didRotateMetadata.mediatorId;
149
+ connection.metadata.delete(DidCommConnectionMetadataKeys.DidRotate);
150
+ await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection);
151
+ this.emitDidRotatedEvent(agentContext, connection, { previousOurDid });
152
+ }
153
+ /**
154
+ * Process a problem report related to did rotate protocol, by simply deleting any temporary metadata.
155
+ *
156
+ * No specific event is thrown other than generic message processing
157
+ *DidCommInboundMessageContext
158
+ * @param messageContext
159
+ */
160
+ async processProblemReport(messageContext) {
161
+ const { message, agentContext } = messageContext;
162
+ const connection = messageContext.assertReadyConnection();
163
+ this.logger.debug(`Processing problem report with id ${message.id}`);
164
+ if (!connection.metadata.get(DidCommConnectionMetadataKeys.DidRotate)) throw new CredoError(`No did rotation data found for connection with id '${connection.id}'`);
165
+ connection.metadata.delete(DidCommConnectionMetadataKeys.DidRotate);
166
+ await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection);
167
+ }
168
+ async clearDidRotationData(agentContext, connection) {
169
+ if (!connection.metadata.get(DidCommConnectionMetadataKeys.DidRotate)) throw new CredoError(`No did rotation data found for connection with id '${connection.id}'`);
170
+ connection.metadata.delete(DidCommConnectionMetadataKeys.DidRotate);
171
+ await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection);
172
+ }
173
+ emitDidRotatedEvent(agentContext, connectionRecord, { previousOurDid, previousTheirDid }) {
174
+ this.eventEmitter.emit(agentContext, {
175
+ type: DidCommConnectionEventTypes.DidCommConnectionDidRotated,
176
+ payload: {
177
+ connectionRecord: connectionRecord.clone(),
178
+ ourDid: previousOurDid && connectionRecord.did ? {
179
+ from: previousOurDid,
180
+ to: connectionRecord.did
181
+ } : void 0,
182
+ theirDid: previousTheirDid && connectionRecord.theirDid ? {
183
+ from: previousTheirDid,
184
+ to: connectionRecord.theirDid
185
+ } : void 0
186
+ }
187
+ });
188
+ }
189
+ };
190
+ DidCommDidRotateService = __decorate([
191
+ injectable(),
192
+ __decorateParam(1, inject(InjectionSymbols.Logger)),
193
+ __decorateMetadata("design:paramtypes", [
194
+ typeof (_ref = typeof DidResolverService !== "undefined" && DidResolverService) === "function" ? _ref : Object,
195
+ Object,
196
+ typeof (_ref2 = typeof EventEmitter !== "undefined" && EventEmitter) === "function" ? _ref2 : Object
197
+ ])
198
+ ], DidCommDidRotateService);
199
+
200
+ //#endregion
201
+ export { DidCommDidRotateService };
202
+ //# sourceMappingURL=DidCommDidRotateService.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"DidCommDidRotateService.mjs","names":["DidCommDidRotateService","logger: Logger","resolvedDid: { keys: DidDocumentKey[] | undefined; didDocument: DidDocument }","mediatorId: string | undefined"],"sources":["../../../../../../../../didcomm/src/modules/connections/services/DidCommDidRotateService.ts"],"sourcesContent":["import type { AgentContext, DidDocument, DidDocumentKey } from '@credo-ts/core'\nimport type { DidCommInboundMessageContext, DidCommRouting } from '../../../models'\nimport type { DidCommConnectionDidRotatedEvent } from '../DidCommConnectionEvents'\nimport type { DidCommConnectionRecord } from '../repository'\n\nimport {\n CredoError,\n DidRepository,\n DidResolverService,\n DidsApi,\n EventEmitter,\n InjectionSymbols,\n type Logger,\n PeerDidNumAlgo,\n getAlternativeDidsForPeerDid,\n getNumAlgoFromPeerDid,\n inject,\n injectable,\n isValidPeerDid,\n} from '@credo-ts/core'\n\nimport { AckStatus } from '../../../messages'\nimport { DidCommOutboundMessageContext } from '../../../models'\nimport { getMediationRecordForDidDocument } from '../../routing/services/helpers'\nimport { DidCommConnectionEventTypes } from '../DidCommConnectionEvents'\nimport { DidCommConnectionsModuleConfig } from '../DidCommConnectionsModuleConfig'\nimport {\n DidCommDidRotateAckMessage,\n DidCommDidRotateMessage,\n DidCommDidRotateProblemReportMessage,\n DidCommHangupMessage,\n} from '../messages'\nimport { DidCommConnectionMetadataKeys } from '../repository/DidCommConnectionMetadataTypes'\n\nimport { DidCommConnectionService } from './DidCommConnectionService'\nimport { createPeerDidFromServices, routingToServices } from './helpers'\n\n@injectable()\nexport class DidCommDidRotateService {\n private didResolverService: DidResolverService\n private logger: Logger\n private eventEmitter: EventEmitter\n\n public constructor(\n didResolverService: DidResolverService,\n @inject(InjectionSymbols.Logger) logger: Logger,\n eventEmitter: EventEmitter\n ) {\n this.didResolverService = didResolverService\n this.logger = logger\n this.eventEmitter = eventEmitter\n }\n\n public async createRotate(\n agentContext: AgentContext,\n options: { connection: DidCommConnectionRecord; toDid?: string; routing?: DidCommRouting }\n ) {\n const { connection, toDid, routing } = options\n\n const config = agentContext.resolve(DidCommConnectionsModuleConfig)\n const dids = agentContext.resolve(DidsApi)\n\n // Do not allow to receive concurrent did rotation flows\n const didRotateMetadata = connection.metadata.get(DidCommConnectionMetadataKeys.DidRotate)\n\n if (didRotateMetadata) {\n throw new CredoError(`There is already an existing opened did rotation flow for connection id ${connection.id}`)\n }\n\n let resolvedDid: { keys: DidDocumentKey[] | undefined; didDocument: DidDocument }\n let mediatorId: string | undefined\n // If did is specified, make sure we have all key material for it\n if (toDid) {\n resolvedDid = await dids.resolveCreatedDidDocumentWithKeys(toDid)\n mediatorId = (await getMediationRecordForDidDocument(agentContext, resolvedDid.didDocument))?.id\n\n // Otherwise, create a did:peer based on the provided routing\n } else {\n if (!routing) {\n throw new CredoError('Routing configuration must be defined when rotating to a new peer did')\n }\n\n resolvedDid = await createPeerDidFromServices(\n agentContext,\n routingToServices(routing),\n config.peerNumAlgoForDidRotation\n )\n mediatorId = routing.mediatorId\n }\n\n const message = new DidCommDidRotateMessage({ toDid: resolvedDid.didDocument.id })\n\n // We set new info into connection metadata for further 'sealing' it once we receive an acknowledge\n // All messages sent in-between will be using previous connection information\n connection.metadata.set(DidCommConnectionMetadataKeys.DidRotate, {\n threadId: message.threadId,\n did: resolvedDid.didDocument.id,\n mediatorId,\n })\n\n await agentContext.resolve(DidCommConnectionService).update(agentContext, connection)\n\n return message\n }\n\n public async createHangup(agentContext: AgentContext, options: { connection: DidCommConnectionRecord }) {\n const { connection } = options\n\n const message = new DidCommHangupMessage({})\n\n // Remove did to indicate termination status for this connection\n if (connection.did) {\n connection.previousDids = [...connection.previousDids, connection.did]\n }\n\n connection.did = undefined\n\n await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection)\n\n return message\n }\n\n /**\n * Process a Hangup message and mark connection's theirDid as undefined so it is effectively terminated.\n * Connection Record itself is not deleted (TODO: config parameter to automatically do so)\n *\n * Its previous did will be stored in record in order to be able to recognize any message received\n * afterwards.\n *\n * @param messageContext\n */\n public async processHangup(messageContext: DidCommInboundMessageContext<DidCommHangupMessage>) {\n const connection = messageContext.assertReadyConnection()\n const { agentContext } = messageContext\n\n if (connection.theirDid) {\n connection.previousTheirDids = [...connection.previousTheirDids, connection.theirDid]\n }\n\n const previousTheirDid = connection.theirDid\n connection.theirDid = undefined\n\n await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection)\n this.emitDidRotatedEvent(agentContext, connection, {\n previousTheirDid,\n })\n }\n\n /**\n * Process an incoming DID Rotate message and update connection if success. Any acknowledge\n * or problem report will be sent to the prior DID, so the created context will take former\n * connection record data\n *\n * @param paramInboundDidCommMessageContext\n * @param connection\n * @returns\n */\n public async processRotate(messageContext: DidCommInboundMessageContext<DidCommDidRotateMessage>) {\n const connection = messageContext.assertReadyConnection()\n const { message, agentContext } = messageContext\n\n // Check and store their new did\n const newDid = message.toDid\n\n // DID Rotation not supported for peer:1 dids, as we need explicit did document information\n if (isValidPeerDid(newDid) && getNumAlgoFromPeerDid(newDid) === PeerDidNumAlgo.GenesisDoc) {\n this.logger.error(`Unable to resolve DID Document for '${newDid}`)\n\n const response = new DidCommDidRotateProblemReportMessage({\n description: { en: 'DID Method Unsupported', code: 'e.did.method_unsupported' },\n })\n return new DidCommOutboundMessageContext(response, { agentContext, connection })\n }\n\n const didDocument = (await this.didResolverService.resolve(agentContext, newDid)).didDocument\n\n // Cannot resolve did\n if (!didDocument) {\n this.logger.error(`Unable to resolve DID Document for '${newDid}`)\n\n const response = new DidCommDidRotateProblemReportMessage({\n description: { en: 'DID Unresolvable', code: 'e.did.unresolvable' },\n })\n return new DidCommOutboundMessageContext(response, { agentContext, connection })\n }\n\n // Did is resolved but no compatible DIDComm services found\n if (!didDocument.didCommServices) {\n const response = new DidCommDidRotateProblemReportMessage({\n description: { en: 'DID Document Unsupported', code: 'e.did.doc_unsupported' },\n })\n return new DidCommOutboundMessageContext(response, { agentContext, connection })\n }\n\n // Send acknowledge to previous did and persist new did. Previous did will be stored in connection record in\n // order to still accept messages from it\n const outboundMessageContext = new DidCommOutboundMessageContext(\n new DidCommDidRotateAckMessage({\n threadId: message.threadId,\n status: AckStatus.OK,\n }),\n { agentContext, connection: connection.clone() }\n )\n\n // Store received did and update connection for further message processing\n await agentContext.dependencyManager.resolve(DidRepository).storeReceivedDid(agentContext, {\n did: didDocument.id,\n didDocument,\n tags: {\n // For did:peer, store any alternative dids (like short form did:peer:4),\n // it may have in order to relate any message referencing it\n alternativeDids: isValidPeerDid(didDocument.id) ? getAlternativeDidsForPeerDid(didDocument.id) : undefined,\n },\n })\n\n if (connection.theirDid) {\n connection.previousTheirDids = [...connection.previousTheirDids, connection.theirDid]\n }\n\n const previousTheirDid = connection.theirDid\n connection.theirDid = newDid\n\n await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection)\n this.emitDidRotatedEvent(agentContext, connection, {\n previousTheirDid,\n })\n\n return outboundMessageContext\n }\n\n public async processRotateAck(inboundMessage: DidCommInboundMessageContext<DidCommDidRotateAckMessage>) {\n const { agentContext, message } = inboundMessage\n\n const connection = inboundMessage.assertReadyConnection()\n\n // Update connection info based on metadata set when creating the rotate message\n const didRotateMetadata = connection.metadata.get(DidCommConnectionMetadataKeys.DidRotate)\n\n if (!didRotateMetadata) {\n throw new CredoError(`No did rotation data found for connection with id '${connection.id}'`)\n }\n\n if (didRotateMetadata.threadId !== message.threadId) {\n throw new CredoError(\n `Existing did rotation flow thread id '${didRotateMetadata.threadId} does not match incoming message'`\n )\n }\n\n // Store previous did in order to still accept out-of-order messages that arrived later using it\n if (connection.did) connection.previousDids = [...connection.previousDids, connection.did]\n\n const previousOurDid = connection.did\n connection.did = didRotateMetadata.did\n connection.mediatorId = didRotateMetadata.mediatorId\n connection.metadata.delete(DidCommConnectionMetadataKeys.DidRotate)\n\n await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection)\n this.emitDidRotatedEvent(agentContext, connection, {\n previousOurDid,\n })\n }\n\n /**\n * Process a problem report related to did rotate protocol, by simply deleting any temporary metadata.\n *\n * No specific event is thrown other than generic message processing\n *DidCommInboundMessageContext\n * @param messageContext\n */\n public async processProblemReport(\n messageContext: DidCommInboundMessageContext<DidCommDidRotateProblemReportMessage>\n ): Promise<void> {\n const { message, agentContext } = messageContext\n\n const connection = messageContext.assertReadyConnection()\n\n this.logger.debug(`Processing problem report with id ${message.id}`)\n\n // Delete any existing did rotation metadata in order to 'reset' the connection\n const didRotateMetadata = connection.metadata.get(DidCommConnectionMetadataKeys.DidRotate)\n\n if (!didRotateMetadata) {\n throw new CredoError(`No did rotation data found for connection with id '${connection.id}'`)\n }\n\n connection.metadata.delete(DidCommConnectionMetadataKeys.DidRotate)\n\n await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection)\n }\n\n public async clearDidRotationData(agentContext: AgentContext, connection: DidCommConnectionRecord) {\n const didRotateMetadata = connection.metadata.get(DidCommConnectionMetadataKeys.DidRotate)\n\n if (!didRotateMetadata) {\n throw new CredoError(`No did rotation data found for connection with id '${connection.id}'`)\n }\n\n connection.metadata.delete(DidCommConnectionMetadataKeys.DidRotate)\n\n await agentContext.dependencyManager.resolve(DidCommConnectionService).update(agentContext, connection)\n }\n\n private emitDidRotatedEvent(\n agentContext: AgentContext,\n connectionRecord: DidCommConnectionRecord,\n { previousOurDid, previousTheirDid }: { previousOurDid?: string; previousTheirDid?: string }\n ) {\n this.eventEmitter.emit<DidCommConnectionDidRotatedEvent>(agentContext, {\n type: DidCommConnectionEventTypes.DidCommConnectionDidRotated,\n payload: {\n // Connection record in event should be static\n connectionRecord: connectionRecord.clone(),\n\n ourDid:\n previousOurDid && connectionRecord.did\n ? {\n from: previousOurDid,\n to: connectionRecord.did,\n }\n : undefined,\n\n theirDid:\n previousTheirDid && connectionRecord.theirDid\n ? {\n from: previousTheirDid,\n to: connectionRecord.theirDid,\n }\n : undefined,\n },\n })\n }\n}\n"],"mappings":"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"}
@@ -0,0 +1,51 @@
1
+ const require_rolldown_runtime = require('../../../../../../_virtual/rolldown_runtime.js');
2
+ const require_decorateMetadata = require('../../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorateMetadata.js');
3
+ const require_decorate = require('../../../../../../_virtual/_@oxc-project_runtime@0.94.0/helpers/decorate.js');
4
+ const require_DidCommOutboundMessageContext = require('../../../models/DidCommOutboundMessageContext.js');
5
+ require('../../../models/index.js');
6
+ const require_DidCommTrustPingResponseMessage = require('../messages/DidCommTrustPingResponseMessage.js');
7
+ require('../messages/index.js');
8
+ const require_DidCommTrustPingEvents = require('../DidCommTrustPingEvents.js');
9
+ let __credo_ts_core = require("@credo-ts/core");
10
+ __credo_ts_core = require_rolldown_runtime.__toESM(__credo_ts_core);
11
+
12
+ //#region ../didcomm/src/modules/connections/services/DidCommTrustPingService.ts
13
+ var _ref;
14
+ let DidCommTrustPingService = class DidCommTrustPingService$1 {
15
+ constructor(eventEmitter) {
16
+ this.eventEmitter = eventEmitter;
17
+ }
18
+ processPing({ message, agentContext }, connection) {
19
+ this.eventEmitter.emit(agentContext, {
20
+ type: require_DidCommTrustPingEvents.DidCommTrustPingEventTypes.DidCommTrustPingReceivedEvent,
21
+ payload: {
22
+ connectionRecord: connection,
23
+ message
24
+ }
25
+ });
26
+ if (message.responseRequested) return new require_DidCommOutboundMessageContext.DidCommOutboundMessageContext(new require_DidCommTrustPingResponseMessage.DidCommTrustPingResponseMessage({ threadId: message.threadId }), {
27
+ agentContext,
28
+ connection
29
+ });
30
+ }
31
+ processPingResponse(inboundMessage) {
32
+ const { agentContext, message } = inboundMessage;
33
+ const connection = inboundMessage.assertReadyConnection();
34
+ this.eventEmitter.emit(agentContext, {
35
+ type: require_DidCommTrustPingEvents.DidCommTrustPingEventTypes.DidCommTrustPingResponseReceivedEvent,
36
+ payload: {
37
+ connectionRecord: connection,
38
+ message
39
+ }
40
+ });
41
+ }
42
+ };
43
+ DidCommTrustPingService = require_decorate.__decorate([(0, __credo_ts_core.injectable)(), require_decorateMetadata.__decorateMetadata("design:paramtypes", [typeof (_ref = typeof __credo_ts_core.EventEmitter !== "undefined" && __credo_ts_core.EventEmitter) === "function" ? _ref : Object])], DidCommTrustPingService);
44
+
45
+ //#endregion
46
+ Object.defineProperty(exports, 'DidCommTrustPingService', {
47
+ enumerable: true,
48
+ get: function () {
49
+ return DidCommTrustPingService;
50
+ }
51
+ });