@credo-ts/askar-to-drizzle-storage-migration 0.6.0-alpha-20251010131709 → 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,1974 @@
1
+ import { ConflictingSpecificationError, InvalidArgumentError, InvalidDateTimeError, InvalidUnitError } from "./errors.mjs";
2
+ import { DATETIME_FULL, DATETIME_FULL_WITH_SECONDS, DATETIME_HUGE, DATETIME_HUGE_WITH_SECONDS, DATETIME_MED, DATETIME_MED_WITH_SECONDS, DATETIME_MED_WITH_WEEKDAY, DATETIME_SHORT, DATETIME_SHORT_WITH_SECONDS, DATE_FULL, DATE_HUGE, DATE_MED, DATE_MED_WITH_WEEKDAY, DATE_SHORT, TIME_24_SIMPLE, TIME_24_WITH_LONG_OFFSET, TIME_24_WITH_SECONDS, TIME_24_WITH_SHORT_OFFSET, TIME_SIMPLE, TIME_WITH_LONG_OFFSET, TIME_WITH_SECONDS, TIME_WITH_SHORT_OFFSET } from "./impl/formats.mjs";
3
+ import Locale from "./impl/locale.mjs";
4
+ import FixedOffsetZone from "./zones/fixedOffsetZone.mjs";
5
+ import { normalizeZone } from "./impl/zoneUtil.mjs";
6
+ import Settings from "./settings.mjs";
7
+ import Invalid from "./impl/invalid.mjs";
8
+ import { gregorianToOrdinal, gregorianToWeek, hasInvalidGregorianData, hasInvalidOrdinalData, hasInvalidTimeData, hasInvalidWeekData, ordinalToGregorian, usesLocalWeekValues, weekToGregorian } from "./impl/conversions.mjs";
9
+ import { bestBy, daysInMonth, daysInYear, isDate, isLeapYear, isNumber, isUndefined, maybeArray, normalizeObject, objToLocalTS, padStart, roundTo, weeksInWeekYear } from "./impl/util.mjs";
10
+ import Formatter from "./impl/formatter.mjs";
11
+ import { parseHTTPDate, parseISODate, parseRFC2822Date, parseSQL } from "./impl/regexParser.mjs";
12
+ import Duration from "./duration.mjs";
13
+ import Interval from "./interval.mjs";
14
+ import Info from "./info.mjs";
15
+ import diff_default from "./impl/diff.mjs";
16
+ import { TokenParser, expandMacroTokens, explainFromTokens, formatOptsToTokens, parseFromTokens } from "./impl/tokenParser.mjs";
17
+
18
+ //#region ../../node_modules/.pnpm/luxon@3.5.0/node_modules/luxon/src/datetime.js
19
+ const INVALID = "Invalid DateTime";
20
+ const MAX_DATE = 864e13;
21
+ function unsupportedZone(zone) {
22
+ return new Invalid("unsupported zone", `the zone "${zone.name}" is not supported`);
23
+ }
24
+ /**
25
+ * @param {DateTime} dt
26
+ */
27
+ function possiblyCachedWeekData(dt) {
28
+ if (dt.weekData === null) dt.weekData = gregorianToWeek(dt.c);
29
+ return dt.weekData;
30
+ }
31
+ /**
32
+ * @param {DateTime} dt
33
+ */
34
+ function possiblyCachedLocalWeekData(dt) {
35
+ if (dt.localWeekData === null) dt.localWeekData = gregorianToWeek(dt.c, dt.loc.getMinDaysInFirstWeek(), dt.loc.getStartOfWeek());
36
+ return dt.localWeekData;
37
+ }
38
+ function clone(inst, alts) {
39
+ const current = {
40
+ ts: inst.ts,
41
+ zone: inst.zone,
42
+ c: inst.c,
43
+ o: inst.o,
44
+ loc: inst.loc,
45
+ invalid: inst.invalid
46
+ };
47
+ return new DateTime({
48
+ ...current,
49
+ ...alts,
50
+ old: current
51
+ });
52
+ }
53
+ function fixOffset(localTS, o, tz) {
54
+ let utcGuess = localTS - o * 60 * 1e3;
55
+ const o2 = tz.offset(utcGuess);
56
+ if (o === o2) return [utcGuess, o];
57
+ utcGuess -= (o2 - o) * 60 * 1e3;
58
+ const o3 = tz.offset(utcGuess);
59
+ if (o2 === o3) return [utcGuess, o2];
60
+ return [localTS - Math.min(o2, o3) * 60 * 1e3, Math.max(o2, o3)];
61
+ }
62
+ function tsToObj(ts, offset) {
63
+ ts += offset * 60 * 1e3;
64
+ const d = new Date(ts);
65
+ return {
66
+ year: d.getUTCFullYear(),
67
+ month: d.getUTCMonth() + 1,
68
+ day: d.getUTCDate(),
69
+ hour: d.getUTCHours(),
70
+ minute: d.getUTCMinutes(),
71
+ second: d.getUTCSeconds(),
72
+ millisecond: d.getUTCMilliseconds()
73
+ };
74
+ }
75
+ function objToTS(obj, offset, zone) {
76
+ return fixOffset(objToLocalTS(obj), offset, zone);
77
+ }
78
+ function adjustTime(inst, dur) {
79
+ const oPre = inst.o, year = inst.c.year + Math.trunc(dur.years), month = inst.c.month + Math.trunc(dur.months) + Math.trunc(dur.quarters) * 3, c = {
80
+ ...inst.c,
81
+ year,
82
+ month,
83
+ day: Math.min(inst.c.day, daysInMonth(year, month)) + Math.trunc(dur.days) + Math.trunc(dur.weeks) * 7
84
+ }, millisToAdd = Duration.fromObject({
85
+ years: dur.years - Math.trunc(dur.years),
86
+ quarters: dur.quarters - Math.trunc(dur.quarters),
87
+ months: dur.months - Math.trunc(dur.months),
88
+ weeks: dur.weeks - Math.trunc(dur.weeks),
89
+ days: dur.days - Math.trunc(dur.days),
90
+ hours: dur.hours,
91
+ minutes: dur.minutes,
92
+ seconds: dur.seconds,
93
+ milliseconds: dur.milliseconds
94
+ }).as("milliseconds");
95
+ let [ts, o] = fixOffset(objToLocalTS(c), oPre, inst.zone);
96
+ if (millisToAdd !== 0) {
97
+ ts += millisToAdd;
98
+ o = inst.zone.offset(ts);
99
+ }
100
+ return {
101
+ ts,
102
+ o
103
+ };
104
+ }
105
+ function parseDataToDateTime(parsed, parsedZone, opts, format, text, specificOffset) {
106
+ const { setZone, zone } = opts;
107
+ if (parsed && Object.keys(parsed).length !== 0 || parsedZone) {
108
+ const interpretationZone = parsedZone || zone, inst = DateTime.fromObject(parsed, {
109
+ ...opts,
110
+ zone: interpretationZone,
111
+ specificOffset
112
+ });
113
+ return setZone ? inst : inst.setZone(zone);
114
+ } else return DateTime.invalid(new Invalid("unparsable", `the input "${text}" can't be parsed as ${format}`));
115
+ }
116
+ function toTechFormat(dt, format, allowZ = true) {
117
+ return dt.isValid ? Formatter.create(Locale.create("en-US"), {
118
+ allowZ,
119
+ forceSimple: true
120
+ }).formatDateTimeFromString(dt, format) : null;
121
+ }
122
+ function toISODate(o, extended) {
123
+ const longFormat = o.c.year > 9999 || o.c.year < 0;
124
+ let c = "";
125
+ if (longFormat && o.c.year >= 0) c += "+";
126
+ c += padStart(o.c.year, longFormat ? 6 : 4);
127
+ if (extended) {
128
+ c += "-";
129
+ c += padStart(o.c.month);
130
+ c += "-";
131
+ c += padStart(o.c.day);
132
+ } else {
133
+ c += padStart(o.c.month);
134
+ c += padStart(o.c.day);
135
+ }
136
+ return c;
137
+ }
138
+ function toISOTime(o, extended, suppressSeconds, suppressMilliseconds, includeOffset, extendedZone) {
139
+ let c = padStart(o.c.hour);
140
+ if (extended) {
141
+ c += ":";
142
+ c += padStart(o.c.minute);
143
+ if (o.c.millisecond !== 0 || o.c.second !== 0 || !suppressSeconds) c += ":";
144
+ } else c += padStart(o.c.minute);
145
+ if (o.c.millisecond !== 0 || o.c.second !== 0 || !suppressSeconds) {
146
+ c += padStart(o.c.second);
147
+ if (o.c.millisecond !== 0 || !suppressMilliseconds) {
148
+ c += ".";
149
+ c += padStart(o.c.millisecond, 3);
150
+ }
151
+ }
152
+ if (includeOffset) if (o.isOffsetFixed && o.offset === 0 && !extendedZone) c += "Z";
153
+ else if (o.o < 0) {
154
+ c += "-";
155
+ c += padStart(Math.trunc(-o.o / 60));
156
+ c += ":";
157
+ c += padStart(Math.trunc(-o.o % 60));
158
+ } else {
159
+ c += "+";
160
+ c += padStart(Math.trunc(o.o / 60));
161
+ c += ":";
162
+ c += padStart(Math.trunc(o.o % 60));
163
+ }
164
+ if (extendedZone) c += "[" + o.zone.ianaName + "]";
165
+ return c;
166
+ }
167
+ const defaultUnitValues = {
168
+ month: 1,
169
+ day: 1,
170
+ hour: 0,
171
+ minute: 0,
172
+ second: 0,
173
+ millisecond: 0
174
+ }, defaultWeekUnitValues = {
175
+ weekNumber: 1,
176
+ weekday: 1,
177
+ hour: 0,
178
+ minute: 0,
179
+ second: 0,
180
+ millisecond: 0
181
+ }, defaultOrdinalUnitValues = {
182
+ ordinal: 1,
183
+ hour: 0,
184
+ minute: 0,
185
+ second: 0,
186
+ millisecond: 0
187
+ };
188
+ const orderedUnits = [
189
+ "year",
190
+ "month",
191
+ "day",
192
+ "hour",
193
+ "minute",
194
+ "second",
195
+ "millisecond"
196
+ ], orderedWeekUnits = [
197
+ "weekYear",
198
+ "weekNumber",
199
+ "weekday",
200
+ "hour",
201
+ "minute",
202
+ "second",
203
+ "millisecond"
204
+ ], orderedOrdinalUnits = [
205
+ "year",
206
+ "ordinal",
207
+ "hour",
208
+ "minute",
209
+ "second",
210
+ "millisecond"
211
+ ];
212
+ function normalizeUnit(unit) {
213
+ const normalized = {
214
+ year: "year",
215
+ years: "year",
216
+ month: "month",
217
+ months: "month",
218
+ day: "day",
219
+ days: "day",
220
+ hour: "hour",
221
+ hours: "hour",
222
+ minute: "minute",
223
+ minutes: "minute",
224
+ quarter: "quarter",
225
+ quarters: "quarter",
226
+ second: "second",
227
+ seconds: "second",
228
+ millisecond: "millisecond",
229
+ milliseconds: "millisecond",
230
+ weekday: "weekday",
231
+ weekdays: "weekday",
232
+ weeknumber: "weekNumber",
233
+ weeksnumber: "weekNumber",
234
+ weeknumbers: "weekNumber",
235
+ weekyear: "weekYear",
236
+ weekyears: "weekYear",
237
+ ordinal: "ordinal"
238
+ }[unit.toLowerCase()];
239
+ if (!normalized) throw new InvalidUnitError(unit);
240
+ return normalized;
241
+ }
242
+ function normalizeUnitWithLocalWeeks(unit) {
243
+ switch (unit.toLowerCase()) {
244
+ case "localweekday":
245
+ case "localweekdays": return "localWeekday";
246
+ case "localweeknumber":
247
+ case "localweeknumbers": return "localWeekNumber";
248
+ case "localweekyear":
249
+ case "localweekyears": return "localWeekYear";
250
+ default: return normalizeUnit(unit);
251
+ }
252
+ }
253
+ function guessOffsetForZone(zone) {
254
+ if (!zoneOffsetGuessCache[zone]) {
255
+ if (zoneOffsetTs === void 0) zoneOffsetTs = Settings.now();
256
+ zoneOffsetGuessCache[zone] = zone.offset(zoneOffsetTs);
257
+ }
258
+ return zoneOffsetGuessCache[zone];
259
+ }
260
+ function quickDT(obj, opts) {
261
+ const zone = normalizeZone(opts.zone, Settings.defaultZone);
262
+ if (!zone.isValid) return DateTime.invalid(unsupportedZone(zone));
263
+ const loc = Locale.fromObject(opts);
264
+ let ts, o;
265
+ if (!isUndefined(obj.year)) {
266
+ for (const u of orderedUnits) if (isUndefined(obj[u])) obj[u] = defaultUnitValues[u];
267
+ const invalid = hasInvalidGregorianData(obj) || hasInvalidTimeData(obj);
268
+ if (invalid) return DateTime.invalid(invalid);
269
+ const offsetProvis = guessOffsetForZone(zone);
270
+ [ts, o] = objToTS(obj, offsetProvis, zone);
271
+ } else ts = Settings.now();
272
+ return new DateTime({
273
+ ts,
274
+ zone,
275
+ loc,
276
+ o
277
+ });
278
+ }
279
+ function diffRelative(start, end, opts) {
280
+ const round = isUndefined(opts.round) ? true : opts.round, format = (c, unit) => {
281
+ c = roundTo(c, round || opts.calendary ? 0 : 2, true);
282
+ return end.loc.clone(opts).relFormatter(opts).format(c, unit);
283
+ }, differ = (unit) => {
284
+ if (opts.calendary) if (!end.hasSame(start, unit)) return end.startOf(unit).diff(start.startOf(unit), unit).get(unit);
285
+ else return 0;
286
+ else return end.diff(start, unit).get(unit);
287
+ };
288
+ if (opts.unit) return format(differ(opts.unit), opts.unit);
289
+ for (const unit of opts.units) {
290
+ const count = differ(unit);
291
+ if (Math.abs(count) >= 1) return format(count, unit);
292
+ }
293
+ return format(start > end ? -0 : 0, opts.units[opts.units.length - 1]);
294
+ }
295
+ function lastOpts(argList) {
296
+ let opts = {}, args;
297
+ if (argList.length > 0 && typeof argList[argList.length - 1] === "object") {
298
+ opts = argList[argList.length - 1];
299
+ args = Array.from(argList).slice(0, argList.length - 1);
300
+ } else args = Array.from(argList);
301
+ return [opts, args];
302
+ }
303
+ /**
304
+ * Timestamp to use for cached zone offset guesses (exposed for test)
305
+ */
306
+ let zoneOffsetTs;
307
+ /**
308
+ * Cache for zone offset guesses (exposed for test).
309
+ *
310
+ * This optimizes quickDT via guessOffsetForZone to avoid repeated calls of
311
+ * zone.offset().
312
+ */
313
+ let zoneOffsetGuessCache = {};
314
+ /**
315
+ * A DateTime is an immutable data structure representing a specific date and time and accompanying methods. It contains class and instance methods for creating, parsing, interrogating, transforming, and formatting them.
316
+ *
317
+ * A DateTime comprises of:
318
+ * * A timestamp. Each DateTime instance refers to a specific millisecond of the Unix epoch.
319
+ * * A time zone. Each instance is considered in the context of a specific zone (by default the local system's zone).
320
+ * * Configuration properties that effect how output strings are formatted, such as `locale`, `numberingSystem`, and `outputCalendar`.
321
+ *
322
+ * Here is a brief overview of the most commonly used functionality it provides:
323
+ *
324
+ * * **Creation**: To create a DateTime from its components, use one of its factory class methods: {@link DateTime.local}, {@link DateTime.utc}, and (most flexibly) {@link DateTime.fromObject}. To create one from a standard string format, use {@link DateTime.fromISO}, {@link DateTime.fromHTTP}, and {@link DateTime.fromRFC2822}. To create one from a custom string format, use {@link DateTime.fromFormat}. To create one from a native JS date, use {@link DateTime.fromJSDate}.
325
+ * * **Gregorian calendar and time**: To examine the Gregorian properties of a DateTime individually (i.e as opposed to collectively through {@link DateTime#toObject}), use the {@link DateTime#year}, {@link DateTime#month},
326
+ * {@link DateTime#day}, {@link DateTime#hour}, {@link DateTime#minute}, {@link DateTime#second}, {@link DateTime#millisecond} accessors.
327
+ * * **Week calendar**: For ISO week calendar attributes, see the {@link DateTime#weekYear}, {@link DateTime#weekNumber}, and {@link DateTime#weekday} accessors.
328
+ * * **Configuration** See the {@link DateTime#locale} and {@link DateTime#numberingSystem} accessors.
329
+ * * **Transformation**: To transform the DateTime into other DateTimes, use {@link DateTime#set}, {@link DateTime#reconfigure}, {@link DateTime#setZone}, {@link DateTime#setLocale}, {@link DateTime.plus}, {@link DateTime#minus}, {@link DateTime#endOf}, {@link DateTime#startOf}, {@link DateTime#toUTC}, and {@link DateTime#toLocal}.
330
+ * * **Output**: To convert the DateTime to other representations, use the {@link DateTime#toRelative}, {@link DateTime#toRelativeCalendar}, {@link DateTime#toJSON}, {@link DateTime#toISO}, {@link DateTime#toHTTP}, {@link DateTime#toObject}, {@link DateTime#toRFC2822}, {@link DateTime#toString}, {@link DateTime#toLocaleString}, {@link DateTime#toFormat}, {@link DateTime#toMillis} and {@link DateTime#toJSDate}.
331
+ *
332
+ * There's plenty others documented below. In addition, for more information on subtler topics like internationalization, time zones, alternative calendars, validity, and so on, see the external documentation.
333
+ */
334
+ var DateTime = class DateTime {
335
+ /**
336
+ * @access private
337
+ */
338
+ constructor(config) {
339
+ const zone = config.zone || Settings.defaultZone;
340
+ let invalid = config.invalid || (Number.isNaN(config.ts) ? new Invalid("invalid input") : null) || (!zone.isValid ? unsupportedZone(zone) : null);
341
+ /**
342
+ * @access private
343
+ */
344
+ this.ts = isUndefined(config.ts) ? Settings.now() : config.ts;
345
+ let c = null, o = null;
346
+ if (!invalid) if (config.old && config.old.ts === this.ts && config.old.zone.equals(zone)) [c, o] = [config.old.c, config.old.o];
347
+ else {
348
+ const ot = isNumber(config.o) && !config.old ? config.o : zone.offset(this.ts);
349
+ c = tsToObj(this.ts, ot);
350
+ invalid = Number.isNaN(c.year) ? new Invalid("invalid input") : null;
351
+ c = invalid ? null : c;
352
+ o = invalid ? null : ot;
353
+ }
354
+ /**
355
+ * @access private
356
+ */
357
+ this._zone = zone;
358
+ /**
359
+ * @access private
360
+ */
361
+ this.loc = config.loc || Locale.create();
362
+ /**
363
+ * @access private
364
+ */
365
+ this.invalid = invalid;
366
+ /**
367
+ * @access private
368
+ */
369
+ this.weekData = null;
370
+ /**
371
+ * @access private
372
+ */
373
+ this.localWeekData = null;
374
+ /**
375
+ * @access private
376
+ */
377
+ this.c = c;
378
+ /**
379
+ * @access private
380
+ */
381
+ this.o = o;
382
+ /**
383
+ * @access private
384
+ */
385
+ this.isLuxonDateTime = true;
386
+ }
387
+ /**
388
+ * Create a DateTime for the current instant, in the system's time zone.
389
+ *
390
+ * Use Settings to override these default values if needed.
391
+ * @example DateTime.now().toISO() //~> now in the ISO format
392
+ * @return {DateTime}
393
+ */
394
+ static now() {
395
+ return new DateTime({});
396
+ }
397
+ /**
398
+ * Create a local DateTime
399
+ * @param {number} [year] - The calendar year. If omitted (as in, call `local()` with no arguments), the current time will be used
400
+ * @param {number} [month=1] - The month, 1-indexed
401
+ * @param {number} [day=1] - The day of the month, 1-indexed
402
+ * @param {number} [hour=0] - The hour of the day, in 24-hour time
403
+ * @param {number} [minute=0] - The minute of the hour, meaning a number between 0 and 59
404
+ * @param {number} [second=0] - The second of the minute, meaning a number between 0 and 59
405
+ * @param {number} [millisecond=0] - The millisecond of the second, meaning a number between 0 and 999
406
+ * @example DateTime.local() //~> now
407
+ * @example DateTime.local({ zone: "America/New_York" }) //~> now, in US east coast time
408
+ * @example DateTime.local(2017) //~> 2017-01-01T00:00:00
409
+ * @example DateTime.local(2017, 3) //~> 2017-03-01T00:00:00
410
+ * @example DateTime.local(2017, 3, 12, { locale: "fr" }) //~> 2017-03-12T00:00:00, with a French locale
411
+ * @example DateTime.local(2017, 3, 12, 5) //~> 2017-03-12T05:00:00
412
+ * @example DateTime.local(2017, 3, 12, 5, { zone: "utc" }) //~> 2017-03-12T05:00:00, in UTC
413
+ * @example DateTime.local(2017, 3, 12, 5, 45) //~> 2017-03-12T05:45:00
414
+ * @example DateTime.local(2017, 3, 12, 5, 45, 10) //~> 2017-03-12T05:45:10
415
+ * @example DateTime.local(2017, 3, 12, 5, 45, 10, 765) //~> 2017-03-12T05:45:10.765
416
+ * @return {DateTime}
417
+ */
418
+ static local() {
419
+ const [opts, args] = lastOpts(arguments), [year, month, day, hour, minute, second, millisecond] = args;
420
+ return quickDT({
421
+ year,
422
+ month,
423
+ day,
424
+ hour,
425
+ minute,
426
+ second,
427
+ millisecond
428
+ }, opts);
429
+ }
430
+ /**
431
+ * Create a DateTime in UTC
432
+ * @param {number} [year] - The calendar year. If omitted (as in, call `utc()` with no arguments), the current time will be used
433
+ * @param {number} [month=1] - The month, 1-indexed
434
+ * @param {number} [day=1] - The day of the month
435
+ * @param {number} [hour=0] - The hour of the day, in 24-hour time
436
+ * @param {number} [minute=0] - The minute of the hour, meaning a number between 0 and 59
437
+ * @param {number} [second=0] - The second of the minute, meaning a number between 0 and 59
438
+ * @param {number} [millisecond=0] - The millisecond of the second, meaning a number between 0 and 999
439
+ * @param {Object} options - configuration options for the DateTime
440
+ * @param {string} [options.locale] - a locale to set on the resulting DateTime instance
441
+ * @param {string} [options.outputCalendar] - the output calendar to set on the resulting DateTime instance
442
+ * @param {string} [options.numberingSystem] - the numbering system to set on the resulting DateTime instance
443
+ * @param {string} [options.weekSettings] - the week settings to set on the resulting DateTime instance
444
+ * @example DateTime.utc() //~> now
445
+ * @example DateTime.utc(2017) //~> 2017-01-01T00:00:00Z
446
+ * @example DateTime.utc(2017, 3) //~> 2017-03-01T00:00:00Z
447
+ * @example DateTime.utc(2017, 3, 12) //~> 2017-03-12T00:00:00Z
448
+ * @example DateTime.utc(2017, 3, 12, 5) //~> 2017-03-12T05:00:00Z
449
+ * @example DateTime.utc(2017, 3, 12, 5, 45) //~> 2017-03-12T05:45:00Z
450
+ * @example DateTime.utc(2017, 3, 12, 5, 45, { locale: "fr" }) //~> 2017-03-12T05:45:00Z with a French locale
451
+ * @example DateTime.utc(2017, 3, 12, 5, 45, 10) //~> 2017-03-12T05:45:10Z
452
+ * @example DateTime.utc(2017, 3, 12, 5, 45, 10, 765, { locale: "fr" }) //~> 2017-03-12T05:45:10.765Z with a French locale
453
+ * @return {DateTime}
454
+ */
455
+ static utc() {
456
+ const [opts, args] = lastOpts(arguments), [year, month, day, hour, minute, second, millisecond] = args;
457
+ opts.zone = FixedOffsetZone.utcInstance;
458
+ return quickDT({
459
+ year,
460
+ month,
461
+ day,
462
+ hour,
463
+ minute,
464
+ second,
465
+ millisecond
466
+ }, opts);
467
+ }
468
+ /**
469
+ * Create a DateTime from a JavaScript Date object. Uses the default zone.
470
+ * @param {Date} date - a JavaScript Date object
471
+ * @param {Object} options - configuration options for the DateTime
472
+ * @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into
473
+ * @return {DateTime}
474
+ */
475
+ static fromJSDate(date, options = {}) {
476
+ const ts = isDate(date) ? date.valueOf() : NaN;
477
+ if (Number.isNaN(ts)) return DateTime.invalid("invalid input");
478
+ const zoneToUse = normalizeZone(options.zone, Settings.defaultZone);
479
+ if (!zoneToUse.isValid) return DateTime.invalid(unsupportedZone(zoneToUse));
480
+ return new DateTime({
481
+ ts,
482
+ zone: zoneToUse,
483
+ loc: Locale.fromObject(options)
484
+ });
485
+ }
486
+ /**
487
+ * Create a DateTime from a number of milliseconds since the epoch (meaning since 1 January 1970 00:00:00 UTC). Uses the default zone.
488
+ * @param {number} milliseconds - a number of milliseconds since 1970 UTC
489
+ * @param {Object} options - configuration options for the DateTime
490
+ * @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into
491
+ * @param {string} [options.locale] - a locale to set on the resulting DateTime instance
492
+ * @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance
493
+ * @param {string} options.numberingSystem - the numbering system to set on the resulting DateTime instance
494
+ * @param {string} options.weekSettings - the week settings to set on the resulting DateTime instance
495
+ * @return {DateTime}
496
+ */
497
+ static fromMillis(milliseconds, options = {}) {
498
+ if (!isNumber(milliseconds)) throw new InvalidArgumentError(`fromMillis requires a numerical input, but received a ${typeof milliseconds} with value ${milliseconds}`);
499
+ else if (milliseconds < -MAX_DATE || milliseconds > MAX_DATE) return DateTime.invalid("Timestamp out of range");
500
+ else return new DateTime({
501
+ ts: milliseconds,
502
+ zone: normalizeZone(options.zone, Settings.defaultZone),
503
+ loc: Locale.fromObject(options)
504
+ });
505
+ }
506
+ /**
507
+ * Create a DateTime from a number of seconds since the epoch (meaning since 1 January 1970 00:00:00 UTC). Uses the default zone.
508
+ * @param {number} seconds - a number of seconds since 1970 UTC
509
+ * @param {Object} options - configuration options for the DateTime
510
+ * @param {string|Zone} [options.zone='local'] - the zone to place the DateTime into
511
+ * @param {string} [options.locale] - a locale to set on the resulting DateTime instance
512
+ * @param {string} options.outputCalendar - the output calendar to set on the resulting DateTime instance
513
+ * @param {string} options.numberingSystem - the numbering system to set on the resulting DateTime instance
514
+ * @param {string} options.weekSettings - the week settings to set on the resulting DateTime instance
515
+ * @return {DateTime}
516
+ */
517
+ static fromSeconds(seconds, options = {}) {
518
+ if (!isNumber(seconds)) throw new InvalidArgumentError("fromSeconds requires a numerical input");
519
+ else return new DateTime({
520
+ ts: seconds * 1e3,
521
+ zone: normalizeZone(options.zone, Settings.defaultZone),
522
+ loc: Locale.fromObject(options)
523
+ });
524
+ }
525
+ /**
526
+ * Create a DateTime from a JavaScript object with keys like 'year' and 'hour' with reasonable defaults.
527
+ * @param {Object} obj - the object to create the DateTime from
528
+ * @param {number} obj.year - a year, such as 1987
529
+ * @param {number} obj.month - a month, 1-12
530
+ * @param {number} obj.day - a day of the month, 1-31, depending on the month
531
+ * @param {number} obj.ordinal - day of the year, 1-365 or 366
532
+ * @param {number} obj.weekYear - an ISO week year
533
+ * @param {number} obj.weekNumber - an ISO week number, between 1 and 52 or 53, depending on the year
534
+ * @param {number} obj.weekday - an ISO weekday, 1-7, where 1 is Monday and 7 is Sunday
535
+ * @param {number} obj.localWeekYear - a week year, according to the locale
536
+ * @param {number} obj.localWeekNumber - a week number, between 1 and 52 or 53, depending on the year, according to the locale
537
+ * @param {number} obj.localWeekday - a weekday, 1-7, where 1 is the first and 7 is the last day of the week, according to the locale
538
+ * @param {number} obj.hour - hour of the day, 0-23
539
+ * @param {number} obj.minute - minute of the hour, 0-59
540
+ * @param {number} obj.second - second of the minute, 0-59
541
+ * @param {number} obj.millisecond - millisecond of the second, 0-999
542
+ * @param {Object} opts - options for creating this DateTime
543
+ * @param {string|Zone} [opts.zone='local'] - interpret the numbers in the context of a particular zone. Can take any value taken as the first argument to setZone()
544
+ * @param {string} [opts.locale='system\'s locale'] - a locale to set on the resulting DateTime instance
545
+ * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
546
+ * @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance
547
+ * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance
548
+ * @example DateTime.fromObject({ year: 1982, month: 5, day: 25}).toISODate() //=> '1982-05-25'
549
+ * @example DateTime.fromObject({ year: 1982 }).toISODate() //=> '1982-01-01'
550
+ * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }) //~> today at 10:26:06
551
+ * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'utc' }),
552
+ * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'local' })
553
+ * @example DateTime.fromObject({ hour: 10, minute: 26, second: 6 }, { zone: 'America/New_York' })
554
+ * @example DateTime.fromObject({ weekYear: 2016, weekNumber: 2, weekday: 3 }).toISODate() //=> '2016-01-13'
555
+ * @example DateTime.fromObject({ localWeekYear: 2022, localWeekNumber: 1, localWeekday: 1 }, { locale: "en-US" }).toISODate() //=> '2021-12-26'
556
+ * @return {DateTime}
557
+ */
558
+ static fromObject(obj, opts = {}) {
559
+ obj = obj || {};
560
+ const zoneToUse = normalizeZone(opts.zone, Settings.defaultZone);
561
+ if (!zoneToUse.isValid) return DateTime.invalid(unsupportedZone(zoneToUse));
562
+ const loc = Locale.fromObject(opts);
563
+ const normalized = normalizeObject(obj, normalizeUnitWithLocalWeeks);
564
+ const { minDaysInFirstWeek, startOfWeek } = usesLocalWeekValues(normalized, loc);
565
+ const tsNow = Settings.now(), offsetProvis = !isUndefined(opts.specificOffset) ? opts.specificOffset : zoneToUse.offset(tsNow), containsOrdinal = !isUndefined(normalized.ordinal), containsGregorYear = !isUndefined(normalized.year), containsGregorMD = !isUndefined(normalized.month) || !isUndefined(normalized.day), containsGregor = containsGregorYear || containsGregorMD, definiteWeekDef = normalized.weekYear || normalized.weekNumber;
566
+ if ((containsGregor || containsOrdinal) && definiteWeekDef) throw new ConflictingSpecificationError("Can't mix weekYear/weekNumber units with year/month/day or ordinals");
567
+ if (containsGregorMD && containsOrdinal) throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day");
568
+ const useWeekData = definiteWeekDef || normalized.weekday && !containsGregor;
569
+ let units, defaultValues, objNow = tsToObj(tsNow, offsetProvis);
570
+ if (useWeekData) {
571
+ units = orderedWeekUnits;
572
+ defaultValues = defaultWeekUnitValues;
573
+ objNow = gregorianToWeek(objNow, minDaysInFirstWeek, startOfWeek);
574
+ } else if (containsOrdinal) {
575
+ units = orderedOrdinalUnits;
576
+ defaultValues = defaultOrdinalUnitValues;
577
+ objNow = gregorianToOrdinal(objNow);
578
+ } else {
579
+ units = orderedUnits;
580
+ defaultValues = defaultUnitValues;
581
+ }
582
+ let foundFirst = false;
583
+ for (const u of units) {
584
+ const v = normalized[u];
585
+ if (!isUndefined(v)) foundFirst = true;
586
+ else if (foundFirst) normalized[u] = defaultValues[u];
587
+ else normalized[u] = objNow[u];
588
+ }
589
+ const invalid = (useWeekData ? hasInvalidWeekData(normalized, minDaysInFirstWeek, startOfWeek) : containsOrdinal ? hasInvalidOrdinalData(normalized) : hasInvalidGregorianData(normalized)) || hasInvalidTimeData(normalized);
590
+ if (invalid) return DateTime.invalid(invalid);
591
+ const [tsFinal, offsetFinal] = objToTS(useWeekData ? weekToGregorian(normalized, minDaysInFirstWeek, startOfWeek) : containsOrdinal ? ordinalToGregorian(normalized) : normalized, offsetProvis, zoneToUse), inst = new DateTime({
592
+ ts: tsFinal,
593
+ zone: zoneToUse,
594
+ o: offsetFinal,
595
+ loc
596
+ });
597
+ if (normalized.weekday && containsGregor && obj.weekday !== inst.weekday) return DateTime.invalid("mismatched weekday", `you can't specify both a weekday of ${normalized.weekday} and a date of ${inst.toISO()}`);
598
+ if (!inst.isValid) return DateTime.invalid(inst.invalid);
599
+ return inst;
600
+ }
601
+ /**
602
+ * Create a DateTime from an ISO 8601 string
603
+ * @param {string} text - the ISO string
604
+ * @param {Object} opts - options to affect the creation
605
+ * @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the time to this zone
606
+ * @param {boolean} [opts.setZone=false] - override the zone with a fixed-offset zone specified in the string itself, if it specifies one
607
+ * @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance
608
+ * @param {string} [opts.outputCalendar] - the output calendar to set on the resulting DateTime instance
609
+ * @param {string} [opts.numberingSystem] - the numbering system to set on the resulting DateTime instance
610
+ * @param {string} [opts.weekSettings] - the week settings to set on the resulting DateTime instance
611
+ * @example DateTime.fromISO('2016-05-25T09:08:34.123')
612
+ * @example DateTime.fromISO('2016-05-25T09:08:34.123+06:00')
613
+ * @example DateTime.fromISO('2016-05-25T09:08:34.123+06:00', {setZone: true})
614
+ * @example DateTime.fromISO('2016-05-25T09:08:34.123', {zone: 'utc'})
615
+ * @example DateTime.fromISO('2016-W05-4')
616
+ * @return {DateTime}
617
+ */
618
+ static fromISO(text, opts = {}) {
619
+ const [vals, parsedZone] = parseISODate(text);
620
+ return parseDataToDateTime(vals, parsedZone, opts, "ISO 8601", text);
621
+ }
622
+ /**
623
+ * Create a DateTime from an RFC 2822 string
624
+ * @param {string} text - the RFC 2822 string
625
+ * @param {Object} opts - options to affect the creation
626
+ * @param {string|Zone} [opts.zone='local'] - convert the time to this zone. Since the offset is always specified in the string itself, this has no effect on the interpretation of string, merely the zone the resulting DateTime is expressed in.
627
+ * @param {boolean} [opts.setZone=false] - override the zone with a fixed-offset zone specified in the string itself, if it specifies one
628
+ * @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance
629
+ * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
630
+ * @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance
631
+ * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance
632
+ * @example DateTime.fromRFC2822('25 Nov 2016 13:23:12 GMT')
633
+ * @example DateTime.fromRFC2822('Fri, 25 Nov 2016 13:23:12 +0600')
634
+ * @example DateTime.fromRFC2822('25 Nov 2016 13:23 Z')
635
+ * @return {DateTime}
636
+ */
637
+ static fromRFC2822(text, opts = {}) {
638
+ const [vals, parsedZone] = parseRFC2822Date(text);
639
+ return parseDataToDateTime(vals, parsedZone, opts, "RFC 2822", text);
640
+ }
641
+ /**
642
+ * Create a DateTime from an HTTP header date
643
+ * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1
644
+ * @param {string} text - the HTTP header date
645
+ * @param {Object} opts - options to affect the creation
646
+ * @param {string|Zone} [opts.zone='local'] - convert the time to this zone. Since HTTP dates are always in UTC, this has no effect on the interpretation of string, merely the zone the resulting DateTime is expressed in.
647
+ * @param {boolean} [opts.setZone=false] - override the zone with the fixed-offset zone specified in the string. For HTTP dates, this is always UTC, so this option is equivalent to setting the `zone` option to 'utc', but this option is included for consistency with similar methods.
648
+ * @param {string} [opts.locale='system's locale'] - a locale to set on the resulting DateTime instance
649
+ * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
650
+ * @param {string} opts.numberingSystem - the numbering system to set on the resulting DateTime instance
651
+ * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance
652
+ * @example DateTime.fromHTTP('Sun, 06 Nov 1994 08:49:37 GMT')
653
+ * @example DateTime.fromHTTP('Sunday, 06-Nov-94 08:49:37 GMT')
654
+ * @example DateTime.fromHTTP('Sun Nov 6 08:49:37 1994')
655
+ * @return {DateTime}
656
+ */
657
+ static fromHTTP(text, opts = {}) {
658
+ const [vals, parsedZone] = parseHTTPDate(text);
659
+ return parseDataToDateTime(vals, parsedZone, opts, "HTTP", opts);
660
+ }
661
+ /**
662
+ * Create a DateTime from an input string and format string.
663
+ * Defaults to en-US if no locale has been specified, regardless of the system's locale. For a table of tokens and their interpretations, see [here](https://moment.github.io/luxon/#/parsing?id=table-of-tokens).
664
+ * @param {string} text - the string to parse
665
+ * @param {string} fmt - the format the string is expected to be in (see the link below for the formats)
666
+ * @param {Object} opts - options to affect the creation
667
+ * @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the DateTime to this zone
668
+ * @param {boolean} [opts.setZone=false] - override the zone with a zone specified in the string itself, if it specifies one
669
+ * @param {string} [opts.locale='en-US'] - a locale string to use when parsing. Will also set the DateTime to this locale
670
+ * @param {string} opts.numberingSystem - the numbering system to use when parsing. Will also set the resulting DateTime to this numbering system
671
+ * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance
672
+ * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
673
+ * @return {DateTime}
674
+ */
675
+ static fromFormat(text, fmt, opts = {}) {
676
+ if (isUndefined(text) || isUndefined(fmt)) throw new InvalidArgumentError("fromFormat requires an input string and a format");
677
+ const { locale = null, numberingSystem = null } = opts, [vals, parsedZone, specificOffset, invalid] = parseFromTokens(Locale.fromOpts({
678
+ locale,
679
+ numberingSystem,
680
+ defaultToEN: true
681
+ }), text, fmt);
682
+ if (invalid) return DateTime.invalid(invalid);
683
+ else return parseDataToDateTime(vals, parsedZone, opts, `format ${fmt}`, text, specificOffset);
684
+ }
685
+ /**
686
+ * @deprecated use fromFormat instead
687
+ */
688
+ static fromString(text, fmt, opts = {}) {
689
+ return DateTime.fromFormat(text, fmt, opts);
690
+ }
691
+ /**
692
+ * Create a DateTime from a SQL date, time, or datetime
693
+ * Defaults to en-US if no locale has been specified, regardless of the system's locale
694
+ * @param {string} text - the string to parse
695
+ * @param {Object} opts - options to affect the creation
696
+ * @param {string|Zone} [opts.zone='local'] - use this zone if no offset is specified in the input string itself. Will also convert the DateTime to this zone
697
+ * @param {boolean} [opts.setZone=false] - override the zone with a zone specified in the string itself, if it specifies one
698
+ * @param {string} [opts.locale='en-US'] - a locale string to use when parsing. Will also set the DateTime to this locale
699
+ * @param {string} opts.numberingSystem - the numbering system to use when parsing. Will also set the resulting DateTime to this numbering system
700
+ * @param {string} opts.weekSettings - the week settings to set on the resulting DateTime instance
701
+ * @param {string} opts.outputCalendar - the output calendar to set on the resulting DateTime instance
702
+ * @example DateTime.fromSQL('2017-05-15')
703
+ * @example DateTime.fromSQL('2017-05-15 09:12:34')
704
+ * @example DateTime.fromSQL('2017-05-15 09:12:34.342')
705
+ * @example DateTime.fromSQL('2017-05-15 09:12:34.342+06:00')
706
+ * @example DateTime.fromSQL('2017-05-15 09:12:34.342 America/Los_Angeles')
707
+ * @example DateTime.fromSQL('2017-05-15 09:12:34.342 America/Los_Angeles', { setZone: true })
708
+ * @example DateTime.fromSQL('2017-05-15 09:12:34.342', { zone: 'America/Los_Angeles' })
709
+ * @example DateTime.fromSQL('09:12:34.342')
710
+ * @return {DateTime}
711
+ */
712
+ static fromSQL(text, opts = {}) {
713
+ const [vals, parsedZone] = parseSQL(text);
714
+ return parseDataToDateTime(vals, parsedZone, opts, "SQL", text);
715
+ }
716
+ /**
717
+ * Create an invalid DateTime.
718
+ * @param {string} reason - simple string of why this DateTime is invalid. Should not contain parameters or anything else data-dependent.
719
+ * @param {string} [explanation=null] - longer explanation, may include parameters and other useful debugging information
720
+ * @return {DateTime}
721
+ */
722
+ static invalid(reason, explanation = null) {
723
+ if (!reason) throw new InvalidArgumentError("need to specify a reason the DateTime is invalid");
724
+ const invalid = reason instanceof Invalid ? reason : new Invalid(reason, explanation);
725
+ if (Settings.throwOnInvalid) throw new InvalidDateTimeError(invalid);
726
+ else return new DateTime({ invalid });
727
+ }
728
+ /**
729
+ * Check if an object is an instance of DateTime. Works across context boundaries
730
+ * @param {object} o
731
+ * @return {boolean}
732
+ */
733
+ static isDateTime(o) {
734
+ return o && o.isLuxonDateTime || false;
735
+ }
736
+ /**
737
+ * Produce the format string for a set of options
738
+ * @param formatOpts
739
+ * @param localeOpts
740
+ * @returns {string}
741
+ */
742
+ static parseFormatForOpts(formatOpts, localeOpts = {}) {
743
+ const tokenList = formatOptsToTokens(formatOpts, Locale.fromObject(localeOpts));
744
+ return !tokenList ? null : tokenList.map((t) => t ? t.val : null).join("");
745
+ }
746
+ /**
747
+ * Produce the the fully expanded format token for the locale
748
+ * Does NOT quote characters, so quoted tokens will not round trip correctly
749
+ * @param fmt
750
+ * @param localeOpts
751
+ * @returns {string}
752
+ */
753
+ static expandFormat(fmt, localeOpts = {}) {
754
+ return expandMacroTokens(Formatter.parseFormat(fmt), Locale.fromObject(localeOpts)).map((t) => t.val).join("");
755
+ }
756
+ static resetCache() {
757
+ zoneOffsetTs = void 0;
758
+ zoneOffsetGuessCache = {};
759
+ }
760
+ /**
761
+ * Get the value of unit.
762
+ * @param {string} unit - a unit such as 'minute' or 'day'
763
+ * @example DateTime.local(2017, 7, 4).get('month'); //=> 7
764
+ * @example DateTime.local(2017, 7, 4).get('day'); //=> 4
765
+ * @return {number}
766
+ */
767
+ get(unit) {
768
+ return this[unit];
769
+ }
770
+ /**
771
+ * Returns whether the DateTime is valid. Invalid DateTimes occur when:
772
+ * * The DateTime was created from invalid calendar information, such as the 13th month or February 30
773
+ * * The DateTime was created by an operation on another invalid date
774
+ * @type {boolean}
775
+ */
776
+ get isValid() {
777
+ return this.invalid === null;
778
+ }
779
+ /**
780
+ * Returns an error code if this DateTime is invalid, or null if the DateTime is valid
781
+ * @type {string}
782
+ */
783
+ get invalidReason() {
784
+ return this.invalid ? this.invalid.reason : null;
785
+ }
786
+ /**
787
+ * Returns an explanation of why this DateTime became invalid, or null if the DateTime is valid
788
+ * @type {string}
789
+ */
790
+ get invalidExplanation() {
791
+ return this.invalid ? this.invalid.explanation : null;
792
+ }
793
+ /**
794
+ * Get the locale of a DateTime, such 'en-GB'. The locale is used when formatting the DateTime
795
+ *
796
+ * @type {string}
797
+ */
798
+ get locale() {
799
+ return this.isValid ? this.loc.locale : null;
800
+ }
801
+ /**
802
+ * Get the numbering system of a DateTime, such 'beng'. The numbering system is used when formatting the DateTime
803
+ *
804
+ * @type {string}
805
+ */
806
+ get numberingSystem() {
807
+ return this.isValid ? this.loc.numberingSystem : null;
808
+ }
809
+ /**
810
+ * Get the output calendar of a DateTime, such 'islamic'. The output calendar is used when formatting the DateTime
811
+ *
812
+ * @type {string}
813
+ */
814
+ get outputCalendar() {
815
+ return this.isValid ? this.loc.outputCalendar : null;
816
+ }
817
+ /**
818
+ * Get the time zone associated with this DateTime.
819
+ * @type {Zone}
820
+ */
821
+ get zone() {
822
+ return this._zone;
823
+ }
824
+ /**
825
+ * Get the name of the time zone.
826
+ * @type {string}
827
+ */
828
+ get zoneName() {
829
+ return this.isValid ? this.zone.name : null;
830
+ }
831
+ /**
832
+ * Get the year
833
+ * @example DateTime.local(2017, 5, 25).year //=> 2017
834
+ * @type {number}
835
+ */
836
+ get year() {
837
+ return this.isValid ? this.c.year : NaN;
838
+ }
839
+ /**
840
+ * Get the quarter
841
+ * @example DateTime.local(2017, 5, 25).quarter //=> 2
842
+ * @type {number}
843
+ */
844
+ get quarter() {
845
+ return this.isValid ? Math.ceil(this.c.month / 3) : NaN;
846
+ }
847
+ /**
848
+ * Get the month (1-12).
849
+ * @example DateTime.local(2017, 5, 25).month //=> 5
850
+ * @type {number}
851
+ */
852
+ get month() {
853
+ return this.isValid ? this.c.month : NaN;
854
+ }
855
+ /**
856
+ * Get the day of the month (1-30ish).
857
+ * @example DateTime.local(2017, 5, 25).day //=> 25
858
+ * @type {number}
859
+ */
860
+ get day() {
861
+ return this.isValid ? this.c.day : NaN;
862
+ }
863
+ /**
864
+ * Get the hour of the day (0-23).
865
+ * @example DateTime.local(2017, 5, 25, 9).hour //=> 9
866
+ * @type {number}
867
+ */
868
+ get hour() {
869
+ return this.isValid ? this.c.hour : NaN;
870
+ }
871
+ /**
872
+ * Get the minute of the hour (0-59).
873
+ * @example DateTime.local(2017, 5, 25, 9, 30).minute //=> 30
874
+ * @type {number}
875
+ */
876
+ get minute() {
877
+ return this.isValid ? this.c.minute : NaN;
878
+ }
879
+ /**
880
+ * Get the second of the minute (0-59).
881
+ * @example DateTime.local(2017, 5, 25, 9, 30, 52).second //=> 52
882
+ * @type {number}
883
+ */
884
+ get second() {
885
+ return this.isValid ? this.c.second : NaN;
886
+ }
887
+ /**
888
+ * Get the millisecond of the second (0-999).
889
+ * @example DateTime.local(2017, 5, 25, 9, 30, 52, 654).millisecond //=> 654
890
+ * @type {number}
891
+ */
892
+ get millisecond() {
893
+ return this.isValid ? this.c.millisecond : NaN;
894
+ }
895
+ /**
896
+ * Get the week year
897
+ * @see https://en.wikipedia.org/wiki/ISO_week_date
898
+ * @example DateTime.local(2014, 12, 31).weekYear //=> 2015
899
+ * @type {number}
900
+ */
901
+ get weekYear() {
902
+ return this.isValid ? possiblyCachedWeekData(this).weekYear : NaN;
903
+ }
904
+ /**
905
+ * Get the week number of the week year (1-52ish).
906
+ * @see https://en.wikipedia.org/wiki/ISO_week_date
907
+ * @example DateTime.local(2017, 5, 25).weekNumber //=> 21
908
+ * @type {number}
909
+ */
910
+ get weekNumber() {
911
+ return this.isValid ? possiblyCachedWeekData(this).weekNumber : NaN;
912
+ }
913
+ /**
914
+ * Get the day of the week.
915
+ * 1 is Monday and 7 is Sunday
916
+ * @see https://en.wikipedia.org/wiki/ISO_week_date
917
+ * @example DateTime.local(2014, 11, 31).weekday //=> 4
918
+ * @type {number}
919
+ */
920
+ get weekday() {
921
+ return this.isValid ? possiblyCachedWeekData(this).weekday : NaN;
922
+ }
923
+ /**
924
+ * Returns true if this date is on a weekend according to the locale, false otherwise
925
+ * @returns {boolean}
926
+ */
927
+ get isWeekend() {
928
+ return this.isValid && this.loc.getWeekendDays().includes(this.weekday);
929
+ }
930
+ /**
931
+ * Get the day of the week according to the locale.
932
+ * 1 is the first day of the week and 7 is the last day of the week.
933
+ * If the locale assigns Sunday as the first day of the week, then a date which is a Sunday will return 1,
934
+ * @returns {number}
935
+ */
936
+ get localWeekday() {
937
+ return this.isValid ? possiblyCachedLocalWeekData(this).weekday : NaN;
938
+ }
939
+ /**
940
+ * Get the week number of the week year according to the locale. Different locales assign week numbers differently,
941
+ * because the week can start on different days of the week (see localWeekday) and because a different number of days
942
+ * is required for a week to count as the first week of a year.
943
+ * @returns {number}
944
+ */
945
+ get localWeekNumber() {
946
+ return this.isValid ? possiblyCachedLocalWeekData(this).weekNumber : NaN;
947
+ }
948
+ /**
949
+ * Get the week year according to the locale. Different locales assign week numbers (and therefor week years)
950
+ * differently, see localWeekNumber.
951
+ * @returns {number}
952
+ */
953
+ get localWeekYear() {
954
+ return this.isValid ? possiblyCachedLocalWeekData(this).weekYear : NaN;
955
+ }
956
+ /**
957
+ * Get the ordinal (meaning the day of the year)
958
+ * @example DateTime.local(2017, 5, 25).ordinal //=> 145
959
+ * @type {number|DateTime}
960
+ */
961
+ get ordinal() {
962
+ return this.isValid ? gregorianToOrdinal(this.c).ordinal : NaN;
963
+ }
964
+ /**
965
+ * Get the human readable short month name, such as 'Oct'.
966
+ * Defaults to the system's locale if no locale has been specified
967
+ * @example DateTime.local(2017, 10, 30).monthShort //=> Oct
968
+ * @type {string}
969
+ */
970
+ get monthShort() {
971
+ return this.isValid ? Info.months("short", { locObj: this.loc })[this.month - 1] : null;
972
+ }
973
+ /**
974
+ * Get the human readable long month name, such as 'October'.
975
+ * Defaults to the system's locale if no locale has been specified
976
+ * @example DateTime.local(2017, 10, 30).monthLong //=> October
977
+ * @type {string}
978
+ */
979
+ get monthLong() {
980
+ return this.isValid ? Info.months("long", { locObj: this.loc })[this.month - 1] : null;
981
+ }
982
+ /**
983
+ * Get the human readable short weekday, such as 'Mon'.
984
+ * Defaults to the system's locale if no locale has been specified
985
+ * @example DateTime.local(2017, 10, 30).weekdayShort //=> Mon
986
+ * @type {string}
987
+ */
988
+ get weekdayShort() {
989
+ return this.isValid ? Info.weekdays("short", { locObj: this.loc })[this.weekday - 1] : null;
990
+ }
991
+ /**
992
+ * Get the human readable long weekday, such as 'Monday'.
993
+ * Defaults to the system's locale if no locale has been specified
994
+ * @example DateTime.local(2017, 10, 30).weekdayLong //=> Monday
995
+ * @type {string}
996
+ */
997
+ get weekdayLong() {
998
+ return this.isValid ? Info.weekdays("long", { locObj: this.loc })[this.weekday - 1] : null;
999
+ }
1000
+ /**
1001
+ * Get the UTC offset of this DateTime in minutes
1002
+ * @example DateTime.now().offset //=> -240
1003
+ * @example DateTime.utc().offset //=> 0
1004
+ * @type {number}
1005
+ */
1006
+ get offset() {
1007
+ return this.isValid ? +this.o : NaN;
1008
+ }
1009
+ /**
1010
+ * Get the short human name for the zone's current offset, for example "EST" or "EDT".
1011
+ * Defaults to the system's locale if no locale has been specified
1012
+ * @type {string}
1013
+ */
1014
+ get offsetNameShort() {
1015
+ if (this.isValid) return this.zone.offsetName(this.ts, {
1016
+ format: "short",
1017
+ locale: this.locale
1018
+ });
1019
+ else return null;
1020
+ }
1021
+ /**
1022
+ * Get the long human name for the zone's current offset, for example "Eastern Standard Time" or "Eastern Daylight Time".
1023
+ * Defaults to the system's locale if no locale has been specified
1024
+ * @type {string}
1025
+ */
1026
+ get offsetNameLong() {
1027
+ if (this.isValid) return this.zone.offsetName(this.ts, {
1028
+ format: "long",
1029
+ locale: this.locale
1030
+ });
1031
+ else return null;
1032
+ }
1033
+ /**
1034
+ * Get whether this zone's offset ever changes, as in a DST.
1035
+ * @type {boolean}
1036
+ */
1037
+ get isOffsetFixed() {
1038
+ return this.isValid ? this.zone.isUniversal : null;
1039
+ }
1040
+ /**
1041
+ * Get whether the DateTime is in a DST.
1042
+ * @type {boolean}
1043
+ */
1044
+ get isInDST() {
1045
+ if (this.isOffsetFixed) return false;
1046
+ else return this.offset > this.set({
1047
+ month: 1,
1048
+ day: 1
1049
+ }).offset || this.offset > this.set({ month: 5 }).offset;
1050
+ }
1051
+ /**
1052
+ * Get those DateTimes which have the same local time as this DateTime, but a different offset from UTC
1053
+ * in this DateTime's zone. During DST changes local time can be ambiguous, for example
1054
+ * `2023-10-29T02:30:00` in `Europe/Berlin` can have offset `+01:00` or `+02:00`.
1055
+ * This method will return both possible DateTimes if this DateTime's local time is ambiguous.
1056
+ * @returns {DateTime[]}
1057
+ */
1058
+ getPossibleOffsets() {
1059
+ if (!this.isValid || this.isOffsetFixed) return [this];
1060
+ const dayMs = 864e5;
1061
+ const minuteMs = 6e4;
1062
+ const localTS = objToLocalTS(this.c);
1063
+ const oEarlier = this.zone.offset(localTS - dayMs);
1064
+ const oLater = this.zone.offset(localTS + dayMs);
1065
+ const o1 = this.zone.offset(localTS - oEarlier * minuteMs);
1066
+ const o2 = this.zone.offset(localTS - oLater * minuteMs);
1067
+ if (o1 === o2) return [this];
1068
+ const ts1 = localTS - o1 * minuteMs;
1069
+ const ts2 = localTS - o2 * minuteMs;
1070
+ const c1 = tsToObj(ts1, o1);
1071
+ const c2 = tsToObj(ts2, o2);
1072
+ if (c1.hour === c2.hour && c1.minute === c2.minute && c1.second === c2.second && c1.millisecond === c2.millisecond) return [clone(this, { ts: ts1 }), clone(this, { ts: ts2 })];
1073
+ return [this];
1074
+ }
1075
+ /**
1076
+ * Returns true if this DateTime is in a leap year, false otherwise
1077
+ * @example DateTime.local(2016).isInLeapYear //=> true
1078
+ * @example DateTime.local(2013).isInLeapYear //=> false
1079
+ * @type {boolean}
1080
+ */
1081
+ get isInLeapYear() {
1082
+ return isLeapYear(this.year);
1083
+ }
1084
+ /**
1085
+ * Returns the number of days in this DateTime's month
1086
+ * @example DateTime.local(2016, 2).daysInMonth //=> 29
1087
+ * @example DateTime.local(2016, 3).daysInMonth //=> 31
1088
+ * @type {number}
1089
+ */
1090
+ get daysInMonth() {
1091
+ return daysInMonth(this.year, this.month);
1092
+ }
1093
+ /**
1094
+ * Returns the number of days in this DateTime's year
1095
+ * @example DateTime.local(2016).daysInYear //=> 366
1096
+ * @example DateTime.local(2013).daysInYear //=> 365
1097
+ * @type {number}
1098
+ */
1099
+ get daysInYear() {
1100
+ return this.isValid ? daysInYear(this.year) : NaN;
1101
+ }
1102
+ /**
1103
+ * Returns the number of weeks in this DateTime's year
1104
+ * @see https://en.wikipedia.org/wiki/ISO_week_date
1105
+ * @example DateTime.local(2004).weeksInWeekYear //=> 53
1106
+ * @example DateTime.local(2013).weeksInWeekYear //=> 52
1107
+ * @type {number}
1108
+ */
1109
+ get weeksInWeekYear() {
1110
+ return this.isValid ? weeksInWeekYear(this.weekYear) : NaN;
1111
+ }
1112
+ /**
1113
+ * Returns the number of weeks in this DateTime's local week year
1114
+ * @example DateTime.local(2020, 6, {locale: 'en-US'}).weeksInLocalWeekYear //=> 52
1115
+ * @example DateTime.local(2020, 6, {locale: 'de-DE'}).weeksInLocalWeekYear //=> 53
1116
+ * @type {number}
1117
+ */
1118
+ get weeksInLocalWeekYear() {
1119
+ return this.isValid ? weeksInWeekYear(this.localWeekYear, this.loc.getMinDaysInFirstWeek(), this.loc.getStartOfWeek()) : NaN;
1120
+ }
1121
+ /**
1122
+ * Returns the resolved Intl options for this DateTime.
1123
+ * This is useful in understanding the behavior of formatting methods
1124
+ * @param {Object} opts - the same options as toLocaleString
1125
+ * @return {Object}
1126
+ */
1127
+ resolvedLocaleOptions(opts = {}) {
1128
+ const { locale, numberingSystem, calendar } = Formatter.create(this.loc.clone(opts), opts).resolvedOptions(this);
1129
+ return {
1130
+ locale,
1131
+ numberingSystem,
1132
+ outputCalendar: calendar
1133
+ };
1134
+ }
1135
+ /**
1136
+ * "Set" the DateTime's zone to UTC. Returns a newly-constructed DateTime.
1137
+ *
1138
+ * Equivalent to {@link DateTime#setZone}('utc')
1139
+ * @param {number} [offset=0] - optionally, an offset from UTC in minutes
1140
+ * @param {Object} [opts={}] - options to pass to `setZone()`
1141
+ * @return {DateTime}
1142
+ */
1143
+ toUTC(offset = 0, opts = {}) {
1144
+ return this.setZone(FixedOffsetZone.instance(offset), opts);
1145
+ }
1146
+ /**
1147
+ * "Set" the DateTime's zone to the host's local zone. Returns a newly-constructed DateTime.
1148
+ *
1149
+ * Equivalent to `setZone('local')`
1150
+ * @return {DateTime}
1151
+ */
1152
+ toLocal() {
1153
+ return this.setZone(Settings.defaultZone);
1154
+ }
1155
+ /**
1156
+ * "Set" the DateTime's zone to specified zone. Returns a newly-constructed DateTime.
1157
+ *
1158
+ * By default, the setter keeps the underlying time the same (as in, the same timestamp), but the new instance will report different local times and consider DSTs when making computations, as with {@link DateTime#plus}. You may wish to use {@link DateTime#toLocal} and {@link DateTime#toUTC} which provide simple convenience wrappers for commonly used zones.
1159
+ * @param {string|Zone} [zone='local'] - a zone identifier. As a string, that can be any IANA zone supported by the host environment, or a fixed-offset name of the form 'UTC+3', or the strings 'local' or 'utc'. You may also supply an instance of a {@link DateTime#Zone} class.
1160
+ * @param {Object} opts - options
1161
+ * @param {boolean} [opts.keepLocalTime=false] - If true, adjust the underlying time so that the local time stays the same, but in the target zone. You should rarely need this.
1162
+ * @return {DateTime}
1163
+ */
1164
+ setZone(zone, { keepLocalTime = false, keepCalendarTime = false } = {}) {
1165
+ zone = normalizeZone(zone, Settings.defaultZone);
1166
+ if (zone.equals(this.zone)) return this;
1167
+ else if (!zone.isValid) return DateTime.invalid(unsupportedZone(zone));
1168
+ else {
1169
+ let newTS = this.ts;
1170
+ if (keepLocalTime || keepCalendarTime) {
1171
+ const offsetGuess = zone.offset(this.ts);
1172
+ const asObj = this.toObject();
1173
+ [newTS] = objToTS(asObj, offsetGuess, zone);
1174
+ }
1175
+ return clone(this, {
1176
+ ts: newTS,
1177
+ zone
1178
+ });
1179
+ }
1180
+ }
1181
+ /**
1182
+ * "Set" the locale, numberingSystem, or outputCalendar. Returns a newly-constructed DateTime.
1183
+ * @param {Object} properties - the properties to set
1184
+ * @example DateTime.local(2017, 5, 25).reconfigure({ locale: 'en-GB' })
1185
+ * @return {DateTime}
1186
+ */
1187
+ reconfigure({ locale, numberingSystem, outputCalendar } = {}) {
1188
+ const loc = this.loc.clone({
1189
+ locale,
1190
+ numberingSystem,
1191
+ outputCalendar
1192
+ });
1193
+ return clone(this, { loc });
1194
+ }
1195
+ /**
1196
+ * "Set" the locale. Returns a newly-constructed DateTime.
1197
+ * Just a convenient alias for reconfigure({ locale })
1198
+ * @example DateTime.local(2017, 5, 25).setLocale('en-GB')
1199
+ * @return {DateTime}
1200
+ */
1201
+ setLocale(locale) {
1202
+ return this.reconfigure({ locale });
1203
+ }
1204
+ /**
1205
+ * "Set" the values of specified units. Returns a newly-constructed DateTime.
1206
+ * You can only set units with this method; for "setting" metadata, see {@link DateTime#reconfigure} and {@link DateTime#setZone}.
1207
+ *
1208
+ * This method also supports setting locale-based week units, i.e. `localWeekday`, `localWeekNumber` and `localWeekYear`.
1209
+ * They cannot be mixed with ISO-week units like `weekday`.
1210
+ * @param {Object} values - a mapping of units to numbers
1211
+ * @example dt.set({ year: 2017 })
1212
+ * @example dt.set({ hour: 8, minute: 30 })
1213
+ * @example dt.set({ weekday: 5 })
1214
+ * @example dt.set({ year: 2005, ordinal: 234 })
1215
+ * @return {DateTime}
1216
+ */
1217
+ set(values) {
1218
+ if (!this.isValid) return this;
1219
+ const normalized = normalizeObject(values, normalizeUnitWithLocalWeeks);
1220
+ const { minDaysInFirstWeek, startOfWeek } = usesLocalWeekValues(normalized, this.loc);
1221
+ const settingWeekStuff = !isUndefined(normalized.weekYear) || !isUndefined(normalized.weekNumber) || !isUndefined(normalized.weekday), containsOrdinal = !isUndefined(normalized.ordinal), containsGregorYear = !isUndefined(normalized.year), containsGregorMD = !isUndefined(normalized.month) || !isUndefined(normalized.day), containsGregor = containsGregorYear || containsGregorMD, definiteWeekDef = normalized.weekYear || normalized.weekNumber;
1222
+ if ((containsGregor || containsOrdinal) && definiteWeekDef) throw new ConflictingSpecificationError("Can't mix weekYear/weekNumber units with year/month/day or ordinals");
1223
+ if (containsGregorMD && containsOrdinal) throw new ConflictingSpecificationError("Can't mix ordinal dates with month/day");
1224
+ let mixed;
1225
+ if (settingWeekStuff) mixed = weekToGregorian({
1226
+ ...gregorianToWeek(this.c, minDaysInFirstWeek, startOfWeek),
1227
+ ...normalized
1228
+ }, minDaysInFirstWeek, startOfWeek);
1229
+ else if (!isUndefined(normalized.ordinal)) mixed = ordinalToGregorian({
1230
+ ...gregorianToOrdinal(this.c),
1231
+ ...normalized
1232
+ });
1233
+ else {
1234
+ mixed = {
1235
+ ...this.toObject(),
1236
+ ...normalized
1237
+ };
1238
+ if (isUndefined(normalized.day)) mixed.day = Math.min(daysInMonth(mixed.year, mixed.month), mixed.day);
1239
+ }
1240
+ const [ts, o] = objToTS(mixed, this.o, this.zone);
1241
+ return clone(this, {
1242
+ ts,
1243
+ o
1244
+ });
1245
+ }
1246
+ /**
1247
+ * Add a period of time to this DateTime and return the resulting DateTime
1248
+ *
1249
+ * Adding hours, minutes, seconds, or milliseconds increases the timestamp by the right number of milliseconds. Adding days, months, or years shifts the calendar, accounting for DSTs and leap years along the way. Thus, `dt.plus({ hours: 24 })` may result in a different time than `dt.plus({ days: 1 })` if there's a DST shift in between.
1250
+ * @param {Duration|Object|number} duration - The amount to add. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()
1251
+ * @example DateTime.now().plus(123) //~> in 123 milliseconds
1252
+ * @example DateTime.now().plus({ minutes: 15 }) //~> in 15 minutes
1253
+ * @example DateTime.now().plus({ days: 1 }) //~> this time tomorrow
1254
+ * @example DateTime.now().plus({ days: -1 }) //~> this time yesterday
1255
+ * @example DateTime.now().plus({ hours: 3, minutes: 13 }) //~> in 3 hr, 13 min
1256
+ * @example DateTime.now().plus(Duration.fromObject({ hours: 3, minutes: 13 })) //~> in 3 hr, 13 min
1257
+ * @return {DateTime}
1258
+ */
1259
+ plus(duration) {
1260
+ if (!this.isValid) return this;
1261
+ const dur = Duration.fromDurationLike(duration);
1262
+ return clone(this, adjustTime(this, dur));
1263
+ }
1264
+ /**
1265
+ * Subtract a period of time to this DateTime and return the resulting DateTime
1266
+ * See {@link DateTime#plus}
1267
+ * @param {Duration|Object|number} duration - The amount to subtract. Either a Luxon Duration, a number of milliseconds, the object argument to Duration.fromObject()
1268
+ @return {DateTime}
1269
+ */
1270
+ minus(duration) {
1271
+ if (!this.isValid) return this;
1272
+ const dur = Duration.fromDurationLike(duration).negate();
1273
+ return clone(this, adjustTime(this, dur));
1274
+ }
1275
+ /**
1276
+ * "Set" this DateTime to the beginning of a unit of time.
1277
+ * @param {string} unit - The unit to go to the beginning of. Can be 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', or 'millisecond'.
1278
+ * @param {Object} opts - options
1279
+ * @param {boolean} [opts.useLocaleWeeks=false] - If true, use weeks based on the locale, i.e. use the locale-dependent start of the week
1280
+ * @example DateTime.local(2014, 3, 3).startOf('month').toISODate(); //=> '2014-03-01'
1281
+ * @example DateTime.local(2014, 3, 3).startOf('year').toISODate(); //=> '2014-01-01'
1282
+ * @example DateTime.local(2014, 3, 3).startOf('week').toISODate(); //=> '2014-03-03', weeks always start on Mondays
1283
+ * @example DateTime.local(2014, 3, 3, 5, 30).startOf('day').toISOTime(); //=> '00:00.000-05:00'
1284
+ * @example DateTime.local(2014, 3, 3, 5, 30).startOf('hour').toISOTime(); //=> '05:00:00.000-05:00'
1285
+ * @return {DateTime}
1286
+ */
1287
+ startOf(unit, { useLocaleWeeks = false } = {}) {
1288
+ if (!this.isValid) return this;
1289
+ const o = {}, normalizedUnit = Duration.normalizeUnit(unit);
1290
+ switch (normalizedUnit) {
1291
+ case "years": o.month = 1;
1292
+ case "quarters":
1293
+ case "months": o.day = 1;
1294
+ case "weeks":
1295
+ case "days": o.hour = 0;
1296
+ case "hours": o.minute = 0;
1297
+ case "minutes": o.second = 0;
1298
+ case "seconds":
1299
+ o.millisecond = 0;
1300
+ break;
1301
+ case "milliseconds": break;
1302
+ }
1303
+ if (normalizedUnit === "weeks") if (useLocaleWeeks) {
1304
+ const startOfWeek = this.loc.getStartOfWeek();
1305
+ const { weekday } = this;
1306
+ if (weekday < startOfWeek) o.weekNumber = this.weekNumber - 1;
1307
+ o.weekday = startOfWeek;
1308
+ } else o.weekday = 1;
1309
+ if (normalizedUnit === "quarters") o.month = (Math.ceil(this.month / 3) - 1) * 3 + 1;
1310
+ return this.set(o);
1311
+ }
1312
+ /**
1313
+ * "Set" this DateTime to the end (meaning the last millisecond) of a unit of time
1314
+ * @param {string} unit - The unit to go to the end of. Can be 'year', 'quarter', 'month', 'week', 'day', 'hour', 'minute', 'second', or 'millisecond'.
1315
+ * @param {Object} opts - options
1316
+ * @param {boolean} [opts.useLocaleWeeks=false] - If true, use weeks based on the locale, i.e. use the locale-dependent start of the week
1317
+ * @example DateTime.local(2014, 3, 3).endOf('month').toISO(); //=> '2014-03-31T23:59:59.999-05:00'
1318
+ * @example DateTime.local(2014, 3, 3).endOf('year').toISO(); //=> '2014-12-31T23:59:59.999-05:00'
1319
+ * @example DateTime.local(2014, 3, 3).endOf('week').toISO(); // => '2014-03-09T23:59:59.999-05:00', weeks start on Mondays
1320
+ * @example DateTime.local(2014, 3, 3, 5, 30).endOf('day').toISO(); //=> '2014-03-03T23:59:59.999-05:00'
1321
+ * @example DateTime.local(2014, 3, 3, 5, 30).endOf('hour').toISO(); //=> '2014-03-03T05:59:59.999-05:00'
1322
+ * @return {DateTime}
1323
+ */
1324
+ endOf(unit, opts) {
1325
+ return this.isValid ? this.plus({ [unit]: 1 }).startOf(unit, opts).minus(1) : this;
1326
+ }
1327
+ /**
1328
+ * Returns a string representation of this DateTime formatted according to the specified format string.
1329
+ * **You may not want this.** See {@link DateTime#toLocaleString} for a more flexible formatting tool. For a table of tokens and their interpretations, see [here](https://moment.github.io/luxon/#/formatting?id=table-of-tokens).
1330
+ * Defaults to en-US if no locale has been specified, regardless of the system's locale.
1331
+ * @param {string} fmt - the format string
1332
+ * @param {Object} opts - opts to override the configuration options on this DateTime
1333
+ * @example DateTime.now().toFormat('yyyy LLL dd') //=> '2017 Apr 22'
1334
+ * @example DateTime.now().setLocale('fr').toFormat('yyyy LLL dd') //=> '2017 avr. 22'
1335
+ * @example DateTime.now().toFormat('yyyy LLL dd', { locale: "fr" }) //=> '2017 avr. 22'
1336
+ * @example DateTime.now().toFormat("HH 'hours and' mm 'minutes'") //=> '20 hours and 55 minutes'
1337
+ * @return {string}
1338
+ */
1339
+ toFormat(fmt, opts = {}) {
1340
+ return this.isValid ? Formatter.create(this.loc.redefaultToEN(opts)).formatDateTimeFromString(this, fmt) : INVALID;
1341
+ }
1342
+ /**
1343
+ * Returns a localized string representing this date. Accepts the same options as the Intl.DateTimeFormat constructor and any presets defined by Luxon, such as `DateTime.DATE_FULL` or `DateTime.TIME_SIMPLE`.
1344
+ * The exact behavior of this method is browser-specific, but in general it will return an appropriate representation
1345
+ * of the DateTime in the assigned locale.
1346
+ * Defaults to the system's locale if no locale has been specified
1347
+ * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat
1348
+ * @param formatOpts {Object} - Intl.DateTimeFormat constructor options and configuration options
1349
+ * @param {Object} opts - opts to override the configuration options on this DateTime
1350
+ * @example DateTime.now().toLocaleString(); //=> 4/20/2017
1351
+ * @example DateTime.now().setLocale('en-gb').toLocaleString(); //=> '20/04/2017'
1352
+ * @example DateTime.now().toLocaleString(DateTime.DATE_FULL); //=> 'April 20, 2017'
1353
+ * @example DateTime.now().toLocaleString(DateTime.DATE_FULL, { locale: 'fr' }); //=> '28 août 2022'
1354
+ * @example DateTime.now().toLocaleString(DateTime.TIME_SIMPLE); //=> '11:32 AM'
1355
+ * @example DateTime.now().toLocaleString(DateTime.DATETIME_SHORT); //=> '4/20/2017, 11:32 AM'
1356
+ * @example DateTime.now().toLocaleString({ weekday: 'long', month: 'long', day: '2-digit' }); //=> 'Thursday, April 20'
1357
+ * @example DateTime.now().toLocaleString({ weekday: 'short', month: 'short', day: '2-digit', hour: '2-digit', minute: '2-digit' }); //=> 'Thu, Apr 20, 11:27 AM'
1358
+ * @example DateTime.now().toLocaleString({ hour: '2-digit', minute: '2-digit', hourCycle: 'h23' }); //=> '11:32'
1359
+ * @return {string}
1360
+ */
1361
+ toLocaleString(formatOpts = DATE_SHORT, opts = {}) {
1362
+ return this.isValid ? Formatter.create(this.loc.clone(opts), formatOpts).formatDateTime(this) : INVALID;
1363
+ }
1364
+ /**
1365
+ * Returns an array of format "parts", meaning individual tokens along with metadata. This is allows callers to post-process individual sections of the formatted output.
1366
+ * Defaults to the system's locale if no locale has been specified
1367
+ * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DateTimeFormat/formatToParts
1368
+ * @param opts {Object} - Intl.DateTimeFormat constructor options, same as `toLocaleString`.
1369
+ * @example DateTime.now().toLocaleParts(); //=> [
1370
+ * //=> { type: 'day', value: '25' },
1371
+ * //=> { type: 'literal', value: '/' },
1372
+ * //=> { type: 'month', value: '05' },
1373
+ * //=> { type: 'literal', value: '/' },
1374
+ * //=> { type: 'year', value: '1982' }
1375
+ * //=> ]
1376
+ */
1377
+ toLocaleParts(opts = {}) {
1378
+ return this.isValid ? Formatter.create(this.loc.clone(opts), opts).formatDateTimeParts(this) : [];
1379
+ }
1380
+ /**
1381
+ * Returns an ISO 8601-compliant string representation of this DateTime
1382
+ * @param {Object} opts - options
1383
+ * @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0
1384
+ * @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0
1385
+ * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00'
1386
+ * @param {boolean} [opts.extendedZone=false] - add the time zone format extension
1387
+ * @param {string} [opts.format='extended'] - choose between the basic and extended format
1388
+ * @example DateTime.utc(1983, 5, 25).toISO() //=> '1982-05-25T00:00:00.000Z'
1389
+ * @example DateTime.now().toISO() //=> '2017-04-22T20:47:05.335-04:00'
1390
+ * @example DateTime.now().toISO({ includeOffset: false }) //=> '2017-04-22T20:47:05.335'
1391
+ * @example DateTime.now().toISO({ format: 'basic' }) //=> '20170422T204705.335-0400'
1392
+ * @return {string}
1393
+ */
1394
+ toISO({ format = "extended", suppressSeconds = false, suppressMilliseconds = false, includeOffset = true, extendedZone = false } = {}) {
1395
+ if (!this.isValid) return null;
1396
+ const ext = format === "extended";
1397
+ let c = toISODate(this, ext);
1398
+ c += "T";
1399
+ c += toISOTime(this, ext, suppressSeconds, suppressMilliseconds, includeOffset, extendedZone);
1400
+ return c;
1401
+ }
1402
+ /**
1403
+ * Returns an ISO 8601-compliant string representation of this DateTime's date component
1404
+ * @param {Object} opts - options
1405
+ * @param {string} [opts.format='extended'] - choose between the basic and extended format
1406
+ * @example DateTime.utc(1982, 5, 25).toISODate() //=> '1982-05-25'
1407
+ * @example DateTime.utc(1982, 5, 25).toISODate({ format: 'basic' }) //=> '19820525'
1408
+ * @return {string}
1409
+ */
1410
+ toISODate({ format = "extended" } = {}) {
1411
+ if (!this.isValid) return null;
1412
+ return toISODate(this, format === "extended");
1413
+ }
1414
+ /**
1415
+ * Returns an ISO 8601-compliant string representation of this DateTime's week date
1416
+ * @example DateTime.utc(1982, 5, 25).toISOWeekDate() //=> '1982-W21-2'
1417
+ * @return {string}
1418
+ */
1419
+ toISOWeekDate() {
1420
+ return toTechFormat(this, "kkkk-'W'WW-c");
1421
+ }
1422
+ /**
1423
+ * Returns an ISO 8601-compliant string representation of this DateTime's time component
1424
+ * @param {Object} opts - options
1425
+ * @param {boolean} [opts.suppressMilliseconds=false] - exclude milliseconds from the format if they're 0
1426
+ * @param {boolean} [opts.suppressSeconds=false] - exclude seconds from the format if they're 0
1427
+ * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00'
1428
+ * @param {boolean} [opts.extendedZone=true] - add the time zone format extension
1429
+ * @param {boolean} [opts.includePrefix=false] - include the `T` prefix
1430
+ * @param {string} [opts.format='extended'] - choose between the basic and extended format
1431
+ * @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime() //=> '07:34:19.361Z'
1432
+ * @example DateTime.utc().set({ hour: 7, minute: 34, seconds: 0, milliseconds: 0 }).toISOTime({ suppressSeconds: true }) //=> '07:34Z'
1433
+ * @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime({ format: 'basic' }) //=> '073419.361Z'
1434
+ * @example DateTime.utc().set({ hour: 7, minute: 34 }).toISOTime({ includePrefix: true }) //=> 'T07:34:19.361Z'
1435
+ * @return {string}
1436
+ */
1437
+ toISOTime({ suppressMilliseconds = false, suppressSeconds = false, includeOffset = true, includePrefix = false, extendedZone = false, format = "extended" } = {}) {
1438
+ if (!this.isValid) return null;
1439
+ return (includePrefix ? "T" : "") + toISOTime(this, format === "extended", suppressSeconds, suppressMilliseconds, includeOffset, extendedZone);
1440
+ }
1441
+ /**
1442
+ * Returns an RFC 2822-compatible string representation of this DateTime
1443
+ * @example DateTime.utc(2014, 7, 13).toRFC2822() //=> 'Sun, 13 Jul 2014 00:00:00 +0000'
1444
+ * @example DateTime.local(2014, 7, 13).toRFC2822() //=> 'Sun, 13 Jul 2014 00:00:00 -0400'
1445
+ * @return {string}
1446
+ */
1447
+ toRFC2822() {
1448
+ return toTechFormat(this, "EEE, dd LLL yyyy HH:mm:ss ZZZ", false);
1449
+ }
1450
+ /**
1451
+ * Returns a string representation of this DateTime appropriate for use in HTTP headers. The output is always expressed in GMT.
1452
+ * Specifically, the string conforms to RFC 1123.
1453
+ * @see https://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1
1454
+ * @example DateTime.utc(2014, 7, 13).toHTTP() //=> 'Sun, 13 Jul 2014 00:00:00 GMT'
1455
+ * @example DateTime.utc(2014, 7, 13, 19).toHTTP() //=> 'Sun, 13 Jul 2014 19:00:00 GMT'
1456
+ * @return {string}
1457
+ */
1458
+ toHTTP() {
1459
+ return toTechFormat(this.toUTC(), "EEE, dd LLL yyyy HH:mm:ss 'GMT'");
1460
+ }
1461
+ /**
1462
+ * Returns a string representation of this DateTime appropriate for use in SQL Date
1463
+ * @example DateTime.utc(2014, 7, 13).toSQLDate() //=> '2014-07-13'
1464
+ * @return {string}
1465
+ */
1466
+ toSQLDate() {
1467
+ if (!this.isValid) return null;
1468
+ return toISODate(this, true);
1469
+ }
1470
+ /**
1471
+ * Returns a string representation of this DateTime appropriate for use in SQL Time
1472
+ * @param {Object} opts - options
1473
+ * @param {boolean} [opts.includeZone=false] - include the zone, such as 'America/New_York'. Overrides includeOffset.
1474
+ * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00'
1475
+ * @param {boolean} [opts.includeOffsetSpace=true] - include the space between the time and the offset, such as '05:15:16.345 -04:00'
1476
+ * @example DateTime.utc().toSQL() //=> '05:15:16.345'
1477
+ * @example DateTime.now().toSQL() //=> '05:15:16.345 -04:00'
1478
+ * @example DateTime.now().toSQL({ includeOffset: false }) //=> '05:15:16.345'
1479
+ * @example DateTime.now().toSQL({ includeZone: false }) //=> '05:15:16.345 America/New_York'
1480
+ * @return {string}
1481
+ */
1482
+ toSQLTime({ includeOffset = true, includeZone = false, includeOffsetSpace = true } = {}) {
1483
+ let fmt = "HH:mm:ss.SSS";
1484
+ if (includeZone || includeOffset) {
1485
+ if (includeOffsetSpace) fmt += " ";
1486
+ if (includeZone) fmt += "z";
1487
+ else if (includeOffset) fmt += "ZZ";
1488
+ }
1489
+ return toTechFormat(this, fmt, true);
1490
+ }
1491
+ /**
1492
+ * Returns a string representation of this DateTime appropriate for use in SQL DateTime
1493
+ * @param {Object} opts - options
1494
+ * @param {boolean} [opts.includeZone=false] - include the zone, such as 'America/New_York'. Overrides includeOffset.
1495
+ * @param {boolean} [opts.includeOffset=true] - include the offset, such as 'Z' or '-04:00'
1496
+ * @param {boolean} [opts.includeOffsetSpace=true] - include the space between the time and the offset, such as '05:15:16.345 -04:00'
1497
+ * @example DateTime.utc(2014, 7, 13).toSQL() //=> '2014-07-13 00:00:00.000 Z'
1498
+ * @example DateTime.local(2014, 7, 13).toSQL() //=> '2014-07-13 00:00:00.000 -04:00'
1499
+ * @example DateTime.local(2014, 7, 13).toSQL({ includeOffset: false }) //=> '2014-07-13 00:00:00.000'
1500
+ * @example DateTime.local(2014, 7, 13).toSQL({ includeZone: true }) //=> '2014-07-13 00:00:00.000 America/New_York'
1501
+ * @return {string}
1502
+ */
1503
+ toSQL(opts = {}) {
1504
+ if (!this.isValid) return null;
1505
+ return `${this.toSQLDate()} ${this.toSQLTime(opts)}`;
1506
+ }
1507
+ /**
1508
+ * Returns a string representation of this DateTime appropriate for debugging
1509
+ * @return {string}
1510
+ */
1511
+ toString() {
1512
+ return this.isValid ? this.toISO() : INVALID;
1513
+ }
1514
+ /**
1515
+ * Returns a string representation of this DateTime appropriate for the REPL.
1516
+ * @return {string}
1517
+ */
1518
+ [Symbol.for("nodejs.util.inspect.custom")]() {
1519
+ if (this.isValid) return `DateTime { ts: ${this.toISO()}, zone: ${this.zone.name}, locale: ${this.locale} }`;
1520
+ else return `DateTime { Invalid, reason: ${this.invalidReason} }`;
1521
+ }
1522
+ /**
1523
+ * Returns the epoch milliseconds of this DateTime. Alias of {@link DateTime#toMillis}
1524
+ * @return {number}
1525
+ */
1526
+ valueOf() {
1527
+ return this.toMillis();
1528
+ }
1529
+ /**
1530
+ * Returns the epoch milliseconds of this DateTime.
1531
+ * @return {number}
1532
+ */
1533
+ toMillis() {
1534
+ return this.isValid ? this.ts : NaN;
1535
+ }
1536
+ /**
1537
+ * Returns the epoch seconds of this DateTime.
1538
+ * @return {number}
1539
+ */
1540
+ toSeconds() {
1541
+ return this.isValid ? this.ts / 1e3 : NaN;
1542
+ }
1543
+ /**
1544
+ * Returns the epoch seconds (as a whole number) of this DateTime.
1545
+ * @return {number}
1546
+ */
1547
+ toUnixInteger() {
1548
+ return this.isValid ? Math.floor(this.ts / 1e3) : NaN;
1549
+ }
1550
+ /**
1551
+ * Returns an ISO 8601 representation of this DateTime appropriate for use in JSON.
1552
+ * @return {string}
1553
+ */
1554
+ toJSON() {
1555
+ return this.toISO();
1556
+ }
1557
+ /**
1558
+ * Returns a BSON serializable equivalent to this DateTime.
1559
+ * @return {Date}
1560
+ */
1561
+ toBSON() {
1562
+ return this.toJSDate();
1563
+ }
1564
+ /**
1565
+ * Returns a JavaScript object with this DateTime's year, month, day, and so on.
1566
+ * @param opts - options for generating the object
1567
+ * @param {boolean} [opts.includeConfig=false] - include configuration attributes in the output
1568
+ * @example DateTime.now().toObject() //=> { year: 2017, month: 4, day: 22, hour: 20, minute: 49, second: 42, millisecond: 268 }
1569
+ * @return {Object}
1570
+ */
1571
+ toObject(opts = {}) {
1572
+ if (!this.isValid) return {};
1573
+ const base = { ...this.c };
1574
+ if (opts.includeConfig) {
1575
+ base.outputCalendar = this.outputCalendar;
1576
+ base.numberingSystem = this.loc.numberingSystem;
1577
+ base.locale = this.loc.locale;
1578
+ }
1579
+ return base;
1580
+ }
1581
+ /**
1582
+ * Returns a JavaScript Date equivalent to this DateTime.
1583
+ * @return {Date}
1584
+ */
1585
+ toJSDate() {
1586
+ return new Date(this.isValid ? this.ts : NaN);
1587
+ }
1588
+ /**
1589
+ * Return the difference between two DateTimes as a Duration.
1590
+ * @param {DateTime} otherDateTime - the DateTime to compare this one to
1591
+ * @param {string|string[]} [unit=['milliseconds']] - the unit or array of units (such as 'hours' or 'days') to include in the duration.
1592
+ * @param {Object} opts - options that affect the creation of the Duration
1593
+ * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use
1594
+ * @example
1595
+ * var i1 = DateTime.fromISO('1982-05-25T09:45'),
1596
+ * i2 = DateTime.fromISO('1983-10-14T10:30');
1597
+ * i2.diff(i1).toObject() //=> { milliseconds: 43807500000 }
1598
+ * i2.diff(i1, 'hours').toObject() //=> { hours: 12168.75 }
1599
+ * i2.diff(i1, ['months', 'days']).toObject() //=> { months: 16, days: 19.03125 }
1600
+ * i2.diff(i1, ['months', 'days', 'hours']).toObject() //=> { months: 16, days: 19, hours: 0.75 }
1601
+ * @return {Duration}
1602
+ */
1603
+ diff(otherDateTime, unit = "milliseconds", opts = {}) {
1604
+ if (!this.isValid || !otherDateTime.isValid) return Duration.invalid("created by diffing an invalid DateTime");
1605
+ const durOpts = {
1606
+ locale: this.locale,
1607
+ numberingSystem: this.numberingSystem,
1608
+ ...opts
1609
+ };
1610
+ const units = maybeArray(unit).map(Duration.normalizeUnit), otherIsLater = otherDateTime.valueOf() > this.valueOf(), diffed = diff_default(otherIsLater ? this : otherDateTime, otherIsLater ? otherDateTime : this, units, durOpts);
1611
+ return otherIsLater ? diffed.negate() : diffed;
1612
+ }
1613
+ /**
1614
+ * Return the difference between this DateTime and right now.
1615
+ * See {@link DateTime#diff}
1616
+ * @param {string|string[]} [unit=['milliseconds']] - the unit or units units (such as 'hours' or 'days') to include in the duration
1617
+ * @param {Object} opts - options that affect the creation of the Duration
1618
+ * @param {string} [opts.conversionAccuracy='casual'] - the conversion system to use
1619
+ * @return {Duration}
1620
+ */
1621
+ diffNow(unit = "milliseconds", opts = {}) {
1622
+ return this.diff(DateTime.now(), unit, opts);
1623
+ }
1624
+ /**
1625
+ * Return an Interval spanning between this DateTime and another DateTime
1626
+ * @param {DateTime} otherDateTime - the other end point of the Interval
1627
+ * @return {Interval}
1628
+ */
1629
+ until(otherDateTime) {
1630
+ return this.isValid ? Interval.fromDateTimes(this, otherDateTime) : this;
1631
+ }
1632
+ /**
1633
+ * Return whether this DateTime is in the same unit of time as another DateTime.
1634
+ * Higher-order units must also be identical for this function to return `true`.
1635
+ * Note that time zones are **ignored** in this comparison, which compares the **local** calendar time. Use {@link DateTime#setZone} to convert one of the dates if needed.
1636
+ * @param {DateTime} otherDateTime - the other DateTime
1637
+ * @param {string} unit - the unit of time to check sameness on
1638
+ * @param {Object} opts - options
1639
+ * @param {boolean} [opts.useLocaleWeeks=false] - If true, use weeks based on the locale, i.e. use the locale-dependent start of the week; only the locale of this DateTime is used
1640
+ * @example DateTime.now().hasSame(otherDT, 'day'); //~> true if otherDT is in the same current calendar day
1641
+ * @return {boolean}
1642
+ */
1643
+ hasSame(otherDateTime, unit, opts) {
1644
+ if (!this.isValid) return false;
1645
+ const inputMs = otherDateTime.valueOf();
1646
+ const adjustedToZone = this.setZone(otherDateTime.zone, { keepLocalTime: true });
1647
+ return adjustedToZone.startOf(unit, opts) <= inputMs && inputMs <= adjustedToZone.endOf(unit, opts);
1648
+ }
1649
+ /**
1650
+ * Equality check
1651
+ * Two DateTimes are equal if and only if they represent the same millisecond, have the same zone and location, and are both valid.
1652
+ * To compare just the millisecond values, use `+dt1 === +dt2`.
1653
+ * @param {DateTime} other - the other DateTime
1654
+ * @return {boolean}
1655
+ */
1656
+ equals(other) {
1657
+ return this.isValid && other.isValid && this.valueOf() === other.valueOf() && this.zone.equals(other.zone) && this.loc.equals(other.loc);
1658
+ }
1659
+ /**
1660
+ * Returns a string representation of a this time relative to now, such as "in two days". Can only internationalize if your
1661
+ * platform supports Intl.RelativeTimeFormat. Rounds down by default.
1662
+ * @param {Object} options - options that affect the output
1663
+ * @param {DateTime} [options.base=DateTime.now()] - the DateTime to use as the basis to which this time is compared. Defaults to now.
1664
+ * @param {string} [options.style="long"] - the style of units, must be "long", "short", or "narrow"
1665
+ * @param {string|string[]} options.unit - use a specific unit or array of units; if omitted, or an array, the method will pick the best unit. Use an array or one of "years", "quarters", "months", "weeks", "days", "hours", "minutes", or "seconds"
1666
+ * @param {boolean} [options.round=true] - whether to round the numbers in the output.
1667
+ * @param {number} [options.padding=0] - padding in milliseconds. This allows you to round up the result if it fits inside the threshold. Don't use in combination with {round: false} because the decimal output will include the padding.
1668
+ * @param {string} options.locale - override the locale of this DateTime
1669
+ * @param {string} options.numberingSystem - override the numberingSystem of this DateTime. The Intl system may choose not to honor this
1670
+ * @example DateTime.now().plus({ days: 1 }).toRelative() //=> "in 1 day"
1671
+ * @example DateTime.now().setLocale("es").toRelative({ days: 1 }) //=> "dentro de 1 día"
1672
+ * @example DateTime.now().plus({ days: 1 }).toRelative({ locale: "fr" }) //=> "dans 23 heures"
1673
+ * @example DateTime.now().minus({ days: 2 }).toRelative() //=> "2 days ago"
1674
+ * @example DateTime.now().minus({ days: 2 }).toRelative({ unit: "hours" }) //=> "48 hours ago"
1675
+ * @example DateTime.now().minus({ hours: 36 }).toRelative({ round: false }) //=> "1.5 days ago"
1676
+ */
1677
+ toRelative(options = {}) {
1678
+ if (!this.isValid) return null;
1679
+ const base = options.base || DateTime.fromObject({}, { zone: this.zone }), padding = options.padding ? this < base ? -options.padding : options.padding : 0;
1680
+ let units = [
1681
+ "years",
1682
+ "months",
1683
+ "days",
1684
+ "hours",
1685
+ "minutes",
1686
+ "seconds"
1687
+ ];
1688
+ let unit = options.unit;
1689
+ if (Array.isArray(options.unit)) {
1690
+ units = options.unit;
1691
+ unit = void 0;
1692
+ }
1693
+ return diffRelative(base, this.plus(padding), {
1694
+ ...options,
1695
+ numeric: "always",
1696
+ units,
1697
+ unit
1698
+ });
1699
+ }
1700
+ /**
1701
+ * Returns a string representation of this date relative to today, such as "yesterday" or "next month".
1702
+ * Only internationalizes on platforms that supports Intl.RelativeTimeFormat.
1703
+ * @param {Object} options - options that affect the output
1704
+ * @param {DateTime} [options.base=DateTime.now()] - the DateTime to use as the basis to which this time is compared. Defaults to now.
1705
+ * @param {string} options.locale - override the locale of this DateTime
1706
+ * @param {string} options.unit - use a specific unit; if omitted, the method will pick the unit. Use one of "years", "quarters", "months", "weeks", or "days"
1707
+ * @param {string} options.numberingSystem - override the numberingSystem of this DateTime. The Intl system may choose not to honor this
1708
+ * @example DateTime.now().plus({ days: 1 }).toRelativeCalendar() //=> "tomorrow"
1709
+ * @example DateTime.now().setLocale("es").plus({ days: 1 }).toRelative() //=> ""mañana"
1710
+ * @example DateTime.now().plus({ days: 1 }).toRelativeCalendar({ locale: "fr" }) //=> "demain"
1711
+ * @example DateTime.now().minus({ days: 2 }).toRelativeCalendar() //=> "2 days ago"
1712
+ */
1713
+ toRelativeCalendar(options = {}) {
1714
+ if (!this.isValid) return null;
1715
+ return diffRelative(options.base || DateTime.fromObject({}, { zone: this.zone }), this, {
1716
+ ...options,
1717
+ numeric: "auto",
1718
+ units: [
1719
+ "years",
1720
+ "months",
1721
+ "days"
1722
+ ],
1723
+ calendary: true
1724
+ });
1725
+ }
1726
+ /**
1727
+ * Return the min of several date times
1728
+ * @param {...DateTime} dateTimes - the DateTimes from which to choose the minimum
1729
+ * @return {DateTime} the min DateTime, or undefined if called with no argument
1730
+ */
1731
+ static min(...dateTimes) {
1732
+ if (!dateTimes.every(DateTime.isDateTime)) throw new InvalidArgumentError("min requires all arguments be DateTimes");
1733
+ return bestBy(dateTimes, (i) => i.valueOf(), Math.min);
1734
+ }
1735
+ /**
1736
+ * Return the max of several date times
1737
+ * @param {...DateTime} dateTimes - the DateTimes from which to choose the maximum
1738
+ * @return {DateTime} the max DateTime, or undefined if called with no argument
1739
+ */
1740
+ static max(...dateTimes) {
1741
+ if (!dateTimes.every(DateTime.isDateTime)) throw new InvalidArgumentError("max requires all arguments be DateTimes");
1742
+ return bestBy(dateTimes, (i) => i.valueOf(), Math.max);
1743
+ }
1744
+ /**
1745
+ * Explain how a string would be parsed by fromFormat()
1746
+ * @param {string} text - the string to parse
1747
+ * @param {string} fmt - the format the string is expected to be in (see description)
1748
+ * @param {Object} options - options taken by fromFormat()
1749
+ * @return {Object}
1750
+ */
1751
+ static fromFormatExplain(text, fmt, options = {}) {
1752
+ const { locale = null, numberingSystem = null } = options;
1753
+ return explainFromTokens(Locale.fromOpts({
1754
+ locale,
1755
+ numberingSystem,
1756
+ defaultToEN: true
1757
+ }), text, fmt);
1758
+ }
1759
+ /**
1760
+ * @deprecated use fromFormatExplain instead
1761
+ */
1762
+ static fromStringExplain(text, fmt, options = {}) {
1763
+ return DateTime.fromFormatExplain(text, fmt, options);
1764
+ }
1765
+ /**
1766
+ * Build a parser for `fmt` using the given locale. This parser can be passed
1767
+ * to {@link DateTime.fromFormatParser} to a parse a date in this format. This
1768
+ * can be used to optimize cases where many dates need to be parsed in a
1769
+ * specific format.
1770
+ *
1771
+ * @param {String} fmt - the format the string is expected to be in (see
1772
+ * description)
1773
+ * @param {Object} options - options used to set locale and numberingSystem
1774
+ * for parser
1775
+ * @returns {TokenParser} - opaque object to be used
1776
+ */
1777
+ static buildFormatParser(fmt, options = {}) {
1778
+ const { locale = null, numberingSystem = null } = options;
1779
+ return new TokenParser(Locale.fromOpts({
1780
+ locale,
1781
+ numberingSystem,
1782
+ defaultToEN: true
1783
+ }), fmt);
1784
+ }
1785
+ /**
1786
+ * Create a DateTime from an input string and format parser.
1787
+ *
1788
+ * The format parser must have been created with the same locale as this call.
1789
+ *
1790
+ * @param {String} text - the string to parse
1791
+ * @param {TokenParser} formatParser - parser from {@link DateTime.buildFormatParser}
1792
+ * @param {Object} opts - options taken by fromFormat()
1793
+ * @returns {DateTime}
1794
+ */
1795
+ static fromFormatParser(text, formatParser, opts = {}) {
1796
+ if (isUndefined(text) || isUndefined(formatParser)) throw new InvalidArgumentError("fromFormatParser requires an input string and a format parser");
1797
+ const { locale = null, numberingSystem = null } = opts, localeToUse = Locale.fromOpts({
1798
+ locale,
1799
+ numberingSystem,
1800
+ defaultToEN: true
1801
+ });
1802
+ if (!localeToUse.equals(formatParser.locale)) throw new InvalidArgumentError(`fromFormatParser called with a locale of ${localeToUse}, but the format parser was created for ${formatParser.locale}`);
1803
+ const { result, zone, specificOffset, invalidReason } = formatParser.explainFromTokens(text);
1804
+ if (invalidReason) return DateTime.invalid(invalidReason);
1805
+ else return parseDataToDateTime(result, zone, opts, `format ${formatParser.format}`, text, specificOffset);
1806
+ }
1807
+ /**
1808
+ * {@link DateTime#toLocaleString} format like 10/14/1983
1809
+ * @type {Object}
1810
+ */
1811
+ static get DATE_SHORT() {
1812
+ return DATE_SHORT;
1813
+ }
1814
+ /**
1815
+ * {@link DateTime#toLocaleString} format like 'Oct 14, 1983'
1816
+ * @type {Object}
1817
+ */
1818
+ static get DATE_MED() {
1819
+ return DATE_MED;
1820
+ }
1821
+ /**
1822
+ * {@link DateTime#toLocaleString} format like 'Fri, Oct 14, 1983'
1823
+ * @type {Object}
1824
+ */
1825
+ static get DATE_MED_WITH_WEEKDAY() {
1826
+ return DATE_MED_WITH_WEEKDAY;
1827
+ }
1828
+ /**
1829
+ * {@link DateTime#toLocaleString} format like 'October 14, 1983'
1830
+ * @type {Object}
1831
+ */
1832
+ static get DATE_FULL() {
1833
+ return DATE_FULL;
1834
+ }
1835
+ /**
1836
+ * {@link DateTime#toLocaleString} format like 'Tuesday, October 14, 1983'
1837
+ * @type {Object}
1838
+ */
1839
+ static get DATE_HUGE() {
1840
+ return DATE_HUGE;
1841
+ }
1842
+ /**
1843
+ * {@link DateTime#toLocaleString} format like '09:30 AM'. Only 12-hour if the locale is.
1844
+ * @type {Object}
1845
+ */
1846
+ static get TIME_SIMPLE() {
1847
+ return TIME_SIMPLE;
1848
+ }
1849
+ /**
1850
+ * {@link DateTime#toLocaleString} format like '09:30:23 AM'. Only 12-hour if the locale is.
1851
+ * @type {Object}
1852
+ */
1853
+ static get TIME_WITH_SECONDS() {
1854
+ return TIME_WITH_SECONDS;
1855
+ }
1856
+ /**
1857
+ * {@link DateTime#toLocaleString} format like '09:30:23 AM EDT'. Only 12-hour if the locale is.
1858
+ * @type {Object}
1859
+ */
1860
+ static get TIME_WITH_SHORT_OFFSET() {
1861
+ return TIME_WITH_SHORT_OFFSET;
1862
+ }
1863
+ /**
1864
+ * {@link DateTime#toLocaleString} format like '09:30:23 AM Eastern Daylight Time'. Only 12-hour if the locale is.
1865
+ * @type {Object}
1866
+ */
1867
+ static get TIME_WITH_LONG_OFFSET() {
1868
+ return TIME_WITH_LONG_OFFSET;
1869
+ }
1870
+ /**
1871
+ * {@link DateTime#toLocaleString} format like '09:30', always 24-hour.
1872
+ * @type {Object}
1873
+ */
1874
+ static get TIME_24_SIMPLE() {
1875
+ return TIME_24_SIMPLE;
1876
+ }
1877
+ /**
1878
+ * {@link DateTime#toLocaleString} format like '09:30:23', always 24-hour.
1879
+ * @type {Object}
1880
+ */
1881
+ static get TIME_24_WITH_SECONDS() {
1882
+ return TIME_24_WITH_SECONDS;
1883
+ }
1884
+ /**
1885
+ * {@link DateTime#toLocaleString} format like '09:30:23 EDT', always 24-hour.
1886
+ * @type {Object}
1887
+ */
1888
+ static get TIME_24_WITH_SHORT_OFFSET() {
1889
+ return TIME_24_WITH_SHORT_OFFSET;
1890
+ }
1891
+ /**
1892
+ * {@link DateTime#toLocaleString} format like '09:30:23 Eastern Daylight Time', always 24-hour.
1893
+ * @type {Object}
1894
+ */
1895
+ static get TIME_24_WITH_LONG_OFFSET() {
1896
+ return TIME_24_WITH_LONG_OFFSET;
1897
+ }
1898
+ /**
1899
+ * {@link DateTime#toLocaleString} format like '10/14/1983, 9:30 AM'. Only 12-hour if the locale is.
1900
+ * @type {Object}
1901
+ */
1902
+ static get DATETIME_SHORT() {
1903
+ return DATETIME_SHORT;
1904
+ }
1905
+ /**
1906
+ * {@link DateTime#toLocaleString} format like '10/14/1983, 9:30:33 AM'. Only 12-hour if the locale is.
1907
+ * @type {Object}
1908
+ */
1909
+ static get DATETIME_SHORT_WITH_SECONDS() {
1910
+ return DATETIME_SHORT_WITH_SECONDS;
1911
+ }
1912
+ /**
1913
+ * {@link DateTime#toLocaleString} format like 'Oct 14, 1983, 9:30 AM'. Only 12-hour if the locale is.
1914
+ * @type {Object}
1915
+ */
1916
+ static get DATETIME_MED() {
1917
+ return DATETIME_MED;
1918
+ }
1919
+ /**
1920
+ * {@link DateTime#toLocaleString} format like 'Oct 14, 1983, 9:30:33 AM'. Only 12-hour if the locale is.
1921
+ * @type {Object}
1922
+ */
1923
+ static get DATETIME_MED_WITH_SECONDS() {
1924
+ return DATETIME_MED_WITH_SECONDS;
1925
+ }
1926
+ /**
1927
+ * {@link DateTime#toLocaleString} format like 'Fri, 14 Oct 1983, 9:30 AM'. Only 12-hour if the locale is.
1928
+ * @type {Object}
1929
+ */
1930
+ static get DATETIME_MED_WITH_WEEKDAY() {
1931
+ return DATETIME_MED_WITH_WEEKDAY;
1932
+ }
1933
+ /**
1934
+ * {@link DateTime#toLocaleString} format like 'October 14, 1983, 9:30 AM EDT'. Only 12-hour if the locale is.
1935
+ * @type {Object}
1936
+ */
1937
+ static get DATETIME_FULL() {
1938
+ return DATETIME_FULL;
1939
+ }
1940
+ /**
1941
+ * {@link DateTime#toLocaleString} format like 'October 14, 1983, 9:30:33 AM EDT'. Only 12-hour if the locale is.
1942
+ * @type {Object}
1943
+ */
1944
+ static get DATETIME_FULL_WITH_SECONDS() {
1945
+ return DATETIME_FULL_WITH_SECONDS;
1946
+ }
1947
+ /**
1948
+ * {@link DateTime#toLocaleString} format like 'Friday, October 14, 1983, 9:30 AM Eastern Daylight Time'. Only 12-hour if the locale is.
1949
+ * @type {Object}
1950
+ */
1951
+ static get DATETIME_HUGE() {
1952
+ return DATETIME_HUGE;
1953
+ }
1954
+ /**
1955
+ * {@link DateTime#toLocaleString} format like 'Friday, October 14, 1983, 9:30:33 AM Eastern Daylight Time'. Only 12-hour if the locale is.
1956
+ * @type {Object}
1957
+ */
1958
+ static get DATETIME_HUGE_WITH_SECONDS() {
1959
+ return DATETIME_HUGE_WITH_SECONDS;
1960
+ }
1961
+ };
1962
+ /**
1963
+ * @private
1964
+ */
1965
+ function friendlyDateTime(dateTimeish) {
1966
+ if (DateTime.isDateTime(dateTimeish)) return dateTimeish;
1967
+ else if (dateTimeish && dateTimeish.valueOf && isNumber(dateTimeish.valueOf())) return DateTime.fromJSDate(dateTimeish);
1968
+ else if (dateTimeish && typeof dateTimeish === "object") return DateTime.fromObject(dateTimeish);
1969
+ else throw new InvalidArgumentError(`Unknown datetime argument: ${dateTimeish}, of type ${typeof dateTimeish}`);
1970
+ }
1971
+
1972
+ //#endregion
1973
+ export { DateTime as default, friendlyDateTime };
1974
+ //# sourceMappingURL=datetime.mjs.map