@continuous-excellence/coupling-cli 1.1.441 → 1.1.442
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/Coupling-cli/com/zegreatrob/coupling/cli/Auth0Environment.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigCommand.mjs +38 -38
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/ConfigFileSource.mjs +15 -15
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCli.mjs +16 -16
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/CouplingCliConfig.mjs +33 -33
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Login.mjs +23 -23
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Main.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/Versions.mjs +1 -1
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/WithSdk.mjs +8 -8
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PartyListQuery.mjs +22 -22
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/PlayersQuery.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PartyListQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/gql/adapter/PlayersQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/BatchContribution.mjs +31 -31
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Contribution.mjs +24 -24
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/ContributionInput.mjs +14 -14
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CurrentPairs.mjs +37 -37
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/CycleTimeFromFirstCommit.mjs +4 -4
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Party.mjs +28 -28
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyDetails.mjs +35 -35
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/PartyList.mjs +13 -13
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/Players.mjs +26 -26
- package/kotlin/Coupling-cli/com/zegreatrob/coupling/cli/party/SaveContribution.mjs +51 -51
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/ActionLoggingSyntax.mjs +12 -12
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/LoggingActionPipe.mjs +18 -18
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommand.mjs +7 -7
- package/kotlin/Coupling-libraries-action/com/zegreatrob/coupling/action/party/SaveContributionCommandDispatcherExecuteKt.mjs +13 -13
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/AccessResult.mjs +82 -82
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/DeviceCodeRequest.mjs +50 -50
- package/kotlin/Coupling-libraries-auth0-management/com/zegreatrob/coupling/auth0/management/KtorAuth0Client.mjs +30 -30
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/CouplingJsonFormat.mjs +5 -5
- package/kotlin/Coupling-libraries-json/com/zegreatrob/coupling/json/PartyIdSerializer.mjs +10 -10
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/Contribution.mjs +54 -54
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/ContributionId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/CouplingPair.mjs +57 -57
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSet.mjs +16 -16
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pairassignmentdocument/PairingSetId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PairingRule.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyDetails.mjs +34 -34
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/PartyId.mjs +5 -5
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/party/SecretId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/pin/Pin.mjs +17 -17
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/AvatarType.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Badge.mjs +1 -1
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/Player.mjs +28 -28
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/PlayerId.mjs +4 -4
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/player/callsign/CallSign.mjs +7 -7
- package/kotlin/Coupling-libraries-model/com/zegreatrob/coupling/model/user/UserId.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSdk.mjs +17 -17
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSyntax.mjs +5 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/KtorSyntax.mjs.map +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkGraphQueryDispatcher.mjs +2 -2
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/SdkSaveContributionCommandDispatcher.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/adapter/Adapter.mjs +32 -32
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlQuery.mjs +13 -13
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/GqlTrait.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/gql/KtorQueryPerformer.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PairingSetDetailsMapper.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/mapper/PartyDetailsMapper.mjs +10 -10
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/CurrentPairAssignmentsQuery.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/PartyDetailsQuery.mjs +27 -27
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/SaveContributionMutation.mjs +20 -20
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_ResponseAdapter.mjs +30 -30
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/CurrentPairAssignmentsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_ResponseAdapter.mjs +21 -21
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/PartyDetailsQuery_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_ResponseAdapter.mjs +9 -9
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/adapter/SaveContributionMutation_VariablesAdapter.mjs +3 -3
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetails.mjs +77 -77
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PairingSetDetailsImpl_ResponseAdapter.mjs +102 -102
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetails.mjs +31 -31
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PartyDetailsImpl_ResponseAdapter.mjs +36 -36
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetails.mjs +28 -28
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/fragment/PlayerDetailsImpl_ResponseAdapter.mjs +33 -33
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/AvatarType.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/Badge.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/ContributionInput.mjs +46 -46
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/GraphQLFloat.mjs +1 -1
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/PartyInput.mjs +4 -4
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/SaveContributionInput.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/AvatarType_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/Badge_ResponseAdapter.mjs +7 -7
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/ContributionInput_InputAdapter.mjs +47 -47
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/PartyInput_InputAdapter.mjs +6 -6
- package/kotlin/Coupling-sdk/com/zegreatrob/coupling/sdk/schema/type/adapter/SaveContributionInput_InputAdapter.mjs +8 -8
- package/kotlin/apollo-kotlin-adapters-apollo-adapters-core/com/apollographql/adapter/core/KotlinInstantAdapter.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Adapters.mjs +113 -113
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloRequest.mjs +63 -63
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ApolloResponse.mjs +61 -61
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Assertions.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CompiledGraphQL.mjs +3 -3
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/CustomScalarAdapters.mjs +44 -44
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/DeferredFragmentIdentifier.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Error.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executable.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Executables.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/ExecutionContext.mjs +21 -21
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Operations.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/Optional.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/DefaultHttpRequestComposer.mjs +139 -139
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/Http.mjs +57 -57
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/http/HttpHeaders.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/internal/ResponseParser.mjs +28 -28
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSinkJsonWriter.mjs +84 -84
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/BufferedSourceJsonReader.mjs +275 -275
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonNumber.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonReaders.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/JsonWriters.mjs +12 -12
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonReader.mjs +113 -113
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/MapJsonWriter.mjs +48 -48
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/FileUploadAwareJsonWriter.mjs +35 -35
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/api/json/internal/JsonScope.mjs +9 -9
- package/kotlin/apollo-kotlin-apollo-api/com/apollographql/apollo/exception/Exceptions.mjs +51 -51
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloCall.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs +250 -250
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ApolloClient.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/ConcurrencyInfo.mjs +6 -6
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/ApolloInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/NetworkInterceptor.mjs +7 -7
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/interceptor/RetryOnErrorInterceptor.mjs +40 -40
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/DeferredJsonMerger.mjs +27 -27
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/MultipartReader.mjs +49 -49
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/dispatchers.js.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/flows.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/internal/multipart.mjs +18 -18
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/NetworkMonitor.mjs +4 -4
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/DefaultHttpEngine.js.mjs +30 -30
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpEngine.mjs +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpExecutionContext.mjs +8 -8
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpInterceptor.mjs +5 -5
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs +146 -146
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/HttpNetworkTransport.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/http/Js.mjs +2 -2
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs +33 -33
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/JsWebSocketEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/SubscriptionWsProtocol.mjs +29 -29
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs +183 -183
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WebSocketNetworkTransport.mjs.map +1 -1
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/WsProtocol.mjs +23 -23
- package/kotlin/apollo-kotlin-apollo-runtime/com/apollographql/apollo/network/ws/internal/WsMessage.mjs +24 -24
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/KtorExtensions.mjs +2 -2
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.js.mjs +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs +43 -44
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/http/KtorHttpEngine.mjs.map +1 -1
- package/kotlin/apollo-kotlin-ktor-support-apollo-engine-ktor/com/apollographql/ktor/ws/KtorWebSocketEngine.mjs +70 -70
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/command/CoreSuspendingCliktCommand.mjs +5 -5
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/BashCompletionGenerator.mjs +33 -33
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/CompletionGenerator.mjs +4 -4
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/completion/FishCompletionGenerator.mjs +23 -23
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/BaseCliktCommand.mjs +110 -110
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/Context.mjs +93 -93
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/core/exceptions.mjs +124 -124
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Finalization.mjs +37 -37
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/internal/Util.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/AbstractHelpFormatter.mjs +134 -134
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/HelpFormatter.mjs +48 -48
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/Localization.mjs +32 -32
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/output/PlaintextHelpFormatter.mjs +26 -26
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/groups/ParameterGroup.mjs +2 -2
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/internal/NullableLateinit.mjs +13 -13
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/EagerOption.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/FlagOption.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/Option.mjs +21 -21
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/OptionWithValues.mjs +209 -209
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformAll.mjs +6 -6
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/options/TransformEach.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/transform/TransformContext.mjs +7 -7
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parameters/types/boolean.mjs +9 -9
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/CommandLineParser.mjs +29 -29
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/Invocation.mjs +45 -45
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/ParserInternals.mjs +230 -230
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/parsers/atfile.mjs +3 -3
- package/kotlin/clikt-clikt/com/github/ajalt/clikt/sources/ValueSource.mjs +15 -15
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/core/MordantContext.mjs +16 -16
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/output/MordantHelpFormatter.mjs +65 -65
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/options/PromptOptions.mjs +18 -18
- package/kotlin/clikt-clikt-mordant/com/github/ajalt/clikt/parameters/transform/MordantTransformContext.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/Color.mjs +1 -1
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/ColorSpace.mjs +5 -5
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/WhitePoint.mjs +15 -15
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/internal/Matrix.mjs +10 -10
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi16.mjs +18 -18
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/Ansi256.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/HSV.mjs +25 -25
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/ICtCp.mjs +19 -19
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGB.mjs +121 -121
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/RGBColorSpaces.mjs +134 -134
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/XYZ.mjs +64 -64
- package/kotlin/colormath-root-colormath/com/github/ajalt/colormath/model/xyY.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/DeepRecursive.mjs +19 -19
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Lazy.mjs +9 -9
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Result.mjs +5 -5
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Tuples.mjs +13 -16
- package/kotlin/kotlin-kotlin-stdlib/kotlin/Tuples.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByte.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UByteArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UInt.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UIntArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULong.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ULongArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShort.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/UShortArray.mjs +25 -25
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/AbstractMutableCollectionJs.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/Collections.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/collections/HashMapEntry.mjs +2 -2
- package/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/Base64.mjs +347 -0
- package/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/Base64.mjs.map +1 -0
- package/kotlin/kotlin-kotlin-stdlib/kotlin/random/Random.mjs +37 -37
- package/kotlin/kotlin-kotlin-stdlib/kotlin/random/XorWowRandom.mjs +22 -22
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/PrimitiveRanges.mjs +17 -17
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/ProgressionIterators.mjs +22 -22
- package/kotlin/kotlin-kotlin-stdlib/kotlin/ranges/Progressions.mjs +10 -10
- package/kotlin/kotlin-kotlin-stdlib/kotlin/reflect/KTypeProjection.mjs +12 -12
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/Strings.mjs +60 -60
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs +22 -22
- package/kotlin/kotlin-kotlin-stdlib/kotlin/text/_Strings.mjs.map +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Clock.mjs +1 -1
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Duration.mjs +21 -21
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/Instant.mjs +65 -65
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/TimeSource.mjs +11 -11
- package/kotlin/kotlin-kotlin-stdlib/kotlin/time/measureTime.mjs +7 -7
- package/kotlin/kotlin-kotlin-stdlib/kotlin/uuid/Uuid.mjs +24 -24
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Appender.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/ConsoleOutputAppender.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Formatter.mjs +8 -8
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLogger.mjs +10 -10
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEvent.mjs +22 -22
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KLoggingEventBuilder.mjs +5 -5
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLogging.mjs +2 -2
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingConfiguration.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/KotlinLoggingLevel.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/Level.mjs +3 -3
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerDirect.mjs +9 -9
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/KLoggerFactory.mjs +1 -1
- package/kotlin/kotlin-logging/io/github/oshai/kotlinlogging/internal/MessageInvoker.mjs +2 -2
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.common.mjs +5 -5
- package/kotlin/kotlinx-atomicfu/kotlinx/atomicfu/AtomicFU.mjs +8 -8
- package/kotlin/kotlinx-browser/org/w3c/w3cSupport.mjs +8 -0
- package/kotlin/kotlinx-browser/org/w3c/w3cSupport.mjs.map +1 -0
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/AbstractCoroutine.mjs +25 -25
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs +40 -40
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Await.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs +66 -66
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Builders.common.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs +7 -7
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuation.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs +166 -166
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CancellableContinuationImpl.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletableDeferred.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CompletionState.mjs +11 -11
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineContext.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineDispatcher.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineExceptionHandler.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineName.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/CoroutineStart.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Delay.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/DispatchedTask.mjs +42 -42
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Dispatchers.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.common.mjs +27 -27
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/EventLoop.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.common.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Exceptions.mjs +6 -6
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs +92 -92
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JSDispatcher.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Job.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs +313 -313
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/JobSupport.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/MainCoroutineDispatcher.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Promise.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Supervisor.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Timeout.mjs +18 -18
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/Unconfined.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs +459 -459
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/BufferedChannel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs +75 -74
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channel.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ChannelCoroutine.mjs +23 -23
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/ConflatedBufferedChannel.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/channels/Produce.mjs +13 -13
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Builders.mjs +20 -20
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Channels.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collect.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Collection.mjs +10 -10
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Context.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Emitters.mjs +14 -14
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Errors.mjs +28 -28
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Flow.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Limit.mjs +16 -16
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Reduce.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Share.mjs +19 -19
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs +134 -134
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/SharedFlow.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/Transform.mjs +19 -19
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/AbstractSharedFlow.mjs +32 -32
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/ChannelFlow.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.common.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/FlowExceptions.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/NopCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.common.mjs +4 -4
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SafeCollector.mjs +8 -8
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/flow/internal/SendingCollector.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ConcurrentLinkedList.mjs +46 -46
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.common.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/CoroutineExceptionHandlerImpl.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/DispatchedContinuation.mjs +71 -71
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LimitedDispatcher.mjs +39 -39
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs +23 -23
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LinkedList.mjs.map +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/LockFreeTaskQueue.mjs +72 -72
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/NamedDispatcher.mjs +12 -12
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/OnUndeliveredElement.mjs +3 -3
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Scopes.mjs +11 -11
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/Symbol.mjs +2 -2
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/internal/ThreadLocal.mjs +5 -5
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Cancellable.mjs +1 -1
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/intrinsics/Undispatched.mjs +9 -9
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs +15 -15
- package/kotlin/kotlinx-coroutines-core/kotlinx/coroutines/selects/Select.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs +34 -34
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/ByteString.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-bytestring/kotlinx/io/bytestring/unsafe/UnsafeByteStringOperations.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs +11 -11
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-PlatformJs.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/-Util.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs +157 -157
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffer.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs +10 -10
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Buffers.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/ByteStrings.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Core.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs +20 -20
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/PeekSource.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs +50 -50
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/RealSource.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs +133 -133
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Segment.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs +6 -6
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/SegmentPool.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs +2 -2
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sink.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs +12 -12
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Sources.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs +60 -64
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/Utf8.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/internal/-Utf8.mjs.map +1 -1
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs +12 -12
- package/kotlin/kotlinx-io-kotlinx-io-core/kotlinx/io/unsafe/UnsafeBufferOperations.mjs.map +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/PolymorphicSerializer.mjs +17 -17
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializationExceptions.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/Serializers.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersCache.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/SerializersJs.mjs +4 -4
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/builtins/BuiltinSerializers.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/ContextAware.mjs +33 -33
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptor.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/descriptors/SerialDescriptors.mjs +96 -96
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractDecoder.mjs +60 -60
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/AbstractEncoder.mjs +69 -69
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Decoding.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/encoding/Encoding.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/AbstractPolymorphicSerializer.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/BuiltInSerializers.mjs +38 -38
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionDescriptors.mjs +56 -56
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/CollectionSerializers.mjs +231 -231
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ElementMarker.mjs +22 -22
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Enums.mjs +33 -33
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/InlineClassDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/JsonInternalDependencies.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NoOpEncoder.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NothingSerialDescriptor.mjs +16 -16
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/NullableSerializer.mjs +43 -43
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ObjectSerializer.mjs +19 -19
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.common.mjs +7 -7
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Platform.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginExceptions.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PluginGeneratedSerialDescriptor.mjs +70 -70
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/PrimitiveArraysSerializers.mjs +444 -444
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Primitives.mjs +114 -114
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tagged.mjs +221 -221
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/Tuples.mjs +90 -90
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/internal/ValueClasses.mjs +48 -48
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModule.mjs +30 -30
- package/kotlin/kotlinx-serialization-kotlinx-serialization-core/kotlinx/serialization/modules/SerializersModuleCollector.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/Json.mjs +47 -47
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonConfiguration.mjs +18 -18
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElement.mjs +58 -58
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementBuilders.mjs +6 -6
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonElementSerializers.mjs +152 -152
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/JsonSchemaCache.mjs +1 -1
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/AbstractJsonLexer.mjs +178 -178
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/CommentLexers.mjs +25 -25
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Composers.mjs +71 -71
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonElementMarker.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonExceptions.mjs +15 -15
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonNamesMap.mjs +21 -21
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonPath.mjs +39 -39
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonSerializersModuleValidator.mjs +11 -11
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonStreams.mjs +2 -2
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonToStringWriterJsWasm.mjs +12 -12
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/JsonTreeReader.mjs +62 -62
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/Polymorphic.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/SchemaCache.mjs +8 -8
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonDecoder.mjs +176 -176
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StreamingJsonEncoder.mjs +143 -143
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/StringJsonLexer.mjs +51 -51
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonDecoder.mjs +212 -212
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/TreeJsonEncoder.mjs +186 -186
- package/kotlin/kotlinx-serialization-kotlinx-serialization-json/kotlinx/serialization/json/internal/WriteMode.mjs +9 -9
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs +71 -72
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/ContentNegotiation.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/{DefaultIgnoredTypesJs.mjs → DefaultIgnoredTypes.web.mjs} +6 -6
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypes.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/JsonContentTypeMatcher.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.mjs +76 -76
- package/kotlin/ktor-ktor-client-core/io/ktor/client/{HttpClientJs.mjs → HttpClient.web.mjs} +8 -8
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClient.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs +47 -44
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientConfig.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/JsRequestUtils.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/DelegatedCall.mjs +45 -45
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs +49 -50
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/HttpClientCall.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/SavedCall.mjs +51 -51
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/utils.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/call/utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs +39 -39
- package/kotlin/ktor-ktor-client-core/io/ktor/client/content/ObservableContent.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs +49 -49
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineBase.mjs +23 -23
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/HttpClientEngineConfig.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Loader.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs +20 -21
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/Utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/Js.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs +39 -38
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsClientEngine.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs +16 -17
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/JsUtils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/browser/BrowserFetch.mjs +9 -9
- package/kotlin/ktor-ktor-client-core/io/ktor/client/engine/js/compatibility/Utils.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/BodyProgress.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs +58 -59
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultRequest.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultResponseValidation.mjs +33 -33
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs +69 -70
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/{DefaultTransformJs.mjs → DefaultTransform.web.mjs} +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransform.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs +79 -79
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpCallValidator.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpClientPlugin.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs +49 -50
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpPlainText.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs +34 -35
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRedirect.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs +29 -29
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestLifecycle.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs +110 -111
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpRequestRetry.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs +62 -56
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpSend.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/HttpTimeout.mjs +82 -82
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/SaveBody.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientHook.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginBuilder.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/ClientPluginInstance.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CommonHooks.mjs +26 -26
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/CreatePluginUtils.mjs +13 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/api/KtorCallContexts.mjs +34 -34
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserver.mjs +57 -57
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/{ResponseObserverContextJs.mjs → ResponseObserverContext.web.mjs} +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserverContext.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/sse/ClientSSESession.mjs +4 -4
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/ClientSessions.mjs +36 -36
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs +127 -86
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/JsWebSocketSession.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSocketContent.mjs +10 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSocketContent.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs +90 -83
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/WebSockets.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs +88 -47
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/websocket/builders.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/ClientUpgradeContent.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/DefaultHttpRequest.mjs +20 -20
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequest.mjs +59 -59
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/HttpRequestPipeline.mjs +18 -18
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/buildersWithUrl.mjs +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/FormDataContent.mjs +26 -13
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/FormDataContent.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/forms/formBuilders.mjs +11 -11
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/utils.mjs +2 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/request/utils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/DefaultHttpResponse.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponse.mjs +6 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpResponsePipeline.mjs +25 -25
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs +19 -19
- package/kotlin/ktor-ktor-client-core/io/ktor/client/statement/HttpStatement.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ByteChannelUtils.mjs +16 -16
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/ClientEvents.mjs +2 -2
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/Content.mjs +3 -3
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs +5 -6
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/HeadersUtils.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/utils/headers.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/HttpClientCallLogger.mjs +28 -28
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/{KtorMDCContext.jsAndWasmShared.mjs → KtorMDCContext.web.mjs} +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/KtorMDCContext.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs +248 -0
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogBodyFilter.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LogLevel.mjs +3 -3
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggedContent.mjs +16 -16
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logger.mjs +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/{LoggerJs.mjs → Logger.web.mjs} +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logger.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs +448 -527
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/Logging.mjs.map +1 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggingUtils.mjs +14 -14
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/ObservingUtils.mjs +13 -13
- package/kotlin/ktor-ktor-events/io/ktor/events/Events.mjs +6 -6
- package/kotlin/ktor-ktor-http/io/ktor/http/Codecs.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs +130 -97
- package/kotlin/ktor-ktor-http/io/ktor/http/ContentTypes.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HeaderValueWithParameters.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/Headers.mjs +18 -18
- package/kotlin/ktor-ktor-http/io/ktor/http/Headers.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaderValueParser.mjs +32 -32
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs +115 -115
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpHeaders.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs +5 -6
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMessageProperties.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs +15 -13
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpMethod.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpProtocolVersion.mjs +16 -16
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs +66 -66
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpStatusCode.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/HttpUrlEncoded.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/Parameters.mjs +12 -12
- package/kotlin/ktor-ktor-http/io/ktor/http/Query.mjs +4 -4
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.mjs +60 -60
- package/kotlin/ktor-ktor-http/io/ktor/http/{URLBuilderJs.mjs → URLBuilder.web.mjs} +2 -2
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilder.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-http/io/ktor/http/URLParser.mjs +34 -34
- package/kotlin/ktor-ktor-http/io/ktor/http/URLProtocol.mjs +20 -20
- package/kotlin/ktor-ktor-http/io/ktor/http/URLUtils.mjs +26 -26
- package/kotlin/ktor-ktor-http/io/ktor/http/Url.mjs +77 -77
- package/kotlin/ktor-ktor-http/io/ktor/http/UrlDecodedParametersBuilder.mjs +31 -31
- package/kotlin/ktor-ktor-http/io/ktor/http/content/ByteArrayContent.mjs +11 -11
- package/kotlin/ktor-ktor-http/io/ktor/http/content/Multipart.mjs +23 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/content/Multipart.mjs.map +1 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/content/OutgoingContent.mjs +9 -9
- package/kotlin/ktor-ktor-http/io/ktor/http/content/TextContent.mjs +14 -14
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/CIOMultipartDataBase.mjs +5 -5
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs +87 -87
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpHeadersMap.mjs.map +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs +39 -42
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/HttpParser.mjs.map +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/Multipart.mjs +49 -49
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/AsciiCharTree.mjs +10 -10
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayBuilder.mjs +70 -70
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/{CharArrayPoolJs.mjs → CharArrayPool.web.mjs} +1 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPool.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Chars.mjs +4 -4
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/Errors.mjs +3 -3
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/MutableRange.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.mjs +127 -127
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/{ByteChannel.jsAndWasmShared.mjs → ByteChannel.web.mjs} +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelCtor.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannelScanner.mjs +53 -53
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannel.mjs +13 -13
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs +273 -188
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteReadChannelOperations.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannel.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs +34 -34
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteWriteChannelOperations.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CloseToken.mjs +11 -11
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/CountedByteReadChannel.mjs +23 -23
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/Exceptions.mjs +12 -12
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/{IODispatcher.jsAndWasmShared.mjs → IODispatcher.web.mjs} +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/IODispatcher.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEnding.mjs +43 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEnding.mjs.map +1 -0
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs +15 -17
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/LineEndingMode.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/SourceByteReadChannel.mjs +18 -18
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs +43 -41
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Charset.js.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Encoding.mjs +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs +2 -2
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/ISO88591.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoder.js.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs +5 -5
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/TextDecoderFallback.js.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/charsets/Win1252Table.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Buffer.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/BytePacketBuilder.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/ByteReadPacket.mjs +4 -4
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Input.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/core/Strings.mjs +10 -10
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/ByteArrayPool.mjs +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs +28 -28
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/DefaultPool.mjs.map +1 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs +3 -3
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/pool/Pool.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConvertException.mjs +5 -5
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs +36 -37
- package/kotlin/ktor-ktor-serialization/io/ktor/serialization/ContentConverter.mjs.map +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.mjs +2 -2
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/{ExtensionsJs.mjs → Extensions.web.mjs} +1 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/Extensions.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/KotlinxSerializationConverter.mjs +79 -79
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/SerializerLookup.mjs +8 -8
- package/kotlin/ktor-ktor-serialization-kotlinx-json/io/ktor/serialization/kotlinx/json/JsonSupport.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.mjs +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/{AttributesJs.mjs → Attributes.web.mjs} +17 -17
- package/kotlin/ktor-ktor-utils/io/ktor/util/Attributes.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/ByteChannels.mjs +55 -55
- package/kotlin/ktor-ktor-utils/io/ktor/util/CaseInsensitiveMap.mjs +31 -31
- package/kotlin/ktor-ktor-utils/io/ktor/util/{CollectionsJs.mjs → Collections.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Collections.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/{ContentEncodersJs.mjs → ContentEncoders.web.mjs} +6 -6
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncoders.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/CoroutinesUtils.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Crypto.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/{CryptoJs.mjs → Crypto.web.mjs} +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/Crypto.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/DelegatingMutableSet.mjs +34 -34
- package/kotlin/ktor-ktor-utils/io/ktor/util/Encoders.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.js.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.mjs +17 -17
- package/kotlin/ktor-ktor-utils/io/ktor/util/{PlatformUtilsJs.mjs → PlatformUtils.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtils.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/StringValues.mjs +89 -89
- package/kotlin/ktor-ktor-utils/io/ktor/util/Text.mjs +7 -7
- package/kotlin/ktor-ktor-utils/io/ktor/util/collections/CopyOnWriteHashMap.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/Date.mjs +106 -106
- package/kotlin/ktor-ktor-utils/io/ktor/util/date/DateJs.mjs +5 -5
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/{ExceptionUtilsJs.mjs → ExceptionUtils.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtils.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/LockFreeLinkedList.mjs +8 -8
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/{KtorSimpleLoggerJs.mjs → KtorSimpleLogger.web.mjs} +12 -12
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLogger.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/{LoggerJs.mjs → Logger.web.mjs} +2 -2
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/Logger.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/DebugPipelineContext.mjs +29 -29
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PhaseContent.mjs +25 -25
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs +54 -54
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/Pipeline.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.js.mjs.map +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelineContext.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhase.mjs +3 -3
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/PipelinePhaseRelation.mjs +2 -2
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.mjs +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/{StackTraceRecoverJs.mjs → StackTraceRecover.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecover.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/SuspendFunctionGun.mjs +50 -50
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/Type.mjs +9 -9
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/{TypeInfoJs.mjs → TypeInfo.web.mjs} +1 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/TypeInfo.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/CloseReason.mjs +19 -19
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs +156 -138
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/DefaultWebSocketSession.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/{FrameJs.mjs → Frame.web.mjs} +42 -42
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Frame.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameCommon.mjs.map +1 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameTooBigException.mjs +7 -7
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameType.mjs +8 -8
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/PingPong.mjs +44 -44
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/{UtilsJs.mjs → Utils.web.mjs} +6 -2
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/Utils.web.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs +286 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketChannelsConfig.mjs.map +1 -0
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtension.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketExtensionHeader.mjs +4 -4
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/WebSocketSession.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiCodes.mjs +24 -24
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/AnsiRender.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Constants.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/HyperlinkIds.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/MppInternal.jsCommon.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/Parsing.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/cellwidth.mjs +7 -7
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/cellwidthtable.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/internal/gen/emojiseqtable.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/platform/MultiplatformSystem.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/BorderType.mjs +39 -39
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Lines.mjs +63 -63
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Size.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Span.mjs +22 -22
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/TextStyle.mjs +79 -79
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Theme.mjs +44 -44
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Whitespace.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/Widget.mjs +2 -2
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/rendering/WidthRange.mjs +17 -17
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Borders.mjs +4 -4
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/Table.mjs +234 -234
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDsl.mjs +23 -23
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableDslInstances.mjs +153 -153
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/TableLayout.mjs +57 -57
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/table/VerticalLayout.mjs +32 -32
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Prompt.mjs +60 -60
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/StandardTerminalInterface.mjs +14 -14
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/Terminal.mjs +53 -53
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalCursor.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalDetection.mjs +5 -5
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalExtensions.mjs +1 -1
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInfo.mjs +18 -18
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/TerminalInterface.mjs +10 -10
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.js.mjs +19 -19
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/terminal/terminalinterface/TerminalInterface.jsCommon.mjs +13 -13
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/DefinitionList.mjs +56 -56
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/EmptyWidget.mjs +3 -3
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Padding.mjs +61 -61
- package/kotlin/mordant-mordant/com/github/ajalt/mordant/widgets/Text.mjs +67 -67
- package/kotlin/okio-parent-okio/okio/Buffer.mjs +412 -412
- package/kotlin/okio-parent-okio/okio/ByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/NonJvmPlatform.mjs +15 -15
- package/kotlin/okio-parent-okio/okio/Okio.mjs +2 -2
- package/kotlin/okio-parent-okio/okio/Options.mjs +23 -23
- package/kotlin/okio-parent-okio/okio/RealBufferedSink.mjs +37 -37
- package/kotlin/okio-parent-okio/okio/RealBufferedSource.mjs +70 -70
- package/kotlin/okio-parent-okio/okio/Segment.mjs +70 -70
- package/kotlin/okio-parent-okio/okio/SegmentPool.mjs +5 -5
- package/kotlin/okio-parent-okio/okio/SegmentedByteString.mjs +51 -51
- package/kotlin/okio-parent-okio/okio/Util.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/-Utf8.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/Buffer.mjs +24 -24
- package/kotlin/okio-parent-okio/okio/internal/ByteString.mjs +1 -1
- package/kotlin/okio-parent-okio/okio/internal/SegmentedByteString.mjs +1 -1
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionCannon.mjs +9 -9
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/ActionPipe.mjs +2 -2
- package/kotlin/testmints-action-async/com/zegreatrob/testmints/action/async/SimpleSuspendAction.mjs +7 -7
- package/kotlin/tools-digger-json/com/zegreatrob/tools/digger/json/ContributionDataJson.mjs +148 -148
- package/kotlin/tools-digger-model/com/zegreatrob/tools/digger/model/Contribution.mjs +37 -37
- package/kotlin/types-types/kotools/types/collection/NotEmptyList.mjs +30 -30
- package/kotlin/types-types/kotools/types/text/NotBlankString.mjs +34 -34
- package/kotlin/types-types-internal/kotools/types/internal/ErrorMessage.mjs +15 -15
- package/kotlin/types-types-internal/kotools/types/internal/Errors.mjs +1 -1
- package/kotlin/types-types-internal/kotools/types/internal/Serializers.mjs +12 -12
- package/kotlin/uuid/com/benasher44/uuid/platform.mjs +1 -1
- package/kotlin/uuid/com/benasher44/uuid/uuid.mjs +11 -11
- package/package.json +1 -1
- package/kotlin/ktor-ktor-client-content-negotiation/io/ktor/client/plugins/contentnegotiation/DefaultIgnoredTypesJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/HttpClientJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/DefaultTransformJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-core/io/ktor/client/plugins/observer/ResponseObserverContextJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/KtorMDCContext.jsAndWasmShared.mjs.map +0 -1
- package/kotlin/ktor-ktor-client-logging/io/ktor/client/plugins/logging/LoggerJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-http/io/ktor/http/URLBuilderJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-http-cio/io/ktor/http/cio/internals/CharArrayPoolJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/ByteChannel.jsAndWasmShared.mjs.map +0 -1
- package/kotlin/ktor-ktor-io/io/ktor/utils/io/IODispatcher.jsAndWasmShared.mjs.map +0 -1
- package/kotlin/ktor-ktor-serialization-kotlinx/io/ktor/serialization/kotlinx/ExtensionsJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/AttributesJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/Base64.mjs +0 -111
- package/kotlin/ktor-ktor-utils/io/ktor/util/Base64.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/CollectionsJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/ContentEncodersJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/CryptoJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/PlatformUtilsJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/internal/ExceptionUtilsJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/KtorSimpleLoggerJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/logging/LoggerJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/pipeline/StackTraceRecoverJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-utils/io/ktor/util/reflect/TypeInfoJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/FrameJs.mjs.map +0 -1
- package/kotlin/ktor-ktor-websockets/io/ktor/websocket/UtilsJs.mjs.map +0 -1
|
@@ -65,7 +65,7 @@ function AbstractMutableCollection() {
|
|
|
65
65
|
r6() {
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
|
-
initMetadataForClass($, 'AbstractMutableCollection', VOID, VOID, [AbstractCollection(),
|
|
68
|
+
initMetadataForClass($, 'AbstractMutableCollection', VOID, VOID, [AbstractCollection(), Collection(), MutableIterable()]);
|
|
69
69
|
AbstractMutableCollectionClass = $;
|
|
70
70
|
}
|
|
71
71
|
return AbstractMutableCollectionClass;
|
|
@@ -53,7 +53,7 @@ var KtMutableListClass;
|
|
|
53
53
|
function KtMutableList() {
|
|
54
54
|
if (KtMutableListClass === VOID) {
|
|
55
55
|
class $ {}
|
|
56
|
-
initMetadataForInterface($, 'MutableList', VOID, VOID, [KtList(),
|
|
56
|
+
initMetadataForInterface($, 'MutableList', VOID, VOID, [KtList(), Collection(), MutableIterable()]);
|
|
57
57
|
KtMutableListClass = $;
|
|
58
58
|
}
|
|
59
59
|
return KtMutableListClass;
|
|
@@ -71,7 +71,7 @@ var KtMutableSetClass;
|
|
|
71
71
|
function KtMutableSet() {
|
|
72
72
|
if (KtMutableSetClass === VOID) {
|
|
73
73
|
class $ {}
|
|
74
|
-
initMetadataForInterface($, 'MutableSet', VOID, VOID, [KtSet(),
|
|
74
|
+
initMetadataForInterface($, 'MutableSet', VOID, VOID, [KtSet(), Collection(), MutableIterable()]);
|
|
75
75
|
KtMutableSetClass = $;
|
|
76
76
|
}
|
|
77
77
|
return KtMutableSetClass;
|
|
@@ -2,8 +2,8 @@ import { AbstractMutableSetthfi6jds1k2h as AbstractMutableSet } from './Abstract
|
|
|
2
2
|
import { UnsupportedOperationException2tkumpmhredt3 as UnsupportedOperationException } from '../exceptions.mjs';
|
|
3
3
|
import {
|
|
4
4
|
KtMutableSetwuwn7k5m570a as KtMutableSet,
|
|
5
|
-
MutableIterablez3x4ksk1fmrm as MutableIterable,
|
|
6
5
|
Collection1k04j3hzsbod0 as Collection,
|
|
6
|
+
MutableIterablez3x4ksk1fmrm as MutableIterable,
|
|
7
7
|
Entry2xmjmyutzoq3p as Entry,
|
|
8
8
|
} from './Collections.mjs';
|
|
9
9
|
import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../js/metadataUtils.mjs';
|
|
@@ -99,7 +99,7 @@ function HashMapValues() {
|
|
|
99
99
|
return this.t9_1.z9();
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
initMetadataForClass($, 'HashMapValues', VOID, VOID, [
|
|
102
|
+
initMetadataForClass($, 'HashMapValues', VOID, VOID, [Collection(), MutableIterable(), AbstractMutableCollection()]);
|
|
103
103
|
HashMapValuesClass = $;
|
|
104
104
|
}
|
|
105
105
|
return HashMapValuesClass;
|
|
@@ -0,0 +1,347 @@
|
|
|
1
|
+
import { Unit_instance28fytmsmm6r23 as Unit_instance } from '../../Unit.mjs';
|
|
2
|
+
import { Enum3alwj03lh1n41 as Enum } from '../../Enum.mjs';
|
|
3
|
+
import {
|
|
4
|
+
initMetadataForClassbxx6q50dy2s7 as initMetadataForClass,
|
|
5
|
+
initMetadataForObject1cxne3s9w65el as initMetadataForObject,
|
|
6
|
+
} from '../../js/metadataUtils.mjs';
|
|
7
|
+
import { VOID3gxj6tk5isa35 as VOID } from '../../js/void.mjs';
|
|
8
|
+
import {
|
|
9
|
+
IndexOutOfBoundsException1qfr429iumro0 as IndexOutOfBoundsException,
|
|
10
|
+
IllegalArgumentException2asla15b5jaob as IllegalArgumentException,
|
|
11
|
+
IllegalStateExceptionkoljg5n0nrlr as IllegalStateException,
|
|
12
|
+
} from '../../exceptions.mjs';
|
|
13
|
+
import {
|
|
14
|
+
_Char___init__impl__6a9atx1csff5kwtduxl as _Char___init__impl__6a9atx,
|
|
15
|
+
Char__toInt_impl_vasixd3jl92hthlhyn7 as Char__toInt_impl_vasixd,
|
|
16
|
+
} from '../../Char.mjs';
|
|
17
|
+
import {
|
|
18
|
+
toByte4i43936u611k as toByte,
|
|
19
|
+
numberToChar93r9buh19yek as numberToChar,
|
|
20
|
+
} from '../../js/numberConversion.mjs';
|
|
21
|
+
import { toString1pkumu07cwy4m as toString } from '../../js/coreRuntime.mjs';
|
|
22
|
+
import { StringBuildermazzzhj6kkai as StringBuilder } from '../../text/StringBuilderJs.mjs';
|
|
23
|
+
import { Companion_instance1a0yry1hi33tg as Companion_instance } from '../../collections/AbstractList.mjs';
|
|
24
|
+
import { fill2542d4m9l93pn as fill } from '../../collections/_ArraysJs.mjs';
|
|
25
|
+
//region block: imports
|
|
26
|
+
var imul = Math.imul;
|
|
27
|
+
//endregion
|
|
28
|
+
//region block: pre-declaration
|
|
29
|
+
//endregion
|
|
30
|
+
function get_base64EncodeMap() {
|
|
31
|
+
_init_properties_Base64_kt__ymmsz3();
|
|
32
|
+
return base64EncodeMap;
|
|
33
|
+
}
|
|
34
|
+
var base64EncodeMap;
|
|
35
|
+
var base64DecodeMap;
|
|
36
|
+
function get_base64UrlEncodeMap() {
|
|
37
|
+
_init_properties_Base64_kt__ymmsz3();
|
|
38
|
+
return base64UrlEncodeMap;
|
|
39
|
+
}
|
|
40
|
+
var base64UrlEncodeMap;
|
|
41
|
+
var base64UrlDecodeMap;
|
|
42
|
+
var PaddingOption_PRESENT_instance;
|
|
43
|
+
var PaddingOption_ABSENT_instance;
|
|
44
|
+
var PaddingOption_PRESENT_OPTIONAL_instance;
|
|
45
|
+
var PaddingOption_ABSENT_OPTIONAL_instance;
|
|
46
|
+
var PaddingOption_entriesInitialized;
|
|
47
|
+
function PaddingOption_initEntries() {
|
|
48
|
+
if (PaddingOption_entriesInitialized)
|
|
49
|
+
return Unit_instance;
|
|
50
|
+
PaddingOption_entriesInitialized = true;
|
|
51
|
+
PaddingOption_PRESENT_instance = new (PaddingOption())('PRESENT', 0);
|
|
52
|
+
PaddingOption_ABSENT_instance = new (PaddingOption())('ABSENT', 1);
|
|
53
|
+
PaddingOption_PRESENT_OPTIONAL_instance = new (PaddingOption())('PRESENT_OPTIONAL', 2);
|
|
54
|
+
PaddingOption_ABSENT_OPTIONAL_instance = new (PaddingOption())('ABSENT_OPTIONAL', 3);
|
|
55
|
+
}
|
|
56
|
+
var PaddingOptionClass;
|
|
57
|
+
function PaddingOption() {
|
|
58
|
+
if (PaddingOptionClass === VOID) {
|
|
59
|
+
class $ extends Enum() {}
|
|
60
|
+
initMetadataForClass($, 'PaddingOption');
|
|
61
|
+
PaddingOptionClass = $;
|
|
62
|
+
}
|
|
63
|
+
return PaddingOptionClass;
|
|
64
|
+
}
|
|
65
|
+
function shouldPadOnEncode($this) {
|
|
66
|
+
return $this.ip_1.equals(PaddingOption_PRESENT_getInstance()) || $this.ip_1.equals(PaddingOption_PRESENT_OPTIONAL_getInstance());
|
|
67
|
+
}
|
|
68
|
+
function checkDestinationBounds($this, destinationSize, destinationOffset, capacityNeeded) {
|
|
69
|
+
if (destinationOffset < 0 || destinationOffset > destinationSize) {
|
|
70
|
+
throw IndexOutOfBoundsException().qe('destination offset: ' + destinationOffset + ', destination size: ' + destinationSize);
|
|
71
|
+
}
|
|
72
|
+
var destinationEndIndex = destinationOffset + capacityNeeded | 0;
|
|
73
|
+
if (destinationEndIndex < 0 || destinationEndIndex > destinationSize) {
|
|
74
|
+
throw IndexOutOfBoundsException().qe('The destination array does not have enough capacity, ' + ('destination offset: ' + destinationOffset + ', destination size: ' + destinationSize + ', capacity needed: ' + capacityNeeded));
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
var DefaultClass;
|
|
78
|
+
function Default() {
|
|
79
|
+
if (DefaultClass === VOID) {
|
|
80
|
+
class $ extends Base64() {
|
|
81
|
+
constructor() {
|
|
82
|
+
Default_instance = null;
|
|
83
|
+
super(false, false, -1, PaddingOption_PRESENT_getInstance());
|
|
84
|
+
Default_instance = this;
|
|
85
|
+
this.pp_1 = 8;
|
|
86
|
+
this.qp_1 = 6;
|
|
87
|
+
this.rp_1 = 3;
|
|
88
|
+
this.sp_1 = 4;
|
|
89
|
+
this.tp_1 = 61;
|
|
90
|
+
this.up_1 = 76;
|
|
91
|
+
this.vp_1 = 64;
|
|
92
|
+
var tmp = this;
|
|
93
|
+
// Inline function 'kotlin.code' call
|
|
94
|
+
var this_0 = _Char___init__impl__6a9atx(13);
|
|
95
|
+
var tmp$ret$0 = Char__toInt_impl_vasixd(this_0);
|
|
96
|
+
var tmp_0 = toByte(tmp$ret$0);
|
|
97
|
+
// Inline function 'kotlin.code' call
|
|
98
|
+
var this_1 = _Char___init__impl__6a9atx(10);
|
|
99
|
+
var tmp$ret$1 = Char__toInt_impl_vasixd(this_1);
|
|
100
|
+
// Inline function 'kotlin.byteArrayOf' call
|
|
101
|
+
tmp.wp_1 = new Int8Array([tmp_0, toByte(tmp$ret$1)]);
|
|
102
|
+
this.xp_1 = new (Base64())(true, false, -1, PaddingOption_PRESENT_getInstance());
|
|
103
|
+
this.yp_1 = new (Base64())(false, true, 76, PaddingOption_PRESENT_getInstance());
|
|
104
|
+
this.zp_1 = new (Base64())(false, true, 64, PaddingOption_PRESENT_getInstance());
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
initMetadataForObject($, 'Default');
|
|
108
|
+
DefaultClass = $;
|
|
109
|
+
}
|
|
110
|
+
return DefaultClass;
|
|
111
|
+
}
|
|
112
|
+
var Default_instance;
|
|
113
|
+
function Default_getInstance() {
|
|
114
|
+
if (Default_instance === VOID)
|
|
115
|
+
new (Default())();
|
|
116
|
+
return Default_instance;
|
|
117
|
+
}
|
|
118
|
+
function PaddingOption_PRESENT_getInstance() {
|
|
119
|
+
PaddingOption_initEntries();
|
|
120
|
+
return PaddingOption_PRESENT_instance;
|
|
121
|
+
}
|
|
122
|
+
function PaddingOption_PRESENT_OPTIONAL_getInstance() {
|
|
123
|
+
PaddingOption_initEntries();
|
|
124
|
+
return PaddingOption_PRESENT_OPTIONAL_instance;
|
|
125
|
+
}
|
|
126
|
+
var Base64Class;
|
|
127
|
+
function Base64() {
|
|
128
|
+
if (Base64Class === VOID) {
|
|
129
|
+
class $ {
|
|
130
|
+
constructor(isUrlSafe, isMimeScheme, mimeLineLength, paddingOption) {
|
|
131
|
+
Default_getInstance();
|
|
132
|
+
this.fp_1 = isUrlSafe;
|
|
133
|
+
this.gp_1 = isMimeScheme;
|
|
134
|
+
this.hp_1 = mimeLineLength;
|
|
135
|
+
this.ip_1 = paddingOption;
|
|
136
|
+
// Inline function 'kotlin.require' call
|
|
137
|
+
// Inline function 'kotlin.require' call
|
|
138
|
+
if (!(!this.fp_1 || !this.gp_1)) {
|
|
139
|
+
var message = 'Failed requirement.';
|
|
140
|
+
throw IllegalArgumentException().r2(toString(message));
|
|
141
|
+
}
|
|
142
|
+
this.jp_1 = this.hp_1 / 4 | 0;
|
|
143
|
+
}
|
|
144
|
+
aq(source, startIndex, endIndex) {
|
|
145
|
+
// Inline function 'kotlin.io.encoding.platformEncodeToString' call
|
|
146
|
+
var byteResult = this.cq(source, startIndex, endIndex);
|
|
147
|
+
return this.fq(byteResult);
|
|
148
|
+
}
|
|
149
|
+
bq(source, startIndex, endIndex, $super) {
|
|
150
|
+
startIndex = startIndex === VOID ? 0 : startIndex;
|
|
151
|
+
endIndex = endIndex === VOID ? source.length : endIndex;
|
|
152
|
+
return $super === VOID ? this.aq(source, startIndex, endIndex) : $super.aq.call(this, source, startIndex, endIndex);
|
|
153
|
+
}
|
|
154
|
+
cq(source, startIndex, endIndex) {
|
|
155
|
+
this.gq(source.length, startIndex, endIndex);
|
|
156
|
+
var encodeSize = this.eq(endIndex - startIndex | 0);
|
|
157
|
+
var destination = new Int8Array(encodeSize);
|
|
158
|
+
this.dq(source, destination, 0, startIndex, endIndex);
|
|
159
|
+
return destination;
|
|
160
|
+
}
|
|
161
|
+
dq(source, destination, destinationOffset, startIndex, endIndex) {
|
|
162
|
+
this.gq(source.length, startIndex, endIndex);
|
|
163
|
+
checkDestinationBounds(this, destination.length, destinationOffset, this.eq(endIndex - startIndex | 0));
|
|
164
|
+
var encodeMap = this.fp_1 ? get_base64UrlEncodeMap() : get_base64EncodeMap();
|
|
165
|
+
var sourceIndex = startIndex;
|
|
166
|
+
var destinationIndex = destinationOffset;
|
|
167
|
+
var groupsPerLine = this.gp_1 ? this.jp_1 : 2147483647;
|
|
168
|
+
while ((sourceIndex + 2 | 0) < endIndex) {
|
|
169
|
+
// Inline function 'kotlin.comparisons.minOf' call
|
|
170
|
+
var a = (endIndex - sourceIndex | 0) / 3 | 0;
|
|
171
|
+
var groups = Math.min(a, groupsPerLine);
|
|
172
|
+
var inductionVariable = 0;
|
|
173
|
+
if (inductionVariable < groups)
|
|
174
|
+
do {
|
|
175
|
+
var i = inductionVariable;
|
|
176
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
177
|
+
var _unary__edvuaz = sourceIndex;
|
|
178
|
+
sourceIndex = _unary__edvuaz + 1 | 0;
|
|
179
|
+
var byte1 = source[_unary__edvuaz] & 255;
|
|
180
|
+
var _unary__edvuaz_0 = sourceIndex;
|
|
181
|
+
sourceIndex = _unary__edvuaz_0 + 1 | 0;
|
|
182
|
+
var byte2 = source[_unary__edvuaz_0] & 255;
|
|
183
|
+
var _unary__edvuaz_1 = sourceIndex;
|
|
184
|
+
sourceIndex = _unary__edvuaz_1 + 1 | 0;
|
|
185
|
+
var byte3 = source[_unary__edvuaz_1] & 255;
|
|
186
|
+
var bits = byte1 << 16 | byte2 << 8 | byte3;
|
|
187
|
+
var _unary__edvuaz_2 = destinationIndex;
|
|
188
|
+
destinationIndex = _unary__edvuaz_2 + 1 | 0;
|
|
189
|
+
destination[_unary__edvuaz_2] = encodeMap[bits >>> 18 | 0];
|
|
190
|
+
var _unary__edvuaz_3 = destinationIndex;
|
|
191
|
+
destinationIndex = _unary__edvuaz_3 + 1 | 0;
|
|
192
|
+
destination[_unary__edvuaz_3] = encodeMap[(bits >>> 12 | 0) & 63];
|
|
193
|
+
var _unary__edvuaz_4 = destinationIndex;
|
|
194
|
+
destinationIndex = _unary__edvuaz_4 + 1 | 0;
|
|
195
|
+
destination[_unary__edvuaz_4] = encodeMap[(bits >>> 6 | 0) & 63];
|
|
196
|
+
var _unary__edvuaz_5 = destinationIndex;
|
|
197
|
+
destinationIndex = _unary__edvuaz_5 + 1 | 0;
|
|
198
|
+
destination[_unary__edvuaz_5] = encodeMap[bits & 63];
|
|
199
|
+
}
|
|
200
|
+
while (inductionVariable < groups);
|
|
201
|
+
if (groups === groupsPerLine && !(sourceIndex === endIndex)) {
|
|
202
|
+
var _unary__edvuaz_6 = destinationIndex;
|
|
203
|
+
destinationIndex = _unary__edvuaz_6 + 1 | 0;
|
|
204
|
+
destination[_unary__edvuaz_6] = Default_getInstance().wp_1[0];
|
|
205
|
+
var _unary__edvuaz_7 = destinationIndex;
|
|
206
|
+
destinationIndex = _unary__edvuaz_7 + 1 | 0;
|
|
207
|
+
destination[_unary__edvuaz_7] = Default_getInstance().wp_1[1];
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
var tmp0_subject = endIndex - sourceIndex | 0;
|
|
211
|
+
if (tmp0_subject === 1) {
|
|
212
|
+
var _unary__edvuaz_8 = sourceIndex;
|
|
213
|
+
sourceIndex = _unary__edvuaz_8 + 1 | 0;
|
|
214
|
+
var byte1_0 = source[_unary__edvuaz_8] & 255;
|
|
215
|
+
var bits_0 = byte1_0 << 4;
|
|
216
|
+
var _unary__edvuaz_9 = destinationIndex;
|
|
217
|
+
destinationIndex = _unary__edvuaz_9 + 1 | 0;
|
|
218
|
+
destination[_unary__edvuaz_9] = encodeMap[bits_0 >>> 6 | 0];
|
|
219
|
+
var _unary__edvuaz_10 = destinationIndex;
|
|
220
|
+
destinationIndex = _unary__edvuaz_10 + 1 | 0;
|
|
221
|
+
destination[_unary__edvuaz_10] = encodeMap[bits_0 & 63];
|
|
222
|
+
if (shouldPadOnEncode(this)) {
|
|
223
|
+
var _unary__edvuaz_11 = destinationIndex;
|
|
224
|
+
destinationIndex = _unary__edvuaz_11 + 1 | 0;
|
|
225
|
+
destination[_unary__edvuaz_11] = 61;
|
|
226
|
+
var _unary__edvuaz_12 = destinationIndex;
|
|
227
|
+
destinationIndex = _unary__edvuaz_12 + 1 | 0;
|
|
228
|
+
destination[_unary__edvuaz_12] = 61;
|
|
229
|
+
}
|
|
230
|
+
} else if (tmp0_subject === 2) {
|
|
231
|
+
var _unary__edvuaz_13 = sourceIndex;
|
|
232
|
+
sourceIndex = _unary__edvuaz_13 + 1 | 0;
|
|
233
|
+
var byte1_1 = source[_unary__edvuaz_13] & 255;
|
|
234
|
+
var _unary__edvuaz_14 = sourceIndex;
|
|
235
|
+
sourceIndex = _unary__edvuaz_14 + 1 | 0;
|
|
236
|
+
var byte2_0 = source[_unary__edvuaz_14] & 255;
|
|
237
|
+
var bits_1 = byte1_1 << 10 | byte2_0 << 2;
|
|
238
|
+
var _unary__edvuaz_15 = destinationIndex;
|
|
239
|
+
destinationIndex = _unary__edvuaz_15 + 1 | 0;
|
|
240
|
+
destination[_unary__edvuaz_15] = encodeMap[bits_1 >>> 12 | 0];
|
|
241
|
+
var _unary__edvuaz_16 = destinationIndex;
|
|
242
|
+
destinationIndex = _unary__edvuaz_16 + 1 | 0;
|
|
243
|
+
destination[_unary__edvuaz_16] = encodeMap[(bits_1 >>> 6 | 0) & 63];
|
|
244
|
+
var _unary__edvuaz_17 = destinationIndex;
|
|
245
|
+
destinationIndex = _unary__edvuaz_17 + 1 | 0;
|
|
246
|
+
destination[_unary__edvuaz_17] = encodeMap[bits_1 & 63];
|
|
247
|
+
if (shouldPadOnEncode(this)) {
|
|
248
|
+
var _unary__edvuaz_18 = destinationIndex;
|
|
249
|
+
destinationIndex = _unary__edvuaz_18 + 1 | 0;
|
|
250
|
+
destination[_unary__edvuaz_18] = 61;
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
// Inline function 'kotlin.check' call
|
|
254
|
+
if (!(sourceIndex === endIndex)) {
|
|
255
|
+
throw IllegalStateException().o('Check failed.');
|
|
256
|
+
}
|
|
257
|
+
return destinationIndex - destinationOffset | 0;
|
|
258
|
+
}
|
|
259
|
+
eq(sourceSize) {
|
|
260
|
+
var groups = sourceSize / 3 | 0;
|
|
261
|
+
var trailingBytes = sourceSize % 3 | 0;
|
|
262
|
+
var size = imul(groups, 4);
|
|
263
|
+
if (!(trailingBytes === 0)) {
|
|
264
|
+
size = size + (shouldPadOnEncode(this) ? 4 : trailingBytes + 1 | 0) | 0;
|
|
265
|
+
}
|
|
266
|
+
if (size < 0) {
|
|
267
|
+
throw IllegalArgumentException().r2('Input is too big');
|
|
268
|
+
}
|
|
269
|
+
if (this.gp_1) {
|
|
270
|
+
size = size + imul((size - 1 | 0) / this.hp_1 | 0, 2) | 0;
|
|
271
|
+
}
|
|
272
|
+
if (size < 0) {
|
|
273
|
+
throw IllegalArgumentException().r2('Input is too big');
|
|
274
|
+
}
|
|
275
|
+
return size;
|
|
276
|
+
}
|
|
277
|
+
fq(source) {
|
|
278
|
+
var stringBuilder = StringBuilder().gc(source.length);
|
|
279
|
+
var inductionVariable = 0;
|
|
280
|
+
var last = source.length;
|
|
281
|
+
while (inductionVariable < last) {
|
|
282
|
+
var byte = source[inductionVariable];
|
|
283
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
284
|
+
stringBuilder.p1(numberToChar(byte));
|
|
285
|
+
}
|
|
286
|
+
return stringBuilder.toString();
|
|
287
|
+
}
|
|
288
|
+
gq(sourceSize, startIndex, endIndex) {
|
|
289
|
+
Companion_instance.jh(startIndex, endIndex, sourceSize);
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
initMetadataForClass($, 'Base64');
|
|
293
|
+
Base64Class = $;
|
|
294
|
+
}
|
|
295
|
+
return Base64Class;
|
|
296
|
+
}
|
|
297
|
+
var properties_initialized_Base64_kt_5g824v;
|
|
298
|
+
function _init_properties_Base64_kt__ymmsz3() {
|
|
299
|
+
if (!properties_initialized_Base64_kt_5g824v) {
|
|
300
|
+
properties_initialized_Base64_kt_5g824v = true;
|
|
301
|
+
// Inline function 'kotlin.byteArrayOf' call
|
|
302
|
+
base64EncodeMap = new Int8Array([65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 43, 47]);
|
|
303
|
+
// Inline function 'kotlin.apply' call
|
|
304
|
+
var this_0 = new Int32Array(256);
|
|
305
|
+
fill(this_0, -1);
|
|
306
|
+
this_0[61] = -2;
|
|
307
|
+
// Inline function 'kotlin.collections.forEachIndexed' call
|
|
308
|
+
var index = 0;
|
|
309
|
+
var indexedObject = get_base64EncodeMap();
|
|
310
|
+
var inductionVariable = 0;
|
|
311
|
+
var last = indexedObject.length;
|
|
312
|
+
while (inductionVariable < last) {
|
|
313
|
+
var item = indexedObject[inductionVariable];
|
|
314
|
+
inductionVariable = inductionVariable + 1 | 0;
|
|
315
|
+
var _unary__edvuaz = index;
|
|
316
|
+
index = _unary__edvuaz + 1 | 0;
|
|
317
|
+
this_0[item] = _unary__edvuaz;
|
|
318
|
+
}
|
|
319
|
+
base64DecodeMap = this_0;
|
|
320
|
+
// Inline function 'kotlin.byteArrayOf' call
|
|
321
|
+
base64UrlEncodeMap = new Int8Array([65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 45, 95]);
|
|
322
|
+
// Inline function 'kotlin.apply' call
|
|
323
|
+
var this_1 = new Int32Array(256);
|
|
324
|
+
fill(this_1, -1);
|
|
325
|
+
this_1[61] = -2;
|
|
326
|
+
// Inline function 'kotlin.collections.forEachIndexed' call
|
|
327
|
+
var index_0 = 0;
|
|
328
|
+
var indexedObject_0 = get_base64UrlEncodeMap();
|
|
329
|
+
var inductionVariable_0 = 0;
|
|
330
|
+
var last_0 = indexedObject_0.length;
|
|
331
|
+
while (inductionVariable_0 < last_0) {
|
|
332
|
+
var item_0 = indexedObject_0[inductionVariable_0];
|
|
333
|
+
inductionVariable_0 = inductionVariable_0 + 1 | 0;
|
|
334
|
+
var _unary__edvuaz_0 = index_0;
|
|
335
|
+
index_0 = _unary__edvuaz_0 + 1 | 0;
|
|
336
|
+
this_1[item_0] = _unary__edvuaz_0;
|
|
337
|
+
}
|
|
338
|
+
base64UrlDecodeMap = this_1;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
//region block: exports
|
|
342
|
+
export {
|
|
343
|
+
Default_getInstance as Default_getInstance67416qwj1tmc,
|
|
344
|
+
};
|
|
345
|
+
//endregion
|
|
346
|
+
|
|
347
|
+
//# sourceMappingURL=Base64.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/src/kotlin/io/encoding/Base64.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/src/kotlin/CharCode.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/src/kotlin/util/Preconditions.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/js/src/kotlin/io/encoding/Base64Js.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/js/src/generated/_ComparisonsJs.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/common/src/generated/_Arrays.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/kotlin-kotlin-stdlib/kotlin/io/encoding/src/kotlin/util/Standard.kt"],"sourcesContent":[null,null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-base64EncodeMap>","<get-base64UrlEncodeMap>","shouldPadOnEncode","checkDestinationBounds","destinationSize","destinationOffset","capacityNeeded","destinationEndIndex","isUrlSafe","isMimeScheme","mimeLineLength","paddingOption","message","encode","source","startIndex","endIndex","byteResult","encode$default","encodeToByteArrayImpl","encodeSize","destination","encodeIntoByteArrayImpl","encodeMap","sourceIndex","destinationIndex","groupsPerLine","groups","i","byte1","byte2","byte3","bits","sourceSize","trailingBytes","size","bytesToStringImpl","stringBuilder","byte","checkSourceBounds","<init properties Base64.kt>","index","item"],"mappings":"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"}
|
|
@@ -37,36 +37,36 @@ var DefaultClass;
|
|
|
37
37
|
function Default() {
|
|
38
38
|
if (DefaultClass === VOID) {
|
|
39
39
|
class $ extends Random() {
|
|
40
|
-
static
|
|
40
|
+
static jq() {
|
|
41
41
|
Default_instance = null;
|
|
42
|
-
var $this = this.
|
|
42
|
+
var $this = this.kq();
|
|
43
43
|
Default_instance = $this;
|
|
44
|
-
$this.
|
|
44
|
+
$this.iq_1 = defaultPlatformRandom();
|
|
45
45
|
return $this;
|
|
46
46
|
}
|
|
47
|
-
|
|
48
|
-
return this.
|
|
47
|
+
lq(bitCount) {
|
|
48
|
+
return this.iq_1.lq(bitCount);
|
|
49
49
|
}
|
|
50
50
|
gm() {
|
|
51
|
-
return this.
|
|
51
|
+
return this.iq_1.gm();
|
|
52
52
|
}
|
|
53
|
-
|
|
54
|
-
return this.
|
|
53
|
+
mq() {
|
|
54
|
+
return this.iq_1.mq();
|
|
55
55
|
}
|
|
56
|
-
|
|
57
|
-
return this.
|
|
56
|
+
nq(until) {
|
|
57
|
+
return this.iq_1.nq(until);
|
|
58
58
|
}
|
|
59
|
-
|
|
60
|
-
return this.
|
|
59
|
+
oq(from, until) {
|
|
60
|
+
return this.iq_1.oq(from, until);
|
|
61
61
|
}
|
|
62
|
-
|
|
63
|
-
return this.
|
|
62
|
+
pq(array) {
|
|
63
|
+
return this.iq_1.pq(array);
|
|
64
64
|
}
|
|
65
|
-
|
|
66
|
-
return this.
|
|
65
|
+
qq(size) {
|
|
66
|
+
return this.iq_1.qq(size);
|
|
67
67
|
}
|
|
68
|
-
|
|
69
|
-
return this.
|
|
68
|
+
rq(array, fromIndex, toIndex) {
|
|
69
|
+
return this.iq_1.rq(array, fromIndex, toIndex);
|
|
70
70
|
}
|
|
71
71
|
}
|
|
72
72
|
initMetadataForObject($, 'Default');
|
|
@@ -77,30 +77,30 @@ function Default() {
|
|
|
77
77
|
var Default_instance;
|
|
78
78
|
function Default_getInstance() {
|
|
79
79
|
if (Default_instance === VOID)
|
|
80
|
-
Default().
|
|
80
|
+
Default().jq();
|
|
81
81
|
return Default_instance;
|
|
82
82
|
}
|
|
83
83
|
var RandomClass;
|
|
84
84
|
function Random() {
|
|
85
85
|
if (RandomClass === VOID) {
|
|
86
86
|
class $ {
|
|
87
|
-
static
|
|
87
|
+
static kq() {
|
|
88
88
|
Default_getInstance();
|
|
89
89
|
return createThis(this);
|
|
90
90
|
}
|
|
91
91
|
gm() {
|
|
92
|
-
return this.
|
|
92
|
+
return this.lq(32);
|
|
93
93
|
}
|
|
94
|
-
|
|
94
|
+
mq() {
|
|
95
95
|
var tmp0 = shiftLeft(fromInt(this.gm()), 32);
|
|
96
96
|
// Inline function 'kotlin.Long.plus' call
|
|
97
97
|
var other = this.gm();
|
|
98
98
|
return add(tmp0, fromInt(other));
|
|
99
99
|
}
|
|
100
|
-
|
|
101
|
-
return this.
|
|
100
|
+
nq(until) {
|
|
101
|
+
return this.oq(new (Long())(0, 0), until);
|
|
102
102
|
}
|
|
103
|
-
|
|
103
|
+
oq(from, until) {
|
|
104
104
|
checkRangeBounds(from, until);
|
|
105
105
|
var n = subtract(until, from);
|
|
106
106
|
if (compare(n, new (Long())(0, 0)) > 0) {
|
|
@@ -111,19 +111,19 @@ function Random() {
|
|
|
111
111
|
var tmp;
|
|
112
112
|
if (!(nLow === 0)) {
|
|
113
113
|
var bitCount = fastLog2(nLow);
|
|
114
|
-
tmp = bitwiseAnd(fromInt(this.
|
|
114
|
+
tmp = bitwiseAnd(fromInt(this.lq(bitCount)), new (Long())(-1, 0));
|
|
115
115
|
} else if (nHigh === 1) {
|
|
116
116
|
tmp = bitwiseAnd(fromInt(this.gm()), new (Long())(-1, 0));
|
|
117
117
|
} else {
|
|
118
118
|
var bitCount_0 = fastLog2(nHigh);
|
|
119
|
-
tmp = add(shiftLeft(fromInt(this.
|
|
119
|
+
tmp = add(shiftLeft(fromInt(this.lq(bitCount_0)), 32), bitwiseAnd(fromInt(this.gm()), new (Long())(-1, 0)));
|
|
120
120
|
}
|
|
121
121
|
rnd = tmp;
|
|
122
122
|
} else {
|
|
123
123
|
var v;
|
|
124
124
|
$l$1: do {
|
|
125
125
|
$l$0: do {
|
|
126
|
-
var bits = shiftRightUnsigned(this.
|
|
126
|
+
var bits = shiftRightUnsigned(this.mq(), 1);
|
|
127
127
|
v = modulo(bits, n);
|
|
128
128
|
}
|
|
129
129
|
while (false);
|
|
@@ -137,13 +137,13 @@ function Random() {
|
|
|
137
137
|
return add(from, rnd);
|
|
138
138
|
} else {
|
|
139
139
|
while (true) {
|
|
140
|
-
var rnd_0 = this.
|
|
140
|
+
var rnd_0 = this.mq();
|
|
141
141
|
if (compare(from, rnd_0) <= 0 ? compare(rnd_0, until) < 0 : false)
|
|
142
142
|
return rnd_0;
|
|
143
143
|
}
|
|
144
144
|
}
|
|
145
145
|
}
|
|
146
|
-
|
|
146
|
+
rq(array, fromIndex, toIndex) {
|
|
147
147
|
// Inline function 'kotlin.require' call
|
|
148
148
|
if (!((0 <= fromIndex ? fromIndex <= array.length : false) && (0 <= toIndex ? toIndex <= array.length : false))) {
|
|
149
149
|
var message = 'fromIndex (' + fromIndex + ') or toIndex (' + toIndex + ') are out of range: 0..' + array.length + '.';
|
|
@@ -171,7 +171,7 @@ function Random() {
|
|
|
171
171
|
}
|
|
172
172
|
while (inductionVariable < steps);
|
|
173
173
|
var remainder = toIndex - position | 0;
|
|
174
|
-
var vr = this.
|
|
174
|
+
var vr = this.lq(imul(remainder, 8));
|
|
175
175
|
var inductionVariable_0 = 0;
|
|
176
176
|
if (inductionVariable_0 < remainder)
|
|
177
177
|
do {
|
|
@@ -182,11 +182,11 @@ function Random() {
|
|
|
182
182
|
while (inductionVariable_0 < remainder);
|
|
183
183
|
return array;
|
|
184
184
|
}
|
|
185
|
-
|
|
186
|
-
return this.
|
|
185
|
+
pq(array) {
|
|
186
|
+
return this.rq(array, 0, array.length);
|
|
187
187
|
}
|
|
188
|
-
|
|
189
|
-
return this.
|
|
188
|
+
qq(size) {
|
|
189
|
+
return this.pq(new Int8Array(size));
|
|
190
190
|
}
|
|
191
191
|
}
|
|
192
192
|
initMetadataForClass($, 'Random');
|
|
@@ -195,7 +195,7 @@ function Random() {
|
|
|
195
195
|
return RandomClass;
|
|
196
196
|
}
|
|
197
197
|
function Random_0(seed) {
|
|
198
|
-
return XorWowRandom().
|
|
198
|
+
return XorWowRandom().yq(convertToInt(seed), convertToInt(shiftRight(seed, 32)));
|
|
199
199
|
}
|
|
200
200
|
function fastLog2(value) {
|
|
201
201
|
// Inline function 'kotlin.countLeadingZeroBits' call
|
|
@@ -213,7 +213,7 @@ function boundsErrorMessage(from, until) {
|
|
|
213
213
|
return 'Random range is empty: [' + toString(from) + ', ' + toString(until) + ').';
|
|
214
214
|
}
|
|
215
215
|
function Random_1(seed) {
|
|
216
|
-
return XorWowRandom().
|
|
216
|
+
return XorWowRandom().yq(seed, seed >> 31);
|
|
217
217
|
}
|
|
218
218
|
function takeUpperBits(_this__u8e3s4, bitCount) {
|
|
219
219
|
return (_this__u8e3s4 >>> (32 - bitCount | 0) | 0) & (-bitCount | 0) >> 31;
|
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
//endregion
|
|
18
18
|
function checkInvariants($this) {
|
|
19
19
|
// Inline function 'kotlin.require' call
|
|
20
|
-
if (!!(($this.
|
|
20
|
+
if (!!(($this.sq_1 | $this.tq_1 | $this.uq_1 | $this.vq_1 | $this.wq_1) === 0)) {
|
|
21
21
|
var message = 'Initial state must have at least one non-zero element.';
|
|
22
22
|
throw IllegalArgumentException().r2(toString(message));
|
|
23
23
|
}
|
|
@@ -28,7 +28,7 @@ function Companion() {
|
|
|
28
28
|
class $ {
|
|
29
29
|
constructor() {
|
|
30
30
|
Companion_instance = this;
|
|
31
|
-
this.
|
|
31
|
+
this.zq_1 = new (Long())(0, 0);
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
34
|
initMetadataForCompanion($);
|
|
@@ -46,15 +46,15 @@ var XorWowRandomClass;
|
|
|
46
46
|
function XorWowRandom() {
|
|
47
47
|
if (XorWowRandomClass === VOID) {
|
|
48
48
|
class $ extends Random() {
|
|
49
|
-
static
|
|
49
|
+
static ar(x, y, z, w, v, addend) {
|
|
50
50
|
Companion_getInstance();
|
|
51
|
-
var $this = this.
|
|
52
|
-
$this.
|
|
53
|
-
$this.
|
|
54
|
-
$this.
|
|
55
|
-
$this.
|
|
56
|
-
$this.
|
|
57
|
-
$this.
|
|
51
|
+
var $this = this.kq();
|
|
52
|
+
$this.sq_1 = x;
|
|
53
|
+
$this.tq_1 = y;
|
|
54
|
+
$this.uq_1 = z;
|
|
55
|
+
$this.vq_1 = w;
|
|
56
|
+
$this.wq_1 = v;
|
|
57
|
+
$this.xq_1 = addend;
|
|
58
58
|
checkInvariants($this);
|
|
59
59
|
// Inline function 'kotlin.repeat' call
|
|
60
60
|
var inductionVariable = 0;
|
|
@@ -67,24 +67,24 @@ function XorWowRandom() {
|
|
|
67
67
|
while (inductionVariable < 64);
|
|
68
68
|
return $this;
|
|
69
69
|
}
|
|
70
|
-
static
|
|
70
|
+
static yq(seed1, seed2) {
|
|
71
71
|
Companion_getInstance();
|
|
72
|
-
return this.
|
|
72
|
+
return this.ar(seed1, seed2, 0, 0, ~seed1, seed1 << 10 ^ (seed2 >>> 4 | 0));
|
|
73
73
|
}
|
|
74
74
|
gm() {
|
|
75
|
-
var t = this.
|
|
75
|
+
var t = this.sq_1;
|
|
76
76
|
t = t ^ (t >>> 2 | 0);
|
|
77
|
-
this.
|
|
78
|
-
this.
|
|
79
|
-
this.
|
|
80
|
-
var v0 = this.
|
|
81
|
-
this.
|
|
77
|
+
this.sq_1 = this.tq_1;
|
|
78
|
+
this.tq_1 = this.uq_1;
|
|
79
|
+
this.uq_1 = this.vq_1;
|
|
80
|
+
var v0 = this.wq_1;
|
|
81
|
+
this.vq_1 = v0;
|
|
82
82
|
t = t ^ t << 1 ^ v0 ^ v0 << 4;
|
|
83
|
-
this.
|
|
84
|
-
this.
|
|
85
|
-
return t + this.
|
|
83
|
+
this.wq_1 = t;
|
|
84
|
+
this.xq_1 = this.xq_1 + 362437 | 0;
|
|
85
|
+
return t + this.xq_1 | 0;
|
|
86
86
|
}
|
|
87
|
-
|
|
87
|
+
lq(bitCount) {
|
|
88
88
|
return takeUpperBits(this.gm(), bitCount);
|
|
89
89
|
}
|
|
90
90
|
}
|