@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../commons-wallet/src/commonMain/kotlin/cash/atto/commons/wallet/AttoWallet.kt","../../../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/sync/Mutex.kt","common/src/generated/_Collections.kt","src/kotlin/collections/Maps.kt","src/kotlin/util/Preconditions.kt","common/src/generated/_Maps.kt","js/src/kotlin/collectionJs.kt","unsigned/src/kotlin/UInt.kt","src/kotlin/util/Standard.kt","src/kotlin/time/Duration.kt"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-logger>","<generator-withLock>","action","$completion","<generator-add>","accounts","item","<generator-contains>","index","address","<generator-get>","<generator-remove>","<generator-invoke>","account","timestamp","block","updatedAccount","transaction","message","<generator-openAccount>","indexes","indexMap","element","signer","attoAccountMap","newAccounts","<generator-closeAccount>","<generator-getAccount>","<generator-getAddress>","<generator-publish>","signature","work","<generator-send>","receiverAddress","amount","walletAccount","<generator-receive>","receivable","representativeAddress","<generator-change>","withLock","add","contains","get","remove","addressFlow","AttoWallet$openAccount$lambda","$walletAccount","$index","$timestamp","$receiverAddress","$amount","invoke","AttoWallet$send$slambda","AttoWallet$send$slambda$lambda","$representativeAddress","$receivable","AttoWallet$receive$slambda","AttoWallet$receive$slambda$lambda","AttoWallet$change$slambda","AttoWallet$change$slambda$lambda","client","worker","signerProvider","openAccount","fromIndex","toIndex","v","closeAccount","isOpen","getAccount","getAddress","publish","send","receive","receive$default","change","startAutoReceiver","<this>","monitor","dispatcher","minAmount","retryAfter","defaultRepresentativeAddressProvider","scope","job","bindJob","bindTo","logger$lambda","$defaultRepresentativeAddressProvider","startAutoReceiver$slambda","startAutoReceiver$slambda$lambda","$retryAfter","startAutoReceiver$slambda$lambda$lambda","$bindJob","bindTo$slambda","bindTo$slambda$lambda","toAdd","toRemove","$monitor","$e","bindTo$slambda$lambda$lambda","<init properties AttoWallet.kt>"],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
type Nullable<T> = T | null | undefined
|
|
2
|
+
declare function KtSingleton<T>(): T & (abstract new() => any);
|
|
3
|
+
export declare class AttoWalletAsync {
|
|
4
|
+
private constructor();
|
|
5
|
+
openAccountCollection(indexes: any/* Collection<AttoKeyIndex> */): AttoFuture<any/* Collection<AttoWallet.Account> */>;
|
|
6
|
+
openAccountRange(fromIndex: AttoKeyIndex, toIndex: AttoKeyIndex): AttoFuture<any/* Collection<AttoWallet.Account> */>;
|
|
7
|
+
openAccount(index: AttoKeyIndex): AttoFuture<any/* AttoWallet.Account */>;
|
|
8
|
+
closeAccount(index: AttoKeyIndex): AttoFuture<void>;
|
|
9
|
+
addressFlow(): any/* Flow<KtSet<AttoAddress>> */;
|
|
10
|
+
isOpenByIndex(index: AttoKeyIndex): AttoFuture<boolean>;
|
|
11
|
+
isOpenByAddress(address: AttoAddress): AttoFuture<boolean>;
|
|
12
|
+
getAccountByIndex(index: AttoKeyIndex): AttoFuture<Nullable<AttoAccount>>;
|
|
13
|
+
getAccountByAddress(address: AttoAddress): AttoFuture<Nullable<AttoAccount>>;
|
|
14
|
+
getAddress(index: AttoKeyIndex): AttoFuture<AttoAddress>;
|
|
15
|
+
publish(index: AttoKeyIndex, block: AttoBlock): AttoFuture<AttoTransaction>;
|
|
16
|
+
sendByIndex(index: AttoKeyIndex, receiverAddress: AttoAddress, amount: AttoAmount, timestamp?: Nullable<AttoInstant>): AttoFuture<AttoTransaction>;
|
|
17
|
+
sendByAddress(address: AttoAddress, receiverAddress: AttoAddress, amount: AttoAmount, timestamp?: Nullable<AttoInstant>): AttoFuture<AttoTransaction>;
|
|
18
|
+
receive(receivable: AttoReceivable, representativeAddress?: Nullable<AttoAddress>, timestamp?: Nullable<AttoInstant>): AttoFuture<AttoTransaction>;
|
|
19
|
+
change(index: AttoKeyIndex, representativeAddress: AttoAddress, timestamp?: Nullable<AttoInstant>): AttoFuture<AttoTransaction>;
|
|
20
|
+
}
|
|
21
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
22
|
+
export declare namespace AttoWalletAsync.$metadata$ {
|
|
23
|
+
const constructor: abstract new () => AttoWalletAsync;
|
|
24
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AttoWalletAsync4aef45xgjaot as AttoWalletAsync } from './AttoWalletAsync.mjs';
|
|
2
|
+
//region block: imports
|
|
3
|
+
//endregion
|
|
4
|
+
//region block: pre-declaration
|
|
5
|
+
//endregion
|
|
6
|
+
//region block: exports
|
|
7
|
+
var AttoWalletAsync_0 = AttoWalletAsync();
|
|
8
|
+
export {
|
|
9
|
+
AttoWalletAsync_0 as AttoWalletAsync,
|
|
10
|
+
};
|
|
11
|
+
//endregion
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=AttoWalletAsync.export.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;"}
|
|
@@ -0,0 +1,440 @@
|
|
|
1
|
+
import { get_COROUTINE_SUSPENDED3ujt3p13qm4iy as get_COROUTINE_SUSPENDED } from '../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/Intrinsics.mjs';
|
|
2
|
+
import { Unit_instance1fbcbse1fwigr as Unit_instance } from '../../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
3
|
+
import {
|
|
4
|
+
initMetadataForLambda3af3he42mmnh as initMetadataForLambda,
|
|
5
|
+
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
6
|
+
} from '../../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
7
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../../../../kotlin-kotlin-stdlib/kotlin/js/void.mjs';
|
|
8
|
+
import { suspendOrReturn49pspzlx5djv as suspendOrReturn } from '../../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs';
|
|
9
|
+
import { Dispatchers_getInstanceitgtkvqfcnx3 as Dispatchers_getInstance } from '../../../../../kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs';
|
|
10
|
+
import { SupervisorJobythnfxkr3jxc as SupervisorJob } from '../../../../../kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs';
|
|
11
|
+
import { CoroutineScopelux7s7zphw7e as CoroutineScope } from '../../../../../kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs';
|
|
12
|
+
import { submitr2wceezoc2x6 as submit } from '../../../../../commons-commons-core/cash/atto/commons/AttoFuture.js.mjs';
|
|
13
|
+
//region block: imports
|
|
14
|
+
//endregion
|
|
15
|
+
//region block: pre-declaration
|
|
16
|
+
//endregion
|
|
17
|
+
function *_generator_invoke__zhh2q8($this, $completion) {
|
|
18
|
+
var tmp = $this.p3q_1.n3q_1.r3p($this.q3q_1, $completion);
|
|
19
|
+
if (tmp === get_COROUTINE_SUSPENDED())
|
|
20
|
+
tmp = yield tmp;
|
|
21
|
+
return Unit_instance;
|
|
22
|
+
}
|
|
23
|
+
var AttoWalletAsync$openAccount$slambdaClass;
|
|
24
|
+
function AttoWalletAsync$openAccount$slambda() {
|
|
25
|
+
if (AttoWalletAsync$openAccount$slambdaClass === VOID) {
|
|
26
|
+
class $ {
|
|
27
|
+
constructor(this$0, $indexes) {
|
|
28
|
+
this.r3q_1 = this$0;
|
|
29
|
+
this.s3q_1 = $indexes;
|
|
30
|
+
}
|
|
31
|
+
jd($completion) {
|
|
32
|
+
return this.r3q_1.n3q_1.p3p(this.s3q_1, $completion);
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
36
|
+
AttoWalletAsync$openAccount$slambdaClass = $;
|
|
37
|
+
}
|
|
38
|
+
return AttoWalletAsync$openAccount$slambdaClass;
|
|
39
|
+
}
|
|
40
|
+
function AttoWalletAsync$openAccount$slambda_0(this$0, $indexes) {
|
|
41
|
+
var i = new (AttoWalletAsync$openAccount$slambda())(this$0, $indexes);
|
|
42
|
+
var l = ($completion) => i.jd($completion);
|
|
43
|
+
l.$arity = 0;
|
|
44
|
+
return l;
|
|
45
|
+
}
|
|
46
|
+
var AttoWalletAsync$openAccount$slambdaClass_0;
|
|
47
|
+
function AttoWalletAsync$openAccount$slambda_1() {
|
|
48
|
+
if (AttoWalletAsync$openAccount$slambdaClass_0 === VOID) {
|
|
49
|
+
class $ {
|
|
50
|
+
constructor(this$0, $fromIndex, $toIndex) {
|
|
51
|
+
this.t3q_1 = this$0;
|
|
52
|
+
this.u3q_1 = $fromIndex;
|
|
53
|
+
this.v3q_1 = $toIndex;
|
|
54
|
+
}
|
|
55
|
+
jd($completion) {
|
|
56
|
+
return this.t3q_1.n3q_1.g3p(this.u3q_1, this.v3q_1, $completion);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
60
|
+
AttoWalletAsync$openAccount$slambdaClass_0 = $;
|
|
61
|
+
}
|
|
62
|
+
return AttoWalletAsync$openAccount$slambdaClass_0;
|
|
63
|
+
}
|
|
64
|
+
function AttoWalletAsync$openAccount$slambda_2(this$0, $fromIndex, $toIndex) {
|
|
65
|
+
var i = new (AttoWalletAsync$openAccount$slambda_1())(this$0, $fromIndex, $toIndex);
|
|
66
|
+
var l = ($completion) => i.jd($completion);
|
|
67
|
+
l.$arity = 0;
|
|
68
|
+
return l;
|
|
69
|
+
}
|
|
70
|
+
var AttoWalletAsync$openAccount$slambdaClass_1;
|
|
71
|
+
function AttoWalletAsync$openAccount$slambda_3() {
|
|
72
|
+
if (AttoWalletAsync$openAccount$slambdaClass_1 === VOID) {
|
|
73
|
+
class $ {
|
|
74
|
+
constructor(this$0, $index) {
|
|
75
|
+
this.w3q_1 = this$0;
|
|
76
|
+
this.x3q_1 = $index;
|
|
77
|
+
}
|
|
78
|
+
jd($completion) {
|
|
79
|
+
return this.w3q_1.n3q_1.q3p(this.x3q_1, $completion);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
83
|
+
AttoWalletAsync$openAccount$slambdaClass_1 = $;
|
|
84
|
+
}
|
|
85
|
+
return AttoWalletAsync$openAccount$slambdaClass_1;
|
|
86
|
+
}
|
|
87
|
+
function AttoWalletAsync$openAccount$slambda_4(this$0, $index) {
|
|
88
|
+
var i = new (AttoWalletAsync$openAccount$slambda_3())(this$0, $index);
|
|
89
|
+
var l = ($completion) => i.jd($completion);
|
|
90
|
+
l.$arity = 0;
|
|
91
|
+
return l;
|
|
92
|
+
}
|
|
93
|
+
var AttoWalletAsync$closeAccount$slambdaClass;
|
|
94
|
+
function AttoWalletAsync$closeAccount$slambda() {
|
|
95
|
+
if (AttoWalletAsync$closeAccount$slambdaClass === VOID) {
|
|
96
|
+
class $ {
|
|
97
|
+
constructor(this$0, $index) {
|
|
98
|
+
this.p3q_1 = this$0;
|
|
99
|
+
this.q3q_1 = $index;
|
|
100
|
+
}
|
|
101
|
+
jd($completion) {
|
|
102
|
+
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8.bind(VOID, this), $completion);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
106
|
+
AttoWalletAsync$closeAccount$slambdaClass = $;
|
|
107
|
+
}
|
|
108
|
+
return AttoWalletAsync$closeAccount$slambdaClass;
|
|
109
|
+
}
|
|
110
|
+
function AttoWalletAsync$closeAccount$slambda_0(this$0, $index) {
|
|
111
|
+
var i = new (AttoWalletAsync$closeAccount$slambda())(this$0, $index);
|
|
112
|
+
var l = ($completion) => i.jd($completion);
|
|
113
|
+
l.$arity = 0;
|
|
114
|
+
return l;
|
|
115
|
+
}
|
|
116
|
+
var AttoWalletAsync$isOpen$slambdaClass;
|
|
117
|
+
function AttoWalletAsync$isOpen$slambda() {
|
|
118
|
+
if (AttoWalletAsync$isOpen$slambdaClass === VOID) {
|
|
119
|
+
class $ {
|
|
120
|
+
constructor(this$0, $index) {
|
|
121
|
+
this.y3q_1 = this$0;
|
|
122
|
+
this.z3q_1 = $index;
|
|
123
|
+
}
|
|
124
|
+
jd($completion) {
|
|
125
|
+
return this.y3q_1.n3q_1.s3p(this.z3q_1, $completion);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
129
|
+
AttoWalletAsync$isOpen$slambdaClass = $;
|
|
130
|
+
}
|
|
131
|
+
return AttoWalletAsync$isOpen$slambdaClass;
|
|
132
|
+
}
|
|
133
|
+
function AttoWalletAsync$isOpen$slambda_0(this$0, $index) {
|
|
134
|
+
var i = new (AttoWalletAsync$isOpen$slambda())(this$0, $index);
|
|
135
|
+
var l = ($completion) => i.jd($completion);
|
|
136
|
+
l.$arity = 0;
|
|
137
|
+
return l;
|
|
138
|
+
}
|
|
139
|
+
var AttoWalletAsync$isOpen$slambdaClass_0;
|
|
140
|
+
function AttoWalletAsync$isOpen$slambda_1() {
|
|
141
|
+
if (AttoWalletAsync$isOpen$slambdaClass_0 === VOID) {
|
|
142
|
+
class $ {
|
|
143
|
+
constructor(this$0, $address) {
|
|
144
|
+
this.a3r_1 = this$0;
|
|
145
|
+
this.b3r_1 = $address;
|
|
146
|
+
}
|
|
147
|
+
jd($completion) {
|
|
148
|
+
return this.a3r_1.n3q_1.t3p(this.b3r_1, $completion);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
152
|
+
AttoWalletAsync$isOpen$slambdaClass_0 = $;
|
|
153
|
+
}
|
|
154
|
+
return AttoWalletAsync$isOpen$slambdaClass_0;
|
|
155
|
+
}
|
|
156
|
+
function AttoWalletAsync$isOpen$slambda_2(this$0, $address) {
|
|
157
|
+
var i = new (AttoWalletAsync$isOpen$slambda_1())(this$0, $address);
|
|
158
|
+
var l = ($completion) => i.jd($completion);
|
|
159
|
+
l.$arity = 0;
|
|
160
|
+
return l;
|
|
161
|
+
}
|
|
162
|
+
var AttoWalletAsync$getAccount$slambdaClass;
|
|
163
|
+
function AttoWalletAsync$getAccount$slambda() {
|
|
164
|
+
if (AttoWalletAsync$getAccount$slambdaClass === VOID) {
|
|
165
|
+
class $ {
|
|
166
|
+
constructor(this$0, $index) {
|
|
167
|
+
this.c3r_1 = this$0;
|
|
168
|
+
this.d3r_1 = $index;
|
|
169
|
+
}
|
|
170
|
+
jd($completion) {
|
|
171
|
+
return this.c3r_1.n3q_1.u3p(this.d3r_1, $completion);
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
175
|
+
AttoWalletAsync$getAccount$slambdaClass = $;
|
|
176
|
+
}
|
|
177
|
+
return AttoWalletAsync$getAccount$slambdaClass;
|
|
178
|
+
}
|
|
179
|
+
function AttoWalletAsync$getAccount$slambda_0(this$0, $index) {
|
|
180
|
+
var i = new (AttoWalletAsync$getAccount$slambda())(this$0, $index);
|
|
181
|
+
var l = ($completion) => i.jd($completion);
|
|
182
|
+
l.$arity = 0;
|
|
183
|
+
return l;
|
|
184
|
+
}
|
|
185
|
+
var AttoWalletAsync$getAccount$slambdaClass_0;
|
|
186
|
+
function AttoWalletAsync$getAccount$slambda_1() {
|
|
187
|
+
if (AttoWalletAsync$getAccount$slambdaClass_0 === VOID) {
|
|
188
|
+
class $ {
|
|
189
|
+
constructor(this$0, $address) {
|
|
190
|
+
this.e3r_1 = this$0;
|
|
191
|
+
this.f3r_1 = $address;
|
|
192
|
+
}
|
|
193
|
+
jd($completion) {
|
|
194
|
+
return this.e3r_1.n3q_1.v3p(this.f3r_1, $completion);
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
198
|
+
AttoWalletAsync$getAccount$slambdaClass_0 = $;
|
|
199
|
+
}
|
|
200
|
+
return AttoWalletAsync$getAccount$slambdaClass_0;
|
|
201
|
+
}
|
|
202
|
+
function AttoWalletAsync$getAccount$slambda_2(this$0, $address) {
|
|
203
|
+
var i = new (AttoWalletAsync$getAccount$slambda_1())(this$0, $address);
|
|
204
|
+
var l = ($completion) => i.jd($completion);
|
|
205
|
+
l.$arity = 0;
|
|
206
|
+
return l;
|
|
207
|
+
}
|
|
208
|
+
var AttoWalletAsync$getAddress$slambdaClass;
|
|
209
|
+
function AttoWalletAsync$getAddress$slambda() {
|
|
210
|
+
if (AttoWalletAsync$getAddress$slambdaClass === VOID) {
|
|
211
|
+
class $ {
|
|
212
|
+
constructor(this$0, $index) {
|
|
213
|
+
this.g3r_1 = this$0;
|
|
214
|
+
this.h3r_1 = $index;
|
|
215
|
+
}
|
|
216
|
+
jd($completion) {
|
|
217
|
+
return this.g3r_1.n3q_1.w3p(this.h3r_1, $completion);
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
221
|
+
AttoWalletAsync$getAddress$slambdaClass = $;
|
|
222
|
+
}
|
|
223
|
+
return AttoWalletAsync$getAddress$slambdaClass;
|
|
224
|
+
}
|
|
225
|
+
function AttoWalletAsync$getAddress$slambda_0(this$0, $index) {
|
|
226
|
+
var i = new (AttoWalletAsync$getAddress$slambda())(this$0, $index);
|
|
227
|
+
var l = ($completion) => i.jd($completion);
|
|
228
|
+
l.$arity = 0;
|
|
229
|
+
return l;
|
|
230
|
+
}
|
|
231
|
+
var AttoWalletAsync$publish$slambdaClass;
|
|
232
|
+
function AttoWalletAsync$publish$slambda() {
|
|
233
|
+
if (AttoWalletAsync$publish$slambdaClass === VOID) {
|
|
234
|
+
class $ {
|
|
235
|
+
constructor(this$0, $index, $block) {
|
|
236
|
+
this.i3r_1 = this$0;
|
|
237
|
+
this.j3r_1 = $index;
|
|
238
|
+
this.k3r_1 = $block;
|
|
239
|
+
}
|
|
240
|
+
jd($completion) {
|
|
241
|
+
return this.i3r_1.n3q_1.u3o(this.j3r_1, this.k3r_1, $completion);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
245
|
+
AttoWalletAsync$publish$slambdaClass = $;
|
|
246
|
+
}
|
|
247
|
+
return AttoWalletAsync$publish$slambdaClass;
|
|
248
|
+
}
|
|
249
|
+
function AttoWalletAsync$publish$slambda_0(this$0, $index, $block) {
|
|
250
|
+
var i = new (AttoWalletAsync$publish$slambda())(this$0, $index, $block);
|
|
251
|
+
var l = ($completion) => i.jd($completion);
|
|
252
|
+
l.$arity = 0;
|
|
253
|
+
return l;
|
|
254
|
+
}
|
|
255
|
+
var AttoWalletAsync$send$slambdaClass;
|
|
256
|
+
function AttoWalletAsync$send$slambda() {
|
|
257
|
+
if (AttoWalletAsync$send$slambdaClass === VOID) {
|
|
258
|
+
class $ {
|
|
259
|
+
constructor(this$0, $index, $receiverAddress, $amount, $timestamp) {
|
|
260
|
+
this.l3r_1 = this$0;
|
|
261
|
+
this.m3r_1 = $index;
|
|
262
|
+
this.n3r_1 = $receiverAddress;
|
|
263
|
+
this.o3r_1 = $amount;
|
|
264
|
+
this.p3r_1 = $timestamp;
|
|
265
|
+
}
|
|
266
|
+
jd($completion) {
|
|
267
|
+
return this.l3r_1.n3q_1.l3p(this.m3r_1, this.n3r_1, this.o3r_1, this.p3r_1, $completion);
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
271
|
+
AttoWalletAsync$send$slambdaClass = $;
|
|
272
|
+
}
|
|
273
|
+
return AttoWalletAsync$send$slambdaClass;
|
|
274
|
+
}
|
|
275
|
+
function AttoWalletAsync$send$slambda_0(this$0, $index, $receiverAddress, $amount, $timestamp) {
|
|
276
|
+
var i = new (AttoWalletAsync$send$slambda())(this$0, $index, $receiverAddress, $amount, $timestamp);
|
|
277
|
+
var l = ($completion) => i.jd($completion);
|
|
278
|
+
l.$arity = 0;
|
|
279
|
+
return l;
|
|
280
|
+
}
|
|
281
|
+
var AttoWalletAsync$send$slambdaClass_0;
|
|
282
|
+
function AttoWalletAsync$send$slambda_1() {
|
|
283
|
+
if (AttoWalletAsync$send$slambdaClass_0 === VOID) {
|
|
284
|
+
class $ {
|
|
285
|
+
constructor(this$0, $address, $receiverAddress, $amount, $timestamp) {
|
|
286
|
+
this.q3r_1 = this$0;
|
|
287
|
+
this.r3r_1 = $address;
|
|
288
|
+
this.s3r_1 = $receiverAddress;
|
|
289
|
+
this.t3r_1 = $amount;
|
|
290
|
+
this.u3r_1 = $timestamp;
|
|
291
|
+
}
|
|
292
|
+
jd($completion) {
|
|
293
|
+
return this.q3r_1.n3q_1.x3p(this.r3r_1, this.s3r_1, this.t3r_1, this.u3r_1, $completion);
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
297
|
+
AttoWalletAsync$send$slambdaClass_0 = $;
|
|
298
|
+
}
|
|
299
|
+
return AttoWalletAsync$send$slambdaClass_0;
|
|
300
|
+
}
|
|
301
|
+
function AttoWalletAsync$send$slambda_2(this$0, $address, $receiverAddress, $amount, $timestamp) {
|
|
302
|
+
var i = new (AttoWalletAsync$send$slambda_1())(this$0, $address, $receiverAddress, $amount, $timestamp);
|
|
303
|
+
var l = ($completion) => i.jd($completion);
|
|
304
|
+
l.$arity = 0;
|
|
305
|
+
return l;
|
|
306
|
+
}
|
|
307
|
+
var AttoWalletAsync$receive$slambdaClass;
|
|
308
|
+
function AttoWalletAsync$receive$slambda() {
|
|
309
|
+
if (AttoWalletAsync$receive$slambdaClass === VOID) {
|
|
310
|
+
class $ {
|
|
311
|
+
constructor(this$0, $receivable, $representativeAddress, $timestamp) {
|
|
312
|
+
this.v3r_1 = this$0;
|
|
313
|
+
this.w3r_1 = $receivable;
|
|
314
|
+
this.x3r_1 = $representativeAddress;
|
|
315
|
+
this.y3r_1 = $timestamp;
|
|
316
|
+
}
|
|
317
|
+
jd($completion) {
|
|
318
|
+
return this.v3r_1.n3q_1.y3p(this.w3r_1, this.x3r_1, this.y3r_1, $completion);
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
322
|
+
AttoWalletAsync$receive$slambdaClass = $;
|
|
323
|
+
}
|
|
324
|
+
return AttoWalletAsync$receive$slambdaClass;
|
|
325
|
+
}
|
|
326
|
+
function AttoWalletAsync$receive$slambda_0(this$0, $receivable, $representativeAddress, $timestamp) {
|
|
327
|
+
var i = new (AttoWalletAsync$receive$slambda())(this$0, $receivable, $representativeAddress, $timestamp);
|
|
328
|
+
var l = ($completion) => i.jd($completion);
|
|
329
|
+
l.$arity = 0;
|
|
330
|
+
return l;
|
|
331
|
+
}
|
|
332
|
+
var AttoWalletAsync$change$slambdaClass;
|
|
333
|
+
function AttoWalletAsync$change$slambda() {
|
|
334
|
+
if (AttoWalletAsync$change$slambdaClass === VOID) {
|
|
335
|
+
class $ {
|
|
336
|
+
constructor(this$0, $index, $representativeAddress, $timestamp) {
|
|
337
|
+
this.z3r_1 = this$0;
|
|
338
|
+
this.a3s_1 = $index;
|
|
339
|
+
this.b3s_1 = $representativeAddress;
|
|
340
|
+
this.c3s_1 = $timestamp;
|
|
341
|
+
}
|
|
342
|
+
jd($completion) {
|
|
343
|
+
return this.z3r_1.n3q_1.a3q(this.a3s_1, this.b3s_1, this.c3s_1, $completion);
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
initMetadataForLambda($, VOID, VOID, [0]);
|
|
347
|
+
AttoWalletAsync$change$slambdaClass = $;
|
|
348
|
+
}
|
|
349
|
+
return AttoWalletAsync$change$slambdaClass;
|
|
350
|
+
}
|
|
351
|
+
function AttoWalletAsync$change$slambda_0(this$0, $index, $representativeAddress, $timestamp) {
|
|
352
|
+
var i = new (AttoWalletAsync$change$slambda())(this$0, $index, $representativeAddress, $timestamp);
|
|
353
|
+
var l = ($completion) => i.jd($completion);
|
|
354
|
+
l.$arity = 0;
|
|
355
|
+
return l;
|
|
356
|
+
}
|
|
357
|
+
var AttoWalletAsyncClass;
|
|
358
|
+
function AttoWalletAsync() {
|
|
359
|
+
if (AttoWalletAsyncClass === VOID) {
|
|
360
|
+
class $ {
|
|
361
|
+
constructor(wallet, dispatcher) {
|
|
362
|
+
dispatcher = dispatcher === VOID ? Dispatchers_getInstance().a15_1 : dispatcher;
|
|
363
|
+
this.n3q_1 = wallet;
|
|
364
|
+
this.o3q_1 = CoroutineScope(dispatcher.il(SupervisorJob()));
|
|
365
|
+
}
|
|
366
|
+
openAccountCollection(indexes) {
|
|
367
|
+
return submit(this.o3q_1, AttoWalletAsync$openAccount$slambda_0(this, indexes));
|
|
368
|
+
}
|
|
369
|
+
openAccountRange(fromIndex, toIndex) {
|
|
370
|
+
return submit(this.o3q_1, AttoWalletAsync$openAccount$slambda_2(this, fromIndex, toIndex));
|
|
371
|
+
}
|
|
372
|
+
openAccount(index) {
|
|
373
|
+
return submit(this.o3q_1, AttoWalletAsync$openAccount$slambda_4(this, index));
|
|
374
|
+
}
|
|
375
|
+
closeAccount(index) {
|
|
376
|
+
return submit(this.o3q_1, AttoWalletAsync$closeAccount$slambda_0(this, index));
|
|
377
|
+
}
|
|
378
|
+
addressFlow() {
|
|
379
|
+
return this.n3q_1.o3p();
|
|
380
|
+
}
|
|
381
|
+
isOpenByIndex(index) {
|
|
382
|
+
return submit(this.o3q_1, AttoWalletAsync$isOpen$slambda_0(this, index));
|
|
383
|
+
}
|
|
384
|
+
isOpenByAddress(address) {
|
|
385
|
+
return submit(this.o3q_1, AttoWalletAsync$isOpen$slambda_2(this, address));
|
|
386
|
+
}
|
|
387
|
+
getAccountByIndex(index) {
|
|
388
|
+
return submit(this.o3q_1, AttoWalletAsync$getAccount$slambda_0(this, index));
|
|
389
|
+
}
|
|
390
|
+
getAccountByAddress(address) {
|
|
391
|
+
return submit(this.o3q_1, AttoWalletAsync$getAccount$slambda_2(this, address));
|
|
392
|
+
}
|
|
393
|
+
getAddress(index) {
|
|
394
|
+
return submit(this.o3q_1, AttoWalletAsync$getAddress$slambda_0(this, index));
|
|
395
|
+
}
|
|
396
|
+
publish(index, block) {
|
|
397
|
+
return submit(this.o3q_1, AttoWalletAsync$publish$slambda_0(this, index, block));
|
|
398
|
+
}
|
|
399
|
+
d3s(index, receiverAddress, amount, timestamp) {
|
|
400
|
+
return submit(this.o3q_1, AttoWalletAsync$send$slambda_0(this, index, receiverAddress, amount, timestamp));
|
|
401
|
+
}
|
|
402
|
+
sendByIndex(index, receiverAddress, amount, timestamp, $super) {
|
|
403
|
+
timestamp = timestamp === VOID ? null : timestamp;
|
|
404
|
+
return $super === VOID ? this.d3s(index, receiverAddress, amount, timestamp) : $super.d3s.call(this, index, receiverAddress, amount, timestamp);
|
|
405
|
+
}
|
|
406
|
+
e3s(address, receiverAddress, amount, timestamp) {
|
|
407
|
+
return submit(this.o3q_1, AttoWalletAsync$send$slambda_2(this, address, receiverAddress, amount, timestamp));
|
|
408
|
+
}
|
|
409
|
+
sendByAddress(address, receiverAddress, amount, timestamp, $super) {
|
|
410
|
+
timestamp = timestamp === VOID ? null : timestamp;
|
|
411
|
+
return $super === VOID ? this.e3s(address, receiverAddress, amount, timestamp) : $super.e3s.call(this, address, receiverAddress, amount, timestamp);
|
|
412
|
+
}
|
|
413
|
+
f3s(receivable, representativeAddress, timestamp) {
|
|
414
|
+
return submit(this.o3q_1, AttoWalletAsync$receive$slambda_0(this, receivable, representativeAddress, timestamp));
|
|
415
|
+
}
|
|
416
|
+
receive(receivable, representativeAddress, timestamp, $super) {
|
|
417
|
+
representativeAddress = representativeAddress === VOID ? null : representativeAddress;
|
|
418
|
+
timestamp = timestamp === VOID ? null : timestamp;
|
|
419
|
+
return $super === VOID ? this.f3s(receivable, representativeAddress, timestamp) : $super.f3s.call(this, receivable, representativeAddress, timestamp);
|
|
420
|
+
}
|
|
421
|
+
g3s(index, representativeAddress, timestamp) {
|
|
422
|
+
return submit(this.o3q_1, AttoWalletAsync$change$slambda_0(this, index, representativeAddress, timestamp));
|
|
423
|
+
}
|
|
424
|
+
change(index, representativeAddress, timestamp, $super) {
|
|
425
|
+
timestamp = timestamp === VOID ? null : timestamp;
|
|
426
|
+
return $super === VOID ? this.g3s(index, representativeAddress, timestamp) : $super.g3s.call(this, index, representativeAddress, timestamp);
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
initMetadataForClass($, 'AttoWalletAsync');
|
|
430
|
+
AttoWalletAsyncClass = $;
|
|
431
|
+
}
|
|
432
|
+
return AttoWalletAsyncClass;
|
|
433
|
+
}
|
|
434
|
+
//region block: exports
|
|
435
|
+
export {
|
|
436
|
+
AttoWalletAsync as AttoWalletAsync4aef45xgjaot,
|
|
437
|
+
};
|
|
438
|
+
//endregion
|
|
439
|
+
|
|
440
|
+
//# sourceMappingURL=AttoWalletAsync.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../commons-wallet/src/commonMain/kotlin/cash/atto/commons/wallet/AttoWalletAsync.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["<generator-invoke>","$completion","$indexes","invoke","AttoWalletAsync$openAccount$slambda","AttoWalletAsync$openAccount$slambda$lambda","$fromIndex","$toIndex","$index","AttoWalletAsync$closeAccount$slambda","AttoWalletAsync$closeAccount$slambda$lambda","AttoWalletAsync$isOpen$slambda","AttoWalletAsync$isOpen$slambda$lambda","$address","AttoWalletAsync$getAccount$slambda","AttoWalletAsync$getAccount$slambda$lambda","AttoWalletAsync$getAddress$slambda","AttoWalletAsync$getAddress$slambda$lambda","$block","AttoWalletAsync$publish$slambda","AttoWalletAsync$publish$slambda$lambda","$receiverAddress","$amount","$timestamp","AttoWalletAsync$send$slambda","AttoWalletAsync$send$slambda$lambda","$receivable","$representativeAddress","AttoWalletAsync$receive$slambda","AttoWalletAsync$receive$slambda$lambda","AttoWalletAsync$change$slambda","AttoWalletAsync$change$slambda$lambda","wallet","dispatcher","openAccount","indexes","fromIndex","toIndex","index","closeAccount","addressFlow","isOpen","address","getAccount","getAddress","publish","block","send","receiverAddress","amount","timestamp","send$default","receive","receivable","representativeAddress","receive$default","change","change$default"],"mappings":"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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
type Nullable<T> = T | null | undefined
|
|
2
|
+
declare function KtSingleton<T>(): T & (abstract new() => any);
|
|
3
|
+
export declare interface AttoSignerProvider {
|
|
4
|
+
get(index: AttoKeyIndex): AttoFuture<any/* AttoSigner */>;
|
|
5
|
+
readonly __doNotUseOrImplementIt: {
|
|
6
|
+
readonly "cash.atto.commons.wallet.AttoSignerProvider": unique symbol;
|
|
7
|
+
};
|
|
8
|
+
}
|
package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.d.mts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
type Nullable<T> = T | null | undefined
|
|
2
|
+
declare function KtSingleton<T>(): T & (abstract new() => any);
|
|
3
|
+
export declare class AttoWalletAsyncBuilder {
|
|
4
|
+
constructor(clientAsync: AttoNodeClientAsync, workerAsync: AttoWorkerAsync);
|
|
5
|
+
signerProviderFunction(value: AttoSignerProvider): AttoWalletAsyncBuilder;
|
|
6
|
+
signerProviderSeed(value: AttoSeed): AttoWalletAsyncBuilder;
|
|
7
|
+
enableAutoReceiver(monitor: AttoAccountMonitorAsync, minAmount: AttoAmount | undefined, retryAfterSeconds: number, defaultRepresentativeAddressProvider: () => AttoAddress): AttoWalletAsyncBuilder;
|
|
8
|
+
build(): AttoWalletAsync;
|
|
9
|
+
}
|
|
10
|
+
/** @deprecated $metadata$ is used for internal purposes, please don't use it in your code, because it can be removed at any moment */
|
|
11
|
+
export declare namespace AttoWalletAsyncBuilder.$metadata$ {
|
|
12
|
+
const constructor: abstract new () => AttoWalletAsyncBuilder;
|
|
13
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { AttoWalletAsyncBuilderfm2srblqy3vj as AttoWalletAsyncBuilder } from './AttoWalletAsyncBuilder.js.mjs';
|
|
2
|
+
//region block: imports
|
|
3
|
+
//endregion
|
|
4
|
+
//region block: pre-declaration
|
|
5
|
+
//endregion
|
|
6
|
+
//region block: exports
|
|
7
|
+
var AttoWalletAsyncBuilder_0 = AttoWalletAsyncBuilder();
|
|
8
|
+
export {
|
|
9
|
+
AttoWalletAsyncBuilder_0 as AttoWalletAsyncBuilder,
|
|
10
|
+
};
|
|
11
|
+
//endregion
|
|
12
|
+
|
|
13
|
+
//# sourceMappingURL=AttoWalletAsyncBuilder.js.export.mjs.map
|
package/commons-commons-wallet/cash/atto/commons/wallet/AttoWalletAsyncBuilder.js.export.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"ignoreList":[],"x_google_ignoreList":[],"names":[],"mappings":";;;;;;;;;;"}
|