@attocash/commons-js 5.3.0 → 6.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1439) hide show
  1. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +73 -64
  2. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -1
  3. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +20 -24
  4. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -1
  5. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +46 -46
  6. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -1
  7. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +307 -115
  8. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -1
  9. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +152 -71
  10. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -1
  11. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +219 -98
  12. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -1
  13. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +76 -27
  14. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -1
  15. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs +49 -0
  16. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs.map +1 -0
  17. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +287 -101
  18. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -1
  19. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +94 -155
  20. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -1
  21. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs +139 -0
  22. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs.map +1 -0
  23. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs +79 -0
  24. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs.map +1 -0
  25. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +13 -6
  26. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -1
  27. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +61 -40
  28. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -1
  29. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +185 -543
  30. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -1
  31. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +126 -113
  32. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -1
  33. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +188 -177
  34. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -1
  35. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +285 -198
  36. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -1
  37. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs +400 -0
  38. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs.map +1 -0
  39. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs +29 -0
  40. package/{ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs.map → Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs.map} +1 -1
  41. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs +147 -0
  42. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs.map +1 -0
  43. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs +412 -0
  44. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs.map +1 -0
  45. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs +37 -0
  46. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs.map +1 -0
  47. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs +102 -0
  48. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs.map +1 -0
  49. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs +237 -0
  50. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs.map +1 -0
  51. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs +47 -0
  52. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs.map +1 -0
  53. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +14 -11
  54. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -1
  55. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +77 -162
  56. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -1
  57. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +50 -48
  58. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -1
  59. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +169 -174
  60. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -1
  61. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +16 -16
  62. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -1
  63. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +115 -12
  64. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -1
  65. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +117 -63
  66. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -1
  67. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +46 -46
  68. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -1
  69. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +4 -4
  70. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -1
  71. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +89 -89
  72. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -1
  73. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +128 -371
  74. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -1
  75. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +20 -19
  76. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -1
  77. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs +51 -0
  78. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs.map +1 -0
  79. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +0 -35
  80. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -1
  81. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +112 -123
  82. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -1
  83. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +22 -22
  84. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -1
  85. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +22 -22
  86. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -1
  87. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +22 -22
  88. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -1
  89. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +64 -64
  90. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -1
  91. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs +53 -0
  92. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs.map +1 -0
  93. package/commons-commons-core/cash/atto/commons/{AccountUpdate.js.export.d.ts → AccountUpdate.js.export.d.mts} +1 -1
  94. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +1 -1
  95. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +19 -22
  96. package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -1
  97. package/commons-commons-core/cash/atto/commons/{AttoAccount.export.d.ts → AttoAccount.export.d.mts} +14 -10
  98. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +3 -2
  99. package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -1
  100. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +165 -175
  101. package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -1
  102. package/commons-commons-core/cash/atto/commons/{AttoAccountEntry.export.d.ts → AttoAccountEntry.export.d.mts} +10 -6
  103. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +3 -2
  104. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -1
  105. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +164 -183
  106. package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -1
  107. package/commons-commons-core/cash/atto/commons/{AttoAddress.export.d.ts → AttoAddress.export.d.mts} +9 -4
  108. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +5 -2
  109. package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -1
  110. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +83 -41
  111. package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -1
  112. package/commons-commons-core/cash/atto/commons/{AttoAlgorithm.export.d.ts → AttoAlgorithm.export.d.mts} +5 -2
  113. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +4 -3
  114. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -1
  115. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +21 -21
  116. package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -1
  117. package/commons-commons-core/cash/atto/commons/{AttoAmount.export.d.ts → AttoAmount.export.d.mts} +11 -6
  118. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +9 -4
  119. package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -1
  120. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +83 -69
  121. package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -1
  122. package/commons-commons-core/cash/atto/commons/{AttoBlock.export.d.ts → AttoBlock.export.d.mts} +60 -25
  123. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +12 -11
  124. package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -1
  125. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +1131 -1180
  126. package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -1
  127. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +16 -16
  128. package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -1
  129. package/commons-commons-core/cash/atto/commons/{AttoChallenge.export.d.ts → AttoChallenge.export.d.mts} +5 -1
  130. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +3 -2
  131. package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -1
  132. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +16 -16
  133. package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -1
  134. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.d.mts +10 -0
  135. package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs +13 -0
  136. package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs +72 -0
  137. package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs.map +1 -0
  138. package/commons-commons-core/cash/atto/commons/{AttoHash.export.d.ts → AttoHash.export.d.mts} +6 -2
  139. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +3 -2
  140. package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -1
  141. package/commons-commons-core/cash/atto/commons/AttoHash.mjs +35 -35
  142. package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -1
  143. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +1 -1
  144. package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -1
  145. package/commons-commons-core/cash/atto/commons/{AttoHeight.export.d.ts → AttoHeight.export.d.mts} +10 -5
  146. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +5 -2
  147. package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -1
  148. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +54 -47
  149. package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -1
  150. package/commons-commons-core/cash/atto/commons/AttoInstant.export.d.mts +33 -0
  151. package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs +20 -0
  152. package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs.map +1 -0
  153. package/commons-commons-core/cash/atto/commons/AttoInstant.mjs +189 -0
  154. package/commons-commons-core/cash/atto/commons/AttoInstant.mjs.map +1 -0
  155. package/commons-commons-core/cash/atto/commons/AttoJob.mjs +26 -0
  156. package/commons-commons-core/cash/atto/commons/AttoJob.mjs.map +1 -0
  157. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.d.mts +16 -0
  158. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs +17 -0
  159. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs.map +1 -0
  160. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs +82 -0
  161. package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs.map +1 -0
  162. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.d.mts +33 -0
  163. package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs +22 -0
  164. package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs +23 -0
  165. package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs.map +1 -0
  166. package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs +184 -0
  167. package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs.map +1 -0
  168. package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs +61 -0
  169. package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs.map +1 -0
  170. package/commons-commons-core/cash/atto/commons/{AttoNetwork.export.d.ts → AttoNetwork.export.d.mts} +8 -4
  171. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +8 -7
  172. package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -1
  173. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +30 -30
  174. package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -1
  175. package/commons-commons-core/cash/atto/commons/{AttoPrivateKey.export.d.ts → AttoPrivateKey.export.d.mts} +7 -3
  176. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +5 -2
  177. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -1
  178. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +8 -8
  179. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -1
  180. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +38 -31
  181. package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -1
  182. package/commons-commons-core/cash/atto/commons/{AttoPublicKey.export.d.ts → AttoPublicKey.export.d.mts} +5 -1
  183. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +3 -2
  184. package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -1
  185. package/{ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.ts → commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.d.mts} +1 -2
  186. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs +12 -0
  187. package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -1
  188. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +29 -29
  189. package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -1
  190. package/commons-commons-core/cash/atto/commons/{AttoReceivable.export.d.ts → AttoReceivable.export.d.mts} +9 -4
  191. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +3 -2
  192. package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -1
  193. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +148 -133
  194. package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -1
  195. package/{commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.d.ts → commons-commons-core/cash/atto/commons/AttoSeed.js.export.d.mts} +1 -1
  196. package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs +12 -0
  197. package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs +91 -0
  198. package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs.map +1 -0
  199. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +29 -4
  200. package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -1
  201. package/commons-commons-core/cash/atto/commons/{AttoSignature.export.d.ts → AttoSignature.export.d.mts} +5 -1
  202. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +3 -2
  203. package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -1
  204. package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -1
  205. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +30 -30
  206. package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -1
  207. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +23 -441
  208. package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -1
  209. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +19 -135
  210. package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -1
  211. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +7 -7
  212. package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -1
  213. package/commons-commons-core/cash/atto/commons/{AttoTransaction.export.d.ts → AttoTransaction.export.d.mts} +9 -3
  214. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +3 -2
  215. package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -1
  216. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +105 -92
  217. package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -1
  218. package/commons-commons-core/cash/atto/commons/AttoValidation.mjs +63 -0
  219. package/commons-commons-core/cash/atto/commons/AttoValidation.mjs.map +1 -0
  220. package/commons-commons-core/cash/atto/commons/{AttoVersion.export.d.ts → AttoVersion.export.d.mts} +5 -1
  221. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +3 -2
  222. package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -1
  223. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +17 -18
  224. package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -1
  225. package/commons-commons-core/cash/atto/commons/{AttoVote.export.d.ts → AttoVote.export.d.mts} +9 -5
  226. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +3 -2
  227. package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -1
  228. package/commons-commons-core/cash/atto/commons/AttoVote.mjs +105 -111
  229. package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -1
  230. package/commons-commons-core/cash/atto/commons/{AttoWork.export.d.ts → AttoWork.export.d.mts} +5 -2
  231. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +3 -2
  232. package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -1
  233. package/commons-commons-core/cash/atto/commons/AttoWork.mjs +68 -82
  234. package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -1
  235. package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs +147 -0
  236. package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs.map +1 -0
  237. package/commons-commons-core/cash/atto/commons/Extensions.mjs +44 -10
  238. package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -1
  239. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +14 -14
  240. package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -1
  241. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +1 -1
  242. package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -1
  243. package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs +37 -0
  244. package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs.map +1 -0
  245. package/commons-commons-core.mjs +6 -1
  246. package/commons-commons-core.mjs.map +1 -1
  247. package/commons-commons-js.mjs +0 -1
  248. package/commons-commons-js.mjs.map +1 -1
  249. package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs +29 -0
  250. package/{kotlin-kotlin-stdlib/kotlin/Number.mjs.map → commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs.map} +1 -1
  251. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.d.mts +22 -0
  252. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs +13 -0
  253. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs.map +1 -0
  254. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs +1248 -0
  255. package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs.map +1 -0
  256. package/commons-commons-node/cash/atto/commons/node/{AttoNodeOperations.export.d.ts → AttoNodeOperations.export.d.mts} +25 -9
  257. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +6 -5
  258. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -1
  259. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +215 -324
  260. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -1
  261. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs +20 -20
  262. package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs.map +1 -1
  263. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs +66 -0
  264. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs.map +1 -0
  265. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.d.mts +10 -0
  266. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs +13 -0
  267. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs.map +1 -0
  268. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs +189 -0
  269. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs.map +1 -0
  270. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.d.mts +11 -0
  271. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs +13 -0
  272. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs.map +1 -0
  273. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs +97 -0
  274. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs.map +1 -0
  275. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs +251 -0
  276. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs.map +1 -0
  277. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.d.mts +13 -0
  278. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs +13 -0
  279. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs.map +1 -0
  280. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs +280 -0
  281. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs.map +1 -0
  282. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.d.mts +10 -0
  283. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs +13 -0
  284. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs.map +1 -0
  285. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs +33 -0
  286. package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs.map +1 -0
  287. package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs +339 -0
  288. package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs.map +1 -0
  289. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs +66 -0
  290. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs.map +1 -0
  291. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.d.mts +10 -0
  292. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs +13 -0
  293. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs.map +1 -0
  294. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs +189 -0
  295. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs.map +1 -0
  296. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.d.mts +11 -0
  297. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs +13 -0
  298. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs.map +1 -0
  299. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs +97 -0
  300. package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs.map +1 -0
  301. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.d.mts +12 -0
  302. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs +13 -0
  303. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs +75 -0
  304. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs.map +1 -0
  305. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs +2292 -0
  306. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs.map +1 -0
  307. package/commons-commons-node-remote.mjs +1 -1
  308. package/commons-commons-node.mjs +7 -0
  309. package/commons-commons-node.mjs.map +1 -1
  310. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWallet.mjs +987 -0
  311. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWallet.mjs.map +1 -0
  312. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.d.mts +24 -0
  313. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.mjs +13 -0
  314. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.mjs.map +1 -0
  315. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.mjs +440 -0
  316. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.mjs.map +1 -0
  317. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.export.d.mts +8 -0
  318. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.export.mjs +4 -0
  319. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.d.mts +13 -0
  320. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.mjs +13 -0
  321. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.mjs.map +1 -0
  322. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.mjs +147 -0
  323. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.mjs.map +1 -0
  324. package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs → commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.mjs} +7 -12
  325. package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.mjs.map +1 -0
  326. package/commons-commons-wallet.mjs +8 -0
  327. package/{commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs.map → commons-commons-wallet.mjs.map} +1 -1
  328. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +5 -21
  329. package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -1
  330. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.d.mts +13 -0
  331. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs +13 -0
  332. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs.map +1 -0
  333. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs +124 -0
  334. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs.map +1 -0
  335. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs +348 -0
  336. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs.map +1 -0
  337. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +95 -143
  338. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -1
  339. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.d.mts +15 -0
  340. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs +13 -0
  341. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs.map +1 -0
  342. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs +111 -0
  343. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs.map +1 -0
  344. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +149 -260
  345. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -1
  346. package/commons-commons-worker-remote.mjs +1 -1
  347. package/commons-commons-worker.mjs +3 -0
  348. package/commons-commons-worker.mjs.map +1 -1
  349. package/index.d.ts +1 -0
  350. package/index.mjs +1 -0
  351. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +2 -2
  352. package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -1
  353. package/kotlin-kotlin-stdlib/kotlin/Char.mjs +18 -18
  354. package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -1
  355. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +28 -28
  356. package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -1
  357. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +10 -10
  358. package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -1
  359. package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs +33 -0
  360. package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs.map +1 -0
  361. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +10 -10
  362. package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -1
  363. package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -1
  364. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +27 -19
  365. package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -1
  366. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +9 -136
  367. package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -1
  368. package/kotlin-kotlin-stdlib/kotlin/Result.mjs +11 -12
  369. package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -1
  370. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +4 -4
  371. package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -1
  372. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +21 -24
  373. package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -1
  374. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +12 -12
  375. package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -1
  376. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +50 -33
  377. package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -1
  378. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +15 -15
  379. package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -1
  380. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +50 -33
  381. package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -1
  382. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +14 -15
  383. package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -1
  384. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +50 -33
  385. package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -1
  386. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +12 -12
  387. package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -1
  388. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +50 -33
  389. package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -1
  390. package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -1
  391. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +54 -41
  392. package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -1
  393. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +15 -17
  394. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -1
  395. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +98 -71
  396. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -1
  397. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +81 -80
  398. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -1
  399. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +51 -17
  400. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -1
  401. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +107 -82
  402. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -1
  403. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +35 -35
  404. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -1
  405. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +4 -4
  406. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -1
  407. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +11 -11
  408. package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -1
  409. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +264 -219
  410. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -1
  411. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +1 -1
  412. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -1
  413. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +101 -74
  414. package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -1
  415. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +1 -3
  416. package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -1
  417. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.d.mts +42 -0
  418. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs +20 -0
  419. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs.map +1 -0
  420. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +86 -17
  421. package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -1
  422. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +125 -99
  423. package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -1
  424. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +37 -37
  425. package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -1
  426. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +90 -70
  427. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -1
  428. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +64 -50
  429. package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -1
  430. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +31 -28
  431. package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -1
  432. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +7 -9
  433. package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -1
  434. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +267 -237
  435. package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -1
  436. package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +5 -5
  437. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +17 -17
  438. package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -1
  439. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +8 -8
  440. package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -1
  441. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +57 -11
  442. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -1
  443. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +11 -11
  444. package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -1
  445. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +4 -4
  446. package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -1
  447. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +135 -87
  448. package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -1
  449. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +42 -15
  450. package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -1
  451. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +6 -20
  452. package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -1
  453. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +22 -23
  454. package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -1
  455. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +1 -1
  456. package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -1
  457. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +165 -140
  458. package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -1
  459. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +67 -68
  460. package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -1
  461. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +262 -260
  462. package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -1
  463. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +4 -4
  464. package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -1
  465. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +13 -13
  466. package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -1
  467. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +33 -6
  468. package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -1
  469. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +16 -16
  470. package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -1
  471. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +5 -5
  472. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -1
  473. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs +266 -0
  474. package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs.map +1 -0
  475. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +27 -0
  476. package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -1
  477. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +3 -3
  478. package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -1
  479. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +5 -5
  480. package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -1
  481. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +10 -10
  482. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -1
  483. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +43 -44
  484. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -1
  485. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +9 -111
  486. package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -1
  487. package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs +199 -0
  488. package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs.map +1 -0
  489. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +5 -7
  490. package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -1
  491. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +18 -18
  492. package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -1
  493. package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +8 -8
  494. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +134 -107
  495. package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -1
  496. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +26 -18
  497. package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -1
  498. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +116 -116
  499. package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -1
  500. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +10 -5
  501. package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -1
  502. package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs +33 -0
  503. package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs.map +1 -0
  504. package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs +4 -0
  505. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +1 -21
  506. package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -1
  507. package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -1
  508. package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +1 -1
  509. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +11 -12
  510. package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -1
  511. package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -1
  512. package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -1
  513. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +4 -3
  514. package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -1
  515. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +58 -27
  516. package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -1
  517. package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -1
  518. package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs +22 -0
  519. package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs.map +1 -0
  520. package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs +258 -0
  521. package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs.map +1 -0
  522. package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs +246 -0
  523. package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs.map +1 -0
  524. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +26 -26
  525. package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -1
  526. package/kotlin-kotlin-stdlib/kotlin/js/json.mjs +25 -0
  527. package/kotlin-kotlin-stdlib/kotlin/js/json.mjs.map +1 -0
  528. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +4 -5
  529. package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -1
  530. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +3 -26
  531. package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -1
  532. package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -1
  533. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +20 -3
  534. package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -1
  535. package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -1
  536. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +1 -2
  537. package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -1
  538. package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -1
  539. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +14 -14
  540. package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -1
  541. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +14 -14
  542. package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -1
  543. package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -1
  544. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +105 -13
  545. package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -1
  546. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +38 -38
  547. package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -1
  548. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +35 -103
  549. package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -1
  550. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +28 -62
  551. package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -1
  552. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +30 -93
  553. package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -1
  554. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +1 -1
  555. package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -1
  556. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +1 -1
  557. package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -1
  558. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +24 -24
  559. package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -1
  560. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +0 -10
  561. package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -1
  562. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +21 -25
  563. package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -1
  564. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +36 -67
  565. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -1
  566. package/kotlin-kotlin-stdlib/{KTypeHelpers.mjs → kotlin/reflect/js/internal/KTypeHelpers.mjs} +13 -13
  567. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs.map +1 -0
  568. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +17 -17
  569. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -1
  570. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +18 -16
  571. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -1
  572. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +58 -47
  573. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -1
  574. package/kotlin-kotlin-stdlib/{reflection.mjs → kotlin/reflect/js/internal/reflection.mjs} +7 -47
  575. package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs.map +1 -0
  576. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +43 -43
  577. package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -1
  578. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +33 -33
  579. package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -1
  580. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +18 -18
  581. package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -1
  582. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +1 -1
  583. package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -1
  584. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +6 -6
  585. package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -1
  586. package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +6 -6
  587. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +56 -49
  588. package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -1
  589. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +59 -59
  590. package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -1
  591. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +26 -28
  592. package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -1
  593. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +43 -43
  594. package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -1
  595. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +32 -22
  596. package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -1
  597. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +397 -412
  598. package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -1
  599. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +63 -61
  600. package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -1
  601. package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -1
  602. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +3 -3
  603. package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -1
  604. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +7 -7
  605. package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -1
  606. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +33 -33
  607. package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -1
  608. package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -1
  609. package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -1
  610. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +19 -19
  611. package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -1
  612. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +21 -21
  613. package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -1
  614. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +36 -36
  615. package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
  616. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +54 -54
  617. package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -1
  618. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +13 -13
  619. package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -1
  620. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +29 -29
  621. package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -1
  622. package/{Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime → kotlin-kotlin-stdlib/kotlin/time}/Clock.mjs +6 -6
  623. package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs.map +1 -0
  624. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +144 -118
  625. package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -1
  626. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +3 -3
  627. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -1
  628. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +15 -12
  629. package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -1
  630. package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +953 -0
  631. package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs.map +1 -0
  632. package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs +16 -0
  633. package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs.map +1 -0
  634. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +31 -29
  635. package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -1
  636. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +13 -9
  637. package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -1
  638. package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -1
  639. package/kotlin-kotlin-stdlib/reflectionJs.mjs +2 -2
  640. package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -1
  641. package/kotlin-kotlin-stdlib.mjs +7 -0
  642. package/kotlin-kotlin-stdlib.mjs.map +1 -0
  643. package/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +30 -0
  644. package/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs.map +1 -0
  645. package/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +50 -0
  646. package/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs.map +1 -0
  647. package/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +85 -0
  648. package/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs.map +1 -0
  649. package/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +49 -0
  650. package/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs.map +1 -0
  651. package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +80 -0
  652. package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs.map +1 -0
  653. package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +30 -0
  654. package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs.map +1 -0
  655. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
  656. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -1
  657. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +38 -0
  658. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs.map +1 -0
  659. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +15 -0
  660. package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs.map +1 -0
  661. package/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +60 -0
  662. package/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs.map +1 -0
  663. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +29 -2
  664. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -1
  665. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
  666. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +1 -1
  667. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs +5 -5
  668. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs.map +1 -1
  669. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +51 -0
  670. package/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs.map +1 -0
  671. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +5 -5
  672. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -1
  673. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +79 -74
  674. package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -1
  675. package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -1
  676. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +27 -27
  677. package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -1
  678. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +31 -195
  679. package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -1
  680. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +11 -11
  681. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -1
  682. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +229 -216
  683. package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -1
  684. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +18 -62
  685. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -1
  686. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +33 -33
  687. package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -1
  688. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +10 -28
  689. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -1
  690. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +6 -6
  691. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +19 -19
  692. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -1
  693. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +4 -4
  694. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +41 -32
  695. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -1
  696. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +8 -3
  697. package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -1
  698. package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +2 -2
  699. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +47 -30
  700. package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -1
  701. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +51 -51
  702. package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -1
  703. package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +18 -18
  704. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +35 -32
  705. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -1
  706. package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +2 -2
  707. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +6 -6
  708. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -1
  709. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +10 -10
  710. package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -1
  711. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +131 -131
  712. package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -1
  713. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +62 -103
  714. package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -1
  715. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +492 -641
  716. package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
  717. package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +4 -4
  718. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +14 -14
  719. package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -1
  720. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +1 -1
  721. package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -1
  722. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +2 -153
  723. package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -1
  724. package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +5 -5
  725. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +746 -1307
  726. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -1
  727. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +107 -107
  728. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -1
  729. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +30 -28
  730. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -1
  731. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +1 -1
  732. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -1
  733. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +20 -21
  734. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -1
  735. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +17 -16
  736. package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -1
  737. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +56 -83
  738. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -1
  739. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +56 -0
  740. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs.map +1 -0
  741. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +70 -0
  742. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs.map +1 -0
  743. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs +51 -0
  744. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs.map +1 -0
  745. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +118 -0
  746. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs.map +1 -0
  747. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs +249 -0
  748. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs.map +1 -0
  749. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +15 -72
  750. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -1
  751. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs +25 -0
  752. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs.map +1 -0
  753. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +81 -249
  754. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -1
  755. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +89 -0
  756. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs.map +1 -0
  757. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +286 -0
  758. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -0
  759. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs +305 -0
  760. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs.map +1 -0
  761. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs +243 -0
  762. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs.map +1 -0
  763. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +145 -0
  764. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs.map +1 -0
  765. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +413 -0
  766. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs.map +1 -0
  767. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +1 -1
  768. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +20 -4
  769. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -1
  770. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs +217 -0
  771. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs.map +1 -0
  772. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +38 -0
  773. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs.map +1 -0
  774. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +9 -9
  775. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -1
  776. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +24 -15
  777. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -1
  778. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +30 -0
  779. package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs.map +1 -0
  780. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs +16 -0
  781. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs.map +1 -0
  782. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +35 -1
  783. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -1
  784. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +55 -51
  785. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -1
  786. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +5 -5
  787. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +4 -4
  788. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +141 -141
  789. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -1
  790. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +4 -4
  791. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -1
  792. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +33 -33
  793. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -1
  794. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +4 -4
  795. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +30 -30
  796. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -1
  797. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +2 -5
  798. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -1
  799. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +2 -2
  800. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +10 -8
  801. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -1
  802. package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +5 -5
  803. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +26 -26
  804. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -1
  805. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +15 -19
  806. package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -1
  807. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +21 -21
  808. package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -1
  809. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs +257 -0
  810. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs.map +1 -0
  811. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +101 -125
  812. package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -1
  813. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +54 -54
  814. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -1
  815. package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +2 -2
  816. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +14 -14
  817. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +7 -7
  818. package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -1
  819. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +279 -291
  820. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -1
  821. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +71 -68
  822. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -1
  823. package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +1 -1
  824. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +35 -31
  825. package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -1
  826. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +79 -79
  827. package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -1
  828. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +200 -204
  829. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -1
  830. package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +6 -6
  831. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +2 -2
  832. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +3 -3
  833. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -1
  834. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +69 -63
  835. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -1
  836. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +109 -100
  837. package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -1
  838. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +5 -2
  839. package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -1
  840. package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +1 -1
  841. package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +12 -12
  842. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +9 -9
  843. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +47 -49
  844. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -1
  845. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +64 -66
  846. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -1
  847. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +35 -35
  848. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -1
  849. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +136 -138
  850. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -1
  851. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +8 -12
  852. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -1
  853. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
  854. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -1
  855. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +94 -89
  856. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -1
  857. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +56 -56
  858. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -1
  859. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +52 -52
  860. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -1
  861. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +117 -121
  862. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -1
  863. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +110 -110
  864. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -1
  865. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +58 -59
  866. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -1
  867. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +66 -66
  868. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -1
  869. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
  870. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -1
  871. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +2 -2
  872. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -1
  873. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +35 -35
  874. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -1
  875. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +67 -30
  876. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -1
  877. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +78 -78
  878. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -1
  879. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +308 -308
  880. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -1
  881. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +29 -29
  882. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -1
  883. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +42 -46
  884. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -1
  885. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +19 -19
  886. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -1
  887. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -1
  888. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +18 -18
  889. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -1
  890. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +17 -17
  891. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -1
  892. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +44 -44
  893. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -1
  894. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +23 -25
  895. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -1
  896. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +37 -37
  897. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -1
  898. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +62 -60
  899. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -1
  900. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +4 -4
  901. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -1
  902. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +137 -147
  903. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -1
  904. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +10 -10
  905. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -1
  906. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +454 -454
  907. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -1
  908. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +276 -277
  909. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -1
  910. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +109 -112
  911. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -1
  912. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +99 -99
  913. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -1
  914. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +85 -85
  915. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -1
  916. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +55 -55
  917. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -1
  918. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -1
  919. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +2 -4
  920. package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -1
  921. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +48 -48
  922. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -1
  923. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +18 -18
  924. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -1
  925. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +191 -166
  926. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -1
  927. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +281 -283
  928. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -1
  929. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
  930. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -1
  931. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +205 -197
  932. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -1
  933. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
  934. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -1
  935. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +72 -72
  936. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -1
  937. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +9 -9
  938. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -1
  939. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +46 -46
  940. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -1
  941. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +36 -38
  942. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -1
  943. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +66 -52
  944. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -1
  945. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +19 -19
  946. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -1
  947. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +3 -3
  948. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -1
  949. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +12 -12
  950. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -1
  951. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +113 -234
  952. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -1
  953. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +13 -13
  954. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -1
  955. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +12 -12
  956. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -1
  957. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +195 -190
  958. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -1
  959. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +142 -142
  960. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -1
  961. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
  962. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -1
  963. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +6 -6
  964. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -1
  965. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +281 -276
  966. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -1
  967. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +9 -9
  968. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -1
  969. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +1 -1
  970. package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -1
  971. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +354 -588
  972. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
  973. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +1 -1
  974. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -1
  975. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +4 -4
  976. package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -1
  977. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +142 -278
  978. package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -1
  979. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +49 -49
  980. package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -1
  981. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +3 -3
  982. package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -1
  983. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +3 -3
  984. package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -1
  985. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +43 -43
  986. package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -1
  987. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +104 -162
  988. package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -1
  989. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +66 -113
  990. package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -1
  991. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +4 -14
  992. package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -1
  993. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +36 -75
  994. package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -1
  995. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +165 -295
  996. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -1
  997. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +54 -60
  998. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -1
  999. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +6 -6
  1000. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -1
  1001. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +4 -4
  1002. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +14 -14
  1003. package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -1
  1004. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +57 -57
  1005. package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -1
  1006. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +6 -8
  1007. package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -1
  1008. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +155 -323
  1009. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
  1010. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +88 -246
  1011. package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -1
  1012. package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -1
  1013. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +60 -131
  1014. package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -1
  1015. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +12 -12
  1016. package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -1
  1017. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +21 -10
  1018. package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -1
  1019. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +108 -263
  1020. package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -1
  1021. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +105 -155
  1022. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -1
  1023. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +233 -462
  1024. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -1
  1025. package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -1
  1026. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +222 -618
  1027. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -1
  1028. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +5 -5
  1029. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -1
  1030. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +119 -244
  1031. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -1
  1032. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +74 -184
  1033. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -1
  1034. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +74 -218
  1035. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -1
  1036. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +721 -0
  1037. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs.map +1 -0
  1038. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +169 -247
  1039. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -1
  1040. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +193 -295
  1041. package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -1
  1042. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +85 -161
  1043. package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -1
  1044. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
  1045. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -1
  1046. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +15 -11
  1047. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -1
  1048. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +14 -14
  1049. package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -1
  1050. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +45 -129
  1051. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -1
  1052. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +26 -26
  1053. package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -1
  1054. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +150 -185
  1055. package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -1
  1056. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +41 -0
  1057. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs.map +1 -0
  1058. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +0 -2
  1059. package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -1
  1060. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +128 -213
  1061. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -1
  1062. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +5 -37
  1063. package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -1
  1064. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +18 -18
  1065. package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -1
  1066. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +82 -108
  1067. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -1
  1068. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +32 -32
  1069. package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -1
  1070. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +2 -2
  1071. package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -1
  1072. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +1 -1
  1073. package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -1
  1074. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +25 -25
  1075. package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -1
  1076. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +71 -156
  1077. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -1
  1078. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +62 -64
  1079. package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -1
  1080. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +102 -364
  1081. package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -1
  1082. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +60 -170
  1083. package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -1
  1084. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
  1085. package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -1
  1086. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -6
  1087. package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -1
  1088. package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -1
  1089. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +11 -11
  1090. package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -1
  1091. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
  1092. package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -1
  1093. package/ktor-ktor-events/io/ktor/events/Events.mjs +16 -16
  1094. package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -1
  1095. package/ktor-ktor-http/io/ktor/http/Codecs.mjs +162 -162
  1096. package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -1
  1097. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +121 -121
  1098. package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
  1099. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +35 -35
  1100. package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -1
  1101. package/ktor-ktor-http/io/ktor/http/Headers.mjs +63 -63
  1102. package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -1
  1103. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +117 -118
  1104. package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -1
  1105. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +131 -130
  1106. package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -1
  1107. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +19 -19
  1108. package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -1
  1109. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +14 -17
  1110. package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -1
  1111. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +17 -44
  1112. package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -1
  1113. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +71 -71
  1114. package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -1
  1115. package/ktor-ktor-http/io/ktor/http/Parameters.mjs +18 -16
  1116. package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -1
  1117. package/ktor-ktor-http/io/ktor/http/Query.mjs +4 -4
  1118. package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -1
  1119. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +96 -96
  1120. package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -1
  1121. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +1 -1
  1122. package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -1
  1123. package/ktor-ktor-http/io/ktor/http/URLParser.mjs +42 -42
  1124. package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -1
  1125. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +26 -28
  1126. package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -1
  1127. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +47 -106
  1128. package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -1
  1129. package/ktor-ktor-http/io/ktor/http/Url.mjs +88 -128
  1130. package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -1
  1131. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +56 -59
  1132. package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -1
  1133. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +10 -10
  1134. package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -1
  1135. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +8 -8
  1136. package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -1
  1137. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +13 -13
  1138. package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -1
  1139. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +6 -7
  1140. package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -1
  1141. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +176 -238
  1142. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -1
  1143. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +90 -334
  1144. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -1
  1145. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +239 -580
  1146. package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -1
  1147. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +53 -110
  1148. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -1
  1149. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +91 -91
  1150. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -1
  1151. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +2 -2
  1152. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -1
  1153. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -1
  1154. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +54 -199
  1155. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -1
  1156. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +3 -3
  1157. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +3 -3
  1158. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -1
  1159. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +1 -38
  1160. package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -1
  1161. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +258 -419
  1162. package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -1
  1163. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -1
  1164. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -1
  1165. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +144 -350
  1166. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -1
  1167. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
  1168. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -1
  1169. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +272 -1739
  1170. package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
  1171. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +24 -105
  1172. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -1
  1173. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +118 -356
  1174. package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -1
  1175. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +12 -14
  1176. package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -1
  1177. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +43 -93
  1178. package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -1
  1179. package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -1
  1180. package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +12 -12
  1181. package/{ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs → ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs} +3 -3
  1182. package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs.map +1 -0
  1183. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +20 -21
  1184. package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -1
  1185. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +19 -19
  1186. package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -1
  1187. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +118 -117
  1188. package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -1
  1189. package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -1
  1190. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +37 -33
  1191. package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -1
  1192. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +2 -2
  1193. package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -1
  1194. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +3 -3
  1195. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -1
  1196. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +8 -8
  1197. package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -1
  1198. package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -1
  1199. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +1 -1
  1200. package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -1
  1201. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +2 -1
  1202. package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -1
  1203. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +3 -14
  1204. package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -1
  1205. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +9 -20
  1206. package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -1
  1207. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +1 -1
  1208. package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -1
  1209. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +17 -17
  1210. package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -1
  1211. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
  1212. package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -1
  1213. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +29 -29
  1214. package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -1
  1215. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +4 -4
  1216. package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -1
  1217. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +20 -20
  1218. package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -1
  1219. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +99 -270
  1220. package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -1
  1221. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +6 -6
  1222. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -1
  1223. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +216 -564
  1224. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -1
  1225. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +40 -40
  1226. package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -1
  1227. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
  1228. package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -1
  1229. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +19 -20
  1230. package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -1
  1231. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +15 -15
  1232. package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -1
  1233. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +64 -53
  1234. package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -1
  1235. package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -1
  1236. package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -1
  1237. package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -1
  1238. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +2 -2
  1239. package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -1
  1240. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +70 -55
  1241. package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -1
  1242. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +3 -5
  1243. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -1
  1244. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +63 -67
  1245. package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -1
  1246. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +3 -3
  1247. package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -1
  1248. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +154 -161
  1249. package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -1
  1250. package/ktor-ktor-utils/io/ktor/util/Text.mjs +10 -10
  1251. package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -1
  1252. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
  1253. package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -1
  1254. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +112 -112
  1255. package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -1
  1256. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +11 -12
  1257. package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -1
  1258. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +23 -23
  1259. package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -1
  1260. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +15 -15
  1261. package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -1
  1262. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +3 -3
  1263. package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -1
  1264. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +45 -106
  1265. package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -1
  1266. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +30 -30
  1267. package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -1
  1268. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +72 -76
  1269. package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -1
  1270. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -1
  1271. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +1 -1
  1272. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -1
  1273. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -1
  1274. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +3 -3
  1275. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -1
  1276. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +2 -4
  1277. package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -1
  1278. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -1
  1279. package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -1
  1280. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +62 -62
  1281. package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -1
  1282. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
  1283. package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -1
  1284. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +1 -1
  1285. package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -1
  1286. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +22 -32
  1287. package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -1
  1288. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +1 -3
  1289. package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
  1290. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +31 -87
  1291. package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -1
  1292. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +17 -23
  1293. package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -1
  1294. package/package.json +3 -4
  1295. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs.map +0 -1
  1296. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs +0 -258
  1297. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs.map +0 -1
  1298. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs +0 -24
  1299. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs.map +0 -1
  1300. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs +0 -845
  1301. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs.map +0 -1
  1302. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs +0 -46
  1303. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs.map +0 -1
  1304. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs +0 -53
  1305. package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs.map +0 -1
  1306. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.d.ts +0 -14
  1307. package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs +0 -12
  1308. package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs +0 -55
  1309. package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs.map +0 -1
  1310. package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs +0 -54
  1311. package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs.map +0 -1
  1312. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.d.ts +0 -23
  1313. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs +0 -4
  1314. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs +0 -108
  1315. package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs.map +0 -1
  1316. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs +0 -2406
  1317. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs.map +0 -1
  1318. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.d.ts +0 -3
  1319. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs +0 -12
  1320. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs +0 -727
  1321. package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.mjs.map +0 -1
  1322. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.d.ts +0 -10
  1323. package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs +0 -4
  1324. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs +0 -12
  1325. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs +0 -272
  1326. package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs.map +0 -1
  1327. package/kotlin-kotlin-stdlib/KTypeHelpers.mjs.map +0 -1
  1328. package/kotlin-kotlin-stdlib/kotlin/Number.mjs +0 -22
  1329. package/kotlin-kotlin-stdlib/kotlin/longJs.mjs +0 -387
  1330. package/kotlin-kotlin-stdlib/kotlin/longJs.mjs.map +0 -1
  1331. package/kotlin-kotlin-stdlib/reflection.mjs.map +0 -1
  1332. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs +0 -56
  1333. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs.map +0 -1
  1334. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs +0 -381
  1335. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs.map +0 -1
  1336. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs +0 -52
  1337. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs.map +0 -1
  1338. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs +0 -161
  1339. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs.map +0 -1
  1340. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs +0 -39
  1341. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs.map +0 -1
  1342. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs +0 -1338
  1343. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs.map +0 -1
  1344. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs +0 -122
  1345. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs.map +0 -1
  1346. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs +0 -12
  1347. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs.map +0 -1
  1348. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs +0 -13
  1349. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs +0 -29
  1350. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs.map +0 -1
  1351. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs +0 -1339
  1352. package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs.map +0 -1
  1353. package/ktor-ktor-client-cio.mjs +0 -12
  1354. package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs.map +0 -1
  1355. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs +0 -40
  1356. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs.map +0 -1
  1357. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs +0 -23
  1358. package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs.map +0 -1
  1359. package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs +0 -46
  1360. package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs.map +0 -1
  1361. package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs +0 -680
  1362. package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs.map +0 -1
  1363. package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs +0 -221
  1364. package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs.map +0 -1
  1365. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs +0 -171
  1366. package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs.map +0 -1
  1367. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs +0 -51
  1368. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs.map +0 -1
  1369. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs +0 -58
  1370. package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs.map +0 -1
  1371. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs +0 -28
  1372. package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs.map +0 -1
  1373. package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs +0 -107
  1374. package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs.map +0 -1
  1375. package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs +0 -22
  1376. package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs.map +0 -1
  1377. package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs +0 -22
  1378. package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs.map +0 -1
  1379. package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs +0 -42
  1380. package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs.map +0 -1
  1381. package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs +0 -35
  1382. package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs.map +0 -1
  1383. package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs +0 -107
  1384. package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs.map +0 -1
  1385. package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs +0 -304
  1386. package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs.map +0 -1
  1387. package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs +0 -573
  1388. package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs.map +0 -1
  1389. package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs +0 -26
  1390. package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs.map +0 -1
  1391. package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs +0 -129
  1392. package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs.map +0 -1
  1393. package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs +0 -33
  1394. package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs.map +0 -1
  1395. package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs +0 -71
  1396. package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs.map +0 -1
  1397. package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs +0 -34
  1398. package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs.map +0 -1
  1399. package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs +0 -41
  1400. package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs.map +0 -1
  1401. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs +0 -56
  1402. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs.map +0 -1
  1403. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs +0 -163
  1404. package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs.map +0 -1
  1405. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs +0 -18
  1406. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs.map +0 -1
  1407. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs +0 -99
  1408. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs.map +0 -1
  1409. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs +0 -22
  1410. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs +0 -33
  1411. package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs.map +0 -1
  1412. package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs +0 -32
  1413. package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs.map +0 -1
  1414. package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs +0 -113
  1415. package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs.map +0 -1
  1416. package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs +0 -11
  1417. package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs.map +0 -1
  1418. package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs +0 -16
  1419. package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs.map +0 -1
  1420. package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +0 -47
  1421. package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs.map +0 -1
  1422. package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs +0 -47
  1423. package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs.map +0 -1
  1424. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs +0 -19
  1425. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs.map +0 -1
  1426. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs +0 -846
  1427. package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs.map +0 -1
  1428. /package/{ktor-ktor-client-cio.mjs.map → commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs.map} +0 -0
  1429. /package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs.map → commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs.map} +0 -0
  1430. /package/commons-commons-core/cash/atto/commons/{AttoSigner.js.export.mjs.map → AttoPublicKey.js.export.mjs.map} +0 -0
  1431. /package/commons-commons-core/cash/atto/commons/{AttoSeed.export.d.ts → AttoSeed.export.d.mts} +0 -0
  1432. /package/{commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsImpl.js.export.mjs.map → commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs.map} +0 -0
  1433. /package/commons-commons-core/cash/atto/commons/{AttoSocketAddress.export.d.ts → AttoSocketAddress.export.d.mts} +0 -0
  1434. /package/commons-commons-core/cash/atto/commons/{Extensions.export.d.ts → Extensions.export.d.mts} +0 -0
  1435. /package/commons-commons-node/cash/atto/commons/node/{NodeExtensions.export.d.ts → NodeExtensions.export.d.mts} +0 -0
  1436. /package/{ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs.map → commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs.map} +0 -0
  1437. /package/{commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs.map → commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.export.mjs.map} +0 -0
  1438. /package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs.map → kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs.map} +0 -0
  1439. /package/{ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.d.ts → ktor-ktor-client-core/io/ktor/client/engine/js/Js.export.d.mts} +0 -0
@@ -1,4 +1,3 @@
1
- import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
2
1
  import { isBlank1dvkhjjvox3p0 as isBlank } from '../../../../kotlin-kotlin-stdlib/kotlin/text/Strings.mjs';
3
2
  import { IllegalArgumentException2asla15b5jaob as IllegalArgumentException } from '../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
4
3
  import {
@@ -7,6 +6,8 @@ import {
7
6
  protoOf180f3jzyo7rfj as protoOf,
8
7
  } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
9
8
  import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
9
+ import { PrimitiveDescriptorSafe1r3pht5v1oaqu as PrimitiveDescriptorSafe } from '../internal/Primitives.mjs';
10
+ import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
10
11
  import { CLASS_getInstance14ex35co4jkrb as CLASS_getInstance } from './SerialKinds.mjs';
11
12
  import {
12
13
  toList383f556t1dixk as toList,
@@ -17,7 +18,7 @@ import { ArrayList3it5z8td81qkl as ArrayList } from '../../../../kotlin-kotlin-s
17
18
  import { HashSet2dzve9y63nf0v as HashSet } from '../../../../kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs';
18
19
  import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
19
20
  import { KProperty1ca4yb4wlo496 as KProperty1 } from '../../../../kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs';
20
- import { getPropertyCallableRef1ajb9in178r5r as getPropertyCallableRef } from '../../../../kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs';
21
+ import { getPropertyCallableRef3hckxc0xueiaj as getPropertyCallableRef } from '../../../../kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs';
21
22
  import {
22
23
  hashCodeImplfv8qiy3re24s as hashCodeImpl,
23
24
  toStringImpl1y3u8fza7vdq as toStringImpl,
@@ -43,72 +44,75 @@ import {
43
44
  SerialDescriptor2pelqekb5ic3a as SerialDescriptor,
44
45
  } from './SerialDescriptor.mjs';
45
46
  import { CachedNames2minxlyafeo07 as CachedNames } from '../internal/CachedNames.mjs';
46
- import { PrimitiveDescriptorSafe1r3pht5v1oaqu as PrimitiveDescriptorSafe } from '../internal/Primitives.mjs';
47
47
  //region block: imports
48
48
  //endregion
49
49
  //region block: pre-declaration
50
50
  //endregion
51
- function buildSerialDescriptor(serialName, kind, typeParameters, builder) {
51
+ function PrimitiveSerialDescriptor(serialName, kind) {
52
+ // Inline function 'kotlin.text.isNotBlank' call
53
+ // Inline function 'kotlin.require' call
54
+ if (!!isBlank(serialName)) {
55
+ var message = 'Blank serial names are prohibited';
56
+ throw IllegalArgumentException().j1(toString(message));
57
+ }
58
+ return PrimitiveDescriptorSafe(serialName, kind);
59
+ }
60
+ function buildClassSerialDescriptor(serialName, typeParameters, builderAction) {
52
61
  var tmp;
53
- if (builder === VOID) {
54
- tmp = buildSerialDescriptor$lambda;
62
+ if (builderAction === VOID) {
63
+ tmp = buildClassSerialDescriptor$lambda;
55
64
  } else {
56
- tmp = builder;
65
+ tmp = builderAction;
57
66
  }
58
- builder = tmp;
67
+ builderAction = tmp;
59
68
  // Inline function 'kotlin.text.isNotBlank' call
60
69
  // Inline function 'kotlin.require' call
61
70
  if (!!isBlank(serialName)) {
62
71
  var message = 'Blank serial names are prohibited';
63
- throw IllegalArgumentException().u(toString(message));
64
- }
65
- // Inline function 'kotlin.require' call
66
- if (!!equals(kind, CLASS_getInstance())) {
67
- var message_0 = "For StructureKind.CLASS please use 'buildClassSerialDescriptor' instead";
68
- throw IllegalArgumentException().u(toString(message_0));
72
+ throw IllegalArgumentException().j1(toString(message));
69
73
  }
70
74
  var sdBuilder = new (ClassSerialDescriptorBuilder())(serialName);
71
- builder(sdBuilder);
72
- return new (SerialDescriptorImpl())(serialName, kind, sdBuilder.dt_1.i1(), toList(typeParameters), sdBuilder);
75
+ builderAction(sdBuilder);
76
+ return new (SerialDescriptorImpl())(serialName, CLASS_getInstance(), sdBuilder.d1l_1.n1(), toList(typeParameters), sdBuilder);
73
77
  }
74
78
  var ClassSerialDescriptorBuilderClass;
75
79
  function ClassSerialDescriptorBuilder() {
76
80
  if (ClassSerialDescriptorBuilderClass === VOID) {
77
81
  class $ {
78
82
  constructor(serialName) {
79
- this.at_1 = serialName;
80
- this.bt_1 = false;
81
- this.ct_1 = emptyList();
82
- this.dt_1 = ArrayList().l1();
83
- this.et_1 = HashSet().u9();
84
- this.ft_1 = ArrayList().l1();
85
- this.gt_1 = ArrayList().l1();
86
- this.ht_1 = ArrayList().l1();
83
+ this.a1l_1 = serialName;
84
+ this.b1l_1 = false;
85
+ this.c1l_1 = emptyList();
86
+ this.d1l_1 = ArrayList().r1();
87
+ this.e1l_1 = HashSet().ba();
88
+ this.f1l_1 = ArrayList().r1();
89
+ this.g1l_1 = ArrayList().r1();
90
+ this.h1l_1 = ArrayList().r1();
87
91
  }
88
- gw(elementName, descriptor, annotations, isOptional) {
92
+ d1o(elementName, descriptor, annotations, isOptional) {
89
93
  // Inline function 'kotlin.require' call
90
- if (!this.et_1.m(elementName)) {
91
- var message = "Element with name '" + elementName + "' is already registered in " + this.at_1;
92
- throw IllegalArgumentException().u(toString(message));
94
+ if (!this.e1l_1.v(elementName)) {
95
+ var message = "Element with name '" + elementName + "' is already registered in " + this.a1l_1;
96
+ throw IllegalArgumentException().j1(toString(message));
93
97
  }
94
98
  // Inline function 'kotlin.collections.plusAssign' call
95
- this.dt_1.m(elementName);
99
+ this.d1l_1.v(elementName);
96
100
  // Inline function 'kotlin.collections.plusAssign' call
97
- this.ft_1.m(descriptor);
101
+ this.f1l_1.v(descriptor);
98
102
  // Inline function 'kotlin.collections.plusAssign' call
99
- this.gt_1.m(annotations);
103
+ this.g1l_1.v(annotations);
100
104
  // Inline function 'kotlin.collections.plusAssign' call
101
- this.ht_1.m(isOptional);
105
+ this.h1l_1.v(isOptional);
102
106
  }
103
- it(elementName, descriptor, annotations, isOptional, $super) {
107
+ i1l(elementName, descriptor, annotations, isOptional, $super) {
104
108
  annotations = annotations === VOID ? emptyList() : annotations;
105
109
  isOptional = isOptional === VOID ? false : isOptional;
106
110
  var tmp;
107
111
  if ($super === VOID) {
108
- this.gw(elementName, descriptor, annotations, isOptional);
112
+ this.d1o(elementName, descriptor, annotations, isOptional);
109
113
  tmp = Unit_instance;
110
114
  } else {
111
- tmp = $super.gw.call(this, elementName, descriptor, annotations, isOptional);
115
+ tmp = $super.d1o.call(this, elementName, descriptor, annotations, isOptional);
112
116
  }
113
117
  return tmp;
114
118
  }
@@ -118,89 +122,108 @@ function ClassSerialDescriptorBuilder() {
118
122
  }
119
123
  return ClassSerialDescriptorBuilderClass;
120
124
  }
125
+ function buildSerialDescriptor(serialName, kind, typeParameters, builder) {
126
+ var tmp;
127
+ if (builder === VOID) {
128
+ tmp = buildSerialDescriptor$lambda;
129
+ } else {
130
+ tmp = builder;
131
+ }
132
+ builder = tmp;
133
+ // Inline function 'kotlin.text.isNotBlank' call
134
+ // Inline function 'kotlin.require' call
135
+ if (!!isBlank(serialName)) {
136
+ var message = 'Blank serial names are prohibited';
137
+ throw IllegalArgumentException().j1(toString(message));
138
+ }
139
+ // Inline function 'kotlin.require' call
140
+ if (!!equals(kind, CLASS_getInstance())) {
141
+ var message_0 = "For StructureKind.CLASS please use 'buildClassSerialDescriptor' instead";
142
+ throw IllegalArgumentException().j1(toString(message_0));
143
+ }
144
+ var sdBuilder = new (ClassSerialDescriptorBuilder())(serialName);
145
+ builder(sdBuilder);
146
+ return new (SerialDescriptorImpl())(serialName, kind, sdBuilder.d1l_1.n1(), toList(typeParameters), sdBuilder);
147
+ }
121
148
  function _get__hashCode__tgwhef($this) {
122
- var tmp0 = $this.sw_1;
149
+ var tmp0 = $this.p1o_1;
123
150
  var tmp = KProperty1();
124
151
  // Inline function 'kotlin.getValue' call
125
152
  getPropertyCallableRef('_hashCode', 1, tmp, SerialDescriptorImpl$_get__hashCode_$ref_2v7wzp(), null);
126
- return tmp0.s1();
153
+ return tmp0.z1();
127
154
  }
128
155
  function SerialDescriptorImpl$_hashCode$delegate$lambda(this$0) {
129
- return function () {
130
- return hashCodeImpl(this$0, this$0.rw_1);
131
- };
156
+ return () => hashCodeImpl(this$0, this$0.o1o_1);
132
157
  }
133
158
  function SerialDescriptorImpl$_get__hashCode_$ref_2v7wzp() {
134
- return function (p0) {
135
- return _get__hashCode__tgwhef(p0);
136
- };
159
+ return (p0) => _get__hashCode__tgwhef(p0);
137
160
  }
138
161
  var SerialDescriptorImplClass;
139
162
  function SerialDescriptorImpl() {
140
163
  if (SerialDescriptorImplClass === VOID) {
141
164
  class $ {
142
165
  constructor(serialName, kind, elementsCount, typeParameters, builder) {
143
- this.hw_1 = serialName;
144
- this.iw_1 = kind;
145
- this.jw_1 = elementsCount;
146
- this.kw_1 = builder.ct_1;
147
- this.lw_1 = toHashSet(builder.dt_1);
166
+ this.e1o_1 = serialName;
167
+ this.f1o_1 = kind;
168
+ this.g1o_1 = elementsCount;
169
+ this.h1o_1 = builder.c1l_1;
170
+ this.i1o_1 = toHashSet(builder.d1l_1);
148
171
  var tmp = this;
149
172
  // Inline function 'kotlin.collections.toTypedArray' call
150
- var this_0 = builder.dt_1;
151
- tmp.mw_1 = copyToArray(this_0);
152
- this.nw_1 = compactArray(builder.ft_1);
173
+ var this_0 = builder.d1l_1;
174
+ tmp.j1o_1 = copyToArray(this_0);
175
+ this.k1o_1 = compactArray(builder.f1l_1);
153
176
  var tmp_0 = this;
154
177
  // Inline function 'kotlin.collections.toTypedArray' call
155
- var this_1 = builder.gt_1;
156
- tmp_0.ow_1 = copyToArray(this_1);
157
- this.pw_1 = toBooleanArray(builder.ht_1);
178
+ var this_1 = builder.g1l_1;
179
+ tmp_0.l1o_1 = copyToArray(this_1);
180
+ this.m1o_1 = toBooleanArray(builder.h1l_1);
158
181
  var tmp_1 = this;
159
182
  // Inline function 'kotlin.collections.map' call
160
- var this_2 = withIndex(this.mw_1);
183
+ var this_2 = withIndex(this.j1o_1);
161
184
  // Inline function 'kotlin.collections.mapTo' call
162
- var destination = ArrayList().c1(collectionSizeOrDefault(this_2, 10));
163
- var _iterator__ex2g4s = this_2.d1();
164
- while (_iterator__ex2g4s.e1()) {
165
- var item = _iterator__ex2g4s.f1();
166
- var tmp$ret$2 = to(item.wk_1, item.vk_1);
167
- destination.m(tmp$ret$2);
185
+ var destination = ArrayList().u(collectionSizeOrDefault(this_2, 10));
186
+ var _iterator__ex2g4s = this_2.k1();
187
+ while (_iterator__ex2g4s.l1()) {
188
+ var item = _iterator__ex2g4s.m1();
189
+ var tmp$ret$2 = to(item.xj_1, item.wj_1);
190
+ destination.v(tmp$ret$2);
168
191
  }
169
- tmp_1.qw_1 = toMap(destination);
170
- this.rw_1 = compactArray(typeParameters);
192
+ tmp_1.n1o_1 = toMap(destination);
193
+ this.o1o_1 = compactArray(typeParameters);
171
194
  var tmp_2 = this;
172
- tmp_2.sw_1 = lazy(SerialDescriptorImpl$_hashCode$delegate$lambda(this));
195
+ tmp_2.p1o_1 = lazy(SerialDescriptorImpl$_hashCode$delegate$lambda(this));
173
196
  }
174
- au() {
175
- return this.hw_1;
197
+ x1l() {
198
+ return this.e1o_1;
176
199
  }
177
- ov() {
178
- return this.iw_1;
200
+ o1n() {
201
+ return this.f1o_1;
179
202
  }
180
- qv() {
181
- return this.jw_1;
203
+ q1n() {
204
+ return this.g1o_1;
182
205
  }
183
- rv() {
184
- return this.kw_1;
206
+ r1n() {
207
+ return this.h1o_1;
185
208
  }
186
- tw() {
187
- return this.lw_1;
209
+ q1o() {
210
+ return this.i1o_1;
188
211
  }
189
- sv(index) {
190
- return getChecked(this.mw_1, index);
212
+ s1n(index) {
213
+ return getChecked(this.j1o_1, index);
191
214
  }
192
- tv(name) {
193
- var tmp0_elvis_lhs = this.qw_1.w2(name);
215
+ t1n(name) {
216
+ var tmp0_elvis_lhs = this.n1o_1.p3(name);
194
217
  return tmp0_elvis_lhs == null ? -3 : tmp0_elvis_lhs;
195
218
  }
196
- uv(index) {
197
- return getChecked(this.ow_1, index);
219
+ u1n(index) {
220
+ return getChecked(this.l1o_1, index);
198
221
  }
199
- vv(index) {
200
- return getChecked(this.nw_1, index);
222
+ v1n(index) {
223
+ return getChecked(this.k1o_1, index);
201
224
  }
202
- wv(index) {
203
- return getChecked_0(this.pw_1, index);
225
+ w1n(index) {
226
+ return getChecked_0(this.m1o_1, index);
204
227
  }
205
228
  equals(other) {
206
229
  var tmp$ret$0;
@@ -214,29 +237,29 @@ function SerialDescriptorImpl() {
214
237
  tmp$ret$0 = false;
215
238
  break $l$block_5;
216
239
  }
217
- if (!(this.au() === other.au())) {
240
+ if (!(this.x1l() === other.x1l())) {
218
241
  tmp$ret$0 = false;
219
242
  break $l$block_5;
220
243
  }
221
- if (!contentEquals(this.rw_1, other.rw_1)) {
244
+ if (!contentEquals(this.o1o_1, other.o1o_1)) {
222
245
  tmp$ret$0 = false;
223
246
  break $l$block_5;
224
247
  }
225
- if (!(this.qv() === other.qv())) {
248
+ if (!(this.q1n() === other.q1n())) {
226
249
  tmp$ret$0 = false;
227
250
  break $l$block_5;
228
251
  }
229
252
  var inductionVariable = 0;
230
- var last = this.qv();
253
+ var last = this.q1n();
231
254
  if (inductionVariable < last)
232
255
  do {
233
256
  var index = inductionVariable;
234
257
  inductionVariable = inductionVariable + 1 | 0;
235
- if (!(this.vv(index).au() === other.vv(index).au())) {
258
+ if (!(this.v1n(index).x1l() === other.v1n(index).x1l())) {
236
259
  tmp$ret$0 = false;
237
260
  break $l$block_5;
238
261
  }
239
- if (!equals(this.vv(index).ov(), other.vv(index).ov())) {
262
+ if (!equals(this.v1n(index).o1n(), other.v1n(index).o1n())) {
240
263
  tmp$ret$0 = false;
241
264
  break $l$block_5;
242
265
  }
@@ -253,44 +276,17 @@ function SerialDescriptorImpl() {
253
276
  return toStringImpl(this);
254
277
  }
255
278
  }
256
- protoOf($).kv = get_isNullable;
257
- protoOf($).pv = get_isInline;
279
+ protoOf($).h1n = get_isNullable;
280
+ protoOf($).p1n = get_isInline;
258
281
  initMetadataForClass($, 'SerialDescriptorImpl', VOID, VOID, [SerialDescriptor(), CachedNames()]);
259
282
  SerialDescriptorImplClass = $;
260
283
  }
261
284
  return SerialDescriptorImplClass;
262
285
  }
263
- function buildClassSerialDescriptor(serialName, typeParameters, builderAction) {
264
- var tmp;
265
- if (builderAction === VOID) {
266
- tmp = buildClassSerialDescriptor$lambda;
267
- } else {
268
- tmp = builderAction;
269
- }
270
- builderAction = tmp;
271
- // Inline function 'kotlin.text.isNotBlank' call
272
- // Inline function 'kotlin.require' call
273
- if (!!isBlank(serialName)) {
274
- var message = 'Blank serial names are prohibited';
275
- throw IllegalArgumentException().u(toString(message));
276
- }
277
- var sdBuilder = new (ClassSerialDescriptorBuilder())(serialName);
278
- builderAction(sdBuilder);
279
- return new (SerialDescriptorImpl())(serialName, CLASS_getInstance(), sdBuilder.dt_1.i1(), toList(typeParameters), sdBuilder);
280
- }
281
- function PrimitiveSerialDescriptor(serialName, kind) {
282
- // Inline function 'kotlin.text.isNotBlank' call
283
- // Inline function 'kotlin.require' call
284
- if (!!isBlank(serialName)) {
285
- var message = 'Blank serial names are prohibited';
286
- throw IllegalArgumentException().u(toString(message));
287
- }
288
- return PrimitiveDescriptorSafe(serialName, kind);
289
- }
290
- function buildSerialDescriptor$lambda(_this__u8e3s4) {
286
+ function buildClassSerialDescriptor$lambda(_this__u8e3s4) {
291
287
  return Unit_instance;
292
288
  }
293
- function buildClassSerialDescriptor$lambda(_this__u8e3s4) {
289
+ function buildSerialDescriptor$lambda(_this__u8e3s4) {
294
290
  return Unit_instance;
295
291
  }
296
292
  //region block: exports
@@ -1 +1 @@
1
- {"version":3,"sources":["Z:/BuildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/descriptors/SerialDescriptors.kt","src/kotlin/util/Preconditions.kt","src/kotlin/text/Strings.kt","src/kotlin/collections/MutableCollections.kt","src/kotlin/util/Lazy.kt","js/src/kotlin/collectionJs.kt","common/src/generated/_Collections.kt","Z:/BuildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.kt"],"sourcesContent":[null,null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["buildSerialDescriptor","serialName","kind","typeParameters","builder","message","sdBuilder","element","elementName","descriptor","annotations","isOptional","element$default","<get-_hashCode>","SerialDescriptorImpl$_hashCode$delegate$lambda","SerialDescriptorImpl$_hashCode$delegate$lambda$lambda","elementsCount","item","<get-serialName>","<get-kind>","<get-elementsCount>","<get-annotations>","<get-serialNames>","getElementName","index","getElementIndex","name","getElementAnnotations","getElementDescriptor","isElementOptional","equals","other","hashCode","toString","buildClassSerialDescriptor","builderAction","PrimitiveSerialDescriptor","buildSerialDescriptor$lambda","buildClassSerialDescriptor$lambda"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BAsJAA,CAEIC,U,EACAC,I,EACAC,c,EACAC,OALJJ,EAMoB;A;;UADmC,4B;;;;;;;ECxH/C,KC0R+C,CAAC,QFhK5C,UEgK4C,CD1RhD,C,CAAQ;A,QACRK,UDyH+B,mC;ICxH/B,mCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;;EAHI,KD2HI,kCC3HJ,C,CAAQ;A,QACRA,YD0HmC,yE;ICzHnC,mCAAuC,SAAR,SAAQ,CAAvC,C;EACJ,C;MDyHAC,iDAA6C,UAA7CA,C;EACU,QAAV,SAAU,C;EACV,oCAA4B,UAA5B,EAAwC,IAAxC,EAA8C,SAAuB,CAAb,IAAa,KAArE,EAA0F,OAAf,cAAe,CAA1F,EAAoG,SAApG,C;AACJ,C;;;;;kBA4HIL,U;QAAA,sB;QAUiC,iB;QAMU,uB;QAEM,4B;QACH,0B;QACmB,4B;QACA,4B;QACT,4B;;QAoBxDM,CACIC,W,EACAC,U,EACAC,W,EACAC,UAJJJ,EAKE;A;QC1SE,KD2SQ,IAAY,CAAZ,IAAY,GAAI,WAAJ,CC3SpB,C,CAAQ;A,cACRF,UD0SyC,qBAAD,GAAqB,WAArB,GAAgC,6BAAhC,GAA4D,IAA5D,CAA4D,I;UCzSpG,mCAAuC,SAAR,OAAQ,CAAvC,C;QACJ,C;;QDySI,IG9RC,CH8RD,IG9RC,GH8Re,WG9Rf,C;;QH+RD,IG/RC,CH+RD,IG/RC,GH+RqB,UG/RrB,C;;QHgSD,IGhSC,CHgSD,IGhSC,GHgSqB,WGhSrB,C;;QHiSD,IGjSC,CHiSD,IGjSC,GHiSqB,UGjSrB,C;MHkSL,C;QAXAO,CACIJ,W,EACAC,U,EACAC,W,EACAC,U,QAJJC,E;6CAGoC,W;2CACV,K;;;;;;;;;O;;;;;;;+BAyC1BC,CAAA,KAAAA,EAA8B;A,aAAA,K,CAAA,I;;;EAAA,oG;EAAA,OIlU0D,S;AJkUX,C;uDAA1CC,CAlBvC,MAkBuCA,E;kBAAAC,CAAAA,EAAA;A,IAAyC,OAAvC,qBAAa,MAAb,CAAa,IAAb,C;EAAwC,C;C;;;WAA/C,0B;;;;;;;kBAhB9Bd,U,EACAC,I,EACAc,a,EACAb,c,EACAC,O;QAJA,sB;QACA,gB;QACA,yB;QAKqD,YAAR,OAAQ,K;QACQ,sBAArB,OAAqB,CAAb,IAAa,C;kBAEE,I;;qBAArB,O,CAAQ,I;QAAa,WKrVG,YAAY,MAAZ,C;QLsVmB,yBAA3B,OAA2B,CAAnB,IAAmB,C;oBACA,I;;qBAA3B,O,CAAQ,I;QAAmB,aKvVnB,YAAY,MAAZ,C;QLwVQ,2BAA3B,OAA2B,CAAnB,IAAmB,C;oBACuB,I;;qBAAzC,UAAb,IAAa,CAAb,IAAa,C;;0BMuqC3C,eAAa,gCAAwB,EAAxB,CAAb,C;YAuEA,oBAvEN,MAuEM,K;eAAA,sB,EACT;A,cADCa,OAAQ,sB;0BN9uC6D,GM+uC5C,IN/uC4C,CAAG,IAAH,EM+uC5C,IN/uC4C,CAAe,IAAf,C;UM+uCtE,WAAY,GAAI,SAAJ,C;QAAmB,C;QN/uC8D,mBMgvC1F,WNhvC0F,C;QACjB,yBAAf,cAAe,C;oBAClD,I;QAAA,kBAAK,oDAAL,C;;QAhB9BC,CAAAA,EAAA;A,QAAA,gB;MAA8B,C;QAC9BC,CAAAA,EAAA;A,QAAA,gB;MAA4B,C;QAC5BC,CAAAA,EAAA;A,QAAA,gB;MAA8B,C;QAK9BC,CAAAA,EAAA;A,QAAA,gB;MAAyC,C;QACzCC,CAAAA,EAAA;A,QAAA,gB;MAAoC,C;QAUpCC,CAA4BC,KAA5BD,EAAkD;A,QAA8B,OAAjB,WAAb,IAAa,CAAb,IAAa,EAAW,KAAX,C;MAAgB,C;QAC/EE,CAA6BC,IAA7BD,EAAkD;A,YAAA,8BAAW,IAAX,C;QAAiD,OAAjD,yBAAqC,EAArC,iB;MAAgD,C;QAClGE,CAAmCH,KAAnCG,EAAmE;A,QAAoC,OAAjB,WAAnB,IAAmB,CAAnB,IAAmB,EAAW,KAAX,C;MAAgB,C;QACtGC,CAAkCJ,KAAlCI,EAAkE;A,QAAoC,OAAjB,WAAnB,IAAmB,CAAnB,IAAmB,EAAW,KAAX,C;MAAgB,C;QACrGC,CAA+BL,KAA/BK,EAAsD;A,QAAoC,OAAjB,aAAnB,IAAmB,CAAnB,IAAmB,EAAW,KAAX,C;MAAgB,C;YAEzFC,CAAoBC,KAApBD,EACI;A;;;UOpRA,IPoRA,IOpRA,KPoRW,KOpRX,C;YAAgB,YAAO,I;;;UACvB,MPmRW,KOnRX,oC;YAAc,YAAO,K;;;UACrB,MPkRA,IOlRA,UPkRW,KOlRS,KAApB,E;YAAgC,YAAO,K;;;UACvC,KPkR8B,cAA1B,IAA0B,CAA1B,IAA0B,EADnB,KACmB,CACN,IADM,COlR9B,C;YAA4B,YAAO,K;;;UACnC,MPgRA,IOhRK,KAAL,KPgRW,KOhRiB,KAA5B,E;YAA2C,YAAO,K;;;cACxC,qB;cAAQ,OP+QlB,IO/QkB,K;UAAtB,wBAAc,IAAd,C;eAAA;A,kBAAKN,QAAS,iB;cAAA,6C;cACN,MP8QJ,IO9QI,IAAqB,KAArB,CAA4B,KAA5B,KP8QO,KO9QyC,IAAqB,KAArB,CAA4B,KAA5E,E;gBAAwF,YAAO,K;;;cAC/F,YP6QJ,IO7QI,IAAqB,KAArB,CAA4B,KAA5B,EP6QO,KO7QmC,IAAqB,KAArB,CAA4B,KAAtE,E;gBAA4E,YAAO,K;;;;YAF3F,4BAAc,IAAd,C;UAIA,YAAO,I;;QP+QF,OAJD,S;MAIA,C;cAEJQ,CAAAA,EAA+B;A,QAAS,OAAT,4B;MAAQ,C;cAEvCC,CAAAA,EAAkC;A,QAAc,OAAd,kB;MAAa,C;;;;;;;;;mCAnVnDC,CACIjC,U,EACAE,c,EACAgC,aAHJD,EAIoB;A;;UADyC,iC;;;;;;;ECnBrD,KC0R+C,CAAC,QFrQ5C,UEqQ4C,CD1RhD,C,CAAQ;A,QACR7B,UDoB+B,mC;ICnB/B,mCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;MDmBAC,iDAA6C,UAA7CA,C;EACU,cAAV,SAAU,C;EACV,oCACI,UADJ,uBAGI,SAAuB,CAAb,IAAa,KAH3B,EAImB,OAAf,cAAe,CAJnB,EAKI,SALJ,C;AAOJ,C;kCAoBA8B,CACqCnC,U,EAAoBC,IADzDkC,EACgG;A;;ECpDxF,KC0R+C,CAAC,QFrO5C,UEqO4C,CD1RhD,C,CAAQ;A,QACR/B,UDoD+B,mC;ICnD/B,mCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;EDmDA,OAAO,wBAAwB,UAAxB,EAAoC,IAApC,C;AACX,C;qCAiEuDgC,CAAA,aAAAA,EAAA;A,EAAE,oB;AAAD,C;0CArGKC,CAAA,aAAAA,EAAA;A,EAAE,oB;AAAD,C;;;;;"}
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/descriptors/SerialDescriptors.kt","src/kotlin/util/Preconditions.kt","src/kotlin/text/Strings.kt","src/kotlin/collections/MutableCollections.kt","src/kotlin/util/Lazy.kt","js/src/kotlin/collectionJs.kt","common/src/generated/_Collections.kt","../../../../../../../../../../../../mnt/agent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.kt"],"sourcesContent":[null,null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["PrimitiveSerialDescriptor","serialName","kind","message","buildClassSerialDescriptor","typeParameters","builderAction","sdBuilder","element","elementName","descriptor","annotations","isOptional","element$default","buildSerialDescriptor","builder","<get-_hashCode>","SerialDescriptorImpl$_hashCode$delegate$lambda","SerialDescriptorImpl$_hashCode$delegate$lambda$lambda","elementsCount","item","<get-serialName>","<get-kind>","<get-elementsCount>","<get-annotations>","<get-serialNames>","getElementName","index","getElementIndex","name","getElementAnnotations","getElementDescriptor","isElementOptional","equals","other","hashCode","toString","buildClassSerialDescriptor$lambda","buildSerialDescriptor$lambda"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAsFAA,CACqCC,U,EAAoBC,IADzDF,EACgG;A;;ECpDxF,KC0R+C,CAAC,QFrO5C,UEqO4C,CD1RhD,C,CAAQ;A,QACRG,UDoD+B,mC;ICnD/B,oCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;EDmDA,OAAO,wBAAwB,UAAxB,EAAoC,IAApC,C;AACX,C;mCAvCAC,CACIH,U,EACAI,c,EACAC,aAHJF,EAIoB;A;;UADyC,iC;;;;;;;ECnBrD,KC0R+C,CAAC,QFrQ5C,UEqQ4C,CD1RhD,C,CAAQ;A,QACRD,UDoB+B,mC;ICnB/B,oCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;MDmBAI,iDAA6C,UAA7CA,C;EACU,cAAV,SAAU,C;EACV,oCACI,UADJ,uBAGI,SAAuB,CAAb,KAAa,KAH3B,EAImB,OAAf,cAAe,CAJnB,EAKI,SALJ,C;AAOJ,C;;;;;kBA4NIN,U;QAAA,uB;QAUiC,kB;QAMU,wB;QAEM,6B;QACH,2B;QACmB,6B;QACA,6B;QACT,6B;;SAoBxDO,CACIC,W,EACAC,U,EACAC,W,EACAC,UAJJJ,EAKE;A;QC1SE,KD2SQ,IAAY,CAAZ,KAAY,GAAI,WAAJ,CC3SpB,C,CAAQ;A,cACRL,UD0SyC,qBAAD,GAAqB,WAArB,GAAgC,6BAAhC,GAA4D,IAA5D,CAA4D,K;UCzSpG,oCAAuC,SAAR,OAAQ,CAAvC,C;QACJ,C;;QDySI,IG9RC,CH8RD,KG9RC,GH8Re,WG9Rf,C;;QH+RD,IG/RC,CH+RD,KG/RC,GH+RqB,UG/RrB,C;;QHgSD,IGhSC,CHgSD,KGhSC,GHgSqB,WGhSrB,C;;QHiSD,IGjSC,CHiSD,KGjSC,GHiSqB,UGjSrB,C;MHkSL,C;SAXAU,CACIJ,W,EACAC,U,EACAC,W,EACAC,U,QAJJC,E;6CAGoC,W;2CACV,K;;;;;;;;;O;;;;;;;8BAtL9BC,CAEIb,U,EACAC,I,EACAG,c,EACAU,OALJD,EAMoB;A;;UADmC,4B;;;;;;;ECxH/C,KC0R+C,CAAC,QFhK5C,UEgK4C,CD1RhD,C,CAAQ;A,QACRX,UDyH+B,mC;ICxH/B,oCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;;EAHI,KD2HI,kCC3HJ,C,CAAQ;A,QACRA,YD0HmC,yE;ICzHnC,oCAAuC,SAAR,SAAQ,CAAvC,C;EACJ,C;MDyHAI,iDAA6C,UAA7CA,C;EACU,QAAV,SAAU,C;EACV,oCAA4B,UAA5B,EAAwC,IAAxC,EAA8C,SAAuB,CAAb,KAAa,KAArE,EAA0F,OAAf,cAAe,CAA1F,EAAoG,SAApG,C;AACJ,C;+BAmNIS,CAAA,KAAAA,EAA8B;A,aAAA,K,CAAA,K;;;EAAA,oG;EAAA,OIlU0D,S;AJkUX,C;uDAA1CC,CAlBvC,MAkBuCA,E;SAAAC,CAAAA,KAAE,qBAAa,MAAb,CAAa,KAAb,C;C;;iBAAP,0B;;;;;;kBAhB9BjB,U,EACAC,I,EACAiB,a,EACAd,c,EACAU,O;QAJA,uB;QACA,iB;QACA,0B;QAKqD,aAAR,OAAQ,M;QACQ,uBAArB,OAAqB,CAAb,KAAa,C;kBAEE,I;;qBAArB,O,CAAQ,K;QAAa,YKrVG,YAAY,MAAZ,C;QLsVmB,0BAA3B,OAA2B,CAAnB,KAAmB,C;oBACA,I;;qBAA3B,O,CAAQ,K;QAAmB,cKvVnB,YAAY,MAAZ,C;QLwVQ,4BAA3B,OAA2B,CAAnB,KAAmB,C;oBACuB,I;;qBAAzC,UAAb,IAAa,CAAb,KAAa,C;;0BMuqC3C,cAAa,gCAAwB,EAAxB,CAAb,C;YAuEA,oBAvEN,MAuEM,K;eAAA,sB,EACT;A,cADCK,OAAQ,sB;cN9uCiF,YAApB,GM+uC5C,IN/uC4C,CAAG,IAAH,EM+uC5C,IN/uC4C,CAAe,IAAf,C;UM+uCtE,WAAY,GAAI,SAAJ,C;QAAmB,C;QN/uC8D,oBMgvC1F,WNhvC0F,C;QACjB,0BAAf,cAAe,C;oBAClD,I;QAAA,mBAAK,oDAAL,C;;SAhB9BC,CAAAA,EAAA;A,QAAA,iB;MAA8B,C;SAC9BC,CAAAA,EAAA;A,QAAA,iB;MAA4B,C;SAC5BC,CAAAA,EAAA;A,QAAA,iB;MAA8B,C;SAK9BC,CAAAA,EAAA;A,QAAA,iB;MAAyC,C;SACzCC,CAAAA,EAAA;A,QAAA,iB;MAAoC,C;SAUpCC,CAA4BC,KAA5BD,EAAkD;A,QAA8B,OAAjB,WAAb,IAAa,CAAb,KAAa,EAAW,KAAX,C;MAAgB,C;SAC/EE,CAA6BC,IAA7BD,EAAkD;A,YAAA,+BAAW,IAAX,C;QAAiD,OAAjD,yBAAqC,EAArC,iB;MAAgD,C;SAClGE,CAAmCH,KAAnCG,EAAmE;A,QAAoC,OAAjB,WAAnB,IAAmB,CAAnB,KAAmB,EAAW,KAAX,C;MAAgB,C;SACtGC,CAAkCJ,KAAlCI,EAAkE;A,QAAoC,OAAjB,WAAnB,IAAmB,CAAnB,KAAmB,EAAW,KAAX,C;MAAgB,C;SACrGC,CAA+BL,KAA/BK,EAAsD;A,QAAoC,OAAjB,aAAnB,IAAmB,CAAnB,KAAmB,EAAW,KAAX,C;MAAgB,C;YAEzFC,CAAoBC,KAApBD,EACI;A;;;UOpRA,IPoRA,IOpRA,KPoRW,KOpRX,C;YAAgB,YAAO,I;;;UACvB,MPmRW,KOnRX,oC;YAAc,YAAO,K;;;UACrB,MPkRA,IOlRA,WPkRW,KOlRS,MAApB,E;YAAgC,YAAO,K;;;UACvC,KPkR8B,cAA1B,IAA0B,CAA1B,KAA0B,EADnB,KACmB,CACN,KADM,COlR9B,C;YAA4B,YAAO,K;;;UACnC,MPgRA,IOhRK,MAAL,KPgRW,KOhRiB,MAA5B,E;YAA2C,YAAO,K;;;cACxC,qB;cAAQ,OP+QlB,IO/QkB,M;UAAtB,wBAAc,IAAd,C;eAAA;A,kBAAKN,QAAS,iB;cAAA,6C;cACN,MP8QJ,IO9QI,KAAqB,KAArB,CAA4B,MAA5B,KP8QO,KO9QyC,KAAqB,KAArB,CAA4B,MAA5E,E;gBAAwF,YAAO,K;;;cAC/F,YP6QJ,IO7QI,KAAqB,KAArB,CAA4B,MAA5B,EP6QO,KO7QmC,KAAqB,KAArB,CAA4B,MAAtE,E;gBAA4E,YAAO,K;;;;YAF3F,4BAAc,IAAd,C;UAIA,YAAO,I;;QP+QF,OAJD,S;MAIA,C;cAEJQ,CAAAA,EAA+B;A,QAAS,OAAT,4B;MAAQ,C;cAEvCC,CAAAA,EAAkC;A,QAAc,OAAd,kB;MAAa,C;;;;;;;;;0CAhVUC,CAAA,aAAAA,EAAA;A,EAAE,oB;AAAD,C;qCAqGPC,CAAA,aAAAA,EAAA;A,EAAE,oB;AAAD,C;;;;;"}
@@ -3,122 +3,13 @@ import {
3
3
  initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
4
4
  } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
5
5
  import { VOID3gxj6tk5isa35 as VOID } from '../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
6
- import { getKClassFromExpression3vpejubogshaw as getKClassFromExpression } from '../../../../kotlin-kotlin-stdlib/reflection.mjs';
6
+ import { getKClassFromExpression348iqjl4fnx2f as getKClassFromExpression } from '../../../../kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs';
7
7
  import { ensureNotNull1e947j3ixpazm as ensureNotNull } from '../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
8
8
  import { getStringHashCode26igk1bx568vk as getStringHashCode } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
9
9
  //region block: imports
10
10
  //endregion
11
11
  //region block: pre-declaration
12
12
  //endregion
13
- var ENUMClass;
14
- function ENUM() {
15
- if (ENUMClass === VOID) {
16
- class $ extends SerialKind() {
17
- constructor() {
18
- ENUM_instance = null;
19
- super();
20
- ENUM_instance = this;
21
- }
22
- }
23
- initMetadataForObject($, 'ENUM');
24
- ENUMClass = $;
25
- }
26
- return ENUMClass;
27
- }
28
- var ENUM_instance;
29
- function ENUM_getInstance() {
30
- if (ENUM_instance === VOID)
31
- new (ENUM())();
32
- return ENUM_instance;
33
- }
34
- var CONTEXTUALClass;
35
- function CONTEXTUAL() {
36
- if (CONTEXTUALClass === VOID) {
37
- class $ extends SerialKind() {
38
- constructor() {
39
- CONTEXTUAL_instance = null;
40
- super();
41
- CONTEXTUAL_instance = this;
42
- }
43
- }
44
- initMetadataForObject($, 'CONTEXTUAL');
45
- CONTEXTUALClass = $;
46
- }
47
- return CONTEXTUALClass;
48
- }
49
- var CONTEXTUAL_instance;
50
- function CONTEXTUAL_getInstance() {
51
- if (CONTEXTUAL_instance === VOID)
52
- new (CONTEXTUAL())();
53
- return CONTEXTUAL_instance;
54
- }
55
- var SerialKindClass;
56
- function SerialKind() {
57
- if (SerialKindClass === VOID) {
58
- class $ {
59
- toString() {
60
- return ensureNotNull(getKClassFromExpression(this).ag());
61
- }
62
- hashCode() {
63
- return getStringHashCode(this.toString());
64
- }
65
- }
66
- initMetadataForClass($, 'SerialKind');
67
- SerialKindClass = $;
68
- }
69
- return SerialKindClass;
70
- }
71
- var SEALEDClass;
72
- function SEALED() {
73
- if (SEALEDClass === VOID) {
74
- class $ extends PolymorphicKind() {
75
- constructor() {
76
- SEALED_instance = null;
77
- super();
78
- SEALED_instance = this;
79
- }
80
- }
81
- initMetadataForObject($, 'SEALED');
82
- SEALEDClass = $;
83
- }
84
- return SEALEDClass;
85
- }
86
- var SEALED_instance;
87
- function SEALED_getInstance() {
88
- if (SEALED_instance === VOID)
89
- new (SEALED())();
90
- return SEALED_instance;
91
- }
92
- var OPENClass;
93
- function OPEN() {
94
- if (OPENClass === VOID) {
95
- class $ extends PolymorphicKind() {
96
- constructor() {
97
- OPEN_instance = null;
98
- super();
99
- OPEN_instance = this;
100
- }
101
- }
102
- initMetadataForObject($, 'OPEN');
103
- OPENClass = $;
104
- }
105
- return OPENClass;
106
- }
107
- var OPEN_instance;
108
- function OPEN_getInstance() {
109
- if (OPEN_instance === VOID)
110
- new (OPEN())();
111
- return OPEN_instance;
112
- }
113
- var PolymorphicKindClass;
114
- function PolymorphicKind() {
115
- if (PolymorphicKindClass === VOID) {
116
- class $ extends SerialKind() {}
117
- initMetadataForClass($, 'PolymorphicKind');
118
- PolymorphicKindClass = $;
119
- }
120
- return PolymorphicKindClass;
121
- }
122
13
  var BOOLEANClass;
123
14
  function BOOLEAN() {
124
15
  if (BOOLEANClass === VOID) {
@@ -410,6 +301,115 @@ function StructureKind() {
410
301
  }
411
302
  return StructureKindClass;
412
303
  }
304
+ var ENUMClass;
305
+ function ENUM() {
306
+ if (ENUMClass === VOID) {
307
+ class $ extends SerialKind() {
308
+ constructor() {
309
+ ENUM_instance = null;
310
+ super();
311
+ ENUM_instance = this;
312
+ }
313
+ }
314
+ initMetadataForObject($, 'ENUM');
315
+ ENUMClass = $;
316
+ }
317
+ return ENUMClass;
318
+ }
319
+ var ENUM_instance;
320
+ function ENUM_getInstance() {
321
+ if (ENUM_instance === VOID)
322
+ new (ENUM())();
323
+ return ENUM_instance;
324
+ }
325
+ var CONTEXTUALClass;
326
+ function CONTEXTUAL() {
327
+ if (CONTEXTUALClass === VOID) {
328
+ class $ extends SerialKind() {
329
+ constructor() {
330
+ CONTEXTUAL_instance = null;
331
+ super();
332
+ CONTEXTUAL_instance = this;
333
+ }
334
+ }
335
+ initMetadataForObject($, 'CONTEXTUAL');
336
+ CONTEXTUALClass = $;
337
+ }
338
+ return CONTEXTUALClass;
339
+ }
340
+ var CONTEXTUAL_instance;
341
+ function CONTEXTUAL_getInstance() {
342
+ if (CONTEXTUAL_instance === VOID)
343
+ new (CONTEXTUAL())();
344
+ return CONTEXTUAL_instance;
345
+ }
346
+ var SerialKindClass;
347
+ function SerialKind() {
348
+ if (SerialKindClass === VOID) {
349
+ class $ {
350
+ toString() {
351
+ return ensureNotNull(getKClassFromExpression(this).we());
352
+ }
353
+ hashCode() {
354
+ return getStringHashCode(this.toString());
355
+ }
356
+ }
357
+ initMetadataForClass($, 'SerialKind');
358
+ SerialKindClass = $;
359
+ }
360
+ return SerialKindClass;
361
+ }
362
+ var SEALEDClass;
363
+ function SEALED() {
364
+ if (SEALEDClass === VOID) {
365
+ class $ extends PolymorphicKind() {
366
+ constructor() {
367
+ SEALED_instance = null;
368
+ super();
369
+ SEALED_instance = this;
370
+ }
371
+ }
372
+ initMetadataForObject($, 'SEALED');
373
+ SEALEDClass = $;
374
+ }
375
+ return SEALEDClass;
376
+ }
377
+ var SEALED_instance;
378
+ function SEALED_getInstance() {
379
+ if (SEALED_instance === VOID)
380
+ new (SEALED())();
381
+ return SEALED_instance;
382
+ }
383
+ var OPENClass;
384
+ function OPEN() {
385
+ if (OPENClass === VOID) {
386
+ class $ extends PolymorphicKind() {
387
+ constructor() {
388
+ OPEN_instance = null;
389
+ super();
390
+ OPEN_instance = this;
391
+ }
392
+ }
393
+ initMetadataForObject($, 'OPEN');
394
+ OPENClass = $;
395
+ }
396
+ return OPENClass;
397
+ }
398
+ var OPEN_instance;
399
+ function OPEN_getInstance() {
400
+ if (OPEN_instance === VOID)
401
+ new (OPEN())();
402
+ return OPEN_instance;
403
+ }
404
+ var PolymorphicKindClass;
405
+ function PolymorphicKind() {
406
+ if (PolymorphicKindClass === VOID) {
407
+ class $ extends SerialKind() {}
408
+ initMetadataForClass($, 'PolymorphicKind');
409
+ PolymorphicKindClass = $;
410
+ }
411
+ return PolymorphicKindClass;
412
+ }
413
413
  //region block: exports
414
414
  export {
415
415
  OPEN_getInstance as OPEN_getInstance3ec6az8uwus55,
@@ -1 +1 @@
1
- {"version":3,"sources":["Z:/BuildAgent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/descriptors/SerialKinds.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["toString","hashCode"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoDIA,CAAAA,EAAgC;A,QAE5B,OAAO,cAAY,wBAAZ,IAAY,MAAZ,C;MACX,C;cAGAC,CAAAA,EAA+B;A,QAAqB,OAAV,kBAAX,eAAW,C;MAAS,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"sources":["../../../../../../../../../../../../mnt/agent/work/b2fef8360e1bcf3d/core/commonMain/src/kotlinx/serialization/descriptors/SerialKinds.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["toString","hashCode"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoDIA,CAAAA,EAAgC;A,QAE5B,OAAO,cAAY,wBAAZ,IAAY,MAAZ,C;MACX,C;cAGAC,CAAAA,EAA+B;A,QAAqB,OAAV,kBAAX,eAAW,C;MAAS,C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}