@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
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/common/src/io/ktor/websocket/DefaultWebSocketSession.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/util/Preconditions.kt","../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/channels/Channels.common.kt","../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-utils/common/src/io/ktor/util/logging/Logger.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/common/src/generated/_Collections.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/collections/Collections.kt"],"sourcesContent":[null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-LOGGER>","<get-IncomingProcessorCoroutineName>","<get-OutgoingProcessorCoroutineName>","<get-NORMAL_CLOSE>","DefaultWebSocketSession","session","pingIntervalMillis","timeoutMillis","message","<generator-invoke>","$completion","firstFrame","frameBody","closeFramePresented","cause","e","defragmented","ignore","<generator-flush>","runIncomingProcessor","ponger","runOutgoingProcessor","<generator-outgoingProcessorLoop>","frame","processedFrame","outgoingProcessorLoop","<generator-sendCloseSequence>","reason","exception","reasonToSend","sendCloseSequence","sendCloseSequence$default","tryClose","runOrCancelPinger","interval","newPinger","<generator-checkMaxFrameSize>","packet","size","checkMaxFrameSize","processIncomingExtensions","accumulator","element","processOutgoingExtensions","$incomingJob","$outgoingJob","invoke","DefaultWebSocketSessionImpl$start$slambda","DefaultWebSocketSessionImpl$start$slambda$lambda","$ponger","DefaultWebSocketSessionImpl$runIncomingProcessor$slambda","DefaultWebSocketSessionImpl$runIncomingProcessor$slambda$lambda","DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda","DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda$lambda","DefaultWebSocketSessionImpl$runOrCancelPinger$slambda","DefaultWebSocketSessionImpl$runOrCancelPinger$slambda$lambda","raw","<get-incoming>","<get-outgoing>","<get-extensions>","<get-coroutineContext>","<set-maxFrameSize>","value","<get-maxFrameSize>","<get-closeReason>","start","negotiatedExtensions","incomingJob","outgoingJob","flush","<init properties DefaultWebSocketSession.kt>"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/common/src/io/ktor/websocket/DefaultWebSocketSession.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/util/Preconditions.kt","../../../../../../../../../../mnt/agent/work/44ec6e850d5c63f0/kotlinx-coroutines-core/common/src/channels/Channels.common.kt","../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-utils/common/src/io/ktor/util/logging/Logger.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/common/src/generated/_Collections.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/collections/Collections.kt"],"sourcesContent":[null,null,null,null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-LOGGER>","<get-IncomingProcessorCoroutineName>","<get-OutgoingProcessorCoroutineName>","<get-NORMAL_CLOSE>","DefaultWebSocketSession","session","pingIntervalMillis","timeoutMillis","channelsConfig","message","<generator-invoke>","$completion","firstFrame","frameBody","closeFramePresented","cause","e","defragmented","<unused var>","<generator-flush>","runIncomingProcessor","ponger","runOutgoingProcessor","<generator-outgoingProcessorLoop>","frame","processedFrame","outgoingProcessorLoop","<generator-sendCloseSequence>","reason","exception","reasonToSend","sendCloseSequence","sendCloseSequence$default","tryClose","runOrCancelPinger","interval","newPinger","<generator-checkMaxFrameSize>","packet","size","checkMaxFrameSize","processIncomingExtensions","accumulator","element","processOutgoingExtensions","$incomingJob","$outgoingJob","invoke","DefaultWebSocketSessionImpl$start$slambda","DefaultWebSocketSessionImpl$start$slambda$lambda","$ponger","DefaultWebSocketSessionImpl$runIncomingProcessor$slambda","DefaultWebSocketSessionImpl$runIncomingProcessor$slambda$lambda","DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda","DefaultWebSocketSessionImpl$runOutgoingProcessor$slambda$lambda","DefaultWebSocketSessionImpl$runOrCancelPinger$slambda","DefaultWebSocketSessionImpl$runOrCancelPinger$slambda$lambda","raw","incomingFramesConfig","outgoingFramesConfig","<get-coroutineContext>","<get-incoming>","<get-outgoing>","<get-extensions>","<set-maxFrameSize>","value","<get-maxFrameSize>","<get-closeReason>","start","negotiatedExtensions","incomingJob","outgoingJob","flush","<init properties DefaultWebSocketSession.kt>"],"mappings":"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"}
|
|
@@ -28,14 +28,14 @@ var BinaryClass;
|
|
|
28
28
|
function Binary() {
|
|
29
29
|
if (BinaryClass === VOID) {
|
|
30
30
|
class $ extends Frame() {
|
|
31
|
-
static
|
|
31
|
+
static z3b(fin, data, rsv1, rsv2, rsv3) {
|
|
32
32
|
rsv1 = rsv1 === VOID ? false : rsv1;
|
|
33
33
|
rsv2 = rsv2 === VOID ? false : rsv2;
|
|
34
34
|
rsv3 = rsv3 === VOID ? false : rsv3;
|
|
35
|
-
return this.
|
|
35
|
+
return this.a3c(fin, FrameType_BINARY_getInstance(), data, NonDisposableHandle_instance, rsv1, rsv2, rsv3);
|
|
36
36
|
}
|
|
37
|
-
static
|
|
38
|
-
return this.
|
|
37
|
+
static b3c(fin, data) {
|
|
38
|
+
return this.z3b(fin, data, false, false, false);
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
41
|
initMetadataForClass($, 'Binary');
|
|
@@ -47,17 +47,17 @@ var TextClass;
|
|
|
47
47
|
function Text() {
|
|
48
48
|
if (TextClass === VOID) {
|
|
49
49
|
class $ extends Frame() {
|
|
50
|
-
static
|
|
50
|
+
static j3c(fin, data, rsv1, rsv2, rsv3) {
|
|
51
51
|
rsv1 = rsv1 === VOID ? false : rsv1;
|
|
52
52
|
rsv2 = rsv2 === VOID ? false : rsv2;
|
|
53
53
|
rsv3 = rsv3 === VOID ? false : rsv3;
|
|
54
|
-
return this.
|
|
54
|
+
return this.a3c(fin, FrameType_TEXT_getInstance(), data, NonDisposableHandle_instance, rsv1, rsv2, rsv3);
|
|
55
55
|
}
|
|
56
|
-
static
|
|
57
|
-
return this.
|
|
56
|
+
static k3c(fin, data) {
|
|
57
|
+
return this.j3c(fin, data, false, false, false);
|
|
58
58
|
}
|
|
59
|
-
static
|
|
60
|
-
return this.
|
|
59
|
+
static l3c(text) {
|
|
60
|
+
return this.k3c(true, toByteArray(text));
|
|
61
61
|
}
|
|
62
62
|
}
|
|
63
63
|
initMetadataForClass($, 'Text');
|
|
@@ -69,24 +69,24 @@ var CloseClass;
|
|
|
69
69
|
function Close() {
|
|
70
70
|
if (CloseClass === VOID) {
|
|
71
71
|
class $ extends Frame() {
|
|
72
|
-
static
|
|
73
|
-
return this.
|
|
72
|
+
static m3c(data) {
|
|
73
|
+
return this.a3c(true, FrameType_CLOSE_getInstance(), data, NonDisposableHandle_instance, false, false, false);
|
|
74
74
|
}
|
|
75
|
-
static
|
|
75
|
+
static g39(reason) {
|
|
76
76
|
// Inline function 'io.ktor.utils.io.core.buildPacket' call
|
|
77
77
|
var builder = new (Buffer())();
|
|
78
|
-
builder.
|
|
79
|
-
writeText(builder, reason.
|
|
80
|
-
return this.
|
|
78
|
+
builder.d1r(reason.j37_1);
|
|
79
|
+
writeText(builder, reason.k37_1);
|
|
80
|
+
return this.n3c(builder);
|
|
81
81
|
}
|
|
82
|
-
static
|
|
83
|
-
return this.
|
|
82
|
+
static n3c(packet) {
|
|
83
|
+
return this.m3c(readByteArray(packet));
|
|
84
84
|
}
|
|
85
|
-
static
|
|
86
|
-
return this.
|
|
85
|
+
static o3c() {
|
|
86
|
+
return this.m3c(Companion_getInstance().x38_1);
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
|
-
initMetadataForClass($, 'Close', $.
|
|
89
|
+
initMetadataForClass($, 'Close', $.o3c);
|
|
90
90
|
CloseClass = $;
|
|
91
91
|
}
|
|
92
92
|
return CloseClass;
|
|
@@ -95,8 +95,8 @@ var PingClass;
|
|
|
95
95
|
function Ping() {
|
|
96
96
|
if (PingClass === VOID) {
|
|
97
97
|
class $ extends Frame() {
|
|
98
|
-
static
|
|
99
|
-
return this.
|
|
98
|
+
static t3a(data) {
|
|
99
|
+
return this.a3c(true, FrameType_PING_getInstance(), data, NonDisposableHandle_instance, false, false, false);
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
102
|
initMetadataForClass($, 'Ping');
|
|
@@ -108,9 +108,9 @@ var PongClass;
|
|
|
108
108
|
function Pong() {
|
|
109
109
|
if (PongClass === VOID) {
|
|
110
110
|
class $ extends Frame() {
|
|
111
|
-
static
|
|
111
|
+
static y39(data, disposableHandle) {
|
|
112
112
|
disposableHandle = disposableHandle === VOID ? NonDisposableHandle_instance : disposableHandle;
|
|
113
|
-
return this.
|
|
113
|
+
return this.a3c(true, FrameType_PONG_getInstance(), data, disposableHandle, false, false, false);
|
|
114
114
|
}
|
|
115
115
|
}
|
|
116
116
|
initMetadataForClass($, 'Pong');
|
|
@@ -124,25 +124,25 @@ function Companion() {
|
|
|
124
124
|
class $ {
|
|
125
125
|
constructor() {
|
|
126
126
|
Companion_instance = this;
|
|
127
|
-
this.
|
|
127
|
+
this.x38_1 = new Int8Array(0);
|
|
128
128
|
}
|
|
129
|
-
|
|
129
|
+
y38(fin, frameType, data, rsv1, rsv2, rsv3) {
|
|
130
130
|
var tmp;
|
|
131
131
|
switch (frameType.x1_1) {
|
|
132
132
|
case 1:
|
|
133
|
-
tmp = Binary().
|
|
133
|
+
tmp = Binary().z3b(fin, data, rsv1, rsv2, rsv3);
|
|
134
134
|
break;
|
|
135
135
|
case 0:
|
|
136
|
-
tmp = Text().
|
|
136
|
+
tmp = Text().j3c(fin, data, rsv1, rsv2, rsv3);
|
|
137
137
|
break;
|
|
138
138
|
case 2:
|
|
139
|
-
tmp = Close().
|
|
139
|
+
tmp = Close().m3c(data);
|
|
140
140
|
break;
|
|
141
141
|
case 3:
|
|
142
|
-
tmp = Ping().
|
|
142
|
+
tmp = Ping().t3a(data);
|
|
143
143
|
break;
|
|
144
144
|
case 4:
|
|
145
|
-
tmp = Pong().
|
|
145
|
+
tmp = Pong().y39(data, NonDisposableHandle_instance);
|
|
146
146
|
break;
|
|
147
147
|
default:
|
|
148
148
|
noWhenBranchMatchedException();
|
|
@@ -166,24 +166,24 @@ var FrameClass;
|
|
|
166
166
|
function Frame() {
|
|
167
167
|
if (FrameClass === VOID) {
|
|
168
168
|
class $ {
|
|
169
|
-
static
|
|
169
|
+
static a3c(fin, frameType, data, disposableHandle, rsv1, rsv2, rsv3) {
|
|
170
170
|
Companion_getInstance();
|
|
171
171
|
disposableHandle = disposableHandle === VOID ? NonDisposableHandle_instance : disposableHandle;
|
|
172
172
|
rsv1 = rsv1 === VOID ? false : rsv1;
|
|
173
173
|
rsv2 = rsv2 === VOID ? false : rsv2;
|
|
174
174
|
rsv3 = rsv3 === VOID ? false : rsv3;
|
|
175
175
|
var $this = createThis(this);
|
|
176
|
-
$this.
|
|
177
|
-
$this.
|
|
178
|
-
$this.
|
|
179
|
-
$this.
|
|
180
|
-
$this.
|
|
181
|
-
$this.
|
|
182
|
-
$this.
|
|
176
|
+
$this.q38_1 = fin;
|
|
177
|
+
$this.r38_1 = frameType;
|
|
178
|
+
$this.s38_1 = data;
|
|
179
|
+
$this.t38_1 = disposableHandle;
|
|
180
|
+
$this.u38_1 = rsv1;
|
|
181
|
+
$this.v38_1 = rsv2;
|
|
182
|
+
$this.w38_1 = rsv3;
|
|
183
183
|
return $this;
|
|
184
184
|
}
|
|
185
185
|
toString() {
|
|
186
|
-
return 'Frame ' + this.
|
|
186
|
+
return 'Frame ' + this.r38_1.toString() + ' (fin=' + this.q38_1 + ', buffer len = ' + this.s38_1.length + ')';
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
initMetadataForClass($, 'Frame');
|
|
@@ -202,4 +202,4 @@ export {
|
|
|
202
202
|
};
|
|
203
203
|
//endregion
|
|
204
204
|
|
|
205
|
-
//# sourceMappingURL=
|
|
205
|
+
//# sourceMappingURL=Frame.web.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/web/src/io/ktor/websocket/Frame.web.kt","../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Builder.kt"],"sourcesContent":[null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["fin","data","rsv1","rsv2","rsv3","text","reason","builder","packet","disposableHandle","byType","frameType","toString"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAuCQA,G,EACAC,I,EACAC,I,EACAC,I,EACAC,I;+BAUsC,K;+BAA+B,K;+BAA+B,K;wBAT9F,G,EAAe,8B,EAAQ,I,gCAA2B,I,EAAM,I,EAAM,I;;iBAC1CJ,G,EAAcC,I;wBAAwB,G,EAAK,I,EAAM,K,EAAO,K,EAAO,K;;;;;;;;;;;;iBAezFD,G,EACAC,I,EACAC,I,EACAC,I,EACAC,I;+BAQkC,K;+BAA+B,K;+BACvE,K;wBARY,G,EAAe,4B,EAAM,I,gCAA2B,I,EAAM,I,EAAM,I;;iBACxCJ,G,EAAcC,I;wBAAwB,G,EAAK,I,EAAM,K,EAAO,K,EAAO,K;;iBAC/DI,I;wBAAqB,I,EAAW,YAAL,IAAK,C;;;;;;;;;;;;iBAW1DJ,I;wBACM,I,EAAgB,6B,EAAO,I,gCAA2B,K,EAAO,K,EAAO,K;;iBAC5CK,M;;YC5D9BC,0B;QACM,OD6DM,KAAW,MAAX,CAAkB,KAAlB,C;QACA,UC9DN,OD8DM,EAAU,MAAV,CAAiB,KAAjB,C;wBC7DL,O;;iBDiEuBC,M;wBAA8B,cAAP,MAAO,C;;;gDACrB,K;;;;;;;;;;;;iBAUnCP,I;wBACM,I,EAAgB,4B,EAAM,I,gCAA2B,K,EAAO,K,EAAO,K;;;;;;;;;;;;iBAWrEA,I,EACAQ,gB;;wBACM,I,EAAgB,4B,EAAM,I,EAAM,gB,EAAkB,K,EAAO,K,EAAO,K;;;;;;;;;;;;;;QAcnC,2BAAU,CAAV,C;;SAOjBC,CACVV,G,EACAW,S,EACAV,I,EACAC,I,EACAC,I,EACAC,IANUM,EAOH;A;QAAA,QAAM,SAAN,CAAM,IAAN,C;eACG,C;+BAAiB,G,EAAK,I,EAAM,I,EAAM,I,EAAM,I;;eACxC,C;6BAAa,G,EAAK,I,EAAM,I,EAAM,I,EAAM,I;;eACpC,C;8BAAe,I;;eACf,C;6BAAa,I;;eACb,C;6BAAa,I;;;YALhB,8B;;;QAMV,U;MAAD,C;;;;;;;;;;;;;;;;;iBA5HUV,G,EACAW,S,EACAV,I,EACAQ,gB,EACAP,I,EACAC,I,EACAC,I;QAPlB,uB;;+BAKK,K;+BAA2B,K;+BACV,K;;QALlB,iB;QACA,uB;QACA,kB;QACA,8B;QACA,kB;QACA,kB;QACA,kB;;;cAwFSQ,CAAAA,EAAyB;A,QAAwD,OAAvD,QAAuD,GAAhD,IAAgD,CAAhD,KAAgD,cAAvC,QAAuC,GAAhC,IAAgC,CAAhC,KAAgC,GAA7B,iBAA6B,GAAZ,IAAY,CAAZ,KAAY,CAAP,MAAO,GAAF,G;MAAC,C;;;;;;;;;;;"}
|
|
@@ -14,22 +14,22 @@ import { decode1t43jmuxrxpmo as decode } from '../../../../ktor-ktor-io/io/ktor/
|
|
|
14
14
|
//region block: pre-declaration
|
|
15
15
|
//endregion
|
|
16
16
|
function readReason(_this__u8e3s4) {
|
|
17
|
-
if (_this__u8e3s4.
|
|
17
|
+
if (_this__u8e3s4.s38_1.length < 2) {
|
|
18
18
|
return null;
|
|
19
19
|
}
|
|
20
20
|
// Inline function 'io.ktor.utils.io.core.buildPacket' call
|
|
21
21
|
var builder = new (Buffer())();
|
|
22
|
-
writeFully(builder, _this__u8e3s4.
|
|
22
|
+
writeFully(builder, _this__u8e3s4.s38_1);
|
|
23
23
|
var packet = builder;
|
|
24
|
-
var code = packet.
|
|
24
|
+
var code = packet.v1p();
|
|
25
25
|
var message = readText(packet);
|
|
26
|
-
return CloseReason().
|
|
26
|
+
return CloseReason().l37(code, message);
|
|
27
27
|
}
|
|
28
28
|
var NonDisposableHandleClass;
|
|
29
29
|
function NonDisposableHandle() {
|
|
30
30
|
if (NonDisposableHandleClass === VOID) {
|
|
31
31
|
class $ {
|
|
32
|
-
|
|
32
|
+
d10() {
|
|
33
33
|
return Unit_instance;
|
|
34
34
|
}
|
|
35
35
|
toString() {
|
|
@@ -57,14 +57,14 @@ function NonDisposableHandle_getInstance() {
|
|
|
57
57
|
}
|
|
58
58
|
function readText_0(_this__u8e3s4) {
|
|
59
59
|
// Inline function 'kotlin.require' call
|
|
60
|
-
if (!_this__u8e3s4.
|
|
60
|
+
if (!_this__u8e3s4.q38_1) {
|
|
61
61
|
var message = 'Text could be only extracted from non-fragmented frame';
|
|
62
62
|
throw IllegalArgumentException().r2(toString(message));
|
|
63
63
|
}
|
|
64
|
-
var tmp = Charsets_getInstance().
|
|
64
|
+
var tmp = Charsets_getInstance().i1w_1.l1w();
|
|
65
65
|
// Inline function 'io.ktor.utils.io.core.buildPacket' call
|
|
66
66
|
var builder = new (Buffer())();
|
|
67
|
-
writeFully(builder, _this__u8e3s4.
|
|
67
|
+
writeFully(builder, _this__u8e3s4.s38_1);
|
|
68
68
|
return decode(tmp, builder);
|
|
69
69
|
}
|
|
70
70
|
//region block: init
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/common/src/io/ktor/websocket/FrameCommon.kt","../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Builder.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["readReason","<this>","builder","packet","code","message","dispose","readText"],"mappings":";;;;;;;;;;;;;;;mBAyLOA,CAAIC,aAAJD,EAA2C;A,EAC1C,wBAAK,MAAL,GAAY,CAAZ,C,CAAe;A,IACf,OAAO,I;EACX,C;;MCxKAE,0B;ED0K2B,WCzKrB,ODyKqB,EAAW,aAAX,CAAW,KAAX,C;MAA3BC,SCxKO,O;MD0KPC,OAAW,MAAO,M;MAClBC,UAAqB,SAAP,MAAO,C;EAErB,yBAAmB,IAAnB,EAAyB,OAAzB,C;AACJ,C;;;;;
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/common/src/io/ktor/websocket/FrameCommon.kt","../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-io/common/src/io/ktor/utils/io/core/Builder.kt","../../../../../cli/build/compileSync/js/main/productionExecutable/kotlin/ktor-ktor-websockets/io/ktor/websocket/src/kotlin/util/Preconditions.kt"],"sourcesContent":[null,null,null],"ignoreList":[],"x_google_ignoreList":[],"names":["readReason","<this>","builder","packet","code","message","dispose","readText"],"mappings":";;;;;;;;;;;;;;;mBAyLOA,CAAIC,aAAJD,EAA2C;A,EAC1C,wBAAK,MAAL,GAAY,CAAZ,C,CAAe;A,IACf,OAAO,I;EACX,C;;MCxKAE,0B;ED0K2B,WCzKrB,ODyKqB,EAAW,aAAX,CAAW,KAAX,C;MAA3BC,SCxKO,O;MD0KPC,OAAW,MAAO,M;MAClBC,UAAqB,SAAP,MAAO,C;EAErB,yBAAmB,IAAnB,EAAyB,OAAzB,C;AACJ,C;;;;;SAGaC,CAAAA,EAAgB;A,QAAI,oB;MAAD,C;iBAvMhC;A,QAAA,4B;MAAA,C;iBAAA;A,QAAA,gB;MAAA,C;oBAAA;A,QAAA,mB;UAAA,W;QAAA,8C;UAAA,Y;QAAA,W;MAAA,C;;;;;;;;;;;mBAsKOC,CAAIN,aAAJM,EAAkC;A;EEnIjC,KFoII,aEpIJ,CFoII,KEpIJ,C,CAAQ;A,QACRF,UFmIW,wD;IElIX,oCAAuC,SAAR,OAAQ,CAAvC,C;EACJ,C;YFkIsB,uBAAN,KAAM,M;;MCpJtBH,0B;EDoJwD,WCnJlD,ODmJkD,EAAW,aAAX,CAAW,KAAX,C;EAAxD,OAAmC,YClJ5B,ODkJ4B,C;AACvC,C;;;;;;;;"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Exceptiondt2hlxn7j7vw as Exception } from '../../../../kotlin-kotlin-stdlib/kotlin/exceptions.mjs';
|
|
2
2
|
import { captureStack1fzi4aczwc4hg as captureStack } from '../../../../kotlin-kotlin-stdlib/kotlin/js/coreRuntime.mjs';
|
|
3
|
-
import { initCauseBridge1upxfqhavblt6 as initCauseBridge } from '../../../../ktor-ktor-utils/io/ktor/util/internal/
|
|
3
|
+
import { initCauseBridge1upxfqhavblt6 as initCauseBridge } from '../../../../ktor-ktor-utils/io/ktor/util/internal/ExceptionUtils.web.mjs';
|
|
4
4
|
import { Unit_instance28fytmsmm6r23 as Unit_instance } from '../../../../kotlin-kotlin-stdlib/kotlin/Unit.mjs';
|
|
5
5
|
import { CopyableThrowable1mvc99jcyvivf as CopyableThrowable } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/Debug.common.mjs';
|
|
6
6
|
import { initMetadataForClassbxx6q50dy2s7 as initMetadataForClass } from '../../../../kotlin-kotlin-stdlib/kotlin/js/metadataUtils.mjs';
|
|
@@ -13,19 +13,19 @@ var FrameTooBigExceptionClass;
|
|
|
13
13
|
function FrameTooBigException() {
|
|
14
14
|
if (FrameTooBigExceptionClass === VOID) {
|
|
15
15
|
class $ extends Exception() {
|
|
16
|
-
static
|
|
16
|
+
static n39(frameSize) {
|
|
17
17
|
var $this = this.ke();
|
|
18
|
-
captureStack($this, $this.
|
|
19
|
-
$this.
|
|
18
|
+
captureStack($this, $this.m39_1);
|
|
19
|
+
$this.l39_1 = frameSize;
|
|
20
20
|
delete $this.message;
|
|
21
21
|
return $this;
|
|
22
22
|
}
|
|
23
23
|
r() {
|
|
24
|
-
return 'Frame is too big: ' + this.
|
|
24
|
+
return 'Frame is too big: ' + this.l39_1.toString();
|
|
25
25
|
}
|
|
26
|
-
|
|
26
|
+
i15() {
|
|
27
27
|
// Inline function 'kotlin.also' call
|
|
28
|
-
var this_0 = FrameTooBigException().
|
|
28
|
+
var this_0 = FrameTooBigException().n39(this.l39_1);
|
|
29
29
|
initCauseBridge(this_0, this);
|
|
30
30
|
return this_0;
|
|
31
31
|
}
|
|
@@ -38,10 +38,10 @@ function Companion() {
|
|
|
38
38
|
tmp$ret$0 = maxElem;
|
|
39
39
|
break $l$block_0;
|
|
40
40
|
}
|
|
41
|
-
var maxValue = maxElem.
|
|
41
|
+
var maxValue = maxElem.d3a_1;
|
|
42
42
|
do {
|
|
43
43
|
var e = iterator.s1();
|
|
44
|
-
var v = e.
|
|
44
|
+
var v = e.d3a_1;
|
|
45
45
|
if (compareTo(maxValue, v) < 0) {
|
|
46
46
|
maxElem = e;
|
|
47
47
|
maxValue = v;
|
|
@@ -50,10 +50,10 @@ function Companion() {
|
|
|
50
50
|
while (iterator.r1());
|
|
51
51
|
tmp$ret$0 = maxElem;
|
|
52
52
|
}
|
|
53
|
-
tmp.
|
|
53
|
+
tmp.e3a_1 = ensureNotNull(tmp$ret$0).d3a_1;
|
|
54
54
|
var tmp_0 = this;
|
|
55
55
|
var tmp_1 = 0;
|
|
56
|
-
var tmp_2 = this.
|
|
56
|
+
var tmp_2 = this.e3a_1 + 1 | 0;
|
|
57
57
|
// Inline function 'kotlin.arrayOfNulls' call
|
|
58
58
|
var tmp_3 = Array(tmp_2);
|
|
59
59
|
while (tmp_1 < tmp_2) {
|
|
@@ -67,7 +67,7 @@ function Companion() {
|
|
|
67
67
|
var _iterator__ex2g4s = tmp0_0.q1();
|
|
68
68
|
while (_iterator__ex2g4s.r1()) {
|
|
69
69
|
var element = _iterator__ex2g4s.s1();
|
|
70
|
-
if (element.
|
|
70
|
+
if (element.d3a_1 === tmp_4) {
|
|
71
71
|
if (found) {
|
|
72
72
|
tmp$ret$5 = null;
|
|
73
73
|
break $l$block_2;
|
|
@@ -85,7 +85,7 @@ function Companion() {
|
|
|
85
85
|
tmp_3[tmp_4] = tmp$ret$5;
|
|
86
86
|
tmp_1 = tmp_1 + 1 | 0;
|
|
87
87
|
}
|
|
88
|
-
tmp_0.
|
|
88
|
+
tmp_0.f3a_1 = tmp_3;
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
initMetadataForCompanion($);
|
|
@@ -127,8 +127,8 @@ function FrameType() {
|
|
|
127
127
|
class $ extends Enum() {
|
|
128
128
|
constructor(name, ordinal, controlFrame, opcode) {
|
|
129
129
|
super(name, ordinal);
|
|
130
|
-
this.
|
|
131
|
-
this.
|
|
130
|
+
this.c3a_1 = controlFrame;
|
|
131
|
+
this.d3a_1 = opcode;
|
|
132
132
|
}
|
|
133
133
|
}
|
|
134
134
|
initMetadataForClass($, 'FrameType');
|
|
@@ -19,7 +19,7 @@ import { get_LOGGER1pnacb4n2g1eb as get_LOGGER } from './DefaultWebSocketSession
|
|
|
19
19
|
import {
|
|
20
20
|
Pong3m3cas9hmc9ec as Pong,
|
|
21
21
|
Ping3nta6l7sdq1r9 as Ping,
|
|
22
|
-
} from './
|
|
22
|
+
} from './Frame.web.mjs';
|
|
23
23
|
import { cancelConsumed2i0oizqhmljf6 as cancelConsumed } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/channels/Channels.common.mjs';
|
|
24
24
|
import { suspendOrReturn49pspzlx5djv as suspendOrReturn } from '../../../../kotlin-kotlin-stdlib/kotlin/coroutines/intrinsics/IntrinsicsJs.mjs';
|
|
25
25
|
import { CoroutineScopefcb5f5dwqcas as CoroutineScope } from '../../../../kotlinx-coroutines-core/kotlinx/coroutines/CoroutineScope.mjs';
|
|
@@ -66,29 +66,29 @@ function pinger(_this__u8e3s4, outgoing, periodMillis, timeoutMillis, onTimeout)
|
|
|
66
66
|
var channel = Channel(2147483647);
|
|
67
67
|
var tmp = actorJob.wo(get_PingerCoroutineName());
|
|
68
68
|
launch(_this__u8e3s4, tmp, VOID, pinger$slambda_0(periodMillis, timeoutMillis, onTimeout, channel, outgoing));
|
|
69
|
-
var tmp_0 = ensureNotNull(_this__u8e3s4.
|
|
70
|
-
tmp_0.
|
|
69
|
+
var tmp_0 = ensureNotNull(_this__u8e3s4.nx().rd(Key_instance));
|
|
70
|
+
tmp_0.qy(pinger$lambda(actorJob));
|
|
71
71
|
return channel;
|
|
72
72
|
}
|
|
73
73
|
function *_generator_invoke__zhh2q8($this, $this$launch, $completion) {
|
|
74
74
|
try {
|
|
75
75
|
// Inline function 'kotlinx.coroutines.channels.consumeEach' call
|
|
76
|
-
var tmp0 = $this.
|
|
76
|
+
var tmp0 = $this.g3a_1;
|
|
77
77
|
$l$block: {
|
|
78
78
|
// Inline function 'kotlinx.coroutines.channels.consume' call
|
|
79
79
|
var cause = null;
|
|
80
80
|
try {
|
|
81
81
|
var _iterator__ex2g4s = tmp0.q1();
|
|
82
82
|
$l$loop: while (true) {
|
|
83
|
-
var tmp = _iterator__ex2g4s.
|
|
83
|
+
var tmp = _iterator__ex2g4s.p1c($completion);
|
|
84
84
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
85
85
|
tmp = yield tmp;
|
|
86
86
|
if (!tmp) {
|
|
87
87
|
break $l$loop;
|
|
88
88
|
}
|
|
89
89
|
var e = _iterator__ex2g4s.s1();
|
|
90
|
-
get_LOGGER().
|
|
91
|
-
var tmp_0 = $this.
|
|
90
|
+
get_LOGGER().z2p('Received ping message, sending pong message');
|
|
91
|
+
var tmp_0 = $this.h3a_1.d1d(Pong().y39(e.s38_1), $completion);
|
|
92
92
|
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
93
93
|
tmp_0 = yield tmp_0;
|
|
94
94
|
}
|
|
@@ -120,14 +120,14 @@ function ponger$slambda() {
|
|
|
120
120
|
if (ponger$slambdaClass === VOID) {
|
|
121
121
|
class $ {
|
|
122
122
|
constructor($channel, $outgoing) {
|
|
123
|
-
this.
|
|
124
|
-
this.
|
|
123
|
+
this.g3a_1 = $channel;
|
|
124
|
+
this.h3a_1 = $outgoing;
|
|
125
125
|
}
|
|
126
|
-
|
|
126
|
+
b1i($this$launch, $completion) {
|
|
127
127
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8.bind(VOID, this, $this$launch), $completion);
|
|
128
128
|
}
|
|
129
129
|
de(p1, $completion) {
|
|
130
|
-
return this.
|
|
130
|
+
return this.b1i((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
131
131
|
}
|
|
132
132
|
}
|
|
133
133
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -137,54 +137,54 @@ function ponger$slambda() {
|
|
|
137
137
|
}
|
|
138
138
|
function ponger$slambda_0($channel, $outgoing) {
|
|
139
139
|
var i = new (ponger$slambda())($channel, $outgoing);
|
|
140
|
-
var l = ($this$launch, $completion) => i.
|
|
140
|
+
var l = ($this$launch, $completion) => i.b1i($this$launch, $completion);
|
|
141
141
|
l.$arity = 1;
|
|
142
142
|
return l;
|
|
143
143
|
}
|
|
144
144
|
function *_generator_invoke__zhh2q8_0($this, $this$withTimeoutOrNull, $completion) {
|
|
145
145
|
while (true) {
|
|
146
|
-
var tmp = $this.
|
|
146
|
+
var tmp = $this.i3a_1.h1d($completion);
|
|
147
147
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
148
148
|
tmp = yield tmp;
|
|
149
149
|
}
|
|
150
150
|
return Unit_instance;
|
|
151
151
|
}
|
|
152
152
|
function *_generator_invoke__zhh2q8_1($this, $this$withTimeoutOrNull, $completion) {
|
|
153
|
-
get_LOGGER().
|
|
154
|
-
var tmp = $this.
|
|
153
|
+
get_LOGGER().z2p('WebSocket Pinger: sending ping frame');
|
|
154
|
+
var tmp = $this.j3a_1.d1d(Ping().t3a(toByteArray($this.k3a_1, Charsets_getInstance().j1w_1)), $completion);
|
|
155
155
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
156
156
|
tmp = yield tmp;
|
|
157
157
|
$l$loop: while (true) {
|
|
158
|
-
var tmp_0 = $this.
|
|
158
|
+
var tmp_0 = $this.l3a_1.h1d($completion);
|
|
159
159
|
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
160
160
|
tmp_0 = yield tmp_0;
|
|
161
161
|
var msg = tmp_0;
|
|
162
|
-
if (decodeToString(msg.
|
|
163
|
-
get_LOGGER().
|
|
162
|
+
if (decodeToString(msg.s38_1, 0, 0 + msg.s38_1.length | 0) === $this.k3a_1) {
|
|
163
|
+
get_LOGGER().z2p('WebSocket Pinger: received valid pong frame ' + msg.toString());
|
|
164
164
|
break $l$loop;
|
|
165
165
|
}
|
|
166
|
-
get_LOGGER().
|
|
166
|
+
get_LOGGER().z2p('WebSocket Pinger: received invalid pong frame ' + msg.toString() + ', continue waiting');
|
|
167
167
|
}
|
|
168
168
|
return Unit_instance;
|
|
169
169
|
}
|
|
170
170
|
function *_generator_invoke__zhh2q8_2($this, $this$launch, $completion) {
|
|
171
|
-
get_LOGGER().
|
|
171
|
+
get_LOGGER().z2p('Starting WebSocket pinger coroutine with period ' + $this.u3a_1.toString() + ' ms and timeout ' + $this.v3a_1.toString() + ' ms');
|
|
172
172
|
var random = Random(getTimeMillis());
|
|
173
173
|
var pingIdBytes = new Int8Array(32);
|
|
174
174
|
try {
|
|
175
175
|
$l$loop: while (true) {
|
|
176
|
-
var tmp = withTimeoutOrNull($this.
|
|
176
|
+
var tmp = withTimeoutOrNull($this.u3a_1, pinger$slambda$slambda_0($this.x3a_1), $completion);
|
|
177
177
|
if (tmp === get_COROUTINE_SUSPENDED())
|
|
178
178
|
tmp = yield tmp;
|
|
179
|
-
random.
|
|
179
|
+
random.pq(pingIdBytes);
|
|
180
180
|
var pingMessage = '[ping ' + hex(pingIdBytes) + ' ping]';
|
|
181
|
-
var tmp_0 = withTimeoutOrNull($this.
|
|
181
|
+
var tmp_0 = withTimeoutOrNull($this.v3a_1, pinger$slambda$slambda_2($this.y3a_1, pingMessage, $this.x3a_1), $completion);
|
|
182
182
|
if (tmp_0 === get_COROUTINE_SUSPENDED())
|
|
183
183
|
tmp_0 = yield tmp_0;
|
|
184
184
|
var rc = tmp_0;
|
|
185
185
|
if (rc == null) {
|
|
186
|
-
get_LOGGER().
|
|
187
|
-
var tmp_1 = $this.
|
|
186
|
+
get_LOGGER().z2p('WebSocket pinger has timed out');
|
|
187
|
+
var tmp_1 = $this.w3a_1(CloseReason().m37(Codes_INTERNAL_ERROR_getInstance(), 'Ping timeout'), $completion);
|
|
188
188
|
if (tmp_1 === get_COROUTINE_SUSPENDED())
|
|
189
189
|
tmp_1 = yield tmp_1;
|
|
190
190
|
break $l$loop;
|
|
@@ -216,13 +216,13 @@ function pinger$slambda$slambda() {
|
|
|
216
216
|
if (pinger$slambda$slambdaClass === VOID) {
|
|
217
217
|
class $ {
|
|
218
218
|
constructor($channel) {
|
|
219
|
-
this.
|
|
219
|
+
this.i3a_1 = $channel;
|
|
220
220
|
}
|
|
221
|
-
|
|
221
|
+
b1i($this$withTimeoutOrNull, $completion) {
|
|
222
222
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8_0.bind(VOID, this, $this$withTimeoutOrNull), $completion);
|
|
223
223
|
}
|
|
224
224
|
de(p1, $completion) {
|
|
225
|
-
return this.
|
|
225
|
+
return this.b1i((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
228
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -232,7 +232,7 @@ function pinger$slambda$slambda() {
|
|
|
232
232
|
}
|
|
233
233
|
function pinger$slambda$slambda_0($channel) {
|
|
234
234
|
var i = new (pinger$slambda$slambda())($channel);
|
|
235
|
-
var l = ($this$withTimeoutOrNull, $completion) => i.
|
|
235
|
+
var l = ($this$withTimeoutOrNull, $completion) => i.b1i($this$withTimeoutOrNull, $completion);
|
|
236
236
|
l.$arity = 1;
|
|
237
237
|
return l;
|
|
238
238
|
}
|
|
@@ -241,15 +241,15 @@ function pinger$slambda$slambda_1() {
|
|
|
241
241
|
if (pinger$slambda$slambdaClass_0 === VOID) {
|
|
242
242
|
class $ {
|
|
243
243
|
constructor($outgoing, $pingMessage, $channel) {
|
|
244
|
-
this.
|
|
245
|
-
this.
|
|
246
|
-
this.
|
|
244
|
+
this.j3a_1 = $outgoing;
|
|
245
|
+
this.k3a_1 = $pingMessage;
|
|
246
|
+
this.l3a_1 = $channel;
|
|
247
247
|
}
|
|
248
|
-
|
|
248
|
+
b1i($this$withTimeoutOrNull, $completion) {
|
|
249
249
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8_1.bind(VOID, this, $this$withTimeoutOrNull), $completion);
|
|
250
250
|
}
|
|
251
251
|
de(p1, $completion) {
|
|
252
|
-
return this.
|
|
252
|
+
return this.b1i((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
253
253
|
}
|
|
254
254
|
}
|
|
255
255
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -259,7 +259,7 @@ function pinger$slambda$slambda_1() {
|
|
|
259
259
|
}
|
|
260
260
|
function pinger$slambda$slambda_2($outgoing, $pingMessage, $channel) {
|
|
261
261
|
var i = new (pinger$slambda$slambda_1())($outgoing, $pingMessage, $channel);
|
|
262
|
-
var l = ($this$withTimeoutOrNull, $completion) => i.
|
|
262
|
+
var l = ($this$withTimeoutOrNull, $completion) => i.b1i($this$withTimeoutOrNull, $completion);
|
|
263
263
|
l.$arity = 1;
|
|
264
264
|
return l;
|
|
265
265
|
}
|
|
@@ -268,17 +268,17 @@ function pinger$slambda() {
|
|
|
268
268
|
if (pinger$slambdaClass === VOID) {
|
|
269
269
|
class $ {
|
|
270
270
|
constructor($periodMillis, $timeoutMillis, $onTimeout, $channel, $outgoing) {
|
|
271
|
-
this.
|
|
272
|
-
this.
|
|
273
|
-
this.
|
|
274
|
-
this.
|
|
275
|
-
this.
|
|
271
|
+
this.u3a_1 = $periodMillis;
|
|
272
|
+
this.v3a_1 = $timeoutMillis;
|
|
273
|
+
this.w3a_1 = $onTimeout;
|
|
274
|
+
this.x3a_1 = $channel;
|
|
275
|
+
this.y3a_1 = $outgoing;
|
|
276
276
|
}
|
|
277
|
-
|
|
277
|
+
b1i($this$launch, $completion) {
|
|
278
278
|
return suspendOrReturn(/*#__NOINLINE__*/_generator_invoke__zhh2q8_2.bind(VOID, this, $this$launch), $completion);
|
|
279
279
|
}
|
|
280
280
|
de(p1, $completion) {
|
|
281
|
-
return this.
|
|
281
|
+
return this.b1i((!(p1 == null) ? isInterface(p1, CoroutineScope()) : false) ? p1 : THROW_CCE(), $completion);
|
|
282
282
|
}
|
|
283
283
|
}
|
|
284
284
|
initMetadataForLambda($, VOID, VOID, [1]);
|
|
@@ -288,13 +288,13 @@ function pinger$slambda() {
|
|
|
288
288
|
}
|
|
289
289
|
function pinger$slambda_0($periodMillis, $timeoutMillis, $onTimeout, $channel, $outgoing) {
|
|
290
290
|
var i = new (pinger$slambda())($periodMillis, $timeoutMillis, $onTimeout, $channel, $outgoing);
|
|
291
|
-
var l = ($this$launch, $completion) => i.
|
|
291
|
+
var l = ($this$launch, $completion) => i.b1i($this$launch, $completion);
|
|
292
292
|
l.$arity = 1;
|
|
293
293
|
return l;
|
|
294
294
|
}
|
|
295
295
|
function pinger$lambda($actorJob) {
|
|
296
296
|
return (it) => {
|
|
297
|
-
$actorJob.
|
|
297
|
+
$actorJob.yy();
|
|
298
298
|
return Unit_instance;
|
|
299
299
|
};
|
|
300
300
|
}
|
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
//region block: pre-declaration
|
|
2
2
|
//endregion
|
|
3
3
|
function get_OUTGOING_CHANNEL_CAPACITY() {
|
|
4
|
-
return
|
|
4
|
+
return OUTGOING_CHANNEL_CAPACITY;
|
|
5
5
|
}
|
|
6
|
+
var OUTGOING_CHANNEL_CAPACITY;
|
|
7
|
+
//region block: init
|
|
8
|
+
OUTGOING_CHANNEL_CAPACITY = null;
|
|
9
|
+
//endregion
|
|
6
10
|
//region block: exports
|
|
7
11
|
export {
|
|
8
12
|
get_OUTGOING_CHANNEL_CAPACITY as get_OUTGOING_CHANNEL_CAPACITY2ancx42jsldm9,
|
|
9
13
|
};
|
|
10
14
|
//endregion
|
|
11
15
|
|
|
12
|
-
//# sourceMappingURL=
|
|
16
|
+
//# sourceMappingURL=Utils.web.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../../../../../../../mnt/agent/work/8d547b974a7be21f/ktor-shared/ktor-websockets/web/src/io/ktor/websocket/Utils.web.kt"],"sourcesContent":[null],"ignoreList":[],"x_google_ignoreList":[],"names":["<get-OUTGOING_CHANNEL_CAPACITY>"],"mappings":";;sCAMgBA,CAAAA,EAAA;A,EAAA,gC;AAAkC,C;;;4BAAI,I;;;;;;"}
|