@attocash/commons-js 5.4.1 → 6.1.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.
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs +73 -64
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DateTimeUnit.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs +20 -24
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/DayOfWeek.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs +46 -46
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Exceptions.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs +307 -115
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDate.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs +152 -71
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalDateTime.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs +219 -98
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/LocalTime.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs +76 -27
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Month.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs +49 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/OverloadMarker.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs +287 -101
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/TimeZone.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs +94 -155
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/UtcOffset.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs +139 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/YearMonth.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs +79 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/ZonedDateTime.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs +13 -6
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormat.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs +61 -40
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeFormatBuilder.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs +185 -543
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateFormat.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs +124 -111
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalDateTimeFormat.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs +188 -177
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/LocalTimeFormat.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs +285 -198
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/UtcOffsetFormat.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs +400 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/YearMonthFormat.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/MonthDayTime.mjs +29 -0
- 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
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs +147 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/OffsetInfo.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs +412 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/Platform.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs +37 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/PlatformSpecifics.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs +102 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/RegionTimeZone.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs +237 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/TimeZoneRules.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs +47 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/dateCalculations.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs +14 -11
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Builder.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs +77 -162
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldFormatDirective.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs +50 -48
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FieldSpec.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs +169 -174
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/FormatStructure.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs +16 -16
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/Predicate.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs +115 -12
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/Formatter.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs +117 -63
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/formatter/FormatterOperation.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs +46 -46
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/NumberConsumer.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs +4 -4
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParseResult.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs +89 -89
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/Parser.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs +128 -371
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/format/parser/ParserOperation.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs +20 -19
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/math.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs +51 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathNative.mjs.map +1 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs +0 -35
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/util.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs +112 -123
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/DateTimeUnitSerializers.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs +22 -22
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateSerializers.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs +22 -22
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalDateTimeSerializers.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs +22 -22
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/LocalTimeSerializers.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs +64 -64
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/TimeZoneSerializers.mjs.map +1 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs +53 -0
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/YearMonthSerializers.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/{AccountUpdate.js.export.d.ts → AccountUpdate.js.export.d.mts} +1 -1
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.export.mjs +1 -1
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs +19 -22
- package/commons-commons-core/cash/atto/commons/AccountUpdate.js.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoAccount.export.d.ts → AttoAccount.export.d.mts} +14 -10
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoAccount.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoAccount.mjs +165 -175
- package/commons-commons-core/cash/atto/commons/AttoAccount.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoAccountEntry.export.d.ts → AttoAccountEntry.export.d.mts} +10 -6
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs +164 -183
- package/commons-commons-core/cash/atto/commons/AttoAccountEntry.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoAddress.export.d.ts → AttoAddress.export.d.mts} +9 -4
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs +5 -2
- package/commons-commons-core/cash/atto/commons/AttoAddress.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoAddress.mjs +83 -41
- package/commons-commons-core/cash/atto/commons/AttoAddress.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoAlgorithm.export.d.ts → AttoAlgorithm.export.d.mts} +5 -2
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs +4 -3
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs +21 -21
- package/commons-commons-core/cash/atto/commons/AttoAlgorithm.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoAmount.export.d.ts → AttoAmount.export.d.mts} +11 -6
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs +9 -4
- package/commons-commons-core/cash/atto/commons/AttoAmount.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoAmount.mjs +83 -69
- package/commons-commons-core/cash/atto/commons/AttoAmount.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoBlock.export.d.ts → AttoBlock.export.d.mts} +60 -25
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs +12 -11
- package/commons-commons-core/cash/atto/commons/AttoBlock.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoBlock.mjs +1131 -1180
- package/commons-commons-core/cash/atto/commons/AttoBlock.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs +16 -16
- package/commons-commons-core/cash/atto/commons/AttoBufferExtensions.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoChallenge.export.d.ts → AttoChallenge.export.d.mts} +5 -1
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoChallenge.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs +16 -16
- package/commons-commons-core/cash/atto/commons/AttoChallenge.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.d.mts +10 -0
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs +13 -0
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs +72 -0
- package/commons-commons-core/cash/atto/commons/AttoFuture.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/{AttoHash.export.d.ts → AttoHash.export.d.mts} +6 -2
- package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoHash.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoHash.mjs +35 -35
- package/commons-commons-core/cash/atto/commons/AttoHash.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs +1 -1
- package/commons-commons-core/cash/atto/commons/AttoHasher.js.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoHeight.export.d.ts → AttoHeight.export.d.mts} +10 -5
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs +5 -2
- package/commons-commons-core/cash/atto/commons/AttoHeight.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoHeight.mjs +54 -47
- package/commons-commons-core/cash/atto/commons/AttoHeight.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoInstant.export.d.mts +33 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs +20 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.mjs +189 -0
- package/commons-commons-core/cash/atto/commons/AttoInstant.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoJob.mjs +26 -0
- package/commons-commons-core/cash/atto/commons/AttoJob.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.d.mts +16 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs +17 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.export.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs +82 -0
- package/commons-commons-core/cash/atto/commons/AttoKeyIndex.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.d.mts +33 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs +22 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs +23 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs +184 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonic.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs +61 -0
- package/commons-commons-core/cash/atto/commons/AttoMnemonicDictionary.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/{AttoNetwork.export.d.ts → AttoNetwork.export.d.mts} +8 -4
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs +8 -7
- package/commons-commons-core/cash/atto/commons/AttoNetwork.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs +30 -30
- package/commons-commons-core/cash/atto/commons/AttoNetwork.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoPrivateKey.export.d.ts → AttoPrivateKey.export.d.mts} +7 -3
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs +5 -2
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs +8 -8
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.js.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs +38 -31
- package/commons-commons-core/cash/atto/commons/AttoPrivateKey.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoPublicKey.export.d.ts → AttoPublicKey.export.d.mts} +5 -1
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.export.mjs.map +1 -1
- 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
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.export.mjs +12 -0
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.js.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs +29 -29
- package/commons-commons-core/cash/atto/commons/AttoPublicKey.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoReceivable.export.d.ts → AttoReceivable.export.d.mts} +9 -4
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoReceivable.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs +148 -133
- package/commons-commons-core/cash/atto/commons/AttoReceivable.mjs.map +1 -1
- 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
- package/commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs +12 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs +91 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.js.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/AttoSeed.mjs +29 -4
- package/commons-commons-core/cash/atto/commons/AttoSeed.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoSignature.export.d.ts → AttoSignature.export.d.mts} +5 -1
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoSignature.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoSignature.js.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoSignature.mjs +30 -30
- package/commons-commons-core/cash/atto/commons/AttoSignature.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs +23 -441
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoSigner.mjs +19 -135
- package/commons-commons-core/cash/atto/commons/AttoSigner.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs +7 -7
- package/commons-commons-core/cash/atto/commons/AttoSocketAddress.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoTransaction.export.d.ts → AttoTransaction.export.d.mts} +9 -3
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoTransaction.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs +105 -92
- package/commons-commons-core/cash/atto/commons/AttoTransaction.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoValidation.mjs +63 -0
- package/commons-commons-core/cash/atto/commons/AttoValidation.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/{AttoVersion.export.d.ts → AttoVersion.export.d.mts} +5 -1
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoVersion.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoVersion.mjs +17 -18
- package/commons-commons-core/cash/atto/commons/AttoVersion.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoVote.export.d.ts → AttoVote.export.d.mts} +9 -5
- package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoVote.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoVote.mjs +105 -111
- package/commons-commons-core/cash/atto/commons/AttoVote.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/{AttoWork.export.d.ts → AttoWork.export.d.mts} +5 -2
- package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs +3 -2
- package/commons-commons-core/cash/atto/commons/AttoWork.export.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoWork.mjs +68 -98
- package/commons-commons-core/cash/atto/commons/AttoWork.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs +147 -0
- package/commons-commons-core/cash/atto/commons/AttoWorkTarget.mjs.map +1 -0
- package/commons-commons-core/cash/atto/commons/Extensions.mjs +44 -10
- package/commons-commons-core/cash/atto/commons/Extensions.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/utils/Base32.mjs +14 -14
- package/commons-commons-core/cash/atto/commons/utils/Base32.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs +1 -1
- package/commons-commons-core/cash/atto/commons/utils/SecureRandom.js.mjs.map +1 -1
- package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs +37 -0
- package/commons-commons-core/cash/atto/commons/utils/SubtleCrypto.mjs.map +1 -0
- package/commons-commons-core.mjs +6 -1
- package/commons-commons-core.mjs.map +1 -1
- package/commons-commons-js.mjs +0 -1
- package/commons-commons-js.mjs.map +1 -1
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs +29 -0
- package/{kotlin-kotlin-stdlib/kotlin/Number.mjs.map → commons-commons-node/cash/atto/commons/node/AttoNodeClient.mjs.map} +1 -1
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.d.mts +22 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs +1248 -0
- package/commons-commons-node/cash/atto/commons/node/AttoNodeClientAsync.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/{AttoNodeOperations.export.d.ts → AttoNodeOperations.export.d.mts} +25 -9
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs +6 -5
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.export.mjs.map +1 -1
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs +215 -324
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.mjs.map +1 -1
- package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs +21 -21
- package/commons-commons-node/cash/atto/commons/node/NodeExtensions.mjs.map +1 -1
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs +66 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitor.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.d.mts +10 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs +189 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsync.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.d.mts +11 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs +97 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountEntryMonitorAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs +251 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitor.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.d.mts +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs +280 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsync.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.d.mts +10 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs +33 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoAccountMonitorAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs +339 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoHeightMonitor.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs +66 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitor.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.d.mts +10 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs +189 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsync.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.d.mts +11 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs +97 -0
- package/commons-commons-node/cash/atto/commons/node/monitor/AttoTransactionMonitorAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.d.mts +12 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs +75 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs +2039 -0
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClientRemote.mjs.map +1 -0
- package/commons-commons-node-remote.mjs +1 -1
- package/commons-commons-node.mjs +7 -0
- package/commons-commons-node.mjs.map +1 -1
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWallet.mjs +987 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWallet.mjs.map +1 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.d.mts +24 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.mjs +13 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.export.mjs.map +1 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.mjs +440 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsync.mjs.map +1 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.export.d.mts +8 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.export.mjs +4 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.d.mts +13 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.mjs +13 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.mjs.map +1 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.mjs +147 -0
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.mjs.map +1 -0
- package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs → commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.mjs} +7 -12
- package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.mjs.map +1 -0
- package/commons-commons-wallet.mjs +8 -0
- package/{commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs.map → commons-commons-wallet.mjs.map} +1 -1
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs +4 -4
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorker.mjs.map +1 -1
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.d.mts +13 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs +13 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.export.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs +124 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerAsync.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs +348 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerCache.mjs.map +1 -0
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs +95 -143
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerOperations.mjs.map +1 -1
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.d.mts +15 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs +13 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.export.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs +111 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerAsyncBuilder.web.mjs.map +1 -0
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs +149 -260
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.mjs.map +1 -1
- package/commons-commons-worker-remote.mjs +1 -1
- package/commons-commons-worker.mjs +3 -0
- package/commons-commons-worker.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/index.mjs +1 -0
- package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs +2 -2
- package/kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/Char.mjs +18 -18
- package/kotlin-kotlin-stdlib/kotlin/Char.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +28 -28
- package/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/Enum.mjs +10 -10
- package/kotlin-kotlin-stdlib/kotlin/Enum.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs +33 -0
- package/kotlin-kotlin-stdlib/kotlin/ExceptionsH.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +10 -10
- package/kotlin-kotlin-stdlib/kotlin/Lazy.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/Library.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs +27 -19
- package/kotlin-kotlin-stdlib/kotlin/NumbersJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs +9 -136
- package/kotlin-kotlin-stdlib/kotlin/Primitives.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/Result.mjs +11 -12
- package/kotlin-kotlin-stdlib/kotlin/Result.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/Standard.mjs +4 -4
- package/kotlin-kotlin-stdlib/kotlin/Standard.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +21 -24
- package/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/UByte.mjs +12 -12
- package/kotlin-kotlin-stdlib/kotlin/UByte.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +50 -33
- package/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/UInt.mjs +15 -15
- package/kotlin-kotlin-stdlib/kotlin/UInt.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +50 -33
- package/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ULong.mjs +14 -15
- package/kotlin-kotlin-stdlib/kotlin/ULong.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +50 -33
- package/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/UShort.mjs +12 -12
- package/kotlin-kotlin-stdlib/kotlin/UShort.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +50 -33
- package/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/Unit.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs +54 -41
- package/kotlin-kotlin-stdlib/kotlin/UnsignedJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs +15 -17
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractCollection.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs +98 -71
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractList.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs +81 -80
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMap.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +51 -17
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs +107 -82
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableListJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs +35 -35
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableMap.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs +4 -4
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableSet.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs +11 -11
- package/kotlin-kotlin-stdlib/kotlin/collections/AbstractSet.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs +264 -219
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayDeque.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayFunctions.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs +101 -74
- package/kotlin-kotlin-stdlib/kotlin/collections/ArrayListJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs +1 -3
- package/kotlin-kotlin-stdlib/kotlin/collections/ArraySorting.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.d.mts +42 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs +20 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.export.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +86 -17
- package/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs +125 -99
- package/kotlin-kotlin-stdlib/kotlin/collections/CollectionsKt.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs +37 -37
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMap.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +90 -70
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs +64 -50
- package/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntryDefault.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs +31 -28
- package/kotlin-kotlin-stdlib/kotlin/collections/HashSet.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs +7 -9
- package/kotlin-kotlin-stdlib/kotlin/collections/IndexedValue.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs +267 -237
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalHashMap.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/InternalMap.mjs +5 -5
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs +17 -17
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterables.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs +8 -8
- package/kotlin-kotlin-stdlib/kotlin/collections/Iterators.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs +57 -11
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashMap.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs +11 -11
- package/kotlin-kotlin-stdlib/kotlin/collections/LinkedHashSet.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs +4 -4
- package/kotlin-kotlin-stdlib/kotlin/collections/MapWithDefault.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs +135 -87
- package/kotlin-kotlin-stdlib/kotlin/collections/Maps.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs +42 -15
- package/kotlin-kotlin-stdlib/kotlin/collections/MutableCollections.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs +6 -20
- package/kotlin-kotlin-stdlib/kotlin/collections/PrimitiveIterators.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs +22 -23
- package/kotlin-kotlin-stdlib/kotlin/collections/Sets.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/SlidingWindow.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs +165 -140
- package/kotlin-kotlin-stdlib/kotlin/collections/_Arrays.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs +67 -68
- package/kotlin-kotlin-stdlib/kotlin/collections/_ArraysJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs +262 -260
- package/kotlin-kotlin-stdlib/kotlin/collections/_Collections.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs +4 -4
- package/kotlin-kotlin-stdlib/kotlin/collections/_CollectionsJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs +13 -13
- package/kotlin-kotlin-stdlib/kotlin/collections/_Maps.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs +33 -6
- package/kotlin-kotlin-stdlib/kotlin/collections/_Sets.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs +16 -16
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs +5 -5
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsHacks.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs +266 -0
- package/kotlin-kotlin-stdlib/kotlin/collections/collectionsInterop.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs +27 -0
- package/kotlin-kotlin-stdlib/kotlin/comparisons/Comparisons.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs +3 -3
- package/kotlin-kotlin-stdlib/kotlin/coroutines/Continuation.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs +5 -5
- package/kotlin-kotlin-stdlib/kotlin/coroutines/ContinuationInterceptor.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs +10 -10
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContext.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs +43 -44
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineContextImpl.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs +9 -111
- package/kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs +199 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/GeneratorCoroutineImpl.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs +5 -7
- package/kotlin-kotlin-stdlib/kotlin/coroutines/InterceptedCoroutine.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs +18 -18
- package/kotlin-kotlin-stdlib/kotlin/coroutines/SafeContinuationJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/coroutines/cancellation/CancellationException.mjs +8 -8
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs +134 -107
- package/kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs +26 -18
- package/kotlin-kotlin-stdlib/kotlin/enums/EnumEntries.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs +116 -116
- package/kotlin-kotlin-stdlib/kotlin/exceptions.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/hacks.mjs +10 -5
- package/kotlin-kotlin-stdlib/kotlin/hacks.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs +33 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/IrLinkageError.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs +4 -0
- package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs +1 -21
- package/kotlin-kotlin-stdlib/kotlin/internal/progressionUtil.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/BitMask.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/JsClass.mjs +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs +11 -12
- package/kotlin-kotlin-stdlib/kotlin/js/arrays.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/bitUtils.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/charSequenceJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs +4 -3
- package/kotlin-kotlin-stdlib/kotlin/js/compareTo.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs +58 -27
- package/kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/coroutineInternalJS.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs +22 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/BigInt.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs +258 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/boxedLong/boxedLong.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs +246 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/longAsBigInt/longAsBigInt.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs +26 -26
- package/kotlin-kotlin-stdlib/kotlin/js/internal/primitiveCompanionObjects.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/json.mjs +25 -0
- package/kotlin-kotlin-stdlib/kotlin/js/json.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs +4 -5
- package/kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs +3 -26
- package/kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/rangeTo.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs +20 -3
- package/kotlin-kotlin-stdlib/kotlin/js/reflectRuntime.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/regexp.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs +1 -2
- package/kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/js/void.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs +14 -14
- package/kotlin-kotlin-stdlib/kotlin/kotlin.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/math/math.mjs +14 -14
- package/kotlin-kotlin-stdlib/kotlin/math/math.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/random/PlatformRandom.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +105 -13
- package/kotlin-kotlin-stdlib/kotlin/random/Random.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +38 -38
- package/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +35 -103
- package/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +28 -62
- package/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +30 -93
- package/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ranges/Range.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ranges/Ranges.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs +24 -24
- package/kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs +0 -10
- package/kotlin-kotlin-stdlib/kotlin/reflect/KPropertyJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +21 -25
- package/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs +36 -67
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KClassImpl.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/{KTypeHelpers.mjs → kotlin/reflect/js/internal/KTypeHelpers.mjs} +13 -13
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeHelpers.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs +17 -17
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeImpl.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs +18 -16
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/KTypeParameterImpl.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs +58 -47
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/primitives.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/{reflection.mjs → kotlin/reflect/js/internal/reflection.mjs} +7 -47
- package/kotlin-kotlin-stdlib/kotlin/reflect/js/internal/reflection.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs +43 -43
- package/kotlin-kotlin-stdlib/kotlin/sequences/SequenceBuilder.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs +33 -33
- package/kotlin-kotlin-stdlib/kotlin/sequences/Sequences.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs +18 -18
- package/kotlin-kotlin-stdlib/kotlin/sequences/_Sequences.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/Appendable.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs +6 -6
- package/kotlin-kotlin-stdlib/kotlin/text/Char.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/CharacterCodingExceptionJs.mjs +6 -6
- package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs +56 -49
- package/kotlin-kotlin-stdlib/kotlin/text/HexExtensions.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs +59 -59
- package/kotlin-kotlin-stdlib/kotlin/text/HexFormat.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs +26 -28
- package/kotlin-kotlin-stdlib/kotlin/text/Indent.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs +43 -43
- package/kotlin-kotlin-stdlib/kotlin/text/StringBuilderJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs +32 -22
- package/kotlin-kotlin-stdlib/kotlin/text/StringNumberConversions.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +397 -412
- package/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs +63 -61
- package/kotlin-kotlin-stdlib/kotlin/text/UStrings.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/_CharCategories.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs +3 -3
- package/kotlin-kotlin-stdlib/kotlin/text/_DigitChars.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs +7 -7
- package/kotlin-kotlin-stdlib/kotlin/text/_LetterChars.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +33 -33
- package/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/_WhitespaceChars.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/charJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs +19 -19
- package/kotlin-kotlin-stdlib/kotlin/text/numberConversions.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs +21 -21
- package/kotlin-kotlin-stdlib/kotlin/text/regex.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs +36 -36
- package/kotlin-kotlin-stdlib/kotlin/text/stringJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs +54 -54
- package/kotlin-kotlin-stdlib/kotlin/text/stringsCode.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs +13 -13
- package/kotlin-kotlin-stdlib/kotlin/text/utf8Encoding.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs +29 -29
- package/kotlin-kotlin-stdlib/kotlin/throwableExtensions.mjs.map +1 -1
- package/{Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime → kotlin-kotlin-stdlib/kotlin/time}/Clock.mjs +6 -6
- package/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +144 -118
- package/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs +3 -3
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnit.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs +15 -12
- package/kotlin-kotlin-stdlib/kotlin/time/DurationUnitJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +953 -0
- package/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs +16 -0
- package/kotlin-kotlin-stdlib/kotlin/time/InstantJs.mjs.map +1 -0
- package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +31 -29
- package/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs +13 -9
- package/kotlin-kotlin-stdlib/kotlin/uuid/UuidJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/noPackageHacks.mjs.map +1 -1
- package/kotlin-kotlin-stdlib/reflectionJs.mjs +2 -2
- package/kotlin-kotlin-stdlib/reflectionJs.mjs.map +1 -1
- package/kotlin-kotlin-stdlib.mjs +7 -0
- package/kotlin-kotlin-stdlib.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +30 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +50 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +85 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +49 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +80 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +30 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +4 -4
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs.map +1 -1
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +38 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +15 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +60 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs.map +1 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +29 -2
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs.map +1 -1
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs.map +1 -1
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs +5 -5
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerNameResolver.mjs.map +1 -1
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +51 -0
- package/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs.map +1 -0
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +5 -5
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs.map +1 -1
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +79 -74
- package/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs.map +1 -1
- package/kotlinx-atomicfu/kotlinx/atomicfu/Trace.common.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +27 -27
- package/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +31 -195
- package/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +11 -11
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +229 -216
- package/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +18 -62
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +33 -33
- package/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +10 -28
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +6 -6
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +19 -19
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +4 -4
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +41 -32
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +8 -3
- package/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Debug.mjs +2 -2
- package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +47 -30
- package/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +51 -51
- package/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +18 -18
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +35 -32
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +2 -2
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +6 -6
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +10 -10
- package/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +131 -131
- package/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +62 -103
- package/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +492 -641
- package/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +4 -4
- package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +14 -14
- package/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +2 -153
- package/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +5 -5
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +746 -1307
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +107 -107
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +30 -28
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +20 -21
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +17 -16
- package/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +56 -83
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +56 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +70 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs +51 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +118 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs +249 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +15 -72
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs +25 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Merge.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +81 -249
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +89 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +286 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs +305 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/StateFlow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs +243 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +145 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +413 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +20 -4
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs +217 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/Merge.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +38 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +9 -9
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +24 -15
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +30 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs +16 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.common.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs +35 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Concurrent.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +55 -51
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +5 -5
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +4 -4
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +141 -141
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs +4 -4
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/InlineList.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +33 -33
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +4 -4
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +30 -30
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs +2 -5
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/StackTraceRecovery.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +2 -2
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs +10 -8
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/SystemProps.common.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +5 -5
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +26 -26
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +15 -19
- package/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +21 -21
- package/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -1
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs +257 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Mutex.mjs.map +1 -0
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs +101 -125
- package/kotlinx-coroutines-core/kotlinx/coroutines/sync/Semaphore.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +54 -54
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +2 -2
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +14 -14
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs +7 -7
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +279 -291
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +71 -68
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +35 -31
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +79 -79
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +200 -204
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +6 -6
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +2 -2
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs +3 -3
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sinks.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +69 -63
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +109 -100
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs +5 -2
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/UtilsJs.mjs.map +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs +1 -1
- package/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +12 -12
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/KSerializer.mjs +9 -9
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +47 -49
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs +64 -66
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SealedSerializer.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +35 -35
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +136 -138
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +8 -12
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +94 -89
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +56 -56
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +52 -52
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +117 -121
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs +110 -110
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialKinds.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +58 -59
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +66 -66
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +2 -2
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +35 -35
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +67 -30
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +78 -78
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +308 -308
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +29 -29
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +42 -46
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +19 -19
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +18 -18
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +17 -17
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +44 -44
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +23 -25
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +37 -37
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +62 -60
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +4 -4
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +137 -147
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs +10 -10
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginHelperInterfaces.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +454 -454
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +276 -277
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +109 -112
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +99 -99
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +85 -85
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +55 -55
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleBuilders.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +2 -4
- package/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +48 -48
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +18 -18
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +191 -166
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +281 -283
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +205 -197
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +72 -72
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +9 -9
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +46 -46
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +36 -38
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +66 -52
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +19 -19
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +3 -3
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +12 -12
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +113 -234
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +13 -13
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +12 -12
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +195 -190
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +142 -142
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs +6 -6
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringOps.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +281 -276
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +9 -9
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs.map +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs +1 -1
- package/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/createMapForCache.mjs.map +1 -1
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +354 -588
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs +1 -1
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +1 -1
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +4 -4
- package/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +142 -278
- package/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +49 -49
- package/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs +3 -3
- package/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +3 -3
- package/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +43 -43
- package/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +104 -162
- package/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +66 -113
- package/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +4 -14
- package/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +36 -75
- package/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +165 -295
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +54 -60
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs +6 -6
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineCapability.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +4 -4
- package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +14 -14
- package/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +57 -57
- package/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +6 -8
- package/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +155 -323
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +88 -246
- package/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/js/ReadableStream.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +60 -131
- package/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +12 -12
- package/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs +21 -10
- package/ktor-ktor-client-core/io/ktor/client/network/sockets/TimeoutExceptions.nonJvm.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +108 -263
- package/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +105 -155
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +233 -462
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +222 -618
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +5 -5
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +119 -244
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +74 -184
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +74 -218
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +721 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +169 -247
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +193 -295
- package/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +85 -161
- package/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +15 -11
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +14 -14
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +45 -129
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +26 -26
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +150 -185
- package/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +41 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs.map +1 -0
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs +0 -2
- package/ktor-ktor-client-core/io/ktor/client/plugins/sse/SSE.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +128 -213
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +5 -37
- package/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +18 -18
- package/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +82 -108
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +32 -32
- package/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs +2 -2
- package/ktor-ktor-client-core/io/ktor/client/request/RequestBody.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +1 -1
- package/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +25 -25
- package/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +71 -156
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +62 -64
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +102 -364
- package/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +60 -170
- package/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
- package/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -6
- package/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +11 -11
- package/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -1
- package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
- package/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs.map +1 -1
- package/ktor-ktor-events/io/ktor/events/Events.mjs +16 -16
- package/ktor-ktor-events/io/ktor/events/Events.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/Codecs.mjs +162 -162
- package/ktor-ktor-http/io/ktor/http/Codecs.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +121 -121
- package/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +35 -35
- package/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/Headers.mjs +63 -63
- package/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +117 -118
- package/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +131 -130
- package/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +19 -19
- package/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +14 -17
- package/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +17 -44
- package/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +71 -71
- package/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/Parameters.mjs +18 -16
- package/ktor-ktor-http/io/ktor/http/Parameters.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/Query.mjs +4 -4
- package/ktor-ktor-http/io/ktor/http/Query.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +96 -96
- package/ktor-ktor-http/io/ktor/http/URLBuilder.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs +1 -1
- package/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/URLParser.mjs +42 -42
- package/ktor-ktor-http/io/ktor/http/URLParser.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +26 -28
- package/ktor-ktor-http/io/ktor/http/URLProtocol.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/URLUtils.mjs +47 -106
- package/ktor-ktor-http/io/ktor/http/URLUtils.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/Url.mjs +88 -128
- package/ktor-ktor-http/io/ktor/http/Url.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +56 -59
- package/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +10 -10
- package/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +8 -8
- package/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs.map +1 -1
- package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +13 -13
- package/ktor-ktor-http/io/ktor/http/content/TextContent.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +6 -7
- package/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +176 -238
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +90 -334
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +239 -580
- package/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +53 -110
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +91 -91
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +2 -2
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +54 -199
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +3 -3
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +3 -3
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs.map +1 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs +1 -38
- package/ktor-ktor-http-cio/io/ktor/http/cio/internals/Tokenizer.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +258 -419
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +144 -350
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +272 -1739
- package/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +24 -105
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +118 -356
- package/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +12 -14
- package/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +43 -93
- package/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/Deprecation.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +12 -12
- package/{ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs → ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs} +3 -3
- package/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs.map +1 -0
- package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +20 -21
- package/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +19 -19
- package/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +118 -117
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Decoder.js.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +37 -33
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +2 -2
- package/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +3 -3
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +8 -8
- package/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs +2 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/Buffers.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +3 -14
- package/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +9 -20
- package/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +17 -17
- package/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +29 -29
- package/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -1
- package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +4 -4
- package/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -1
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +20 -20
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs.map +1 -1
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +99 -270
- package/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -1
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +6 -6
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs.map +1 -1
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +216 -564
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs.map +1 -1
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +40 -40
- package/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs.map +1 -1
- package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
- package/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/Attributes.mjs +19 -20
- package/ktor-ktor-utils/io/ktor/util/Attributes.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs +15 -15
- package/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +64 -53
- package/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/Charset.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/Collections.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +2 -2
- package/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +70 -55
- package/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +3 -5
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +63 -67
- package/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs +3 -3
- package/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/StringValues.mjs +154 -161
- package/ktor-ktor-utils/io/ktor/util/StringValues.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/Text.mjs +10 -10
- package/ktor-ktor-utils/io/ktor/util/Text.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
- package/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/date/Date.mjs +112 -112
- package/ktor-ktor-utils/io/ktor/util/date/Date.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +11 -12
- package/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +23 -23
- package/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs +15 -15
- package/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs +3 -3
- package/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +45 -106
- package/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +30 -30
- package/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +72 -76
- package/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelineJs.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +3 -3
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +2 -4
- package/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +62 -62
- package/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
- package/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs.map +1 -1
- package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs +1 -1
- package/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +1 -1
- package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +22 -32
- package/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs.map +1 -1
- package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +1 -3
- package/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
- package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs +31 -87
- package/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +1 -1
- package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +17 -23
- package/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs.map +1 -1
- package/package.json +3 -4
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Clock.mjs.map +0 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs +0 -258
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/Instant.mjs.map +0 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs +0 -24
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/JSJodaExceptions.mjs.map +0 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs +0 -845
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/format/DateTimeComponents.mjs.map +0 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs +0 -46
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/internal/mathJs.mjs.map +0 -1
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs +0 -53
- package/Kotlin-DateTime-library-kotlinx-datetime/kotlinx/datetime/serializers/InstantSerializers.mjs.map +0 -1
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.d.ts +0 -14
- package/commons-commons-core/cash/atto/commons/AttoSigner.js.export.mjs +0 -12
- package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs +0 -55
- package/commons-commons-core/cash/atto/commons/serialiazer/AttoAddressAsByteArraySerializer.mjs.map +0 -1
- package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs +0 -54
- package/commons-commons-core/cash/atto/commons/serialiazer/InstantMillisSerializer.mjs.map +0 -1
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.d.ts +0 -23
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.export.mjs +0 -4
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs +0 -108
- package/commons-commons-node/cash/atto/commons/node/AttoNodeOperations.js.mjs.map +0 -1
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs +0 -2412
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeClient.mjs.map +0 -1
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.export.d.ts +0 -3
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.export.mjs +0 -12
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.mjs +0 -727
- package/commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.mjs.map +0 -1
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.d.ts +0 -10
- package/commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs +0 -4
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.export.mjs +0 -12
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs +0 -272
- package/commons-commons-worker-remote/cash/atto/commons/worker/AttoWorkerRemote.js.mjs.map +0 -1
- package/kotlin-kotlin-stdlib/KTypeHelpers.mjs.map +0 -1
- package/kotlin-kotlin-stdlib/kotlin/Number.mjs +0 -22
- package/kotlin-kotlin-stdlib/kotlin/longJs.mjs +0 -387
- package/kotlin-kotlin-stdlib/kotlin/longJs.mjs.map +0 -1
- package/kotlin-kotlin-stdlib/reflection.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs +0 -56
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOCommon.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs +0 -381
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngine.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs +0 -52
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/CIOEngineConfig.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs +0 -161
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionFactory.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs +0 -39
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ConnectionPipeline.nonJvm.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs +0 -1338
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Endpoint.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs +0 -122
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/EngineTasks.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs +0 -12
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/ExceptionUtils.nonJvm.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.export.mjs +0 -13
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs +0 -29
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/Loader.js.mjs.map +0 -1
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs +0 -1339
- package/ktor-ktor-client-cio/io/ktor/client/engine/cio/utils.mjs.map +0 -1
- package/ktor-ktor-client-cio.mjs +0 -12
- package/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.js.mjs.map +0 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs +0 -40
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs.map +0 -1
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs +0 -23
- package/ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs.map +0 -1
- package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs +0 -46
- package/ktor-ktor-client-core/io/ktor/client/request/UnixSockets.mjs.map +0 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs +0 -680
- package/ktor-ktor-http-cio/io/ktor/http/cio/ChunkedTransferEncoding.mjs.map +0 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs +0 -221
- package/ktor-ktor-http-cio/io/ktor/http/cio/ConnectionOptions.mjs.map +0 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs +0 -171
- package/ktor-ktor-http-cio/io/ktor/http/cio/HttpBody.mjs.map +0 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs +0 -51
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponse.mjs.map +0 -1
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs +0 -58
- package/ktor-ktor-http-cio/io/ktor/http/cio/RequestResponseBuilderJs.mjs.map +0 -1
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs +0 -28
- package/ktor-ktor-io/io/ktor/utils/io/ByteChannelUtils.mjs.map +0 -1
- package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs +0 -107
- package/ktor-ktor-io/io/ktor/utils/io/CloseHookByteWriteChannel.mjs.map +0 -1
- package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs +0 -22
- package/ktor-ktor-io/io/ktor/utils/io/core/Memory.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs +0 -22
- package/ktor-ktor-network/io/ktor/network/selector/Selectable.jsAndWasmShared.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs +0 -42
- package/ktor-ktor-network/io/ktor/network/selector/SelectorManager.jsAndWasmShared.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs +0 -35
- package/ktor-ktor-network/io/ktor/network/sockets/Builders.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs +0 -107
- package/ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs +0 -304
- package/ktor-ktor-network/io/ktor/network/sockets/SocketBase.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs +0 -573
- package/ktor-ktor-network/io/ktor/network/sockets/SocketContext.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs +0 -26
- package/ktor-ktor-network/io/ktor/network/sockets/SocketEngine.jsAndWasmShared.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs +0 -129
- package/ktor-ktor-network/io/ktor/network/sockets/SocketOptions.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs +0 -33
- package/ktor-ktor-network/io/ktor/network/sockets/SocketTimeoutException.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs +0 -71
- package/ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs +0 -34
- package/ktor-ktor-network/io/ktor/network/sockets/TcpSocketBuilder.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs +0 -41
- package/ktor-ktor-network/io/ktor/network/sockets/TypeOfService.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs +0 -56
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.js.mjs.map +0 -1
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs +0 -163
- package/ktor-ktor-network/io/ktor/network/sockets/nodejs/node.net.mjs.map +0 -1
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs +0 -18
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSClientSession.nonJvm.mjs.map +0 -1
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs +0 -99
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs.map +0 -1
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfig.nonJvm.mjs +0 -22
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs +0 -33
- package/ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs.map +0 -1
- package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs +0 -32
- package/ktor-ktor-utils/io/ktor/util/cio/Channels.mjs.map +0 -1
- package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs +0 -113
- package/ktor-ktor-utils/io/ktor/util/collections/ConcurrentMapJs.mjs.map +0 -1
- package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs +0 -11
- package/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs.map +0 -1
- package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs +0 -16
- package/ktor-ktor-utils/io/ktor/util/network/NetworkAddressJs.mjs.map +0 -1
- package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +0 -47
- package/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs.map +0 -1
- package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs +0 -47
- package/ktor-ktor-websockets/io/ktor/websocket/ProtocolViolationException.mjs.map +0 -1
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs +0 -19
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocket.mjs.map +0 -1
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs +0 -846
- package/ktor-ktor-websockets/io/ktor/websocket/RawWebSocketCommon.mjs.map +0 -1
- /package/{ktor-ktor-client-cio.mjs.map → commons-commons-core/cash/atto/commons/AttoFuture.js.export.mjs.map} +0 -0
- /package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.mjs.map → commons-commons-core/cash/atto/commons/AttoMnemonic.export.mjs.map} +0 -0
- /package/commons-commons-core/cash/atto/commons/{AttoSigner.js.export.mjs.map → AttoPublicKey.js.export.mjs.map} +0 -0
- /package/commons-commons-core/cash/atto/commons/{AttoSeed.export.d.ts → AttoSeed.export.d.mts} +0 -0
- /package/{commons-commons-node-remote/cash/atto/commons/node/AttoNodeOperationsJsImpl.js.export.mjs.map → commons-commons-core/cash/atto/commons/AttoSeed.js.export.mjs.map} +0 -0
- /package/commons-commons-core/cash/atto/commons/{AttoSocketAddress.export.d.ts → AttoSocketAddress.export.d.mts} +0 -0
- /package/commons-commons-core/cash/atto/commons/{Extensions.export.d.ts → Extensions.export.d.mts} +0 -0
- /package/commons-commons-node/cash/atto/commons/node/{NodeExtensions.export.d.ts → NodeExtensions.export.d.mts} +0 -0
- /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
- /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
- /package/{commons-commons-worker/cash/atto/commons/worker/AttoWorkerJs.js.export.mjs.map → kotlin-kotlin-stdlib/kotlin/internal/SharedVariableBox.mjs.map} +0 -0
- /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,1338 +0,0 @@
|
|
|
1
|
-
import { CoroutineImpl2sn3kjnwmfr10 as CoroutineImpl } from '../../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/CoroutineImpl.mjs';
|
|
2
|
-
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
3
|
-
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
4
|
-
import {
|
|
5
|
-
THROW_CCE2g6jy02ryeudk as THROW_CCE,
|
|
6
|
-
ensureNotNull1e947j3ixpazm as ensureNotNull,
|
|
7
|
-
} from '../../../../../../kotlin-kotlin-stdlib/kotlin/hacks.mjs';
|
|
8
|
-
import {
|
|
9
|
-
CoroutineScopefcb5f5dwqcas as CoroutineScope,
|
|
10
|
-
GlobalScope_instance1sfulufhd2ijt as GlobalScope_instance,
|
|
11
|
-
} from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs';
|
|
12
|
-
import { isInterface3d6p8outrmvmk as isInterface } from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/typeCheckUtils.mjs';
|
|
13
|
-
import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
|
|
14
|
-
import {
|
|
15
|
-
initMetadataForLambda3af3he42mmnh as initMetadataForLambda,
|
|
16
|
-
initMetadataForCompanion1wyw17z38v6ac as initMetadataForCompanion,
|
|
17
|
-
initMetadataForCoroutine1i7lbatuf5bnt as initMetadataForCoroutine,
|
|
18
|
-
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
19
|
-
} from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
20
|
-
import {
|
|
21
|
-
withContexte657h72vdbqn as withContext,
|
|
22
|
-
launch1c91vkjzdi9sd as launch,
|
|
23
|
-
} from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs';
|
|
24
|
-
import {
|
|
25
|
-
ConnectTimeoutException1ouhokfmp8k08 as ConnectTimeoutException,
|
|
26
|
-
HttpTimeoutCapability_instance17ok7dpkdbr0y as HttpTimeoutCapability_instance,
|
|
27
|
-
HttpRequestTimeoutException19335ch7q7rkf as HttpRequestTimeoutException,
|
|
28
|
-
} from '../../../../../../ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs';
|
|
29
|
-
import { to2cs3ny02qtbcb as to } from '../../../../../../kotlin-kotlin-stdlib/kotlin/Tuples.mjs';
|
|
30
|
-
import { Long2qws0ah9gnpki as Long } from '../../../../../../kotlin-kotlin-stdlib/kotlin/Primitives.mjs';
|
|
31
|
-
import {
|
|
32
|
-
getTimeMillis12o7k17x9fmwi as getTimeMillis,
|
|
33
|
-
GMTDate36bhedawynxlf as GMTDate,
|
|
34
|
-
} from '../../../../../../ktor-ktor-utils/io/ktor/util/date/DateJs.mjs';
|
|
35
|
-
import { delayolwo40i9ucjz as delay } from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs';
|
|
36
|
-
import { unwrapCancellationException1zvbmufui4i9c as unwrapCancellationException } from '../../../../../../ktor-ktor-client-core/io/ktor/client/utils/ExceptionUtils.nonJvm.mjs';
|
|
37
|
-
import { close3semq7pafb42g as close } from '../../../../../../ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs';
|
|
38
|
-
import {
|
|
39
|
-
writeHeaders3cmofgdna8yuh as writeHeaders,
|
|
40
|
-
writeBody1pf0c8yzqudeb as writeBody,
|
|
41
|
-
readResponse3pzkg6nmigx14 as readResponse,
|
|
42
|
-
writeRequest3kogzlmopewf4 as writeRequest,
|
|
43
|
-
handleHalfClosed1fhienq61fie8 as handleHalfClosed,
|
|
44
|
-
expectContinue3jqhf2bcc56gi as expectContinue,
|
|
45
|
-
startTunnel1d7yehxlf7rw4 as startTunnel,
|
|
46
|
-
} from './utils.mjs';
|
|
47
|
-
import { withTimeoutOrNull1j8ayhfbyp4sk as withTimeoutOrNull } from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs';
|
|
48
|
-
import { Companion_getInstanceud97dyzf471m as Companion_getInstance } from '../../../../../../ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs';
|
|
49
|
-
import {
|
|
50
|
-
HttpRequestBuilder15f2nnx9sjuv1 as HttpRequestBuilder,
|
|
51
|
-
takeFrom192e9a5j66nwy as takeFrom,
|
|
52
|
-
isUpgradeRequest3msdo2i9hxs68 as isUpgradeRequest,
|
|
53
|
-
isSseRequest18wi9p38993rl as isSseRequest,
|
|
54
|
-
} from '../../../../../../ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs';
|
|
55
|
-
import { HttpHeaders_getInstanceelogg8fjd54u as HttpHeaders_getInstance } from '../../../../../../ktor-ktor-http/io/ktor/http/HttpHeaders.mjs';
|
|
56
|
-
import { takeFrom1qtq5x148q1f9 as takeFrom_0 } from '../../../../../../ktor-ktor-network-tls/io/ktor/network/tls/TLSConfigBuilder.nonJvm.mjs';
|
|
57
|
-
import {
|
|
58
|
-
requiresDedicatedConnection1jbcsaak4taru as requiresDedicatedConnection,
|
|
59
|
-
RequestTask1d8u9elo0k9nr as RequestTask,
|
|
60
|
-
} from './EngineTasks.mjs';
|
|
61
|
-
import { CompletableDeferred2lnqvsbvx74d3 as CompletableDeferred } from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs';
|
|
62
|
-
import {
|
|
63
|
-
_ChannelResult___get_isSuccess__impl__odq1z91n9ra3wwc3tz2 as _ChannelResult___get_isSuccess__impl__odq1z9,
|
|
64
|
-
Channel3r72atmcithql as Channel,
|
|
65
|
-
} from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs';
|
|
66
|
-
import {
|
|
67
|
-
Key_instance2tirv2rj82ml4 as Key_instance,
|
|
68
|
-
get_job2zvlvce9o9a29 as get_job,
|
|
69
|
-
cancel1xim2hrvjmwpn as cancel,
|
|
70
|
-
} from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs';
|
|
71
|
-
import { mapToKtor1k6a6xtht9f1w as mapToKtor } from './ExceptionUtils.nonJvm.mjs';
|
|
72
|
-
import { ConnectionPipeline1uyiqq0jye9pe as ConnectionPipeline } from './ConnectionPipeline.nonJvm.mjs';
|
|
73
|
-
import { until1jbpn0z3f8lbg as until } from '../../../../../../kotlin-kotlin-stdlib/kotlin/ranges/_Ranges.mjs';
|
|
74
|
-
import {
|
|
75
|
-
InetSocketAddress8gqu6008iy6q as InetSocketAddress,
|
|
76
|
-
UnixSocketAddress684o51d6025s as UnixSocketAddress,
|
|
77
|
-
} from '../../../../../../ktor-ktor-network/io/ktor/network/sockets/SocketAddress.nonJvm.mjs';
|
|
78
|
-
import { connection26mdlfgzld3rb as connection } from '../../../../../../ktor-ktor-network/io/ktor/network/sockets/Sockets.mjs';
|
|
79
|
-
import { get_type2uw8ph755ydgf as get_type } from '../../../../../../ktor-ktor-client-core/io/ktor/client/engine/ProxyConfigJs.mjs';
|
|
80
|
-
import { ProxyType_HTTP_getInstance3i2tyd24tdld2 as ProxyType_HTTP_getInstance } from '../../../../../../ktor-ktor-client-core/io/ktor/client/engine/ProxyConfig.mjs';
|
|
81
|
-
import {
|
|
82
|
-
equals2au1ep9vhcato as equals,
|
|
83
|
-
captureStack1fzi4aczwc4hg as captureStack,
|
|
84
|
-
} from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
85
|
-
import {
|
|
86
|
-
IllegalArgumentException2asla15b5jaob as IllegalArgumentException,
|
|
87
|
-
Exceptiondt2hlxn7j7vw as Exception,
|
|
88
|
-
} from '../../../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
|
|
89
|
-
import { tls914asjl5d6bh as tls } from '../../../../../../ktor-ktor-network-tls/io/ktor/network/tls/TLSCommon.mjs';
|
|
90
|
-
import {
|
|
91
|
-
atomic$long$129k9zwo6n9ogd as atomic$long$1,
|
|
92
|
-
atomic$int$11d5swdyn6j0pu as atomic$int$1,
|
|
93
|
-
} from '../../../../../../kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs';
|
|
94
|
-
import { numberToLong1a4cndvg6c52s as numberToLong } from '../../../../../../kotlin-kotlin-stdlib/kotlin/js/numberConversion.mjs';
|
|
95
|
-
import { CoroutineName2g5zosw74tf0f as CoroutineName } from '../../../../../../kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs';
|
|
96
|
-
import { AutoCloseable1l5p57f9lp7kv as AutoCloseable } from '../../../../../../kotlin-kotlin-stdlib/kotlin/AutoCloseableJs.mjs';
|
|
97
|
-
import { isWebsocket1w1xog9vfgwm1 as isWebsocket } from '../../../../../../ktor-ktor-http/io/ktor/http/URLProtocol.mjs';
|
|
98
|
-
import { KtorSimpleLogger1xdphsp5l4e48 as KtorSimpleLogger } from '../../../../../../ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs';
|
|
99
|
-
//region block: imports
|
|
100
|
-
//endregion
|
|
101
|
-
//region block: pre-declaration
|
|
102
|
-
//endregion
|
|
103
|
-
function get_LOGGER() {
|
|
104
|
-
_init_properties_Endpoint_kt__juhqkr();
|
|
105
|
-
return LOGGER;
|
|
106
|
-
}
|
|
107
|
-
var LOGGER;
|
|
108
|
-
var Endpoint$processExpectContinue$slambda$slambdaClass;
|
|
109
|
-
function Endpoint$processExpectContinue$slambda$slambda() {
|
|
110
|
-
if (Endpoint$processExpectContinue$slambda$slambdaClass === VOID) {
|
|
111
|
-
class $ extends CoroutineImpl() {
|
|
112
|
-
constructor($input, resultContinuation, $box) {
|
|
113
|
-
if ($box === VOID)
|
|
114
|
-
$box = {};
|
|
115
|
-
$box.u73_1 = $input;
|
|
116
|
-
super(resultContinuation, $box);
|
|
117
|
-
}
|
|
118
|
-
w73($this$withTimeoutOrNull, $completion) {
|
|
119
|
-
var tmp = this.d36($this$withTimeoutOrNull, $completion);
|
|
120
|
-
tmp.cc_1 = Unit_instance;
|
|
121
|
-
tmp.dc_1 = null;
|
|
122
|
-
return tmp.ic();
|
|
123
|
-
}
|
|
124
|
-
kd(p1, $completion) {
|
|
125
|
-
return this.w73((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
126
|
-
}
|
|
127
|
-
ic() {
|
|
128
|
-
var suspendResult = this.cc_1;
|
|
129
|
-
$sm: do
|
|
130
|
-
try {
|
|
131
|
-
var tmp = this.ac_1;
|
|
132
|
-
switch (tmp) {
|
|
133
|
-
case 0:
|
|
134
|
-
this.bc_1 = 2;
|
|
135
|
-
this.ac_1 = 1;
|
|
136
|
-
suspendResult = this.u73_1.j3b(VOID, this);
|
|
137
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
138
|
-
return suspendResult;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
continue $sm;
|
|
142
|
-
case 1:
|
|
143
|
-
return suspendResult;
|
|
144
|
-
case 2:
|
|
145
|
-
throw this.dc_1;
|
|
146
|
-
}
|
|
147
|
-
} catch ($p) {
|
|
148
|
-
var e = $p;
|
|
149
|
-
if (this.bc_1 === 2) {
|
|
150
|
-
throw e;
|
|
151
|
-
} else {
|
|
152
|
-
this.ac_1 = this.bc_1;
|
|
153
|
-
this.dc_1 = e;
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
while (true);
|
|
157
|
-
}
|
|
158
|
-
d36($this$withTimeoutOrNull, completion) {
|
|
159
|
-
var i = new (Endpoint$processExpectContinue$slambda$slambda())(this.u73_1, completion);
|
|
160
|
-
i.v73_1 = $this$withTimeoutOrNull;
|
|
161
|
-
return i;
|
|
162
|
-
}
|
|
163
|
-
}
|
|
164
|
-
initMetadataForLambda($, VOID, VOID, [1]);
|
|
165
|
-
Endpoint$processExpectContinue$slambda$slambdaClass = $;
|
|
166
|
-
}
|
|
167
|
-
return Endpoint$processExpectContinue$slambda$slambdaClass;
|
|
168
|
-
}
|
|
169
|
-
function Endpoint$processExpectContinue$slambda$slambda_0($input, resultContinuation) {
|
|
170
|
-
var i = new (Endpoint$processExpectContinue$slambda$slambda())($input, resultContinuation);
|
|
171
|
-
var l = function ($this$withTimeoutOrNull, $completion) {
|
|
172
|
-
return i.w73($this$withTimeoutOrNull, $completion);
|
|
173
|
-
};
|
|
174
|
-
l.$arity = 1;
|
|
175
|
-
return l;
|
|
176
|
-
}
|
|
177
|
-
function Endpoint$connect$slambda$lambda($socketTimeout) {
|
|
178
|
-
return function ($this$connect) {
|
|
179
|
-
$this$connect.n6w_1 = $socketTimeout;
|
|
180
|
-
return Unit_instance;
|
|
181
|
-
};
|
|
182
|
-
}
|
|
183
|
-
function makePipelineRequest($this, task, $completion) {
|
|
184
|
-
var tmp = new ($makePipelineRequestCOROUTINE$())($this, task, $completion);
|
|
185
|
-
tmp.cc_1 = Unit_instance;
|
|
186
|
-
tmp.dc_1 = null;
|
|
187
|
-
return tmp.ic();
|
|
188
|
-
}
|
|
189
|
-
function makeDedicatedRequest($this, request, callContext, $completion) {
|
|
190
|
-
var tmp = new ($makeDedicatedRequestCOROUTINE$())($this, request, callContext, $completion);
|
|
191
|
-
tmp.cc_1 = Unit_instance;
|
|
192
|
-
tmp.dc_1 = null;
|
|
193
|
-
return tmp.ic();
|
|
194
|
-
}
|
|
195
|
-
function processExpectContinue($this, request, input, output, originOutput, callContext, requestTime, overProxy, $completion) {
|
|
196
|
-
return withContext(callContext, Endpoint$processExpectContinue$slambda_0(request, output, overProxy, requestTime, input, originOutput, callContext, null), $completion);
|
|
197
|
-
}
|
|
198
|
-
function createPipeline($this, request, $completion) {
|
|
199
|
-
var tmp = new ($createPipelineCOROUTINE$())($this, request, $completion);
|
|
200
|
-
tmp.cc_1 = Unit_instance;
|
|
201
|
-
tmp.dc_1 = null;
|
|
202
|
-
return tmp.ic();
|
|
203
|
-
}
|
|
204
|
-
function connect($this, requestData, $completion) {
|
|
205
|
-
var tmp = new ($connectCOROUTINE$())($this, requestData, $completion);
|
|
206
|
-
tmp.cc_1 = Unit_instance;
|
|
207
|
-
tmp.dc_1 = null;
|
|
208
|
-
return tmp.ic();
|
|
209
|
-
}
|
|
210
|
-
function getTimeoutException($this, connectAttempts, timeoutFails, request) {
|
|
211
|
-
return timeoutFails === connectAttempts ? ConnectTimeoutException(request) : FailToConnectException().t76();
|
|
212
|
-
}
|
|
213
|
-
function retrieveTimeouts($this, requestData) {
|
|
214
|
-
var default_0 = to($this.t71_1.i72_1.p72_1, $this.t71_1.i72_1.q72_1);
|
|
215
|
-
var tmp0_elvis_lhs = requestData.i5r(HttpTimeoutCapability_instance);
|
|
216
|
-
var tmp;
|
|
217
|
-
if (tmp0_elvis_lhs == null) {
|
|
218
|
-
return default_0;
|
|
219
|
-
} else {
|
|
220
|
-
tmp = tmp0_elvis_lhs;
|
|
221
|
-
}
|
|
222
|
-
var timeoutAttributes = tmp;
|
|
223
|
-
var tmp1_elvis_lhs = timeoutAttributes.q5r();
|
|
224
|
-
var socketTimeout = tmp1_elvis_lhs == null ? $this.t71_1.i72_1.q72_1 : tmp1_elvis_lhs;
|
|
225
|
-
var tmp2_elvis_lhs = timeoutAttributes.p5r();
|
|
226
|
-
var connectTimeout = tmp2_elvis_lhs == null ? $this.t71_1.i72_1.p72_1 : tmp2_elvis_lhs;
|
|
227
|
-
return to(connectTimeout, socketTimeout);
|
|
228
|
-
}
|
|
229
|
-
function releaseConnection($this, address) {
|
|
230
|
-
$this.u71_1.l73(address);
|
|
231
|
-
$this.z71_1.atomicfu$decrementAndGet();
|
|
232
|
-
}
|
|
233
|
-
var CompanionClass;
|
|
234
|
-
function Companion() {
|
|
235
|
-
if (CompanionClass === VOID) {
|
|
236
|
-
class $ {
|
|
237
|
-
constructor() {
|
|
238
|
-
Companion_instance = this;
|
|
239
|
-
this.u76_1 = new (Long())(1000, 0);
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
initMetadataForCompanion($);
|
|
243
|
-
CompanionClass = $;
|
|
244
|
-
}
|
|
245
|
-
return CompanionClass;
|
|
246
|
-
}
|
|
247
|
-
var Companion_instance;
|
|
248
|
-
function Companion_getInstance_0() {
|
|
249
|
-
if (Companion_instance === VOID)
|
|
250
|
-
new (Companion())();
|
|
251
|
-
return Companion_instance;
|
|
252
|
-
}
|
|
253
|
-
var Endpoint$timeout$slambdaClass;
|
|
254
|
-
function Endpoint$timeout$slambda() {
|
|
255
|
-
if (Endpoint$timeout$slambdaClass === VOID) {
|
|
256
|
-
class $ extends CoroutineImpl() {
|
|
257
|
-
constructor(this$0, resultContinuation, $box) {
|
|
258
|
-
if ($box === VOID)
|
|
259
|
-
$box = {};
|
|
260
|
-
$box.d77_1 = this$0;
|
|
261
|
-
super(resultContinuation, $box);
|
|
262
|
-
}
|
|
263
|
-
z37($this$launch, $completion) {
|
|
264
|
-
var tmp = this.d36($this$launch, $completion);
|
|
265
|
-
tmp.cc_1 = Unit_instance;
|
|
266
|
-
tmp.dc_1 = null;
|
|
267
|
-
return tmp.ic();
|
|
268
|
-
}
|
|
269
|
-
kd(p1, $completion) {
|
|
270
|
-
return this.z37((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
271
|
-
}
|
|
272
|
-
ic() {
|
|
273
|
-
var suspendResult = this.cc_1;
|
|
274
|
-
$sm: do
|
|
275
|
-
try {
|
|
276
|
-
var tmp = this.ac_1;
|
|
277
|
-
switch (tmp) {
|
|
278
|
-
case 0:
|
|
279
|
-
this.bc_1 = 8;
|
|
280
|
-
this.ac_1 = 1;
|
|
281
|
-
continue $sm;
|
|
282
|
-
case 1:
|
|
283
|
-
this.bc_1 = 7;
|
|
284
|
-
this.bc_1 = 6;
|
|
285
|
-
this.ac_1 = 2;
|
|
286
|
-
continue $sm;
|
|
287
|
-
case 2:
|
|
288
|
-
if (!true) {
|
|
289
|
-
this.ac_1 = 5;
|
|
290
|
-
continue $sm;
|
|
291
|
-
}
|
|
292
|
-
|
|
293
|
-
this.g77_1 = this.d77_1.y71_1.kotlinx$atomicfu$value.p3(this.d77_1.b72_1).q3(getTimeMillis());
|
|
294
|
-
if (this.g77_1.a2(new (Long())(0, 0)) <= 0) {
|
|
295
|
-
this.ac_1 = 5;
|
|
296
|
-
continue $sm;
|
|
297
|
-
} else {
|
|
298
|
-
this.ac_1 = 3;
|
|
299
|
-
continue $sm;
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
case 3:
|
|
303
|
-
this.ac_1 = 4;
|
|
304
|
-
suspendResult = delay(this.g77_1, this);
|
|
305
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
306
|
-
return suspendResult;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
continue $sm;
|
|
310
|
-
case 4:
|
|
311
|
-
this.ac_1 = 2;
|
|
312
|
-
continue $sm;
|
|
313
|
-
case 5:
|
|
314
|
-
this.f77_1 = Unit_instance;
|
|
315
|
-
this.bc_1 = 8;
|
|
316
|
-
this.ac_1 = 9;
|
|
317
|
-
continue $sm;
|
|
318
|
-
case 6:
|
|
319
|
-
this.bc_1 = 7;
|
|
320
|
-
var tmp_0 = this.dc_1;
|
|
321
|
-
if (tmp_0 instanceof Error) {
|
|
322
|
-
var _unused_var__etf5q3 = this.dc_1;
|
|
323
|
-
var tmp_1 = this;
|
|
324
|
-
tmp_1.f77_1 = Unit_instance;
|
|
325
|
-
this.bc_1 = 8;
|
|
326
|
-
this.ac_1 = 9;
|
|
327
|
-
continue $sm;
|
|
328
|
-
} else {
|
|
329
|
-
throw this.dc_1;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
case 7:
|
|
333
|
-
this.bc_1 = 8;
|
|
334
|
-
var t = this.dc_1;
|
|
335
|
-
this.d77_1.a72_1.s2i();
|
|
336
|
-
this.d77_1.w71_1();
|
|
337
|
-
throw t;
|
|
338
|
-
case 8:
|
|
339
|
-
throw this.dc_1;
|
|
340
|
-
case 9:
|
|
341
|
-
this.bc_1 = 8;
|
|
342
|
-
this.d77_1.a72_1.s2i();
|
|
343
|
-
this.d77_1.w71_1();
|
|
344
|
-
return Unit_instance;
|
|
345
|
-
}
|
|
346
|
-
} catch ($p) {
|
|
347
|
-
var e = $p;
|
|
348
|
-
if (this.bc_1 === 8) {
|
|
349
|
-
throw e;
|
|
350
|
-
} else {
|
|
351
|
-
this.ac_1 = this.bc_1;
|
|
352
|
-
this.dc_1 = e;
|
|
353
|
-
}
|
|
354
|
-
}
|
|
355
|
-
while (true);
|
|
356
|
-
}
|
|
357
|
-
d36($this$launch, completion) {
|
|
358
|
-
var i = new (Endpoint$timeout$slambda())(this.d77_1, completion);
|
|
359
|
-
i.e77_1 = $this$launch;
|
|
360
|
-
return i;
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
initMetadataForLambda($, VOID, VOID, [1]);
|
|
364
|
-
Endpoint$timeout$slambdaClass = $;
|
|
365
|
-
}
|
|
366
|
-
return Endpoint$timeout$slambdaClass;
|
|
367
|
-
}
|
|
368
|
-
function Endpoint$timeout$slambda_0(this$0, resultContinuation) {
|
|
369
|
-
var i = new (Endpoint$timeout$slambda())(this$0, resultContinuation);
|
|
370
|
-
var l = function ($this$launch, $completion) {
|
|
371
|
-
return i.z37($this$launch, $completion);
|
|
372
|
-
};
|
|
373
|
-
l.$arity = 1;
|
|
374
|
-
return l;
|
|
375
|
-
}
|
|
376
|
-
function Endpoint$makeDedicatedRequest$lambda($input, $originOutput, $connection, this$0, $address) {
|
|
377
|
-
return function (cause) {
|
|
378
|
-
var originCause = cause == null ? null : unwrapCancellationException(cause);
|
|
379
|
-
var tmp;
|
|
380
|
-
try {
|
|
381
|
-
$input.l3b(originCause);
|
|
382
|
-
close($originOutput, originCause);
|
|
383
|
-
$connection.t6w_1.v5();
|
|
384
|
-
tmp = Unit_instance;
|
|
385
|
-
} catch ($p) {
|
|
386
|
-
var tmp_0;
|
|
387
|
-
if ($p instanceof Error) {
|
|
388
|
-
var cause_0 = $p;
|
|
389
|
-
get_LOGGER().f3y('An error occurred while closing connection', cause_0);
|
|
390
|
-
tmp_0 = Unit_instance;
|
|
391
|
-
} else {
|
|
392
|
-
throw $p;
|
|
393
|
-
}
|
|
394
|
-
tmp = tmp_0;
|
|
395
|
-
}
|
|
396
|
-
finally {
|
|
397
|
-
releaseConnection(this$0, $address);
|
|
398
|
-
}
|
|
399
|
-
return Unit_instance;
|
|
400
|
-
};
|
|
401
|
-
}
|
|
402
|
-
var Endpoint$processExpectContinue$slambdaClass;
|
|
403
|
-
function Endpoint$processExpectContinue$slambda() {
|
|
404
|
-
if (Endpoint$processExpectContinue$slambdaClass === VOID) {
|
|
405
|
-
class $ extends CoroutineImpl() {
|
|
406
|
-
constructor($request, $output, $overProxy, $requestTime, $input, $originOutput, $callContext, resultContinuation, $box) {
|
|
407
|
-
if ($box === VOID)
|
|
408
|
-
$box = {};
|
|
409
|
-
$box.p77_1 = $request;
|
|
410
|
-
$box.q77_1 = $output;
|
|
411
|
-
$box.r77_1 = $overProxy;
|
|
412
|
-
$box.s77_1 = $requestTime;
|
|
413
|
-
$box.t77_1 = $input;
|
|
414
|
-
$box.u77_1 = $originOutput;
|
|
415
|
-
$box.v77_1 = $callContext;
|
|
416
|
-
super(resultContinuation, $box);
|
|
417
|
-
}
|
|
418
|
-
c58($this$withContext, $completion) {
|
|
419
|
-
var tmp = this.d36($this$withContext, $completion);
|
|
420
|
-
tmp.cc_1 = Unit_instance;
|
|
421
|
-
tmp.dc_1 = null;
|
|
422
|
-
return tmp.ic();
|
|
423
|
-
}
|
|
424
|
-
kd(p1, $completion) {
|
|
425
|
-
return this.c58((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
426
|
-
}
|
|
427
|
-
ic() {
|
|
428
|
-
var suspendResult = this.cc_1;
|
|
429
|
-
$sm: do
|
|
430
|
-
try {
|
|
431
|
-
var tmp = this.ac_1;
|
|
432
|
-
switch (tmp) {
|
|
433
|
-
case 0:
|
|
434
|
-
this.bc_1 = 11;
|
|
435
|
-
this.ac_1 = 1;
|
|
436
|
-
suspendResult = writeHeaders(this.p77_1, this.q77_1, this.r77_1, VOID, this);
|
|
437
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
438
|
-
return suspendResult;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
continue $sm;
|
|
442
|
-
case 1:
|
|
443
|
-
this.ac_1 = 2;
|
|
444
|
-
var tmp_0 = new (Long())(1000, 0);
|
|
445
|
-
suspendResult = withTimeoutOrNull(tmp_0, Endpoint$processExpectContinue$slambda$slambda_0(this.t77_1, null), this);
|
|
446
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
447
|
-
return suspendResult;
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
continue $sm;
|
|
451
|
-
case 2:
|
|
452
|
-
this.x77_1 = suspendResult;
|
|
453
|
-
if (!(this.x77_1 == null)) {
|
|
454
|
-
this.ac_1 = 4;
|
|
455
|
-
suspendResult = readResponse(this.s77_1, this.p77_1, this.t77_1, this.u77_1, this.v77_1, this);
|
|
456
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
457
|
-
return suspendResult;
|
|
458
|
-
}
|
|
459
|
-
continue $sm;
|
|
460
|
-
} else {
|
|
461
|
-
this.ac_1 = 3;
|
|
462
|
-
suspendResult = writeBody(this.p77_1, this.q77_1, this.v77_1, VOID, this);
|
|
463
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
464
|
-
return suspendResult;
|
|
465
|
-
}
|
|
466
|
-
continue $sm;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
case 3:
|
|
470
|
-
this.ac_1 = 9;
|
|
471
|
-
continue $sm;
|
|
472
|
-
case 4:
|
|
473
|
-
this.y77_1 = suspendResult;
|
|
474
|
-
this.z77_1 = this.y77_1.b54_1;
|
|
475
|
-
if (this.z77_1.equals(Companion_getInstance().d48_1)) {
|
|
476
|
-
var tmp_1 = this;
|
|
477
|
-
var this_0 = new (HttpRequestBuilder())();
|
|
478
|
-
takeFrom(this_0, this.p77_1);
|
|
479
|
-
this_0.p50_1.t3t(HttpHeaders_getInstance().g42_1);
|
|
480
|
-
tmp_1.a78_1 = this_0.z1i();
|
|
481
|
-
this.ac_1 = 7;
|
|
482
|
-
suspendResult = writeRequest(this.a78_1, this.q77_1, this.v77_1, this.r77_1, VOID, this);
|
|
483
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
484
|
-
return suspendResult;
|
|
485
|
-
}
|
|
486
|
-
continue $sm;
|
|
487
|
-
} else {
|
|
488
|
-
if (this.z77_1.equals(Companion_getInstance().s46_1)) {
|
|
489
|
-
this.ac_1 = 6;
|
|
490
|
-
suspendResult = writeBody(this.p77_1, this.q77_1, this.v77_1, VOID, this);
|
|
491
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
492
|
-
return suspendResult;
|
|
493
|
-
}
|
|
494
|
-
continue $sm;
|
|
495
|
-
} else {
|
|
496
|
-
this.ac_1 = 5;
|
|
497
|
-
suspendResult = this.q77_1.k3b(this);
|
|
498
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
499
|
-
return suspendResult;
|
|
500
|
-
}
|
|
501
|
-
continue $sm;
|
|
502
|
-
}
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
case 5:
|
|
506
|
-
return this.y77_1;
|
|
507
|
-
case 6:
|
|
508
|
-
this.ac_1 = 8;
|
|
509
|
-
continue $sm;
|
|
510
|
-
case 7:
|
|
511
|
-
this.ac_1 = 8;
|
|
512
|
-
continue $sm;
|
|
513
|
-
case 8:
|
|
514
|
-
this.ac_1 = 9;
|
|
515
|
-
continue $sm;
|
|
516
|
-
case 9:
|
|
517
|
-
this.ac_1 = 10;
|
|
518
|
-
suspendResult = readResponse(this.s77_1, this.p77_1, this.t77_1, this.u77_1, this.v77_1, this);
|
|
519
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
520
|
-
return suspendResult;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
continue $sm;
|
|
524
|
-
case 10:
|
|
525
|
-
return suspendResult;
|
|
526
|
-
case 11:
|
|
527
|
-
throw this.dc_1;
|
|
528
|
-
}
|
|
529
|
-
} catch ($p) {
|
|
530
|
-
var e = $p;
|
|
531
|
-
if (this.bc_1 === 11) {
|
|
532
|
-
throw e;
|
|
533
|
-
} else {
|
|
534
|
-
this.ac_1 = this.bc_1;
|
|
535
|
-
this.dc_1 = e;
|
|
536
|
-
}
|
|
537
|
-
}
|
|
538
|
-
while (true);
|
|
539
|
-
}
|
|
540
|
-
d36($this$withContext, completion) {
|
|
541
|
-
var i = new (Endpoint$processExpectContinue$slambda())(this.p77_1, this.q77_1, this.r77_1, this.s77_1, this.t77_1, this.u77_1, this.v77_1, completion);
|
|
542
|
-
i.w77_1 = $this$withContext;
|
|
543
|
-
return i;
|
|
544
|
-
}
|
|
545
|
-
}
|
|
546
|
-
initMetadataForLambda($, VOID, VOID, [1]);
|
|
547
|
-
Endpoint$processExpectContinue$slambdaClass = $;
|
|
548
|
-
}
|
|
549
|
-
return Endpoint$processExpectContinue$slambdaClass;
|
|
550
|
-
}
|
|
551
|
-
function Endpoint$processExpectContinue$slambda_0($request, $output, $overProxy, $requestTime, $input, $originOutput, $callContext, resultContinuation) {
|
|
552
|
-
var i = new (Endpoint$processExpectContinue$slambda())($request, $output, $overProxy, $requestTime, $input, $originOutput, $callContext, resultContinuation);
|
|
553
|
-
var l = function ($this$withContext, $completion) {
|
|
554
|
-
return i.c58($this$withContext, $completion);
|
|
555
|
-
};
|
|
556
|
-
l.$arity = 1;
|
|
557
|
-
return l;
|
|
558
|
-
}
|
|
559
|
-
function Endpoint$createPipeline$lambda(this$0, $address) {
|
|
560
|
-
return function (it) {
|
|
561
|
-
releaseConnection(this$0, $address);
|
|
562
|
-
return Unit_instance;
|
|
563
|
-
};
|
|
564
|
-
}
|
|
565
|
-
var Endpoint$connect$slambdaClass;
|
|
566
|
-
function Endpoint$connect$slambda() {
|
|
567
|
-
if (Endpoint$connect$slambdaClass === VOID) {
|
|
568
|
-
class $ extends CoroutineImpl() {
|
|
569
|
-
constructor(this$0, $address, $socketTimeout, resultContinuation, $box) {
|
|
570
|
-
if ($box === VOID)
|
|
571
|
-
$box = {};
|
|
572
|
-
$box.j78_1 = this$0;
|
|
573
|
-
$box.k78_1 = $address;
|
|
574
|
-
$box.l78_1 = $socketTimeout;
|
|
575
|
-
super(resultContinuation, $box);
|
|
576
|
-
}
|
|
577
|
-
n78(_this__u8e3s4, $completion) {
|
|
578
|
-
var tmp = this.d36(_this__u8e3s4, $completion);
|
|
579
|
-
tmp.cc_1 = Unit_instance;
|
|
580
|
-
tmp.dc_1 = null;
|
|
581
|
-
return tmp.ic();
|
|
582
|
-
}
|
|
583
|
-
kd(p1, $completion) {
|
|
584
|
-
return this.n78((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
585
|
-
}
|
|
586
|
-
ic() {
|
|
587
|
-
var suspendResult = this.cc_1;
|
|
588
|
-
$sm: do
|
|
589
|
-
try {
|
|
590
|
-
var tmp = this.ac_1;
|
|
591
|
-
switch (tmp) {
|
|
592
|
-
case 0:
|
|
593
|
-
this.bc_1 = 2;
|
|
594
|
-
this.ac_1 = 1;
|
|
595
|
-
suspendResult = this.j78_1.u71_1.y6w(this.k78_1, Endpoint$connect$slambda$lambda(this.l78_1), this);
|
|
596
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
597
|
-
return suspendResult;
|
|
598
|
-
}
|
|
599
|
-
|
|
600
|
-
continue $sm;
|
|
601
|
-
case 1:
|
|
602
|
-
return suspendResult;
|
|
603
|
-
case 2:
|
|
604
|
-
throw this.dc_1;
|
|
605
|
-
}
|
|
606
|
-
} catch ($p) {
|
|
607
|
-
var e = $p;
|
|
608
|
-
if (this.bc_1 === 2) {
|
|
609
|
-
throw e;
|
|
610
|
-
} else {
|
|
611
|
-
this.ac_1 = this.bc_1;
|
|
612
|
-
this.dc_1 = e;
|
|
613
|
-
}
|
|
614
|
-
}
|
|
615
|
-
while (true);
|
|
616
|
-
}
|
|
617
|
-
d36(_this__u8e3s4, completion) {
|
|
618
|
-
var i = new (Endpoint$connect$slambda())(this.j78_1, this.k78_1, this.l78_1, completion);
|
|
619
|
-
i.m78_1 = _this__u8e3s4;
|
|
620
|
-
return i;
|
|
621
|
-
}
|
|
622
|
-
}
|
|
623
|
-
initMetadataForLambda($, VOID, VOID, [1]);
|
|
624
|
-
Endpoint$connect$slambdaClass = $;
|
|
625
|
-
}
|
|
626
|
-
return Endpoint$connect$slambdaClass;
|
|
627
|
-
}
|
|
628
|
-
function Endpoint$connect$slambda_0(this$0, $address, $socketTimeout, resultContinuation) {
|
|
629
|
-
var i = new (Endpoint$connect$slambda())(this$0, $address, $socketTimeout, resultContinuation);
|
|
630
|
-
var l = function (_this__u8e3s4, $completion) {
|
|
631
|
-
return i.n78(_this__u8e3s4, $completion);
|
|
632
|
-
};
|
|
633
|
-
l.$arity = 1;
|
|
634
|
-
return l;
|
|
635
|
-
}
|
|
636
|
-
function Endpoint$connect$lambda(this$0, $realAddress) {
|
|
637
|
-
return function ($this$tls) {
|
|
638
|
-
takeFrom_0($this$tls, this$0.t71_1.j72_1);
|
|
639
|
-
var tmp = $this$tls;
|
|
640
|
-
var tmp0_elvis_lhs = $this$tls.n6z_1;
|
|
641
|
-
tmp.n6z_1 = tmp0_elvis_lhs == null ? $realAddress.j6z_1 : tmp0_elvis_lhs;
|
|
642
|
-
return Unit_instance;
|
|
643
|
-
};
|
|
644
|
-
}
|
|
645
|
-
var $executeCOROUTINE$Class;
|
|
646
|
-
function $executeCOROUTINE$() {
|
|
647
|
-
if ($executeCOROUTINE$Class === VOID) {
|
|
648
|
-
class $ extends CoroutineImpl() {
|
|
649
|
-
constructor(_this__u8e3s4, request, callContext, resultContinuation) {
|
|
650
|
-
super(resultContinuation);
|
|
651
|
-
this.w78_1 = _this__u8e3s4;
|
|
652
|
-
this.x78_1 = request;
|
|
653
|
-
this.y78_1 = callContext;
|
|
654
|
-
}
|
|
655
|
-
ic() {
|
|
656
|
-
var suspendResult = this.cc_1;
|
|
657
|
-
$sm: do
|
|
658
|
-
try {
|
|
659
|
-
var tmp = this.ac_1;
|
|
660
|
-
switch (tmp) {
|
|
661
|
-
case 0:
|
|
662
|
-
this.bc_1 = 6;
|
|
663
|
-
this.w78_1.y71_1.kotlinx$atomicfu$value = getTimeMillis();
|
|
664
|
-
if (!this.w78_1.t71_1.m58_1 || requiresDedicatedConnection(this.x78_1)) {
|
|
665
|
-
this.ac_1 = 5;
|
|
666
|
-
suspendResult = makeDedicatedRequest(this.w78_1, this.x78_1, this.y78_1, this);
|
|
667
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
668
|
-
return suspendResult;
|
|
669
|
-
}
|
|
670
|
-
continue $sm;
|
|
671
|
-
} else {
|
|
672
|
-
this.ac_1 = 1;
|
|
673
|
-
continue $sm;
|
|
674
|
-
}
|
|
675
|
-
|
|
676
|
-
case 1:
|
|
677
|
-
this.z78_1 = CompletableDeferred();
|
|
678
|
-
this.a79_1 = new (RequestTask())(this.x78_1, this.z78_1, this.y78_1);
|
|
679
|
-
this.bc_1 = 4;
|
|
680
|
-
this.ac_1 = 2;
|
|
681
|
-
suspendResult = makePipelineRequest(this.w78_1, this.a79_1, this);
|
|
682
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
683
|
-
return suspendResult;
|
|
684
|
-
}
|
|
685
|
-
|
|
686
|
-
continue $sm;
|
|
687
|
-
case 2:
|
|
688
|
-
this.ac_1 = 3;
|
|
689
|
-
suspendResult = this.z78_1.b21(this);
|
|
690
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
691
|
-
return suspendResult;
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
continue $sm;
|
|
695
|
-
case 3:
|
|
696
|
-
return suspendResult;
|
|
697
|
-
case 4:
|
|
698
|
-
this.bc_1 = 6;
|
|
699
|
-
var tmp_0 = this.dc_1;
|
|
700
|
-
if (tmp_0 instanceof Error) {
|
|
701
|
-
var cause = this.dc_1;
|
|
702
|
-
this.a79_1.c79_1.c25(cause);
|
|
703
|
-
throw cause;
|
|
704
|
-
} else {
|
|
705
|
-
throw this.dc_1;
|
|
706
|
-
}
|
|
707
|
-
|
|
708
|
-
case 5:
|
|
709
|
-
return suspendResult;
|
|
710
|
-
case 6:
|
|
711
|
-
throw this.dc_1;
|
|
712
|
-
}
|
|
713
|
-
} catch ($p) {
|
|
714
|
-
var e = $p;
|
|
715
|
-
if (this.bc_1 === 6) {
|
|
716
|
-
throw e;
|
|
717
|
-
} else {
|
|
718
|
-
this.ac_1 = this.bc_1;
|
|
719
|
-
this.dc_1 = e;
|
|
720
|
-
}
|
|
721
|
-
}
|
|
722
|
-
while (true);
|
|
723
|
-
}
|
|
724
|
-
}
|
|
725
|
-
initMetadataForCoroutine($);
|
|
726
|
-
$executeCOROUTINE$Class = $;
|
|
727
|
-
}
|
|
728
|
-
return $executeCOROUTINE$Class;
|
|
729
|
-
}
|
|
730
|
-
var $makePipelineRequestCOROUTINE$Class;
|
|
731
|
-
function $makePipelineRequestCOROUTINE$() {
|
|
732
|
-
if ($makePipelineRequestCOROUTINE$Class === VOID) {
|
|
733
|
-
class $ extends CoroutineImpl() {
|
|
734
|
-
constructor(_this__u8e3s4, task, resultContinuation) {
|
|
735
|
-
super(resultContinuation);
|
|
736
|
-
this.f74_1 = _this__u8e3s4;
|
|
737
|
-
this.g74_1 = task;
|
|
738
|
-
}
|
|
739
|
-
ic() {
|
|
740
|
-
var suspendResult = this.cc_1;
|
|
741
|
-
$sm: do
|
|
742
|
-
try {
|
|
743
|
-
var tmp = this.ac_1;
|
|
744
|
-
switch (tmp) {
|
|
745
|
-
case 0:
|
|
746
|
-
this.bc_1 = 6;
|
|
747
|
-
if (_ChannelResult___get_isSuccess__impl__odq1z9(this.f74_1.a72_1.f2i(this.g74_1)))
|
|
748
|
-
return Unit_instance;
|
|
749
|
-
this.h74_1 = this.f74_1.z71_1.kotlinx$atomicfu$value;
|
|
750
|
-
if (this.h74_1 < this.f74_1.t71_1.i72_1.m72_1) {
|
|
751
|
-
this.bc_1 = 5;
|
|
752
|
-
this.ac_1 = 1;
|
|
753
|
-
suspendResult = createPipeline(this.f74_1, this.g74_1.b79_1, this);
|
|
754
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
755
|
-
return suspendResult;
|
|
756
|
-
}
|
|
757
|
-
continue $sm;
|
|
758
|
-
} else {
|
|
759
|
-
this.ac_1 = 3;
|
|
760
|
-
continue $sm;
|
|
761
|
-
}
|
|
762
|
-
|
|
763
|
-
case 1:
|
|
764
|
-
this.bc_1 = 6;
|
|
765
|
-
this.ac_1 = 2;
|
|
766
|
-
continue $sm;
|
|
767
|
-
case 2:
|
|
768
|
-
this.bc_1 = 6;
|
|
769
|
-
this.ac_1 = 3;
|
|
770
|
-
continue $sm;
|
|
771
|
-
case 3:
|
|
772
|
-
this.ac_1 = 4;
|
|
773
|
-
suspendResult = this.f74_1.a72_1.e2i(this.g74_1, this);
|
|
774
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
775
|
-
return suspendResult;
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
continue $sm;
|
|
779
|
-
case 4:
|
|
780
|
-
return Unit_instance;
|
|
781
|
-
case 5:
|
|
782
|
-
this.bc_1 = 6;
|
|
783
|
-
var tmp_0 = this.dc_1;
|
|
784
|
-
if (tmp_0 instanceof Error) {
|
|
785
|
-
var cause = this.dc_1;
|
|
786
|
-
this.g74_1.c79_1.c25(cause);
|
|
787
|
-
throw cause;
|
|
788
|
-
} else {
|
|
789
|
-
throw this.dc_1;
|
|
790
|
-
}
|
|
791
|
-
|
|
792
|
-
case 6:
|
|
793
|
-
throw this.dc_1;
|
|
794
|
-
}
|
|
795
|
-
} catch ($p) {
|
|
796
|
-
var e = $p;
|
|
797
|
-
if (this.bc_1 === 6) {
|
|
798
|
-
throw e;
|
|
799
|
-
} else {
|
|
800
|
-
this.ac_1 = this.bc_1;
|
|
801
|
-
this.dc_1 = e;
|
|
802
|
-
}
|
|
803
|
-
}
|
|
804
|
-
while (true);
|
|
805
|
-
}
|
|
806
|
-
}
|
|
807
|
-
initMetadataForCoroutine($);
|
|
808
|
-
$makePipelineRequestCOROUTINE$Class = $;
|
|
809
|
-
}
|
|
810
|
-
return $makePipelineRequestCOROUTINE$Class;
|
|
811
|
-
}
|
|
812
|
-
var $makeDedicatedRequestCOROUTINE$Class;
|
|
813
|
-
function $makeDedicatedRequestCOROUTINE$() {
|
|
814
|
-
if ($makeDedicatedRequestCOROUTINE$Class === VOID) {
|
|
815
|
-
class $ extends CoroutineImpl() {
|
|
816
|
-
constructor(_this__u8e3s4, request, callContext, resultContinuation) {
|
|
817
|
-
super(resultContinuation);
|
|
818
|
-
this.q74_1 = _this__u8e3s4;
|
|
819
|
-
this.r74_1 = request;
|
|
820
|
-
this.s74_1 = callContext;
|
|
821
|
-
}
|
|
822
|
-
ic() {
|
|
823
|
-
var suspendResult = this.cc_1;
|
|
824
|
-
$sm: do
|
|
825
|
-
try {
|
|
826
|
-
var tmp = this.ac_1;
|
|
827
|
-
switch (tmp) {
|
|
828
|
-
case 0:
|
|
829
|
-
this.bc_1 = 7;
|
|
830
|
-
this.bc_1 = 6;
|
|
831
|
-
this.ac_1 = 1;
|
|
832
|
-
suspendResult = connect(this.q74_1, this.r74_1, this);
|
|
833
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
834
|
-
return suspendResult;
|
|
835
|
-
}
|
|
836
|
-
|
|
837
|
-
continue $sm;
|
|
838
|
-
case 1:
|
|
839
|
-
this.t74_1 = suspendResult;
|
|
840
|
-
this.u74_1 = this.t74_1.gl();
|
|
841
|
-
this.v74_1 = this.t74_1.hl();
|
|
842
|
-
this.w74_1 = this.v74_1.u6w_1;
|
|
843
|
-
this.x74_1 = this.v74_1.v6w_1;
|
|
844
|
-
this.y74_1 = handleHalfClosed(this.x74_1, this.s74_1, this.q74_1.t71_1.i72_1.s72_1);
|
|
845
|
-
var tmp_0 = ensureNotNull(this.s74_1.nc(Key_instance));
|
|
846
|
-
tmp_0.v1y(Endpoint$makeDedicatedRequest$lambda(this.w74_1, this.x74_1, this.v74_1, this.q74_1, this.u74_1));
|
|
847
|
-
this.z74_1 = getRequestTimeout(this.r74_1, this.q74_1.t71_1);
|
|
848
|
-
setupTimeout(this.s74_1, this.r74_1, this.z74_1);
|
|
849
|
-
this.a75_1 = GMTDate();
|
|
850
|
-
this.b75_1 = !(this.q74_1.r71_1 == null);
|
|
851
|
-
if (expectContinue(this.r74_1.s56_1.c3s(HttpHeaders_getInstance().g42_1), this.r74_1.t56_1)) {
|
|
852
|
-
this.ac_1 = 4;
|
|
853
|
-
suspendResult = processExpectContinue(this.q74_1, this.r74_1, this.w74_1, this.y74_1, this.x74_1, this.s74_1, this.a75_1, this.b75_1, this);
|
|
854
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
855
|
-
return suspendResult;
|
|
856
|
-
}
|
|
857
|
-
continue $sm;
|
|
858
|
-
} else {
|
|
859
|
-
this.ac_1 = 2;
|
|
860
|
-
suspendResult = writeRequest(this.r74_1, this.y74_1, this.s74_1, this.b75_1, VOID, this);
|
|
861
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
862
|
-
return suspendResult;
|
|
863
|
-
}
|
|
864
|
-
continue $sm;
|
|
865
|
-
}
|
|
866
|
-
|
|
867
|
-
case 2:
|
|
868
|
-
this.ac_1 = 3;
|
|
869
|
-
suspendResult = readResponse(this.a75_1, this.r74_1, this.w74_1, this.x74_1, this.s74_1, this);
|
|
870
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
871
|
-
return suspendResult;
|
|
872
|
-
}
|
|
873
|
-
|
|
874
|
-
continue $sm;
|
|
875
|
-
case 3:
|
|
876
|
-
this.c75_1 = suspendResult;
|
|
877
|
-
this.ac_1 = 5;
|
|
878
|
-
continue $sm;
|
|
879
|
-
case 4:
|
|
880
|
-
this.c75_1 = suspendResult;
|
|
881
|
-
this.ac_1 = 5;
|
|
882
|
-
continue $sm;
|
|
883
|
-
case 5:
|
|
884
|
-
return this.c75_1;
|
|
885
|
-
case 6:
|
|
886
|
-
this.bc_1 = 7;
|
|
887
|
-
var tmp_1 = this.dc_1;
|
|
888
|
-
if (tmp_1 instanceof Error) {
|
|
889
|
-
var cause = this.dc_1;
|
|
890
|
-
throw mapToKtor(cause, this.r74_1);
|
|
891
|
-
} else {
|
|
892
|
-
throw this.dc_1;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
case 7:
|
|
896
|
-
throw this.dc_1;
|
|
897
|
-
}
|
|
898
|
-
} catch ($p) {
|
|
899
|
-
var e = $p;
|
|
900
|
-
if (this.bc_1 === 7) {
|
|
901
|
-
throw e;
|
|
902
|
-
} else {
|
|
903
|
-
this.ac_1 = this.bc_1;
|
|
904
|
-
this.dc_1 = e;
|
|
905
|
-
}
|
|
906
|
-
}
|
|
907
|
-
while (true);
|
|
908
|
-
}
|
|
909
|
-
}
|
|
910
|
-
initMetadataForCoroutine($);
|
|
911
|
-
$makeDedicatedRequestCOROUTINE$Class = $;
|
|
912
|
-
}
|
|
913
|
-
return $makeDedicatedRequestCOROUTINE$Class;
|
|
914
|
-
}
|
|
915
|
-
var $createPipelineCOROUTINE$Class;
|
|
916
|
-
function $createPipelineCOROUTINE$() {
|
|
917
|
-
if ($createPipelineCOROUTINE$Class === VOID) {
|
|
918
|
-
class $ extends CoroutineImpl() {
|
|
919
|
-
constructor(_this__u8e3s4, request, resultContinuation) {
|
|
920
|
-
super(resultContinuation);
|
|
921
|
-
this.l75_1 = _this__u8e3s4;
|
|
922
|
-
this.m75_1 = request;
|
|
923
|
-
}
|
|
924
|
-
ic() {
|
|
925
|
-
var suspendResult = this.cc_1;
|
|
926
|
-
$sm: do
|
|
927
|
-
try {
|
|
928
|
-
var tmp = this.ac_1;
|
|
929
|
-
switch (tmp) {
|
|
930
|
-
case 0:
|
|
931
|
-
this.bc_1 = 2;
|
|
932
|
-
this.ac_1 = 1;
|
|
933
|
-
suspendResult = connect(this.l75_1, this.m75_1, this);
|
|
934
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
935
|
-
return suspendResult;
|
|
936
|
-
}
|
|
937
|
-
|
|
938
|
-
continue $sm;
|
|
939
|
-
case 1:
|
|
940
|
-
var _destruct__k2r9zo = suspendResult;
|
|
941
|
-
var address = _destruct__k2r9zo.gl();
|
|
942
|
-
var connection = _destruct__k2r9zo.hl();
|
|
943
|
-
var pipeline = new (ConnectionPipeline())(this.l75_1.t71_1.i72_1.n72_1, this.l75_1.t71_1.i72_1.o72_1, connection, !(this.l75_1.r71_1 == null), this.l75_1.a72_1, this.l75_1.v71_1);
|
|
944
|
-
var tmp_0 = pipeline.f79();
|
|
945
|
-
tmp_0.v1y(Endpoint$createPipeline$lambda(this.l75_1, address));
|
|
946
|
-
return Unit_instance;
|
|
947
|
-
case 2:
|
|
948
|
-
throw this.dc_1;
|
|
949
|
-
}
|
|
950
|
-
} catch ($p) {
|
|
951
|
-
var e = $p;
|
|
952
|
-
if (this.bc_1 === 2) {
|
|
953
|
-
throw e;
|
|
954
|
-
} else {
|
|
955
|
-
this.ac_1 = this.bc_1;
|
|
956
|
-
this.dc_1 = e;
|
|
957
|
-
}
|
|
958
|
-
}
|
|
959
|
-
while (true);
|
|
960
|
-
}
|
|
961
|
-
}
|
|
962
|
-
initMetadataForCoroutine($);
|
|
963
|
-
$createPipelineCOROUTINE$Class = $;
|
|
964
|
-
}
|
|
965
|
-
return $createPipelineCOROUTINE$Class;
|
|
966
|
-
}
|
|
967
|
-
var $connectCOROUTINE$Class;
|
|
968
|
-
function $connectCOROUTINE$() {
|
|
969
|
-
if ($connectCOROUTINE$Class === VOID) {
|
|
970
|
-
class $ extends CoroutineImpl() {
|
|
971
|
-
constructor(_this__u8e3s4, requestData, resultContinuation) {
|
|
972
|
-
super(resultContinuation);
|
|
973
|
-
this.v75_1 = _this__u8e3s4;
|
|
974
|
-
this.w75_1 = requestData;
|
|
975
|
-
}
|
|
976
|
-
ic() {
|
|
977
|
-
var suspendResult = this.cc_1;
|
|
978
|
-
$sm: do
|
|
979
|
-
try {
|
|
980
|
-
var tmp = this.ac_1;
|
|
981
|
-
switch (tmp) {
|
|
982
|
-
case 0:
|
|
983
|
-
this.bc_1 = 15;
|
|
984
|
-
this.x75_1 = this.v75_1.t71_1.i72_1.r72_1;
|
|
985
|
-
this.y75_1 = retrieveTimeouts(this.v75_1, this.w75_1);
|
|
986
|
-
this.z75_1 = this.y75_1.gl();
|
|
987
|
-
this.a76_1 = this.y75_1.hl();
|
|
988
|
-
this.b76_1 = 0;
|
|
989
|
-
this.v75_1.z71_1.atomicfu$incrementAndGet();
|
|
990
|
-
this.bc_1 = 14;
|
|
991
|
-
var tmp_0 = this;
|
|
992
|
-
tmp_0.c76_1 = this.x75_1;
|
|
993
|
-
this.d76_1 = this.c76_1;
|
|
994
|
-
this.e76_1 = until(0, this.d76_1).d1();
|
|
995
|
-
this.ac_1 = 1;
|
|
996
|
-
continue $sm;
|
|
997
|
-
case 1:
|
|
998
|
-
if (!this.e76_1.e1()) {
|
|
999
|
-
this.ac_1 = 12;
|
|
1000
|
-
continue $sm;
|
|
1001
|
-
}
|
|
1002
|
-
|
|
1003
|
-
this.f76_1 = this.e76_1.f1();
|
|
1004
|
-
var tmp_1 = this;
|
|
1005
|
-
tmp_1.g76_1 = this.f76_1;
|
|
1006
|
-
this.ac_1 = 2;
|
|
1007
|
-
continue $sm;
|
|
1008
|
-
case 2:
|
|
1009
|
-
this.i76_1 = this.g76_1;
|
|
1010
|
-
var tmp_2 = this;
|
|
1011
|
-
var tmp_3;
|
|
1012
|
-
if (!(this.v75_1.x71_1 == null)) {
|
|
1013
|
-
tmp_3 = new (UnixSocketAddress())(this.v75_1.x71_1.b70_1);
|
|
1014
|
-
} else {
|
|
1015
|
-
tmp_3 = new (InetSocketAddress())(this.v75_1.p71_1, this.v75_1.q71_1);
|
|
1016
|
-
}
|
|
1017
|
-
|
|
1018
|
-
tmp_2.j76_1 = tmp_3;
|
|
1019
|
-
var tmp_4 = this;
|
|
1020
|
-
tmp_4.k76_1 = Endpoint$connect$slambda_0(this.v75_1, this.j76_1, this.a76_1, null);
|
|
1021
|
-
this.l76_1 = this.z75_1;
|
|
1022
|
-
if (this.l76_1.equals(new (Long())(-1, 2147483647))) {
|
|
1023
|
-
this.ac_1 = 6;
|
|
1024
|
-
suspendResult = this.k76_1(this.v75_1, this);
|
|
1025
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1026
|
-
return suspendResult;
|
|
1027
|
-
}
|
|
1028
|
-
continue $sm;
|
|
1029
|
-
} else {
|
|
1030
|
-
this.ac_1 = 3;
|
|
1031
|
-
suspendResult = withTimeoutOrNull(this.z75_1, this.k76_1, this);
|
|
1032
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1033
|
-
return suspendResult;
|
|
1034
|
-
}
|
|
1035
|
-
continue $sm;
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
|
-
case 3:
|
|
1039
|
-
this.n76_1 = suspendResult;
|
|
1040
|
-
if (this.n76_1 == null) {
|
|
1041
|
-
this.b76_1 = this.b76_1 + 1 | 0;
|
|
1042
|
-
this.h76_1 = Unit_instance;
|
|
1043
|
-
this.ac_1 = 5;
|
|
1044
|
-
continue $sm;
|
|
1045
|
-
} else {
|
|
1046
|
-
this.ac_1 = 4;
|
|
1047
|
-
continue $sm;
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
case 4:
|
|
1051
|
-
this.m76_1 = this.n76_1;
|
|
1052
|
-
this.ac_1 = 7;
|
|
1053
|
-
continue $sm;
|
|
1054
|
-
case 5:
|
|
1055
|
-
this.ac_1 = 1;
|
|
1056
|
-
continue $sm;
|
|
1057
|
-
case 6:
|
|
1058
|
-
this.m76_1 = suspendResult;
|
|
1059
|
-
this.ac_1 = 7;
|
|
1060
|
-
continue $sm;
|
|
1061
|
-
case 7:
|
|
1062
|
-
this.o76_1 = this.m76_1;
|
|
1063
|
-
this.bc_1 = 11;
|
|
1064
|
-
this.p76_1 = connection(this.o76_1);
|
|
1065
|
-
if (!this.v75_1.s71_1)
|
|
1066
|
-
return to(this.j76_1, this.p76_1);
|
|
1067
|
-
var tmp1_safe_receiver = this.v75_1.r71_1;
|
|
1068
|
-
if (equals(tmp1_safe_receiver == null ? null : get_type(tmp1_safe_receiver), ProxyType_HTTP_getInstance())) {
|
|
1069
|
-
this.ac_1 = 8;
|
|
1070
|
-
suspendResult = startTunnel(this.w75_1, this.p76_1.v6w_1, this.p76_1.u6w_1, this);
|
|
1071
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1072
|
-
return suspendResult;
|
|
1073
|
-
}
|
|
1074
|
-
continue $sm;
|
|
1075
|
-
} else {
|
|
1076
|
-
this.ac_1 = 9;
|
|
1077
|
-
continue $sm;
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1080
|
-
case 8:
|
|
1081
|
-
this.ac_1 = 9;
|
|
1082
|
-
continue $sm;
|
|
1083
|
-
case 9:
|
|
1084
|
-
if (!(this.v75_1.x71_1 == null)) {
|
|
1085
|
-
throw IllegalArgumentException().u('TLS over Unix sockets is not supported');
|
|
1086
|
-
}
|
|
1087
|
-
|
|
1088
|
-
var tmp_5 = this;
|
|
1089
|
-
var tmp_6;
|
|
1090
|
-
if (this.v75_1.r71_1 == null) {
|
|
1091
|
-
var tmp_7 = this.j76_1;
|
|
1092
|
-
var tmp3_elvis_lhs = tmp_7 instanceof InetSocketAddress() ? tmp_7 : null;
|
|
1093
|
-
var tmp_8;
|
|
1094
|
-
if (tmp3_elvis_lhs == null) {
|
|
1095
|
-
throw IllegalArgumentException().u('Expected InetSocketAddress for TLS connection');
|
|
1096
|
-
} else {
|
|
1097
|
-
tmp_8 = tmp3_elvis_lhs;
|
|
1098
|
-
}
|
|
1099
|
-
tmp_6 = tmp_8;
|
|
1100
|
-
} else {
|
|
1101
|
-
tmp_6 = new (InetSocketAddress())(this.w75_1.q56_1.o49_1, this.w75_1.q56_1.g4b());
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
tmp_5.q76_1 = tmp_6;
|
|
1105
|
-
this.ac_1 = 10;
|
|
1106
|
-
suspendResult = tls(this.p76_1, this.v75_1.v71_1, Endpoint$connect$lambda(this.v75_1, this.q76_1), this);
|
|
1107
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1108
|
-
return suspendResult;
|
|
1109
|
-
}
|
|
1110
|
-
|
|
1111
|
-
continue $sm;
|
|
1112
|
-
case 10:
|
|
1113
|
-
var tlsSocket = suspendResult;
|
|
1114
|
-
return to(this.j76_1, connection(tlsSocket));
|
|
1115
|
-
case 11:
|
|
1116
|
-
this.bc_1 = 14;
|
|
1117
|
-
var tmp_9 = this.dc_1;
|
|
1118
|
-
if (tmp_9 instanceof Error) {
|
|
1119
|
-
var cause = this.dc_1;
|
|
1120
|
-
try {
|
|
1121
|
-
this.o76_1.v5();
|
|
1122
|
-
} catch ($p) {
|
|
1123
|
-
if ($p instanceof Error) {
|
|
1124
|
-
var _unused_var__etf5q3 = $p;
|
|
1125
|
-
} else {
|
|
1126
|
-
throw $p;
|
|
1127
|
-
}
|
|
1128
|
-
}
|
|
1129
|
-
this.v75_1.u71_1.l73(this.j76_1);
|
|
1130
|
-
throw cause;
|
|
1131
|
-
} else {
|
|
1132
|
-
throw this.dc_1;
|
|
1133
|
-
}
|
|
1134
|
-
|
|
1135
|
-
case 12:
|
|
1136
|
-
this.bc_1 = 15;
|
|
1137
|
-
this.ac_1 = 13;
|
|
1138
|
-
continue $sm;
|
|
1139
|
-
case 13:
|
|
1140
|
-
this.bc_1 = 15;
|
|
1141
|
-
this.v75_1.z71_1.atomicfu$decrementAndGet();
|
|
1142
|
-
throw getTimeoutException(this.v75_1, this.x75_1, this.b76_1, this.w75_1);
|
|
1143
|
-
case 14:
|
|
1144
|
-
this.bc_1 = 15;
|
|
1145
|
-
var tmp_10 = this.dc_1;
|
|
1146
|
-
if (tmp_10 instanceof Error) {
|
|
1147
|
-
var cause_0 = this.dc_1;
|
|
1148
|
-
this.v75_1.z71_1.atomicfu$decrementAndGet();
|
|
1149
|
-
throw cause_0;
|
|
1150
|
-
} else {
|
|
1151
|
-
throw this.dc_1;
|
|
1152
|
-
}
|
|
1153
|
-
|
|
1154
|
-
case 15:
|
|
1155
|
-
throw this.dc_1;
|
|
1156
|
-
}
|
|
1157
|
-
} catch ($p) {
|
|
1158
|
-
var e = $p;
|
|
1159
|
-
if (this.bc_1 === 15) {
|
|
1160
|
-
throw e;
|
|
1161
|
-
} else {
|
|
1162
|
-
this.ac_1 = this.bc_1;
|
|
1163
|
-
this.dc_1 = e;
|
|
1164
|
-
}
|
|
1165
|
-
}
|
|
1166
|
-
while (true);
|
|
1167
|
-
}
|
|
1168
|
-
}
|
|
1169
|
-
initMetadataForCoroutine($);
|
|
1170
|
-
$connectCOROUTINE$Class = $;
|
|
1171
|
-
}
|
|
1172
|
-
return $connectCOROUTINE$Class;
|
|
1173
|
-
}
|
|
1174
|
-
var EndpointClass;
|
|
1175
|
-
function Endpoint() {
|
|
1176
|
-
if (EndpointClass === VOID) {
|
|
1177
|
-
class $ {
|
|
1178
|
-
constructor(host, port, proxy, secure, config, connectionFactory, coroutineContext, onDone, unixSocket) {
|
|
1179
|
-
Companion_getInstance_0();
|
|
1180
|
-
this.p71_1 = host;
|
|
1181
|
-
this.q71_1 = port;
|
|
1182
|
-
this.r71_1 = proxy;
|
|
1183
|
-
this.s71_1 = secure;
|
|
1184
|
-
this.t71_1 = config;
|
|
1185
|
-
this.u71_1 = connectionFactory;
|
|
1186
|
-
this.v71_1 = coroutineContext;
|
|
1187
|
-
this.w71_1 = onDone;
|
|
1188
|
-
this.x71_1 = unixSocket;
|
|
1189
|
-
this.y71_1 = atomic$long$1(getTimeMillis());
|
|
1190
|
-
this.z71_1 = atomic$int$1(0);
|
|
1191
|
-
this.a72_1 = Channel();
|
|
1192
|
-
this.b72_1 = numberToLong(2).r3(this.t71_1.i72_1.p72_1);
|
|
1193
|
-
var tmp = this;
|
|
1194
|
-
var tmp_0 = this.v71_1.lm(new (CoroutineName())('Endpoint timeout(' + this.p71_1 + ':' + this.q71_1 + ')'));
|
|
1195
|
-
tmp.c72_1 = launch(this, tmp_0, VOID, Endpoint$timeout$slambda_0(this, null));
|
|
1196
|
-
}
|
|
1197
|
-
s1x() {
|
|
1198
|
-
return this.v71_1;
|
|
1199
|
-
}
|
|
1200
|
-
d72(request, callContext, $completion) {
|
|
1201
|
-
var tmp = new ($executeCOROUTINE$())(this, request, callContext, $completion);
|
|
1202
|
-
tmp.cc_1 = Unit_instance;
|
|
1203
|
-
tmp.dc_1 = null;
|
|
1204
|
-
return tmp.ic();
|
|
1205
|
-
}
|
|
1206
|
-
v5() {
|
|
1207
|
-
this.c72_1.d1z();
|
|
1208
|
-
}
|
|
1209
|
-
}
|
|
1210
|
-
initMetadataForClass($, 'Endpoint', VOID, VOID, [CoroutineScope(), AutoCloseable()], [2, 1, 7]);
|
|
1211
|
-
EndpointClass = $;
|
|
1212
|
-
}
|
|
1213
|
-
return EndpointClass;
|
|
1214
|
-
}
|
|
1215
|
-
function getRequestTimeout(request, engineConfig) {
|
|
1216
|
-
_init_properties_Endpoint_kt__juhqkr();
|
|
1217
|
-
var isWebSocket = isWebsocket(request.q56_1.a4a_1);
|
|
1218
|
-
if (!(request.i5r(HttpTimeoutCapability_instance) == null) || isWebSocket || isUpgradeRequest(request) || isSseRequest(request)) {
|
|
1219
|
-
return new (Long())(-1, 2147483647);
|
|
1220
|
-
}
|
|
1221
|
-
return engineConfig.l72_1;
|
|
1222
|
-
}
|
|
1223
|
-
function setupTimeout(callContext, request, timeout) {
|
|
1224
|
-
_init_properties_Endpoint_kt__juhqkr();
|
|
1225
|
-
if (timeout.equals(new (Long())(-1, 2147483647)) || timeout.equals(new (Long())(0, 0)))
|
|
1226
|
-
return Unit_instance;
|
|
1227
|
-
var tmp = GlobalScope_instance;
|
|
1228
|
-
var timeoutJob = launch(tmp, VOID, VOID, setupTimeout$slambda_0(timeout, callContext, request, null));
|
|
1229
|
-
var tmp_0 = get_job(callContext);
|
|
1230
|
-
tmp_0.v1y(setupTimeout$lambda(timeoutJob));
|
|
1231
|
-
}
|
|
1232
|
-
var FailToConnectExceptionClass;
|
|
1233
|
-
function FailToConnectException() {
|
|
1234
|
-
if (FailToConnectExceptionClass === VOID) {
|
|
1235
|
-
class $ extends Exception() {
|
|
1236
|
-
static t76() {
|
|
1237
|
-
var $this = this.g5('Connect timed out or retry attempts exceeded');
|
|
1238
|
-
captureStack($this, $this.s76_1);
|
|
1239
|
-
return $this;
|
|
1240
|
-
}
|
|
1241
|
-
}
|
|
1242
|
-
initMetadataForClass($, 'FailToConnectException', $.t76);
|
|
1243
|
-
FailToConnectExceptionClass = $;
|
|
1244
|
-
}
|
|
1245
|
-
return FailToConnectExceptionClass;
|
|
1246
|
-
}
|
|
1247
|
-
var setupTimeout$slambdaClass;
|
|
1248
|
-
function setupTimeout$slambda() {
|
|
1249
|
-
if (setupTimeout$slambdaClass === VOID) {
|
|
1250
|
-
class $ extends CoroutineImpl() {
|
|
1251
|
-
constructor($timeout, $callContext, $request, resultContinuation, $box) {
|
|
1252
|
-
if ($box === VOID)
|
|
1253
|
-
$box = {};
|
|
1254
|
-
$box.o79_1 = $timeout;
|
|
1255
|
-
$box.p79_1 = $callContext;
|
|
1256
|
-
$box.q79_1 = $request;
|
|
1257
|
-
super(resultContinuation, $box);
|
|
1258
|
-
}
|
|
1259
|
-
z37($this$launch, $completion) {
|
|
1260
|
-
var tmp = this.d36($this$launch, $completion);
|
|
1261
|
-
tmp.cc_1 = Unit_instance;
|
|
1262
|
-
tmp.dc_1 = null;
|
|
1263
|
-
return tmp.ic();
|
|
1264
|
-
}
|
|
1265
|
-
kd(p1, $completion) {
|
|
1266
|
-
return this.z37((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
1267
|
-
}
|
|
1268
|
-
ic() {
|
|
1269
|
-
var suspendResult = this.cc_1;
|
|
1270
|
-
$sm: do
|
|
1271
|
-
try {
|
|
1272
|
-
var tmp = this.ac_1;
|
|
1273
|
-
switch (tmp) {
|
|
1274
|
-
case 0:
|
|
1275
|
-
this.bc_1 = 2;
|
|
1276
|
-
this.ac_1 = 1;
|
|
1277
|
-
suspendResult = delay(this.o79_1, this);
|
|
1278
|
-
if (suspendResult === get_COROUTINE_SUSPENDED()) {
|
|
1279
|
-
return suspendResult;
|
|
1280
|
-
}
|
|
1281
|
-
|
|
1282
|
-
continue $sm;
|
|
1283
|
-
case 1:
|
|
1284
|
-
cancel(get_job(this.p79_1), 'Request is timed out', HttpRequestTimeoutException().h5r(this.q79_1));
|
|
1285
|
-
return Unit_instance;
|
|
1286
|
-
case 2:
|
|
1287
|
-
throw this.dc_1;
|
|
1288
|
-
}
|
|
1289
|
-
} catch ($p) {
|
|
1290
|
-
var e = $p;
|
|
1291
|
-
if (this.bc_1 === 2) {
|
|
1292
|
-
throw e;
|
|
1293
|
-
} else {
|
|
1294
|
-
this.ac_1 = this.bc_1;
|
|
1295
|
-
this.dc_1 = e;
|
|
1296
|
-
}
|
|
1297
|
-
}
|
|
1298
|
-
while (true);
|
|
1299
|
-
}
|
|
1300
|
-
d36($this$launch, completion) {
|
|
1301
|
-
var i = new (setupTimeout$slambda())(this.o79_1, this.p79_1, this.q79_1, completion);
|
|
1302
|
-
i.r79_1 = $this$launch;
|
|
1303
|
-
return i;
|
|
1304
|
-
}
|
|
1305
|
-
}
|
|
1306
|
-
initMetadataForLambda($, VOID, VOID, [1]);
|
|
1307
|
-
setupTimeout$slambdaClass = $;
|
|
1308
|
-
}
|
|
1309
|
-
return setupTimeout$slambdaClass;
|
|
1310
|
-
}
|
|
1311
|
-
function setupTimeout$slambda_0($timeout, $callContext, $request, resultContinuation) {
|
|
1312
|
-
var i = new (setupTimeout$slambda())($timeout, $callContext, $request, resultContinuation);
|
|
1313
|
-
var l = function ($this$launch, $completion) {
|
|
1314
|
-
return i.z37($this$launch, $completion);
|
|
1315
|
-
};
|
|
1316
|
-
l.$arity = 1;
|
|
1317
|
-
return l;
|
|
1318
|
-
}
|
|
1319
|
-
function setupTimeout$lambda($timeoutJob) {
|
|
1320
|
-
return function (it) {
|
|
1321
|
-
$timeoutJob.d1z();
|
|
1322
|
-
return Unit_instance;
|
|
1323
|
-
};
|
|
1324
|
-
}
|
|
1325
|
-
var properties_initialized_Endpoint_kt_d49l2v;
|
|
1326
|
-
function _init_properties_Endpoint_kt__juhqkr() {
|
|
1327
|
-
if (!properties_initialized_Endpoint_kt_d49l2v) {
|
|
1328
|
-
properties_initialized_Endpoint_kt_d49l2v = true;
|
|
1329
|
-
LOGGER = KtorSimpleLogger('io.ktor.client.engine.cio.Endpoint');
|
|
1330
|
-
}
|
|
1331
|
-
}
|
|
1332
|
-
//region block: exports
|
|
1333
|
-
export {
|
|
1334
|
-
Endpoint as Endpoint1pyrdxahqstae,
|
|
1335
|
-
};
|
|
1336
|
-
//endregion
|
|
1337
|
-
|
|
1338
|
-
//# sourceMappingURL=Endpoint.mjs.map
|